Posted: 05:58pm 08 Jan 2023 |
|
|
|
@Peter
I think there is a bug with the flashdisk the following code always leads to an error with a value di<>1:
Open "test.dat" For random As #1 ' di=1 Seek #1, di l$=Input$(4, #1) Print l$; ' di=4 Seek #1, di l$=Input$(4, #1) Print l$; ' Close #1
[3] Seek #1, di Error : A hard error occurred in the low level disk I/O layer >
[8] Seek #1,di Error : Could not find the file >
|