Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

obtain current line number of a streamreader

Status
Not open for further replies.

Alan0568

Technical User
May 24, 2006
77
GB
Using 2005 vb.net is there a way I can get the current line number of a streamreader. I guess I could just have my own counter and + 1 within the loop but is there a way to obtain from a property?

This is sort of what I have ...

Thanks
-----------noddy code

Dim FilReader As System.IO.StreamReader
FilReader = My.Computer.FileSystem.OpenTextFileReader(myFile)
Dim FilRow As String

While FilReader.EndOfStream = False

FilRow = FilReader.ReadLine()

'do stuff
'what line number am I on?


End While
 
A quick way to do it would be initialize an int counter to zero and then add one for each ReadLine

Code:
Dim FilReader As System.IO.StreamReader
FilReader = My.Computer.FileSystem.OpenTextFileReader(myFile)
Dim FilRow As String
Dim LineNumber as Integer = 0

While FilReader.EndOfStream = False
    FilRow = FilReader.ReadLine()
    LineNumber = LineNumber + 1
    'do stuff
    'You're on Line: LineNumber
End While
 
Thanks for the reply but thats what I meant by having my own counter and + 1 within the loop. I was curious as to how get it from the streamreader itself.

A
 
Thanks, I guess I'll use a counter then. I'm a complete VB novice but in the past I have done something with vb6 using fso and OpenAsTextStream then retrieved .line so I assumed it was possible.

A
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top