In the PROMOTIC system it is better to use the Pm.StringFormat method.
number | (Long) Any valid numeric expression. |
---|
If number is | function returns |
---|---|
Null | Null |
Empty | Zero (0) |
Any other number | up to eight hexadecimal characters |
Hexadecimal numbers can be entered directly by preceding numbers in the proper range with &H. For example, &H10 represents decimal 16 in hexadecimal notation.
Dim sHex
sHex = Hex(5) 'Returns "5"
sHex = Hex(10) 'Returns "A"
sHex = Hex(459) 'Returns "1CB"