vote up 0 vote down star

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?

flag

4 Answers

vote up 10 vote down check

Try &HABCD, that's how it works for most BASIC languages.

link|flag
Great, thanks. That's it! – BlaM Jan 9 '09 at 16:12
No problem. I always knew using PowerBasic for DOS would be useful for something ;) – schnaader Jan 9 '09 at 16:14
vote up 0 vote down

msgbox hex(255)

link|flag
No, the other way around. For example if I want to assign a hex-value to a variable, not to encode an integer to a hex string. – BlaM Jan 9 '09 at 16:11
your correct, my mistake – Fredou Jan 9 '09 at 16:13
vote up 1 vote down

&H<hex-value> if my memory serves my correctly.

Like: &HABCD

link|flag
vote up 1 vote down

VBScript/VBA/VB6 (and lower):

Dim MyValue As Integer
MyValue = &h1234

VB (.NET Framework 2.0) and lower:

Dim MyValue As Integer = &h1234

VB (.NET Framework 3.0/3.5):

Dim MyValue = &h1234

All versions can use the same syntax as lower versions but not the other way around...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.