When New is clicked a new item is opened, which would fire the
Inspectors.NewInspector() event. You need to subscribe to that event to know
when that button is clicked.
As an alternative you can also get that control as a CommandBarButton object
in the "Standard" CommandBar and subscribe to the control's Click() event.
In that case you know it was clicked but that's it. You don't get a handle
to whatever was created. So using both events may be what you need to do
depending on exactly what you want.

Signature
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
> Hi,
>
[quoted text clipped - 22 lines]
>
> Thanks