Making subform read only

J

John J.

I have a subform that is used in a main control form, where the controller
is allowed to make changes. Now I want to add that same subform to another
main form which is accessible to all users. In that form, users should only
be allowed to view this subform's data. Is there some easy way to achieve
this? Btw: the subform is not linked to the main form's data.
Thank you,
John
 
K

Ken Sheridan

Simply set the Enabled property of the subform control in the second parent
form to False (No).

Ken Sheridan
Stafford, England
 
J

John J.

Thanks! An elegant solution.

Ken Sheridan said:
Simply set the Enabled property of the subform control in the second
parent
form to False (No).

Ken Sheridan
Stafford, England
 
Top