Passing value from form to sub-form

J

JimP

How do I do this?

Specifically, when the form(s) open I want to set the value of an option
group on the sub-form.
 
M

Marshall Barton

JimP said:
How do I do this?

Specifically, when the form(s) open I want to set the value of an option
group on the sub-form.

Use the Load event instead of the Open event:

Me.subformcontrol.Form.optionframe = somevalue
 
Top