closing multiple forms

  • Thread starter Thread starter MC
  • Start date Start date
M

MC

I did a search and couldn't find an answer, so I apologize
if this was mentioned before.

I have several forms which the user clicks a button to
jump back and forth between the forms to enter data.

At the bottom of the screen on the task bar, it indicates
that there is "dozens" of the forms open. I would like to
avoid this. I know that I could probably make a macro
(attached to the button) to "close previous form, open
next form."

Is there an easier way to click a button, to close the
form and open another and so on, and so on?

Thanks
 
Try this first. Go to Tools > Options and uncheck the box called "Window In
Taskbar"
 
I agree, however, doesn't each computer get to set this
setting individually? So, this will fix it on one
computer, but not all.
 
I would add the code to the Open event of the button pushed to open the
form. Something like this...


Docmd.Openform "frmNew"
Docmd.Close
 
Back
Top