Home > Available Help Files > PC-DMIS BASIC Language > Language Reference A – Z > Hex Function > Example - Hex Function
Current Help File: PC-DMIS Basic (View Core Help)
Example - Hex Function
Sub Main ()
Dim Msg As String, x%
x%=10
Msg=Str(x%) &" decimal is "
Msg=Msg & Hex(x%) & " in hex "
MsgBox Msg
End Sub