i used a code to decode a ASCII code:
when i type 97 in textbox2, textbox1 show correct answer that is 'a'.
But when i type 9797, is there any possible ways to get 'aa' in textbox1?
Code:
textbox1.text=chr(textbox2.text)
But when i type 9797, is there any possible ways to get 'aa' in textbox1?
Comment