i made key board using many button and every button behind this code.
Button b = sender as Button; Search_Form.tb.Text += b.Text;but this is working for only one textbox.a genral keyboard i require by which a user could type in any textbox
Button b = sender as Button; Search_Form.tb.Text += b.Text;but this is working for only one textbox.Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaganathan BantheswaranPosted Oct 27, 2013, 4:45 AM
commonTextbox = someTextbox;
So that when the user presses the button on your keyboard, you will be doing like
commonTextbox.Text += b.Text;