hi,
I want to ask about read data from .txt file and show them all to texbox in VB6
i just can do it for 1 line
anyone can help me?
sample like this :
Dim OutputPath As String
Dim sBaris$
Dim DROP() As Byte
Dim strTeks As String
OutputPath = "C:\Windows\Temp\RPLRECORD.TMP"
DROP = LoadResData(RPLRECORD.TXT, "CUSTOM")
Open OutputPath For Input As #1
Line Input #1, sBaris$
strTeks = strTeks & sBaris$
Close #1
Me.Text1.Text = strTeks
Thanks