Hi forum
I have problem with error number. When I run this program:
'------------------
#COMPILE EXE
FUNCTION PBMAIN() AS LONG
DIM n AS LONG
DIM e AS LONG
n = FREEFILE
OPEN "A:\TEST.TXT" FOR OUTPUT AS #n
DO
PRINT #n, "a";
e = ERRCLEAR
LOOP UNTIL e
MSGBOX STR$(e)
END FUNCTION
'------------------
then I get code 75 (not 61 - Disk full). Why?
Regards
Cezary Zielinski
I have problem with error number. When I run this program:
'------------------
#COMPILE EXE
FUNCTION PBMAIN() AS LONG
DIM n AS LONG
DIM e AS LONG
n = FREEFILE
OPEN "A:\TEST.TXT" FOR OUTPUT AS #n
DO
PRINT #n, "a";
e = ERRCLEAR
LOOP UNTIL e
MSGBOX STR$(e)
END FUNCTION
'------------------
then I get code 75 (not 61 - Disk full). Why?
Regards
Cezary Zielinski
Comment