Delete tabs

C

Cruisinid

I have a form set up. The tabs are set up for the fields that I want
completed, in the order I want them to appear. The problem is that there are
other labels and stuff in the tab list that I don't want the cursor to tab
to... How to delete them from the tab list?

Cheers,
Dawn
 
R

ruralguy via AccessMonster.com

Controls in the Tab List have a "TabStop" property on the "Other" tab of
their property sheet. If you set it to NO then it will no longer be in the
Tab Order even though the name will probably still be in the Tab List..
 
D

Dirk Goldgar

Cruisinid said:
I have a form set up. The tabs are set up for the fields that I want
completed, in the order I want them to appear. The problem is that there
are
other labels and stuff in the tab list that I don't want the cursor to tab
to... How to delete them from the tab list?


The cursor will never tab to a label, because a label can't receive the
focus, so they're no problem. Check the actual passage of the focus by
opening the form in form view and tabbing through the controls. If there's
one that receives the focus that you don't want to, go into design view,
open the property sheet for that control, go to the Other tab of the
property sheet, and set the Tab Stop property to No.
 
Top