Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TabStop is not working

We have a form and textboxes in it. All of control's tabindex are set correctly and TabStop = true. When some textbox is focused and when I press tab, focus is not set on next textbox.

Note : Controls are in the panel and its TabStop = true

like image 382
timu Avatar asked Jun 06 '11 15:06

timu


2 Answers

Set TabStop for the panel to false

Make sure that the tab indexes are like the following:

enter image description here

Remember that you have a nice tool to set the Tab indexes in Visual Studio:enter image description here

like image 116
Homam Avatar answered Sep 19 '22 16:09

Homam


My solution: Containers must have the tab numbers set correctly even though they are not stops. Finally working!

like image 33
Loren Pechtel Avatar answered Sep 17 '22 16:09

Loren Pechtel