...i know you can change a number to hex by doing
A = Hex(99)
but how do you change hex to a number with a command??!?!?
Printable View
...i know you can change a number to hex by doing
A = Hex(99)
but how do you change hex to a number with a command??!?!?
Hello invitro,
I didn't know but after a couple of tryouts:
It was not possible to find a command, but this helps you!
P = Hex(99) 'gives a string
N = Val("&H" + P)
MsgBox N
Good luck
michelle.
Thanks alot!!! This helps alot!
U can just turn this into a function and it works perfectly!
:)
die traying?