R
René Meinecke
Hi there,
i have written an Outlook XP-Add-In with Visual Studio .NET. Everything
works just fine, but there is one thing
i can´t explain:
If OnBeginnShutdown is called the Button created at OnStartupComplete isn´t
removed.
here is the code i use:
public void OnBeginShutdown(ref System.Array custom)
{
object omissing = System.Reflection.Missing.Value ;
btnAntrago.Delete(omissing);
btnAntrago = null;
appOutlook = null;
//expOutlook = null;
addInInstance = null;
} // OnBeginShutdown
i have written an Outlook XP-Add-In with Visual Studio .NET. Everything
works just fine, but there is one thing
i can´t explain:
If OnBeginnShutdown is called the Button created at OnStartupComplete isn´t
removed.
here is the code i use:
public void OnBeginShutdown(ref System.Array custom)
{
object omissing = System.Reflection.Missing.Value ;
btnAntrago.Delete(omissing);
btnAntrago = null;
appOutlook = null;
//expOutlook = null;
addInInstance = null;
} // OnBeginShutdown