A VB.Net program is launching a url in FF (my default browser)
programmatically...
System.Diagnostics.Process.Start(_url)
Every time I hit this line of code it either opens the URL in a new FF
window or tab, depending on how my FF options are set. It does this even
if the exact same URL has been previously opened in FF.
System.Diagnostics.Process.Start("
http://www.google.com")
System.Diagnostics.Process.Start("
http://www.google.com")
... opens two FF windows/tabs.
It pretty much behaves the same as when, in Windows Explorer, you
double-click on the same .htm file twice in a row ... two open FF
windows/tabs.
Is there anyway to tell FF to use the same open window/tab? Or the last
opened window/tab? I don't know if possibly this is communicated to FF
via DDE and I need to change the DDE message sent to the FF server?
--
Dennis