01-21-2008, 04:47 PM
It is the same value, but 0x is in hexadecimal form. By default out shows decimal form. To out an integer number in hexadecimal form, use this:
out "0x%X" _winver
To compare, no conversion is required.
if(_winver=0x501)
is the same as
if(_winver=1281)
out "0x%X" _winver
To compare, no conversion is required.
if(_winver=0x501)
is the same as
if(_winver=1281)
