F
Franz Kiermaier
Hi all,
I have a big problem.
I am developping an Add-in for Outlook 2003 with c#.
in the OnStartupComplete method of the connect class i set a delegate to the
NewInspector event of the
Applications Inspectors collection.
So far so good. Everything works fine and the event is handled every time
the event fires.
But after a note is edited and outlook is closed, an error message appears,
that tells me, that the item could not be saved and a parameter is invalid.
Has anybody had this problem?
Thank you all for your help.
Franz
Here the code snippet
public void OnStartupComplete(ref System.Array custom)
{
((Microsoft.Office.Interop.Outlook.Application)this.applicationObject).Inspe
ctors.NewInspector += new
InspectorsEvents_NewInspectorEventHandler(Inspectors_NewInspector);
}
private void Inspectors_NewInspector(Inspector Inspector)
{
Do anything;
}
I have a big problem.
I am developping an Add-in for Outlook 2003 with c#.
in the OnStartupComplete method of the connect class i set a delegate to the
NewInspector event of the
Applications Inspectors collection.
So far so good. Everything works fine and the event is handled every time
the event fires.
But after a note is edited and outlook is closed, an error message appears,
that tells me, that the item could not be saved and a parameter is invalid.
Has anybody had this problem?
Thank you all for your help.
Franz
Here the code snippet
public void OnStartupComplete(ref System.Array custom)
{
((Microsoft.Office.Interop.Outlook.Application)this.applicationObject).Inspe
ctors.NewInspector += new
InspectorsEvents_NewInspectorEventHandler(Inspectors_NewInspector);
}
private void Inspectors_NewInspector(Inspector Inspector)
{
Do anything;
}