Oct 7, 2003 #1 jonra Programmer Jul 20, 2003 42 SG how to exit microsoft access totally aft clickin a button? thanks..
Oct 7, 2003 #2 SQLBI IS-IT--Management Jul 25, 2003 988 GB jonra, To exit access on the Click event of a command button, use; Code: Private Sub CommandButton_Click() DoCmd.Quit End Sub hope this helps. Leigh Moore Solutions 4 MS Office Ltd http://www.solutions4msoffice.co.uk Upvote 0 Downvote
jonra, To exit access on the Click event of a command button, use; Code: Private Sub CommandButton_Click() DoCmd.Quit End Sub hope this helps. Leigh Moore Solutions 4 MS Office Ltd http://www.solutions4msoffice.co.uk
Oct 7, 2003 #3 Neowynds Technical User Sep 25, 2003 52 US There is a good example of this in the main switchboard of Northwind sample database. Upvote 0 Downvote