I have an Access 2007 database with multiple forms, so I created a menu form. It calls the sub-forms correctly. But, when I want to exit the sub-form, I want control passed back to the menu. What is the command to do that? I have tried "DoCmd.Close" and "DoCmd.Close acform, Me.Name", but both completely close the DB, not just the form. If that is the right command, what parms do I use to close JUST the current form?
Private Sub Exit_Click()
DoCmd.Close acForm, Me.Name
End Sub