Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide scrollbars with Process.Start

Status
Not open for further replies.

mellenburg

Programmer
Aug 27, 2001
77
0
0
US
I'm using the following code to launch IE inside a windows application:

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?
 
couldn't you use a form with a web control on it and load the url into that ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top