tags:

views:

83

answers:

1

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.

A: 
Dim line
Open "filename.txt" For Input As #1
Input #1, line
TextBox.Text = line
Close #1
Erlend