Hi I am trying to open a text file using embedded visual
basic to read two columns of numbers
1200, 10
3456, 22
4555, 50
etc
I am trying to use the file system control ie
file.open pathname, mode, access, lock, reclength
-----------------------------
Private Sub Command1_Click()
Dim pth As String
pth = "c:\wmp\filetest\test2.txt"
File1.Open pth, 1, 1, 3, 32000
End Sub
-----------------------------
I keep getting an error (filname, dir name, or vol labe
syntax is incorrect)
Does any body have a code fragement for this?
What should the record length be ?
When in emulator mode does the pth start at the normal
windows dir or at the emulator dir?