| | |
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 |
Tag cloud for VB.NET
"crystal .net .net2005 30minutes 2008 access add application array assignment basic binary box button buttons center click code connectionstring convert cpu data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dll dosconsolevb.net editvb.net employees error excel exists firewall folder image images isnumericfuntioncall listview login math memory mobile module msaccess mssqlbackend mysql navigate net opacity page pan peertopeervideostreaming picturebox plugin port print printing printpreview problem record regex reports" reuse right-to-left save savedialog search serial sorting sql sqldatbase storedprocedure string structures studio temp textbox timer upload useraccounts usercontrol vb vb.net vb.netcode vb.nettoolboxvisualbasic2008sidebar vb2008 vbnet vista visual visualbasic visualbasic.net visualstudio2008 web wpf xml






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