Rx_
Nothing In Moderation
- Local time
- Today, 04:19
- Joined
- Oct 22, 2009
- Messages
- 2,795
Is there additional code to force Access to close?
After a decompile and Import All Objects (into new blank DB) the last form with the docmd.Quit closes the last form, but leaves Access open (blank).
Private Sub btn_close_Click()
DoCmd.Quit
End Sub
It is just the Access border, no menues, status bar with Ready.
Found a few people that had this problem after a decompile.
Nobody reported a solution.
History:
A form was mis-behaving. When it was copied, the original deleted then replaced with the copy, it would work a few times then corrupt again.
http://allenbrowne.com/ser-47.html
The steps are found here: https://www.fmsinc.com/microsoftaccess/errors/Bad_DLL_Calling_Convention.asp
Performed a decompile and import all objects into a new database.
For the new Access DB it requires - create the Startup Form (Home), setting the references, and setting all of the Access Options to exactly the same as the older DB project.
After a decompile and Import All Objects (into new blank DB) the last form with the docmd.Quit closes the last form, but leaves Access open (blank).
Private Sub btn_close_Click()
DoCmd.Quit
End Sub
It is just the Access border, no menues, status bar with Ready.
Found a few people that had this problem after a decompile.
Nobody reported a solution.
History:
A form was mis-behaving. When it was copied, the original deleted then replaced with the copy, it would work a few times then corrupt again.
http://allenbrowne.com/ser-47.html
The steps are found here: https://www.fmsinc.com/microsoftaccess/errors/Bad_DLL_Calling_Convention.asp
Performed a decompile and import all objects into a new database.
For the new Access DB it requires - create the Startup Form (Home), setting the references, and setting all of the Access Options to exactly the same as the older DB project.