- Home
·
- Encryption
·
- Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message
Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message
Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message in Assembly language using MS-DOS Debug
Rate Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message
(2(2 Vote))
'Insert one CommandButton and rename that as CMDHeximal
'Add the Code to the Form, Insert Text to TBDecimal
'Press CMDHeximal
'TBHeximal now will have in heximal character the ASCii Code of TBDecimal
Private Sub CMDHeximal_Click()
Lenght = Len(TBDecimal)
Do
Looping = Looping + 1
TempDecimal = Mid$(TBDecimal, Looping, 1)
ASCii = Asc(TempDecimal)
Heximal = Hex$(ASCii)
TBHeximal = TBHeximal + Heximal
Loop Until Looping = Lenght
End Sub
Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message Comments
No comments yet — be the first to post one!
Post a Comment