Oxygen Basic
Programming => Example Code => Data Processing => Topic started by: Charles Pegge on March 28, 2013, 04:19:44 PM
-
'Create Ascii List
pr="ASCII:" chr(13,10)
for i=1 to 255
pr+=hex(i,2) chr(9) i chr(9) chr(i) chr(13,10)
next
putfile "ascii.txt", pr
-
FYI - If you ever need a quick ASCII chart reference, I have a sticky post version HERE (http://www.allbasic.info/forum/index.php?topic=49.0).
-
Nice and handy guys, thanks for the code and the link.