How to Return the contents of a file
Posted on January 4, 2009
1 2 3 4 5 6 | 'Text File Handling - How to Return the contents of a file Private Function returnContents(ByVal strFile As String) As String Open strFile For Input As #1 returnContents = Input(LOF(1), 1) Close #1 End Function |