Convert Decimal Number To Hexadecimal Number
Form Code
Private Sub
Form_Load()
'Replace the "15" below with the decimal number you want to convert
'to Hexadecimal number
MsgBox Hex(15)
End Sub
Go Back