hi guys

I have this problem:

MsgBox(&H33 Xor &H34) will show the correct answer = "7"

but i ned to use varibles in stead so made this

EAX = 34
ECX = 33
MsgBox(ECX Xor EAX)

but this shows the wrong answer "3"

How can i fix it? (i know it show "3" because it thinks it is decimal but as the first code shows i need it to xor in hex)

could someone plz help me?