Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WinForms TabOrder tool: Broken or just confusing?

I have a form with a bunch of panels, and some panels inside groupboxes. When using the TabOrder tool in Vs2005, the controls outside of containers are given integers (0), the controls inside panels are given decimals (72.0), and the controls within panels within groupboxes are given three-part values (73.73.0). Unfortunately the resulting tab order has nothing to do with the order I clicked my controls.

Does this tool simply not support nested containers? Am I doing something wrong? Perhaps holding Shift- or Ctrl- when I click (I've tried these with no success)?

Am I going to be forced to manually type in three-part tab orders for all my controls? That would be a bummer.

like image 338
bwerks Avatar asked Jan 22 '23 21:01

bwerks


2 Answers

The tab order tool is not designed for you to enter values manually; it is designed for you to click on controls in the order that you'd like them to progress as the user tabs.

The numbers are not decimals; they represent the tab order of the control within its parent container. For example, if you have a Form with a Panel named panel1 and a Button inside of it named button1, then button1 would display a number like:

X.Y
  • X is the tab order of panel1
  • Y is the tab order of button1 within panel1.

I will acknowledge that the designer isn't as intuitive (or transparent) as it probably should be, but it does work.

like image 147
Adam Robinson Avatar answered Jan 24 '23 11:01

Adam Robinson


I had the same problem with textboxes and buttons within group box in VS2010. TabOrder tool was just useless: Tab orders were broken no matter how I re-ordered the tab stops. In order to make the correct tab order I had to re-order of how controls are added to the group box in form designer initialization code:

this.groupBox2.Controls.Add(this.startTimeTextBox);
this.groupBox2.Controls.Add(this.endTimeTextBox);
this.groupBox2.Controls.Add(this.exitButton);

This way tab order would be startTimeTextBox -> endTimeTextBox -> exitButton and so on.

like image 32
Alex Avatar answered Jan 24 '23 12:01

Alex