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?
|
||
|
|
|
|
Try &HABCD, that's how it works for most BASIC languages. |
||
|
|
msgbox hex(255) |
||
|
|
Like: |
||
|
|
|
|
VBScript/VBA/VB6 (and lower):
VB (.NET Framework 2.0) and lower:
VB (.NET Framework 3.0/3.5):
All versions can use the same syntax as lower versions but not the other way around... |
||
|
|