- Home
·
- Math/Dates
·
- Converts a Decimal Base number into different Bases. Also has extended Ascii characters.
Converts a Decimal Base number into different Bases. Also has extended Ascii characters.
Converts a Decimal Base number into different Bases. Also has extended Ascii characters.
Rate Converts a Decimal Base number into different Bases. Also has extended Ascii characters.
(2(2 Vote))
label2.Caption = "Octal:"
label3.Caption = "Hex:"
label4.Caption = "ASCII:"
If text1.Text < 1000000000# Then text3.Text = Oct$(text1.Text)
If text1.Text < 1000000000# Then text4.Text = Hex$(text1.Text)
If text1.Text > 255 Or text1.Text < 0 Then text5.Text = "NA"
If text1.Text < 256 And text1.Text > 0 Then text5.Text = Chr$(text1.Text)
Converts a Decimal Base number into different Bases. Also has extended Ascii characters. Comments
No comments yet — be the first to post one!
Post a Comment