Hello,
I´ve opened a file in Random - Mode:
dim a as shared string *40
Open "R", 1, "test", sizeof(a)
then I wanted to append a record to an empty file:
put 1,lof(1),a$
I've got an error '63 bad record number' but lof(1) is 0
and 0 is allowed. I've no option base.. command used.
Then I've tested:
seek 1,lof(1) --- the same Error ??? why ???
Thanks for help. ( In Binäry mode this is no problem )
Regards
Matthias Kuhn
------------------
I´ve opened a file in Random - Mode:
dim a as shared string *40
Open "R", 1, "test", sizeof(a)
then I wanted to append a record to an empty file:
put 1,lof(1),a$
I've got an error '63 bad record number' but lof(1) is 0
and 0 is allowed. I've no option base.. command used.
Then I've tested:
seek 1,lof(1) --- the same Error ??? why ???
Thanks for help. ( In Binäry mode this is no problem )
Regards
Matthias Kuhn
------------------
Comment