Oxygen Basic
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Latest OxygenBasic.zip at GitHub
(Click on the Wizard)
Home
Help
Search
Login
Register
Oxygen Basic
»
Programming
»
Example Code
»
Data Processing
»
Ascii List
« previous
next »
Print
Pages: [
1
]
Author
Topic: Ascii List (Read 3246 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
Logged
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
.
Logged
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.
Logged
Print
Pages: [
1
]
« previous
next »
Oxygen Basic
»
Programming
»
Example Code
»
Data Processing
»
Ascii List