Pop Up forms

  • Thread starter Thread starter Amy
  • Start date Start date
A

Amy

I know I can set a database to have a form pop up. Is
there a way to get one form to pop up, then another, then
another, etc. until a set of forms are completed?

Thanks,
Amy
 
I think so. You need to insert

DoCmd.OpenForm "NextForm"

into Close events of the preceding forms or button click procedures for
the buttons you use to finish this form and go to the next.
Pavel
 
Hi Amy,

My name is Dennis Schmidt. Thank you for using the Microsoft Newsgroups.

To get a series of forms to open following each other, use the Form's
OnClose property with code or a macro that opens the next form

Following code would open a form, ready to add a new record. The OpenForm
function has other arguments to change the way the mode the form opens
(open to a specific record, open as dialog, open in edit mode, etc) See
the help file for additional information.

DoCmd.OpenForm (MyForm,acNormal,,,acFormAdd,)

I hope this helps! If you have additional questions on this topic, please
reply to this posting.

Need quick answers to questions like these? The Microsoft Knowledge Base
provides a wealth of information that you can use to troubleshoot a problem
or answer a question! It's located at
http://support.microsoft.com/support/c.asp?M=F>.

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2001 Microsoft Corporation. All rights
reserved.

Regards,
Dennis Schmidt
Microsoft Support
 
Back
Top