Home page Home page Home page Home page
Pixel
Pixel Header R1 C1 Pixel
Pixel Header R2 C1 Pixel
Pixel Header R3 C1 Pixel
Pixel

@ATTACK - @PrintMode

Used to tell the system whether to print the graphic representation of ASCII characters under 32 (@PRINTMODE = 0) or to treat them as control characters (@PRINTMODE = 1). Warning!! The PRINT command automatically generates a CRLF combination, hence the following code


0001       @PRINTMODE = 0
0002       PRINT CHAR(13)

Would actually show the graphic characters for a CHAR(13) a CHAR(13) and a CHAR(10). To avoid this the code above should be modded to read


0001       @PRINTMODE = 0
0002       PRINT CHAR(13) :
0003       @PRINTMODE = 1

Can be amended.

(Volume 2, Issue 5, Page 10)
Pixel
Pixel Footer R1 C1 Pixel
Pixel
Pixel
Pixel