Add button to open a web page

  • 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

The code:

objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = 1
objIE.Navigate "www.unisyn.com"
 
Back
Top