Changing focus with TAB but in differents sections

  • Thread starter Thread starter Jose Nuñez
  • Start date Start date
J

Jose Nuñez

With the TAB key we can change the focus, going from one control to other
control in the same section.

Is it possible to move the focus to a control in another section with the
TAB key?

Thanks.
Regards.
José Nuñez
Montevideo
 
One way to do this is to add another control to the first section that is last
in tab order in the first section.
Add code to its GotFocus event that sets the focus to the first control in the
second section.

I usually use a small transparent button with no caption, but others use a text
box control that has its size set to 0 height and 0 width.
 
Back
Top