I
Ilya Dubov
I am starting "iexplore" process by executing Process.Start command. Every
time I execute this command, it creates a new window.
Can somebody tell me what can I do, so that the new window only been created
once, and the next time I execute Process.Start command
it would just update an old window with the new url.
Thanks
Here is the code I execute.
/***********************************************
Process proc = new Process();
ProcessStartInfo procInfo = new ProcessStartInfo();
procInfo.FileName = "iexplore.exe";
procInfo.Arguments = "https://www.microsoft.com/";
proc.StartInfo = procInfo;
proc.Start();
time I execute this command, it creates a new window.
Can somebody tell me what can I do, so that the new window only been created
once, and the next time I execute Process.Start command
it would just update an old window with the new url.
Thanks
Here is the code I execute.
/***********************************************
Process proc = new Process();
ProcessStartInfo procInfo = new ProcessStartInfo();
procInfo.FileName = "iexplore.exe";
procInfo.Arguments = "https://www.microsoft.com/";
proc.StartInfo = procInfo;
proc.Start();