/ Published in: Visual Basic
Basic commands for reading a text file one line at a time.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
theFile=FreeFile Open File_Path_String For Input As theFile ' Open file for input. Line Input theFile, MyString ' Read single line into a variable. Close theFile