Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8447341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:09:33+00:00 2026-06-10T10:09:33+00:00

I use WebBrowser in some DLL to make screenshots. The main problem that it

  • 0

I use WebBrowser in some DLL to make screenshots.

The main problem that it is not maximized sometimes and I guess it takes settigns of the Internet Explorer.

So my question is how to maximize WebBrowser control via C#?

Thank you!

            Rectangle r = new Rectangle();

            r.X = cropToRectangle.X;
            r.Y = cropToRectangle.Y;
            r.Width = cropToRectangle.Width;
            r.Height = cropToRectangle.Height;

            Point p = new Point();
            p.X = scrollTo.X;
            p.Y = scrollTo.Y;

            var sb = Math.Max(SystemInformation.VerticalScrollBarWidth, SystemInformation.HorizontalScrollBarHeight);

            var size = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);

            using (var form =
                new FocuslessForm
                {
                    Width = size.Width + sb,
                    Height = size.Height + sb,
                    Padding = new Padding(0),
                    Margin = new Padding(0),
                    FormBorderStyle = FormBorderStyle.None,
                    Opacity = 0,
                    TabStop = false,
                    ShowInTaskbar = false
                })
            {
                var webBrowser1 = new WebBrowser
                    {

                        Padding = new Padding(0),
                        Margin = new Padding(0),
                        Dock = DockStyle.Fill,
                        Url = url,
                        TabStop = false
                    };
                form.Controls.Add(webBrowser1);

                var finished = false;

                webBrowser1.DocumentCompleted += delegate 
                {
                    webBrowser1.Document.Window.ScrollTo(p); 
                    finished = true; 
                };

                form.Show();

                while (!finished)
                {
                    Application.DoEvents();
                }

                image = CaptureBrowserScreenshot(webBrowser1, r);
                form.Close();
            }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T10:09:34+00:00Added an answer on June 10, 2026 at 10:09 am

    Well, the WebBrowser is a control that is embedded into your own program’s window; it doesn’t launch IE as a separate process (though it does hook into IE for the renderer and other critical code). So, the control’s location and size is dependent on where you embed it.

    I see you are fill-docking the control to the form. This is a good first step. Now, you must make sure the WebBrowser control is being added to the Controls hierarchy of the Form (so it’ll show up), and then you must maximize that Form. The way to do this is to set the WindowState property of the Form to WindowState.Maximized.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use WebBrowser control to load some localfile html page. I am
I'm writing an application that loads some javascript into a WebBrowser object. To prevent
I want to use some kind of webbrowser object in java to navigate to
Hello everyone. I'm using Silverlight webbrowser control, and I'm having some problems with that.
I use a WebBrowser object from WPF and I'm calling some Javascript code in
Good morning, I made a simple dll in which I use a WebBrowser control
I use WebBrowser Silverlight 4 control to load some page: <WebBrowser Height=350 Name=webBrowser Width=400
I have a dll which parses some web site. This component uses WebBrowser control
in the app's main window there's a webbrowser control with a page that requires
I use WebBrowser.Document.DomDocument and found that it has different DOM model that I can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.