Author Topic: Ascii List  (Read 3247 times)

0 Members and 1 Guest are viewing this topic.

Charles Pegge

  • Guest
Ascii List
« 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


JRS

  • Guest
Re: Ascii List
« Reply #1 on: March 28, 2013, 04:33:54 PM »
FYI - If you ever need a quick ASCII chart reference, I have a sticky post version HERE.

kryton9

  • Guest
Re: Ascii List
« Reply #2 on: June 26, 2013, 01:25:35 PM »
Nice and handy guys, thanks for the code and the link.