Command Button Open form / Close form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

To all --
I've built a database housing a lot of information needed to credential
physicians for various purposes. It's built off a paper form that they fill
out -- about 10 pages long. To get info into the database, I've built
individual Access forms that correspond to the entries on each of the ten
paper pages.

I've figured out how to create a command button to open the form for 'next
page' for data entry, but I'd also like it to close the existing form. So if
I've finished entering the information from page 1, I'd like the button to
open the page 2 form and then close the page 1 form.

How can I do that?

Thanks in advance.
 
Close Page1 in the Load event of Page2

Docmd.Close acForm, "Page1", acSaveNo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top