Reputation: 11
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.
Upvotes: 0
Views: 1170
Reputation: 881
You Can also Add the webbroswer control manually .Aftersome Event Took place It will create and Show .
Upvotes: 0
Reputation: 1290
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 :)
Upvotes: 1