M monte New Member Feb 25, 2020 #1 Very good for everyone, I am new to B4A and I would like to know if there is any command to make conversations of decimal a => (binary, hexadecimal, octadecimal) and vice versa. I appreciate that you can help me
Very good for everyone, I am new to B4A and I would like to know if there is any command to make conversations of decimal a => (binary, hexadecimal, octadecimal) and vice versa. I appreciate that you can help me
Erel B4X founder Staff member Licensed User Longtime User Feb 26, 2020 #2 You can use Bit.ParseInt to convert to decimal. Bit.ToOctalString / ToHexString / ToBinaryString to convert to these bases. Upvote 0
You can use Bit.ParseInt to convert to decimal. Bit.ToOctalString / ToHexString / ToBinaryString to convert to these bases.
M monte New Member Feb 26, 2020 #3 thank you very much, excuse me would be so amble to give me an example Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 26, 2020 #4 B4X: Log(Bit.ToBinaryString(30)) Upvote 0