Search results for query: *

  1. J

    Question How can I open the Internet Browser when I click on a link in the WebBrowser control?

    Your definatly right! I've done the following to accomplish what I want: private void HtmlViewer_Navigating(object sender, WebBrowserNavigatingEventArgs e) { if (e.Url.ToString().StartsWith("http")) { e.Cancel = true...
  2. J

    Question How can I open the Internet Browser when I click on a link in the WebBrowser control?

    Thanks for your reply, but if I cancel in navigating event the I can't open any other email message anymore...
  3. J

    Question How can I open the Internet Browser when I click on a link in the WebBrowser control?

    Hello, In my application I have a WebBrowser control that I use for viewing Html formatted email messages. But when I click on a hyperlink inside the WebBrowser when viewer an email message, the link will be opened inside the webbrowser control. What I actually want is forcing my application to...
  4. J

    WinForms Document Previewer

    I've been searching for ages.. Google is my best friend but not when it comes to Document Preview Controls. What I need: Most important feature would be that Outlook MSG files can be previewed properly! an ActiveX Control that can Preview Documents Support document types from Office 2007 -...
Back
Top Bottom