Do Not Want To Tab to a control

P

PiB311

Thanks for any help concerning the problem below:

I have a form that contains a text field to hold a login id for the users
computer in a data entry database. My issue is that i do not want the user
to be able to tab to the control, since the field is locked down and cannot
be written to anyway.

The form going to have many users, and all controls on the form are unbound.

Again, thanks for any help.
 
F

fredg

Thanks for any help concerning the problem below:

I have a form that contains a text field to hold a login id for the users
computer in a data entry database. My issue is that i do not want the user
to be able to tab to the control, since the field is locked down and cannot
be written to anyway.

The form going to have many users, and all controls on the form are unbound.

Again, thanks for any help.

You can...
1) Set that control's Tab Stop property to No (it's on the property
sheet Other tab). User can still click into the control.
or...
2) Set that control's Enabled property to No AND it's Locked property
to Yes. User cannot tab or click into the control.
 
Top