begger
begger

Reputation: 11

How to make it open up every new window in a Chrome in webbrowser or axwebbrowser?

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

Answers (2)

TOM
TOM

Reputation: 881

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

Upvotes: 0

Mousa Alfhaily
Mousa Alfhaily

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

Related Questions