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