VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message

by MOLF52 (2 Submissions)
Category: Encryption
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Mon 6th October 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



'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

Download this snippet    Add to My Saved Code

Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message Comments

No comments have been posted about Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message. Why not be the first to post a comment about Conversion of ASCii Code to Heximal Code. The procedure is useful when you have to add Text Message.

Post your comment

Subject:
Message:
0/1000 characters