How to Open IE Window in Full Screen Mode

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top