mellenburg
Programmer
I'm using the following code to launch IE inside a windows application:
How can I hide scroll bars, the address bar and the navigation buttons so that it's just the contents of the URL that shows?
Code:
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Maximized;
startInfo.Arguments = "[URL unfurl="true"]www.microsoft.com";[/URL]
Process.Start(startInfo);
How can I hide scroll bars, the address bar and the navigation buttons so that it's just the contents of the URL that shows?