PERFORM CHECKLIST FOR FONTS
FOR C=1 TO CHECKLIST QUANTITY()
PRINT C;". ";CHECKLIST STRING$(C)
If C=int(C/20)*20 Then wait key : cls
NEXT C
This is a sample of what I got.
See the nothing there? I couldn't open and write to a file!!!
So the user manual is a "guessing game" as this
WRITE FILE 1, C,". ",CHECKLIST STRING$(C)
doesn't work, and this
WRITE FILE 1, C;". ";CHECKLIST STRING$(C)
doesn't work either. Or have I got it all wrong and I have to write a separate line for EVERY variable I want entered into a file?
I resorted to
WRITE FILE 1, C
WRITE FILE 1, ". "
WRITE FILE 1, CHECKLIST STRING$(C)
Then I found out that I had to turn ". " into a variable first.
period$=". "
WRITE FILE 1, C
WRITE FILE 1, period$
WRITE FILE 1, CHECKLIST STRING$(C)
But that didn't work, line 3 that is, so I took it out and this doesn't work either
WRITE FILE 1, C
WRITE FILE 1, CHECKLIST STRING$(C)
The second line doesn't work.
a$=CHECKLIST STRING$(C)
WRITE FILE 1, C
WRITE FILE 1, A$
WHY doesn't the last line work????
None of the above code would compile.
BASIC is very hard to use.
If all the "1"s are in the right place, it'll work like a charm.