Opening another form when closing a form

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
 
A

Alex Dybenko

you can use Form A Close event to open Form B

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