VB Helper: HowTo: Convert a character to and from its ASCII code
Use Asc to get a character's ASCII code. Use Chr to convert an ASCII code into a character. Thanks to Adan Rivas Private Sub Command2_Click() 'Code the character Label3 = Asc(Text1) 'clears text box Text1 = "" ' adds the coded character to textbox ...
www.vb-helper.com |