Is there a way to disallow edit on the form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to disallow edit on the form but allow edit on one of the fields
like a combobox ???
 
nach said:
Is there a way to disallow edit on the form but allow edit on one of
the fields like a combobox ???

If the combo box is bound, then the only way I know to do this is to set
the form's AllowEdits property to Yes, but set the Locked property to No
for all controls except that one combo box. If the combo box is
unbound, then that approach would still work, or you could make the
form's recordsource nonupdatable; say, by adding the DISTINCT keyword
to the query.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top