0

So I'd like for all the new windows open up in Chrome. Or in a default browser of the user. I know how to make a tabbed webbrowser, I'm not interested in that.

Like what I exactly want to do is, as an example, when I set youtube to homepage of my own webbroswer, and when clicked on a video, it would open up in Chrome.

Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92
begger
  • 11
  • 1
  • Maybe you should take a look at this question: http://stackoverflow.com/questions/13335954/how-can-i-make-a-html-a-href-hyperlink-open-a-new-window-using-window-location – albert Nov 21 '15 at 12:55
  • this is for HTML @albert – begger Nov 21 '15 at 13:12
  • So you only want to change Chrome's behavior if clicking on a link? Like [this](https://productforums.google.com/forum/#!topic/chrome/rpBwsbkmonU)? I still don't got your question... – albert Nov 21 '15 at 13:15
  • No need to vote down for just not getting it. I want my own VB.NET webbrowser to open up new windows in Chrome instead of IE.. :/ – begger Nov 21 '15 at 13:24

2 Answers2

1

I can help you with this code :

To open a new window and go to your youtube video, write this code :

System.Diagnostics.Process.Start("https://" & YouTube Video Link Here)

and to open a new window only, write this code:

System.Diagnostics.Process.Start("https://")

I Hope My Answer Was Useful To You :)

Mousa Alfhaily
  • 1,260
  • 3
  • 20
  • 38
0

You Can also Add the webbroswer control manually .Aftersome Event Took place It will create and Show .

TOM
  • 873
  • 1
  • 12
  • 35