View Full Version : Activating a Form


Jonathan Abbott
05-10-2002, 04:03 AM
Hi,

Wonder if anyone can help. I have a subform within a form that I have disabled as the form opens. Can anyone tell me how to activate the subform after an event such as a mouse click.

Thanks
JA
http://www.access-programmers.co.uk/ubb/smile.gif

RichMorrison
05-10-2002, 12:02 PM
Me![ControlNameOfSubform].Enabled=True
should do it.

Remember, you refer to the control in the main form that contains the subform, not the name of the subform itself.

HTH,
RichM

Jonathan Abbott
05-13-2002, 01:08 AM
Thanks Rich that seems to have done the trick.

JA