i am using an ini file which contain a hex value.
When i get that value, it is a string.
How can i convert a String back to Hex (using vb6).
any idea?
_____________________
BeGoodDoGood!
____________
soomrowaseem.
Printable View
i am using an ini file which contain a hex value.
When i get that value, it is a string.
How can i convert a String back to Hex (using vb6).
any idea?
_____________________
BeGoodDoGood!
____________
soomrowaseem.
Dim HexValue As String
Dim Value As Integer
HexValue = "1A4E"
Value = Val("&H" & HexValue)
thanks phil.