Displaying the contents of a parent control on a child form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to? I have three values on the parent form I want to put in the child
form that opens (synchonized) so I can see the info -- it helps create the
context for the info in the child form. Thanks . . .
 
MountainTop said:
How to? I have three values on the parent form I want to put in the child
form that opens (synchonized) so I can see the info -- it helps create the
context for the info in the child form.


If the parent form is always open when the child form is
displayed, then just set the child form control's
ControlSource to this type of expression:

=Forms![the mainform]![the related control]
 
Back
Top