Opening another form when closing a form

  • Thread starter Thread starter HighA
  • Start date Start date
H

HighA

Hi
I would like to form B after I check a yes/no box and close form A. Any
ideas how I do this?
John
 
you can use Form A Close event to open Form B

if me.MyCheckBox=true then
docmd.openform "formB"
end if
 

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