PC Review
Forums
Newsgroups
Microsoft Outlook
Microsoft Outlook VBA Programming
Add toolbar to inspector window
Forums
Newsgroups
Microsoft Outlook
Microsoft Outlook VBA Programming
Add toolbar to inspector window
![]() |
Add toolbar to inspector window |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
Hi,
Is there any way to add a toolbar button to any inspector window, other than by writing an Outlook COM add in (I know the NewInspector event could be used if writing an Outlook COM add in ). E.g. any way do this use a macro? Thank you! |
|
|
|
#2 |
|
Guest
Posts: n/a
|
You can also use the Inspectors.NewInspector event in VBA. This is code for the built-in ThisOutlookSession module:
Dim WithEvents colInspectors As Outlook.Inspectors Private Sub Application_Startup() Set colInspectors = Application.Inspectors End Sub Private Sub colInspectors_NewInspector(ByVal Inspector As Inspector) ' your code goes here End Sub -- Sue Mosher, Outlook MVP Outlook and Exchange solutions at http://www.slipstick.com Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Notre Poubelle" <notre_poubelle@yahoo.com> wrote in message news:ae38c758.0309172027.79ada193@posting.google.com... > Hi, > > Is there any way to add a toolbar button to any inspector window, > other than by writing an Outlook COM add in (I know the NewInspector > event could be used if writing an Outlook COM add in ). E.g. any way > do this use a macro? > > Thank you! |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

