Office COM Add-in. applicationObject.CurrentDb() preventing Close Access application

52 Views Asked by At

I am working on a Office COM Add-In to launch the Add-in application from MS Access. Add-in loading fine.

Now I need current db name at the plug-in class, so I use applicationObject.CurrentDb() to load db object and get db name from the object.

Below is the call at "OnConnection" method for getting currentDb.

After this, I close Access application by clicking "X" icon. But Access is not closing and have to force close from Task manager.

     public void OnConnection(object application, Extensibility.ext_ConnectMode connectMode, object addInInst, ref System.Array custom)
{
    applicationObject = (Access.Application) application;            
    currentDb1 = applicationObject.CurrentDb();

    if (currentDb1 != null)
    {
        System.Windows.Forms.MessageBox.Show("Current DB " + currentDb1.Name, "DB Name");
    }
 .....
}

If "applicationObject.CurrentDb()" is not called, Access close just fine.

Tried to close and null(empty) the application object at OnBeginShutdown. But the same result.

public void OnBeginShutdown(ref System.Array custom)
    {
        object omissing = System.Reflection.Missing.Value;
        System.Windows.Forms.MessageBox.Show("MyCOMAddin Add-in is unloading.");
        currentDb1 = null;
        applicationObject = null;
 }

Reference I use: https://learn.microsoft.com/en-us/previous-versions/office/troubleshoot/office-developer/office-com-add-in-using-visual-c

0

There are 0 best solutions below