Oct 7, 2005 #1 Goot Programmer Joined Aug 4, 2005 Messages 86 Location US I want to close a form that is open. This works when I use a macro, but I dont want to use a macro. DoCmd.RunMacro "macCloseIssuesForm" How can I use the DoCmd.RunCommand what is the syntax? Thanks
I want to close a form that is open. This works when I use a macro, but I dont want to use a macro. DoCmd.RunMacro "macCloseIssuesForm" How can I use the DoCmd.RunCommand what is the syntax? Thanks
Oct 7, 2005 #2 Ammodog Technical User Joined Dec 13, 2002 Messages 97 Location US DoCmd.close Christopher Abney There is no limit to the good you can do if you dont care who gets the credit Upvote 0 Downvote
DoCmd.close Christopher Abney There is no limit to the good you can do if you dont care who gets the credit
Oct 7, 2005 Thread starter #3 Goot Programmer Joined Aug 4, 2005 Messages 86 Location US yep... I got it. DoCmd.Close acForm, "Issues", acSaveNo Upvote 0 Downvote