For the purposes of PROMOTIC system, it is more usefull to use the method: Pm.StringFormat.
s = Hex(number)
number | (Long) Any valid numeric expression. |
---|
If number is | function returns |
---|---|
Null | Null |
Empty | Zero (0) |
Any other number | up to eight hexadecimal characters |
You can represent hexadecimal numbers 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"