Open a website in an internal Outlook browser through VBA

I want to open this webpage through VBA. I can do this using:

Set browser = CreateObject("InternetExplorer.Application") 
browser.Navigate ("http://google.com")

but this opens up an instance of IE. I would like to open it in an integrated Outlook browser window.

I would suggest that this is pretty easy, but I am not familiar with VBA, and googling did not find anything useful.

+3
source share
1 answer

Which version are you using? the old version had a view toolbar.

and you can use the above technique to hook the command lines, which you can do it in VBA marco, and you do not need to add additional files.

, - . ( > )

OOM:

Folder.WebViewURL URL- Folder.WebViewOn True

Active Explorer, .

+2

Source: https://habr.com/ru/post/1732088/


All Articles