Ok guys what am I missing?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim FF As Integer
Dim strline As String
FF = FreeFile()
Open c:\test.txt For Input As #FF
Do While Not EOF(FF)
Line Input #FF, strline
TextBox1.Text = TextBox1.Text & strline & vbCrLf
Loop
Close #FF
End Sub
I know the code has changed somewhat.. from vb6 to .net.. but
is it that much diff.? hjehe
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim FF As Integer
Dim strline As String
FF = FreeFile()
Open c:\test.txt For Input As #FF
Do While Not EOF(FF)
Line Input #FF, strline
TextBox1.Text = TextBox1.Text & strline & vbCrLf
Loop
Close #FF
End Sub
I know the code has changed somewhat.. from vb6 to .net.. but
is it that much diff.? hjehe