How to print a value in the text box from the text file?
Using VB 6
While executing the program, text box should show the saved text file value
Need VB 6 code Help.
How to print a value in the text box from the text file?
Using VB 6
While executing the program, text box should show the saved text file value
Need VB 6 code Help.
Dim line
Open "filename.txt" For Input As #1
Input #1, line
TextBox.Text = line
Close #1