Passing value from form to sub-form

  • Thread starter Thread starter JimP
  • Start date Start date
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.
 
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
 
Back
Top