Click here to Skip to main content
15,894,460 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
I need to show a progress bar while loading another form.

The form to be loaded is taking time because it is loading data from one table of first database to the another table of another database.
So, to let the user know that the work is currently being done, i need a progress bar to show.

A little bit of help needed.
Thanks, in advance.
Posted
Comments
Akinmade Bond 9-Oct-12 7:55am    
You should look into threading.
Andrewpeter 9-Oct-12 11:06am    
Where is the progressbar? If it is in main form (not "another form") - you can use a Timer control to control that progressbar.

1 solution

You need to move your data loading code to a background thread so this frees up the UI thread to update the progress bar control. Look into using a BackgroundWorker[^] to simplify this.
 
Share this answer
 
Comments
Anaya Upadhyay 10-Oct-12 5:51am    
An error occurred when i put the data loading code, and it says Timeout Expired. So, the problem is still a problem.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900