dude2443
06-02-2003, 08:54 AM
heres my code
'open file
Open "m:movies.dat" For Random Access Read As #1 Len = 1000
For x = 1 To 100
Get #1, , movies(x, 1)
Get #1, , movies(x, 2)
Get #1, , movies(x, 3)
Get #1, , movies(x, 4)
Get #1, , movies(x, 5)
Next x
'close file
Close #1
how can i make EOF work? thanks
'open file
Open "m:movies.dat" For Random Access Read As #1 Len = 1000
For x = 1 To 100
Get #1, , movies(x, 1)
Get #1, , movies(x, 2)
Get #1, , movies(x, 3)
Get #1, , movies(x, 4)
Get #1, , movies(x, 5)
Next x
'close file
Close #1
how can i make EOF work? thanks