Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strHex = Hex$(16) 'strHex = "10"
[code]
and cint(&H10) will convert back
however
[code]
strHex = Hex$(16) 'strHex = "10"
debug.print cint(strhex) 'not desired result of 16 (prints 10)
strHex = "&H" & strHex 'Need to preend "&H"
debug.print cint(strhex) ' desired result of 16
[code]
Take Care
Matt
If at first you don't succeed, skydiving is not for you.