i'm make a textbox print another char with keydown event using this:
on keydown event:
i need know how i can remove the key that i press of end result see textbox show:
aBaBaB
but i only need B result on textbox
on keydown event:
HTML Code:
if e.keycode = keys.A then
My.Computer.Keyboard.SendKeys("B")
end if
aBaBaB
but i only need B result on textbox