Refreshing subform on change in parent

J

Jonathan Blitz

I have a case where an addition of a row in a parent form fires an event
that inserts data in the subform table.
The subform is shown as empty.

How can I refresh the display of the subform?

--
Jonathan Blitz
AnyKey Limited
Israel

"When things seem bad
Don't worry and shout
Just count up the times
Things have worked themselves out."
 
G

Guest

Here is one way to do it:

'Requery the subform
[frmSampleSubform_Mat].Form![SampleID].Requery

Becky
 
Top