How to Open IE Window in Full Screen Mode

  • Thread starter Thread starter orekin
  • Start date Start date
O

orekin

Hi

My program is a C# Windows application and I am using the following
code to open an IE window:

Process p = new Process();
p.StartInfo.FileName = "iexplore.exe";
p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
p.StartInfo.Arguments = "www.google.com"
p.Start();

I would like to open the browser window in Full Screen Mode, is this
possible from my C# code or will the user need to press F11 once they
are in the IE window?

Btb, what are the available arguments to pass to iexplore.exe?

Thanks
Orekin
 
Back
Top