How to Return a specific line number from a file (note: first line = line number 0)
Posted on January 4, 2009
1 2 3 4 5 6 | 'Text File Handling - How to Return a specific line number from a file (note: first line = line number 0) Private Function getLine(ByVal strFile As String, ByVal lineNumber As Long) As String Open strFile For Input As #1 getLine = Split(Input(LOF(1), 1), vbCrLf)(lineNumber) Close #1 End Function |