I’m creating a program using C# and I have lots of textbox and buttons.
The thing is when I type something into textbox and type ‘tap’ button, it goes to weird area.
I mean, after I finish typing in the first textbox, I want to move to the second textbox using ‘tap’ button but it goes to third textbox (because I made third one before second one)
Is there any way to fix this easily? or should I make them from scratch?
Thanks
In the designer you should see a “TabIndex” property, use this as a sequence to specifiy the tab order: when you press ‘Tab’ the focus pass to the item having the index immediately grether than the current.