At 10:01 -0400 6/3/04, [EMAIL PROTECTED] wrote: >Folks, >How does one write a hexadecimal string as ASCII characters on to a file?
"format into string" with a %X format (the create format string pop up will help you). other possiblities are %x, %0X, and %0x depending if you want leading radix indicators and your string in upper or lower case. Then write string to a file. Scott
