Is there a way to open some url in IE6 which already runs?
I assume it should be.
We can do it via drag&drop functionality manually but I want to do the
same from another application.
Process.start("http://yahoo.com") is not good for me.
I want few browsers to run each for separate group of requests.
Like one for
Process.start("http://yahoo.com/job")
Process.start("http://yahoo.com/weather")
Process.start("http://yahoo.com/finance")
and another for
Process.start("http://google.com/news")
Process.start("http://go.abc.com/news")
Process.start("http://abcnews.go.com/Travel")
Is it possible to have such two separate IE6 and tell them what to
show from separate process?
Thanks in advance.