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

  • Home
  • SEARCH
  • 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 8507591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:54:54+00:00 2026-06-11T02:54:54+00:00

Possible Duplicate: Programmatically get screenshot of page I am working on a small desktop

  • 0

Possible Duplicate:
Programmatically get screenshot of page

I am working on a small desktop program in winapi

  1. What I want is that the application will have textbox with some buttons.
    User can type a string in the text box and hit the search button.

  2. After that the program will search that string on google and will save the search result page as an image file , all this will be done in the background with no new windows opening.

And please comment if this can be done easily in some other programming language like VB or C# or MFC

  • 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-11T02:54:56+00:00Added an answer on June 11, 2026 at 2:54 am
    string filename = Application.StartupPath + "\\abc.Png";
            int width = -1;
            int height = -1;
    
            WebBrowser wb = new WebBrowser();
            wb.ScriptErrorsSuppressed = true;
            wb.Navigate("http://www.google.com/search?q=" + txtSearch.Text);
            while (wb.ReadyState != WebBrowserReadyState.Complete)
            {
                Application.DoEvents();
            }
    
    
            // Set the size of the WebBrowser control
            wb.Width = width;
            wb.Height = height;
    
            if (width == -1)
            {
                // Take Screenshot of the web pages full width
                wb.Width = wb.Document.Body.ScrollRectangle.Width;
            }
    
            if (height == -1)
            {
                // Take Screenshot of the web pages full height
                wb.Height = wb.Document.Body.ScrollRectangle.Height;
            }
    
            // Get a Bitmap representation of the webpage as it's rendered in the WebBrowser control
            Bitmap bitmap = new Bitmap(wb.Width, wb.Height);
            wb.DrawToBitmap(bitmap, new Rectangle(0, 0, wb.Width, wb.Height));
            wb.Dispose();
    
            bitmap.Save(filename, System.Drawing.Imaging.ImageFormat.Png);
            MessageBox.Show("Image Saved");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How to programmatically get DLL dependencies On Windows, in a C++ program,
Possible Duplicate: Detecting endianness programmatically in a C++ program I am working on a
Possible Duplicate: Programmatically get own phone number in iPhone OS I want to get
Possible Duplicate: Programmatically delete my own app Currently I am working on a iphone
Possible Duplicate: How to programmatically send SMS on the iPhone? I want to implement
Possible Duplicate: Best way to programmatically detect iPad/iPhone hardware For example I want my
Possible Duplicate: How to close an application programmatically when the user taps on a
Possible Duplicate: How do I get the current GPS location programmatically in Android? I
Possible Duplicate: How do I get the current GPS location programmatically in Android? I
Possible Duplicate: Detecting endianness programmatically in a C++ program Is there any library function

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.