Hi!
I develop a Click- and Replay - Mechanism for our XML-Application- Server both using VisualC#.
To look at the Results I return HTML-Code for every Step that is processed by the XMLServer. One File per Step.
I now also want to open these Files in the Systems Standart-Browser using the following:
This opens one Browser-Window for every single File. How can I make it use the same Window for all the Files?
Thank you in advance!
__________________________________________
a programmer is a tool that converts coffee into code...
aschi666, sthcomputing.de
I develop a Click- and Replay - Mechanism for our XML-Application- Server both using VisualC#.
To look at the Results I return HTML-Code for every Step that is processed by the XMLServer. One File per Step.
I now also want to open these Files in the Systems Standart-Browser using the following:
Code:
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents=false;
proc.StartInfo.FileName="iexplore";
proc.StartInfo.Arguments=+sFileName+".html";
ibStarted = proc.Start();
This opens one Browser-Window for every single File. How can I make it use the same Window for all the Files?
Thank you in advance!
__________________________________________
a programmer is a tool that converts coffee into code...
aschi666, sthcomputing.de