Reuse the same web browser's window?

Ken76

New member
Joined
Dec 24, 2015
Messages
2
Programming Experience
5-10
Is it possible to reuse the same web browser's window with process.start without opening a new tab or another windows
with vb.net?
 
Is it possible to reuse the same web browser's window with process.start without opening a new tab or another windows
with vb.net?

No. Calling Process.Start starts a new process and it's up to the application itself how that gets handled. In the case of a web browser, it will either create a new window or add a new tab to an existing window but I'm not aware of any web browser that would use an existing tab in that case.
 
Back
Top