DCrake
Remembered
- Local time
- Today, 21:21
- Joined
- Jun 8, 2005
- Messages
- 8,620
My red comments indicated that however
Code:
Open pathtofile For Input As #fileNum[COLOR="Green"] ' Open the text file for reading[/COLOR]
Do Until EOF(fileNum)[COLOR="green"] ' read the whole file line by line[/COLOR]
Line Input #fileNum, strPGNdata [COLOR="green"]' pass the current row of text to the string[/COLOR]
[COLOR="green"]'Process the line of text here[/COLOR]
Loop [COLOR="green"]' Move to next line in text file[/COLOR]
Close #fileNum[COLOR="green"] ' End of text file close it[/COLOR]