HI,
I am working on a Surface app, and it requires the user to open a web address in IE. THe user click the web address and a separate IE window opens instead of the WebElement. I found this code:
Process myProcess = new Process();
myProcess.StartInfo.FileName ="iexplore.exe";
myProcess.StartInfo.Arguments ="http://www.wrox.com";
myProcess.Start();
but it does not seem to work when I import the System.diagnostics.
ANy Suggestions?
Thanks
Marlon