Is there any explorer.exe problem in windows 7 ?

Posted by sml on Stack Overflow See other posts from Stack Overflow or by sml
Published on 2010-03-25T23:41:11Z Indexed on 2010/03/25 23:43 UTC
Read the original article Hit count: 344

Filed under:
|
s += "<p style=\"text-align: left;\"><a href=\"javascript:window.print()\">PRINT</a></p>";
            System.IO.File.WriteAllText(@"CheckForm.html", s);
            System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
            startInfo.FileName = "explorer.exe";
            startInfo.Arguments = "CheckForm.html";
            System.Diagnostics.Process.Start(startInfo);

I'm having a trouble when I tried to open my c# windows application in windows 7 otherwise there is no problem.

I couldn't open explorer.exe in Windows 7 with above code.

Any suggestions?

© Stack Overflow or respective owner

Related posts about explorer

Related posts about windows-7