Posts Tagged ‘Convert to Hex’

How to convert string to Hex
  1. Function HexToDec(ByVal value As String) As Long
  2.     ' we just need a call to the Convert.ToInt64 static method
  3.     Return Convert.ToInt64(value, 16)
  4. End Function

,

No Comments



SetPageWidth