im developing a keyboard to a touchscreen display, i need to know how can i program a generic code that everytime any textbox is focused, the form(keyboard) opens. I know i could put in the event focus of every single textbox, but i want to do a generic code. Im working with WCE8 and .net compact framework 3.5.
How can i open a form everytime a textbox is focused?
73 views Asked by Rafael Ferronato At
2
You can find all the control type textbox in your control and gives them the click event with a foreach, for instance
in this way, every time you focused any textbox,it will open a second form, I hope this can help you.