Hex$ (integer)  

Definition:

Converts an integer value to a hexidecimal value.

Parameter Description:


integer = any valid integer or integer variable

Command Description:

Converts integer values into hexidecimal values. If you don't know what hex is, you don't need to know this command :)

Example:

intValue="64738"
Print "The hexidecimal value of "+intValue+" is: " + hex$(intValue)

Index