add button to the toolbar

  • Thread starter Thread starter nguedes
  • Start date Start date
N

nguedes

I'd like to add to my outlook toolbar a button to open a specific web
page.
I wrote a vba macro, see the code above, but this open the web page in
a new ie window.
Does anyone know how to open in the same outlook window?
Tia,
Nuno
 
Your message shows no code at all.

If you get ActiveExplorer.CurrentFolder as an Outlook.MAPIFolder then
you can use MAPIFolder.WebViewOn, MAPIFolder.WebViewURL and the hidden
Boolean property (hidden in Outlook 2002 or later)
MAPIFolder.WebViewAllowNavigation to do what you want.
 
Back
Top