Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating Sub Forms

Status
Not open for further replies.

ajolson1964

Programmer
Mar 25, 2008
31
US
I have a form that has 2 sub forms within. I also am using a Combo box to select data then have that data updated to field located within the form that the combo box is located.. What I would like to do is have the combo box update (with the same data) a field in the sub form. Is that possible? Any help would be appreciated. I am using Office 07
 
Yes, controls in both directions are readily accessible.

To access controls on a subform look at this example...

Me.subformcontrol.form.mycontrolname

Gary
gwinn7
 
To assign a value...

Me.subformcontrol.form.mycontrolname = Me.combobox

Gary
gwinn7
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top