Tab Indexing issue

240 Views Asked by At

Could please anyone help me to get Tab Index working on my win form.

I have tried all the possibilities (Manual indexing and also through View > Tab Order) but no difference. I have around 35 controls on my form including Text boxes, Drop down boxes and Date time pickers.

It only work when I tab from a drop down box, it moves to the next text box but nothing else happening afterwards.

Though people have posted so many answers to the similar question but I haven't come across to one which explain how to get it work at first place. Mostly people are asking that either their tab index is partially working partially or in doing it in a strange order.

Anyone's help will really be appreciated.

Kind Regards

1

There are 1 best solutions below

0
On

Each control on form which should have Tabbing enabled must be filled with this property values:

TabStop = true; 
TabIndex = number; //order of indexes

Otherwise you should check your tab stops by choosing show Tab Order on designer by choosing - MS Visual Studio => Edit => Tab Order. After this you can click on each component on form in order you want Tabbing in final application.