Hex Function
与えられた数値を 16 進数にした文字列を返します。
構文:
Hex (Number)
戻り値:
文字列
パラメーター:
Number: 16 進数にする数値を示す表式。
例:
Sub ExampleHex
' uses BasicFormulas in LibreOffice Calc
Dim a2, b2, c2 As String
a2 = "&H3E8"
b2 = Hex2Lng(a2)
MsgBox b2
c2 = Lng2Hex(b2)
MsgBox c2
End Sub
Function Hex2Lng(sHex As String) As Long
' Returns a 32 bits signed integer number from an 8 digits hexadecimal value.
Hex2Lng = clng( sHex )
End Function
Function Lng2Hex(iLong As Long) As String
' Calculates the 8 digits hexadecimal value out of a 32 bits signed integer number.
Lng2Hex = "&H" & Hex( iLong )
End Function