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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:36:31+00:00 2026-06-10T04:36:31+00:00

I have windows form. I have put one loading image in PictureBox When I

  • 0

I have windows form. I have put one loading image in PictureBox

When I load form then I have set

PictureBox1.Visible = false;

While i am firing click event of button I have set

PictureBox1.Visible = true;

But in that event there is some code to retrieve data from database through stored procedure.

When it will jump to code for retrieving data from stored procedure that loading image stops to load.

It should not be happened. It should show as loading. I have used .gif loading image.

How can I solve this issue ?

  • 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-10T04:36:33+00:00Added an answer on June 10, 2026 at 4:36 am

    Everytime you have a long lasting call within an eventHandler you should use a BackgroundWorker! A BackgroundWorker can run code async and therefor your button_click eventHandler will end right after starting the worker.

    // add a BackGroundWorker bwLoadData to your form
    
    private void YOURBUTTON_Click(object sender, EventArgs e)
    {
         PictureBox1.Visible = true;
         bwLoadData.RunWorkerAsync();
    }
    private void bwLoadData_DoWork(object sender, DoWorkEventArgs e)
    {
         // access your db, execute storedProcedue and store result to
         e.Result = YOUR_DATASET_RECORDS_OR_ANYTHING_ELSE;
    }
    private void bwLoadData_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    {
         if (e.Result != null)
         {
              // e.g. show data on form
         } else {
              // e.g. error message
         }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one windows form file that each time I open it in Visual
I have one Windows Form with this.BackColor = Color.Red and this.TransparencyKey = Color.Red and
I have two listbox in windows Form c#, the first one has all valid
I have a windows form application and one of the control on the form
I have a windows form application. On the form there are three groupboxs. Each
I have a windows form app, and a class which is called Game. Let's
I have a windows form where in I open new threads for server communication.
i have a windows form that contains a bunch of textboxes. I need a
I have a windows form on the main thread and another thread that does
I have a Windows Form application. Version 1 of my app has been released

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.