Linked Questions

1 vote
1 answer
6k views

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.
Juan's user avatar
  • 15.8k
0 votes
1 answer
5k views

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 ...
XenoBen's user avatar
-1 votes
1 answer
2k views

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, ...
sathish4303's user avatar
0 votes
2 answers
2k views

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 '...
jay_t55's user avatar
  • 11.7k
2 votes
1 answer
1k views

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 ...
esvi's user avatar
  • 21
0 votes
1 answer
1k views

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 ...
witold.kosowski's user avatar
0 votes
2 answers
676 views

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 ...
manish patel's user avatar
  • 1,459
2 votes
1 answer
285 views

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 ...
Marcello's user avatar
  • 448
0 votes
1 answer
659 views

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"?
user2994721's user avatar
0 votes
1 answer
575 views

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&...
Anusree's user avatar