Zdravím, jsem začátečník ve VB NET. Napsal jsem si tento kód: Dim FileName As String="C:\mainip.txt" Dim objReader As New Systém.IO.StreamReader(FileName) TextBox1.Text=objReader.ReadToEnd objReader.Close() vyhodí to chybu:Text is not a member of String potom je kód pro čtení : Dim TextLine As String Do While objReader.Peek<>-1 TextLine=TextLine& objReader.ReadLine() & vbNewLine Loop objReader.ReadLine(data,data,....) to vyhodí chybu:Overload resolution failed because no accessible ReadLine accepts this member of arguments Poradí mi prosím někdo co je špatně v tom kódu? Postupoval jsem dle knihy Ken Carney: VB NET
|