Making subform read only

  • Thread starter Thread starter John J.
  • Start date Start date
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
 
Simply set the Enabled property of the subform control in the second parent
form to False (No).

Ken Sheridan
Stafford, England
 
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
 
Back
Top