Requery main form from subform?

  • Thread starter Thread starter Harmannus
  • Start date Start date
H

Harmannus

Hallo,

How can i requery a unbound listbox on a mainform from within a subform on
that mainform?

I now how to requery a subform from a mainform from the Form_Current():
Me.fsubform.Form!UnboundListboxOnMainForm.Requery

How do i reverse this process? So changes in the subform fields should be
visible in the onbound listbox on the main form (for wich i use a query with
fields on the subform)....

Tried various combinations but can't get it to work....

Thanx for any tips!

Regards,
Harmannus
 
Typing error ;-)
The below line should read:
Me.fsubform.Form!UnboundListboxOnSubForm.Requery.
 
Back
Top