is there any kind of function or formula for converting a decimal value do a hexidecimal value?
Printable View
is there any kind of function or formula for converting a decimal value do a hexidecimal value?
The HEX() function.
HTH :)VB Code:
Private Sub Command1_Click() Dim intVal As Integer intVal = 24568 MsgBox Hex(intVal) End Sub
VB Code:
MsgBox Hex(255)