how do I show the contents of a text file
in a text box or text list in my program?
this is a Visual Basic program.
Printable View
how do I show the contents of a text file
in a text box or text list in my program?
this is a Visual Basic program.
there are some good tutorials on this Here
Code:Open "MyTextFile.txt" For Input As #1
Text1 = Input(LOF(1), 1)
Close #1