Hi All,
 
	Trying to convert a number to binary zeros and ones but I'm getting a result I don't understand and looks more like hex than binary.
 
	Here's my basic code:
 
$myNum = 11
$myNumBin = Binary($myNum)
MsgBox(0, "Binary result", $myNumBin)
	What I want is "1011", what I get is 0x0B000000.
 
	Thanks!