In a WinForms application, I have a form in which I have a couple of link labels. When the user clicks on any of the links I want to open a page in an EXISTING browser TAB that my own application has opened. (Of course except for the first time that it should open a new tab) My problem: Process.Start("My Url"); opens a new tab all the time. Is there any way that I can tell the browser to stop opening new tabs?
Thanks before.