Make the form refresh itself?

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

How can I make the main form , lets call it Form1 refresh its data after
Form2, a sub-forms data has changed?
 
On Form2 create a small piece of code in the AfterUpdate event:

forms("Form1").refresh

You could also syncronize 2 forms with a macro, check out the access help
file for a detailed explanation
 
Back
Top