Name
HexStr -- convert value to a hex string (V1.5)
Synopsis
hex$ = HexStr(val)
Function
This function converts the value specified by val into hexadecimal digits and returns it as a string. The returned string will be prefixed with a dollar sign ($) and all alphabetical hexadecimal digits will be in upper case.

Inputs
val
value to convert
Results
hex$
hexadecimal representation of val
Example
a$ = HexStr(255)
This will return the string "$FF".

Show TOC