raymond3090
Registered User.
- Local time
- Today, 14:45
- Joined
- Sep 5, 2002
- Messages
- 43
hi there. I am trying to access the contents of a file line by line. I am using the 'line input' statement, which as I understand, is supposed to return the lines of the file sequentially. It turns out that when I use it in the following code, it actually returns much more than a single line which is useless to me! Any suggestions?
Open testFile For Input As #1
Line Input #1, strTxt
MsgBox strTxt
I end up with a message box almost the size of my screen!
thanks,
-Ray
Open testFile For Input As #1
Line Input #1, strTxt
MsgBox strTxt
I end up with a message box almost the size of my screen!
thanks,
-Ray