Form re-activeate

  • Thread starter Thread starter hlam
  • Start date Start date
H

hlam

I have 2 forms, Form A to call up Form B. Form A will be minimized on open
up of Form B.

I want Form A to restore on closing of Form B. I have a code to restore Form
A on activate event, the problem is how can Form A gets activated?
 
Hlam,

Why don't you restore Form A via the Close event of Form B, or else on
the same Form B event that you are already using to close Form B?
 
Thanks for your reply. I use the following code to make it work finally.

DoCmd.SelectObject acForm, "FormA", False
 
Back
Top