I have never used a switchboard and have no clue how they work. I've been asked to do some modifications to an existing database. I've done just about everything needed. There are some instances when some windows open and you can still see some or all of the switchboard, which I think is sloppy. I want to close the SB when opening a form and then after all the steps of the programing task are completed I will reopen the SB.
But 1st I have to close it.
It seems like a simple task but...
When a form opens from the SB I've tried the following:
DoCmd.CloseForm "Switchboard"
DoCmd.Close.Form "Switchboard"
I have this code for closing a form or finishing printing a report:
Private Sub Whateveritis_Click()
DoCmd.Close
DoCmd.OpenForm "Switchboard"
End Sub