Form Read Only except one field "edit"

  • Thread starter Thread starter learning_codes
  • Start date Start date
L

learning_codes

Hi....

I am learning about read only. I set read only but except one
field
that need to be edit. I am not going to figure it all night long.
Please help me if there is a way to make "edit" one field and other 7
fields should be read only on the form.


I would appreciate your help.
Thanks
 
Hi....

I am learning about read only. I set read only but except one
field
that need to be edit. I am not going to figure it all night long.
Please help me if there is a way to make "edit" one field and other 7
fields should be read only on the form.


I would appreciate your help.
Thanks

Instead of setting the whole form to read-only, set the properties

Enabled = False
Locked = True

to all the fields that you don't want to be changed by the user.

HTH
Matthias Kläy
 
Back
Top