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 1058879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:05:20+00:00 2026-05-16T18:05:20+00:00

Could someone please share the code to take screenshots of web browser control and

  • 0

Could someone please share the code to take screenshots of web browser control and save it in predetermined path.

I am working with VS 2008 .Net 3.5 .

  • 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-05-16T18:05:21+00:00Added an answer on May 16, 2026 at 6:05 pm

    You could use Control.DrawToBitmap(), even though it is hidden from Intellisense in VisualStudio. The WebBrowser still inherits from the base class Control, so this method does exist. But what I did was create a MenuStrip with a MenuItem that I used to test this (this is basically just a standard click-event), and instead created a graphics object, and copied a portion of the screen using the correct cordinates. The only things you will need to adjust really, is the name of the WebBrowser control, and the line that actually saves the image.

    private void copyToolStripMenuItem_Click(object sender, EventArgs e) {
        int width, height;
        width   = webBrowser1.ClientRectangle.Width;
        height  = webBrowser1.ClientRectangle.Height;
        using (Bitmap image = new Bitmap(width, height)) {
            using (Graphics graphics = Graphics.FromImage(image)) {
                Point p, upperLeftSource, upperLeftDestination;
                p                       = new Point(0, 0);
                upperLeftSource         = webBrowser1.PointToScreen(p);
                upperLeftDestination    = new Point(0, 0);
                Size blockRegionSize = webBrowser1.ClientRectangle.Size;
                graphics.CopyFromScreen(upperLeftSource, upperLeftDestination, blockRegionSize);
            }
            image.Save("C:\\Test.bmp");
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Could someone please suggest why this is happening... I’ve got some code to pretty
Could someone please explain, why many programs have their icons' paths this way: /usr/share/program/icons/hicolor/16x16/...
Could someone tell me what is wrong with this code please. Public Shared Function
Could someone please explain the correct usage for boost::upgrade_lock. The following code results in
Folks could someone please share the ways to debug a Stored Proc ? It
Could someone please tell me why this <%= destroy_password_url @user.password_reset_token %> generates http://localhost:3000/api/destroy_password.4G5EoRVYMUAtiIKqOerKsw routes.rb
Could someone please explain why this is happening? var y = new int[]{1,2}; Console.WriteLine(y
could someone please tell me what I need to do in order to create
Could someone please tell me what the CodeURI value of a line break is?
Could someone please explain this weird phenomenon: http://jsfiddle.net/sPA2V/ For some reason, the box footer

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.