Let's say that I have the string "A3C0", and I want to store the binary value of it in a Boolean array.
After the conversion (from string to binary) the result should be = 1010001111000000
Then I want to store it in this array,
dim bits_array(15) as Boolean
at the end:
bits_array(0)=0
bits_array(1)=0
.
.
.
.
bits_array(15)=1
How can I do this?