Can someone just help me refresh my mind?
How do you specify hex values in a Visual Basic 6 / VBScript Source?
It's not 0xABCD as it is in C++, that's what I can remember... It was something similar... But what?
Can someone just help me refresh my mind?
How do you specify hex values in a Visual Basic 6 / VBScript Source?
It's not 0xABCD as it is in C++, that's what I can remember... It was something similar... But what?
&H<hex-value>
if my memory serves my correctly.Like:
&HABCD
msgbox hex(255)
Try &HABCD, that's how it works for most BASIC languages.
VBScript
\VBA
\VB6
(and lower):VB (.NET Framework)
:Versions are usually backwards compatible syntax-wise, you cannot always use newer syntax in older versions.