| Syntax |
results = OCONV( string.expression, 'u3f' )
|
| Category |
BASIC
|
| Type |
User Exit
|
| Description |
converts an ASCII hex-format string to binary, and sends it to the printer.
|
| Options |
|
| See Also |
user exits, FlashBASIC
|
| Example |
stuff = "0D0A0000"
x = oconv(stuff,'u3f')
Sends the hex string "0D0A0000" to the printer (carriage return, linefeed, and 2 nulls for linefeed delay.)
|
| Warnings |
The ASCII hex characters have to be in matched pairs. if a character with a single digit value (less than x'10') is to be printed, make sure there is a leading zero.
|
| Compatibility |
D3 7.0 AP
|