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.
 
Back
Top