I’ve searched but couldn’t find anything about.
I want to know the difference between:
Hex() and Hex$()
and
CInt() and Convert.ToInt32() -Using One or the other has changed the result of some values inside my application, and i want to know when use one or the other.
Thank you
Hex()returns a variant (of VarType String) andHex$()returns a true String.Source: http://forums.codeguru.com/showthread.php?18417-hex-hex
CInt()is deprecated.Int32.Parse()is the preferred method.Source: http://forums.asp.net/p/681608/681796.aspx