BinQ()

Syntax

Result$ = BinQ(Value)
Description
Convert a quad numeric number into a string, in binary format. BinQ() can handle larger numbers than Bin().

Example :
  Debug BinQ(1024*1024*1024*1024) ; Will display "10000000000000000000000000000000000000000", Bin() can't handle such large numbers
Note: If leading zero are needed in the output string, use the RSet() command as follows:
  Debug RSet(BinQ(32),16,"0") ; Will display "0000000000100000"

Supported OS

Windows, Linux, MacOS X

<- Bin() - String Index - Chr() ->