open links in Outlook's internal Browser

Joined
Jan 22, 2007
Messages
1
Reaction score
0
hi all ,
i had been googling around for something which will enable me to open
websites in my outlook window itself. as i surfed i got the following code.

Sub CommandButton2_click()
strURL = "http://www.mysite.com"
set objWeb = _
Application.ActiveExplorer.CommandBars.FindControl(26, 1740)
objWeb.text = strURL
End Sub

but how to implement it in C# if at all possible in this way ??
my requirement is open links inside outlook than just to use
Process.Start("www.google.com") which would open the same in the
default browser.plz do help me. thanks in advance.
regards,
john.
 

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

Top