RE: Know where I can find Chr(*) definitions?

2000-07-11 Thread Philip Arnold - ASP
Thanks for everyone's help, didn't know I'd get such a response. I like playing with ascii characters for little pointers exclaimations and such. Just one word of warning if you're going to do this If people have different character sets on their Windoze (French, German etc.), or they're

RE: Know where I can find Chr(*) definitions?

2000-07-10 Thread Bert Dawson
TEXTAREA ROWS="20" CFOUTPUT CFLOOP INDEX="i" FROM="1" TO="255" #i# = #chr(i)# /CFLOOP /CFOUTPUT /TEXTAREA Bert -Original Message- From: GE [mailto:[EMAIL PROTECTED]] Sent: 07 July 2000 18:44 To: [EMAIL PROTECTED] Subject: Re: Know where I

RE: Know where I can find Chr(*) definitions?

2000-07-10 Thread Chris Evans
To: '[EMAIL PROTECTED]' Subject: RE: Know where I can find Chr(*) definitions? TEXTAREA ROWS="20" CFOUTPUT CFLOOP INDEX="i" FROM="1" TO="255" #i# = #chr(i)# /CFLOOP /CFOUTPUT /TEXTAREA Bert -Original Message- From: GE [mailto:[EMAIL PROTECTED

RE: Know where I can find Chr(*) definitions?

2000-07-10 Thread Bert Dawson
: RE: Know where I can find Chr(*) definitions? TEXTAREA ROWS="20" CFOUTPUT CFLOOP INDEX="i" FROM="1" TO="255" #i# = #chr(i)# /CFLOOP /CFOUTPUT /TEXTAREA Bert -Original Message- From: GE [mailto:[EMAIL PROTECTED]] Sent: 07 July 2000

Re: Know where I can find Chr(*) definitions?

2000-07-10 Thread Ric Smith
Thanks for everyone's help, didn't know I'd get such a response. I like playing with ascii characters for little pointers exclaimations and such. Ric Smith -- Archives:

Re: Know where I can find Chr(*) definitions?

2000-07-08 Thread Birgit Pauli-Haack
Hello Ric, CHR(*) Stuff = Ascii the decimals go with the CHR function 10 = line feed 13 = carriage return 65 = A 66 = B etc... more at: http://www.neurophys.wisc.edu/www/comp/docs/ascii.html Friday, July 07, 2000, 11:13:31 AM, you wrote: Anyone know of anywhere I can find the definition

Know where I can find Chr(*) definitions?

2000-07-07 Thread Ric Smith
Anyone know of anywhere I can find the definition for the Chr(*) stuff online? Only ones I know are Chr(10) and Chr(13). Just curious, thanks. Ric Smith -- Archives:

Re: Know where I can find Chr(*) definitions?

2000-07-07 Thread Vance_Duke
cc: Subject: Know where I can find Chr(*) definitions? 07/07/0

Re: Know where I can find Chr(*) definitions?

2000-07-07 Thread Brandon Whitaker
Anyone know of anywhere I can find the definition for the Chr(*) stuff online? Only ones I know are Chr(10) and Chr(13). http://www.jimprice.com/ascii-0-127.gif Brandon Whitaker [EMAIL PROTECTED] --- "It'll get used by the same people using Opera. People dressed in black wearing berets."

RE: Know where I can find Chr(*) definitions?

2000-07-07 Thread Brett Suwyn
http://www.acius.com/ACIDOC/V6U/V6U00057.HTM -Original Message- Anyone know of anywhere I can find the definition for the Chr(*) stuff online? Only ones I know are Chr(10) and Chr(13). -- Archives:

Re: Know where I can find Chr(*) definitions?

2000-07-07 Thread GE
Hello Ric, What you are looking for is an ASCII table. A quick search should find one for you - or you could look it up in any refernce manual you have on programming (should be one in one of them). To be sure you have found what you are looking for just compare the table values of 10 and 13

Re: Know where I can find Chr(*) definitions?

2000-07-07 Thread Eric Dawson
cfloop 1 to 255 cfset c = chr(x) cfoutputX/cfoutputbr /cfloop ??? From: "Ric Smith" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Know where I can find Chr(*) definitions? Date: Fri, 7 Jul 2000 11:13:31 -0400 Anyone know of anywhere I can find the

RE: Know where I can find Chr(*) definitions?

2000-07-07 Thread Larry Tiner
Search on the web for an ascii table. -Original Message- From: Ric Smith [mailto:[EMAIL PROTECTED]] Sent: Friday, July 07, 2000 11:14 AM To: [EMAIL PROTECTED] Subject: Know where I can find Chr(*) definitions? Anyone know of anywhere I can find the definition for the Chr(*) stuff

RE: Know where I can find Chr(*) definitions?

2000-07-07 Thread Chris Evans
These are ASCII values. YOu can find a full list at http://www.asciitable.com. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Ric Smith [mailto:[EMAIL PROTECTED]] Sent: Friday, July 07, 2000 11:14 AM To: [EMAIL PROTECTED] Subject: Know where I can find