Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== @ATTACK - @PrintMode===== ^Published By^Date^Version^Knowledge Level^Keywords^ |Sprezzatura Ltd|01 OCT 1990|2.0+|EXPERT|@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 <code> @PRINTMODE = 0 PRINT CHAR(13) </code> 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 <code> @PRINTMODE = 0 PRINT CHAR(13) : @PRINTMODE = 1 </code> Can be amended. (Volume 2, Issue 5, Page 10) tips/revmedia/v2i5a10.txt Last modified: 2024/06/19 20:20by 127.0.0.1