I have a variable which is an hex string that I need to convert into a
long data type
Dim myHex
Dim myLong
myHex = "FF00FF"
myLong = 1655545
if myHex < myLong then blah blah
Since I am comparing the two value I need to convert myHex into a Long
data type.
Thank you for your help.