| | |
ReadLine Question, URGENT
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Aug 2008
Posts: 16
Reputation:
Solved Threads: 0
Hi,
I have come to ask about "System.IO.StreamReader.ReadLine"
I want it to read line 1, then 2, then 3, and it keeps going for 20
Please just give me the code to read line 5 for example, then i will do the rest, here is the code for you to work on
Thats really all i know, please help
Thanks, Luke
I have come to ask about "System.IO.StreamReader.ReadLine"
I want it to read line 1, then 2, then 3, and it keeps going for 20
Please just give me the code to read line 5 for example, then i will do the rest, here is the code for you to work on
Dim loadf As New System.IO.StreamReader("c:/text.txt")
textbox5.Text = loadf.ReadLine()Thats really all i know, please help
Thanks, Luke
to read from file line by line you need to use ReadLine method as you did , plus checking if you reached the end of file or not by Peek method
i am not sure if I understand you, you want to write line 5 in the textbox? then in the while loop above check if you reached line 5 by counter then if yes show the line in textbox
VB.NET Syntax (Toggle Plain Text)
While loadf.Peek <> -1 Line = loadf.ReadLine() ... ... End While
•
•
•
•
Please just give me the code to read line 5 for example, then i will do the rest,
VB.NET Syntax (Toggle Plain Text)
n = 0 While loadf.Peek <> -1 n = n + 1 Line = loadf.ReadLine() If n = 5 Then TextBox1.Text = Line End If End While
Last edited by manal; Sep 10th, 2008 at 7:22 pm.
"give only what u willing to receive "
![]() |
Other Threads in the VB.NET Forum
- Previous Thread: Connecting VB .NET with SQL Dbase
- Next Thread: paycheck calculator
Views: 1149 | Replies: 3
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net .net2005 30minutes 2005 2008 access account application arithmetic array arrays basic binary bing button buttons c# center check code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dll dropdownlist excel file-dialog folder ftp google hardcopy highlighting image images inline insert listview login mobile ms net networking output passingparameters peertopeervideostreaming picturebox picturebox1 plugin port print printing problem problemwithinstallation project reports" save savedialog searchbox serial server soap sorting sql string syntax table tcp text textbox timer toolbox trim update updown usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf






to learn how to program you need to try at first then learn from your mistakes