i created a simple keyboard in vb.net , the problem is i got 2 textboxes, but when i tried to use the keyboard that i've created in textbox1, i got the same result in textbox2[ in short what i type in textbox1 it also textbox2]
if textbox1.[dont know what to put] then
textbox1.text = (textbox1.text + "a")
else
textbox2.text = (textbox2.text + "a")
end if