Launching a webpage inside Outlook programmically

  • Thread starter Thread starter Thaddaeus Parker
  • Start date Start date
T

Thaddaeus Parker

I have searched for the ability to launch a external web page inside of
Outlook, including Sue Mosher's book, but it seems that I can't seem to find
a good example. Can someone be kind enough to point me in the right
direction? What I am trying to do is when a user clicks one of my command
bar buttons an external web page displays in where normally you would see
the email message or task or calendar views.

Thanks,

Thaddaeus.
 
You can add the folder as you normally would and then you can do the
following (C#):
webFolder.WebViewURL = <url>; webFolder.WebViewOn = true;
Hope that helps.
Rog
 
Great this is what I was looking for.

Thanks!
Rog said:
You can add the folder as you normally would and then you can do the
following (C#):
webFolder.WebViewURL = <url>; webFolder.WebViewOn = true;
Hope that helps.
Rog
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top