Nafees abbasi

Nafees abbasi

  • NA
  • 4
  • 1.6k

Internet Explorer Not always minimze

Jun 27 2016 9:08 AM
I'm trying to minimize internet explorer after starting. If i don't have any window before then it works fine. and if i already have instance of IE. then it doesn't minimize .
 
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
string sub;
startInfo.Arguments = "www.google.com";
Process.Start(startInfo);
 

Answers (2)