set focus on single control

  • Thread starter Thread starter TeeSee
  • Start date Start date
T

TeeSee

I have a form with three controls used for updating specific data on
only one of the text box controls. How can I set it up so that I can
skip thru the recordset with focus only on the singular text box that
I want to update?

Thanks for any suggestions
 
TeeSee said:
I have a form with three controls used for updating specific data on
only one of the text box controls. How can I set it up so that I can
skip thru the recordset with focus only on the singular text box that
I want to update?

Thanks for any suggestions

Select all the form's controls except the updateable one and set the
following properties in the property sheet:

Locked = Yes
Enabled = No
 
Back
Top