Kobojunkie
Kobojunkie

Reputation: 6545

MS Access Set Parent Form Property from Child Property

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

Answers (1)

Fionnuala
Fionnuala

Reputation: 91376

To refer to the parent in code from the child form code page:

Me.Parent.MyControl

Or

Forms!MainForm.MyControl

Upvotes: 5

Related Questions