sub for parameter

  • Thread starter Thread starter knowzero
  • Start date Start date
K

knowzero

I have a form and a sub from. one of the fields in the sub form uses a
parameter. I want to use a value from the main form as the parameter in
the sub form. Can you help?
 
You can set the subreport's record source to something like
Forms!frmMain!txtMyControl

Some situations are appropriate for using Link Master/Child properties.

You can also use some event to update the Record Source property of the
subform.
 
Back
Top