Using MS 2003, I have a form with a subform. Based on checking a field on the
master form, I would like the subform to become inaccessible (ie. grayed
out), but I don't want the subform to become invisible. Is there a way to
make the entire subform inaccessible, but visible without making each
separate field in the subform inaccessible individually?
Try
Me.[SubFromControlName].Enabled = False
Or
Me.[SubFromControlName].Locked = True

Signature
If I answered your question, please mark it as an answer. That way, it will
stay saved for a longer time, so other can benifit from it.
Good luck
> Using MS 2003, I have a form with a subform. Based on checking a field on the
> master form, I would like the subform to become inaccessible (ie. grayed
> out), but I don't want the subform to become invisible. Is there a way to
> make the entire subform inaccessible, but visible without making each
> separate field in the subform inaccessible individually?