Reputation: 6545
How does one go about setting access form parent form property(property within the parent form) from the child form property?
Upvotes: 3
Views: 5748
Reputation: 91376
To refer to the parent in code from the child form code page:
Me.Parent.MyControl
Or
Forms!MainForm.MyControl
Upvotes: 5