Linked Questions
10 questions linked to/from Open link in new TAB (WebBrowser Control)
1 vote
1 answer
6k views
Enabling "Open In New Tab" item in WebBrowser's context menu?
Is it possible to enable the "Open In New Tab" context menu item in a WebBrowser? Then I'll figure out how to handle it, but first I need to make it at least look enabled.
0 votes
1 answer
5k views
Visual Basic web browser open links in default browser
I'm working on a small application and i have a web browser that loads a certain url when it is opened. The problem if you click a link inside that visual basic browser it opens the URL in internet ...
-1 votes
1 answer
2k views
Enable right-click's "Open Link in New Tab" in webbrowser control
I have developed a web browser, but "Open Link in New Tab" option in my right-click is disabled . I want to enable the right-click's "Open Link in New Tab". Then open the page within my application, ...
0 votes
2 answers
2k views
Cannot convert from 'System.Windows.Forms.WebBrowser' to 'ExtendedWebBrowser'
I am trying to debug my cute little application here and it won't let me :( When I click Debug, I get two errors, the first one is: Error 1 The best overloaded method match for '...
2 votes
1 answer
1k views
open picture in new tab, same as if do right click - View Image in firefox (WatiN)
I need to open image in new tab exactly as it's being done by clicking right button on it and then selecting View Image in firefox. Copying pic url and using browser.Goto doesn't give me the result i ...
0 votes
1 answer
1k views
How to capture context menu "view source" click in c# WebBrowser control?
I am trying to intercept a click on the "view source" item on C# WebBrowser's context menu. The default click opens the web page's source in notepad, but I would like, to cancel the default action and ...
0 votes
2 answers
676 views
WebBrowser control problem
I am using this code: //I store the website urls in mylist list<string> mylist=new list<string>(); foreach(string webname in mylist) { wbmain.navigate(webname); } But there is a ...
2 votes
1 answer
285 views
Initialize ExtendedWebBrowser in VB.NET, problem parsing from C# to VB.Net
Following a previous answer open link in new tab WebBrowser control. And thanks to Mauricio Rojas who posted a good example in C#: Extended WebBrowser Control for C#. I'm trying to convert code ...
0 votes
1 answer
659 views
how to create "open in new tab" contextmenustrip in C# webbrowser?
I'm building a web browser in C#. I want to create my own contextmenustrip when right click but I don't know how to it. Can you help me to solve this "open in new tab"?
0 votes
1 answer
575 views
.net Open link from WebBrowser Control in a new Tab in IE
I have a web browser control in my application which contains the following link: <html> <body> <a href="http://www.google.com" target="abc">test</a> </body> </html&...