I have app where I have multiple textboxes
and I would like to do when the user is focused in one textbox when he presses TAB button on keyboard
I would like to skip the focus into other textbox which I will set.
Is there any way to do that easily? I have 20 textboxes in this form and I need it to skip from textbox1 to textbox2 to textbox3....textbox20 when press the TAB key.
TabIndex
or setTabStop = false
on the controls you want to skip. – King King