ccadic
12-30-2002, 04:26 PM
Hi all.
I'm trying to load an ASCII txt file from a directory of the ipaq and make it diplayed in a textbox. The problem is I cannot find a way to print 'LFCR' properly unde EVB
Can anyone help ?
Looks like the Chr(10)+Chr(13) does not work at all
My code is:
Private Sub Form_Load()
File1.Open App.Path + "\respon.txt", fsModeInput
Do While Not File1.EOF
Text1.Text = Text1.Text + Chr(10) + Chr(13) + File1.LineInputString
Loop
File1.Close
I'm trying to load an ASCII txt file from a directory of the ipaq and make it diplayed in a textbox. The problem is I cannot find a way to print 'LFCR' properly unde EVB
Can anyone help ?
Looks like the Chr(10)+Chr(13) does not work at all
My code is:
Private Sub Form_Load()
File1.Open App.Path + "\respon.txt", fsModeInput
Do While Not File1.EOF
Text1.Text = Text1.Text + Chr(10) + Chr(13) + File1.LineInputString
Loop
File1.Close