Hi
i have this source to get ANSI character code for input character
so my aim is how can i modify this code to show on the inputBox the hole string for exemple when i typed on the inputbox "vbscript" it show me like this in one line "chr(118)&chr(98)&chr(115)&chr(99)&chr(105)&chr(112)&chr(116)"
Thank you !
i have this source to get ANSI character code for input character
so my aim is how can i modify this code to show on the inputBox the hole string for exemple when i typed on the inputbox "vbscript" it show me like this in one line "chr(118)&chr(98)&chr(115)&chr(99)&chr(105)&chr(112)&chr(116)"
Thank you !
Code:
i = InputBox("Enter character to get ANSI character code.")
If i <> "" Then
Inputbox "ANSI Code for " & i & " is:",,"Chr(" & Asc(i) & ")"
End If