Open & Close Form

lawfour

New Member
Joined
Jun 26, 2003
Messages
2
Hi I am working on a database and I was wondering if this is possible:

I created 2 forms each with buttons opening forms 1 & 2, is it possible to click on the open button in form 1, to open form 2 and at the same time closing form 1 using the same open button in form 1.

Pressing the same button to do two tasks, open and close.

Thanks
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Welcome to the board. Not sure if I understand what you're saying. If you want to open form 2 from form 1, and then close form 1, then yes, you can try something like this:
Code:
Sub cmdOpenClose_Click()
    Docmd.OpenForm "frmTwo"
    Docmd.Close acForm, "frmOne"
End Sub
HTH,

Russell
 
Upvote 0

Forum statistics

Threads
1,221,545
Messages
6,160,447
Members
451,647
Latest member
Tdeulkar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top