Conditional Refresh

Dazzy

Registered User.
Local time
Today, 22:53
Joined
Jun 30, 2009
Messages
136
Hey All

I have two ways to enter work placements for students, I need to refresh a subform on one form while closing another.

The issue here is the form with the subform may not be open as mentioned above.

So is it possible on closing one form to refresh a subform only if it's parent form is currently open?

Thanks

Gary
 
I normally use the following to see if it is loaded.
Code:
If CurrentProject.AllForms("yourFormName").IsLoaded Then _
    MsgBox "The Form yourFormName is open !", vbInformation
 

Users who are viewing this thread

Back
Top Bottom