Progressbar in C# with backgroundworker

By Nisse Pettersson at February 11, 2010 12:20
Filed Under: Code
Share on Facebook

I'm developing a application where there are some time consuming database activity and I need to show the user that the application is running and not crashed. You would also want the GUI thread to be free so the user can move the window and navigate the menus.

I found a blog with a simple example of how you can use a backgroundworker for this. *