This CODE does not work:
Private Sub Reading_Click() Open "c:\My Documents\sample.txt" For Input As #1 Input #1, Text1.Text Close #1 End Sub
This CODE Works:
Private Sub Reading_Click() Dim variable1 As String Open "c:\My Documents\sample.txt" For Input As #1 Input #1, variable1 Text1.Text = variable1 Close #1 End Sub
Mod edit - Added code tags.

New Topic/Question
Reply




MultiQuote




|