Convert hex string to binary memory.
OutputVar := HexToBin(Bin, Hex)Function Example: address := HexToBin(bin,"101010")
The name of the variable in which to store address of bin variable.
Name of variable in which to store binary data.
Hex string to convert.
VarSetCapacity(v,8,0)
NumPut(0x10101010,&v,"INT64")
hex:=BinToHex(&v,8)
MsgBox % hex
HexToBin(bin,hex)
MsgBox % format("0x{1:X}",NumGet(&bin,"INT64"))