| | |
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
| Thread Tools | Search this Thread |
.net .net2008 2008 access account advanced application array basic beginner browser button buttons center click code combo cuesent data database datagrid datagridview date datetimepicker designer dissertation dissertations dissertationtopic excel exists fade filter forms generatetags gridview html images input insert intel internet listview map mobile module monitor msaccess net number objects open panel passingparameters pdf picturebox picturebox2 port position print printing problem regex right-to-left save search searchvb.net select serial settings shutdown socket sqldatbase sqlserver survey table temperature textbox timer timespan transparency txttoxmlconverter update user usercontol vb vb.net vb.netformclosing()eventpictureboxmessagebox vba vbnet visual visualbasic visualbasic.net visualstudio.net visualstudio2008 web winforms wpf wrapingcode xml year






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