vote up 3 vote down star
1

I have a WinForms app written in C# with .NET 3.5. It runs a lengthy batch process. I want the app to update status of what the batch process is doing. What is the best way to update the UI?

flag

74% accept rate

9 Answers

vote up 0 vote down check

Application.DoEvents() or possibly run the batch on a separate thread?

link|flag
I would use BackgroundWorker and have the batch run on a separate thread. I don't like Application.DoEvents() because even if you are doing that, while you aren't doing that and you're processing work, your UI is no completely unresponsive and can appear "hung" to your user. – jolson Sep 20 '08 at 4:34
vote up 0 vote down

Here's an alternative to BackgroundWorker (plug).

link|flag
vote up 0 vote down

If you are running in a background/worker thread, you can call Control.Invoke on one of your UI controls to run a delegate in the UI thread.

Control.Invoke is synchronous (Waits until the delegate returns). If you don't want to wait you use .BeginInvoke() to only queue the command.

The returnvalue of .BeginInvoke() allows you to check if the method completed or to wait until it completed.

link|flag
vote up 0 vote down

I want to restate what my previous commenters noted: please avoid DoEvents() whenever possible, as this is almost always a form of "hack" and causes maintenance nightmares.

If you go the BackgroundWorker road (which I suggest), you'll have to deal with cross-threading calls to the UI if you want to call any methods or properties of Controls, as these are thread-affine and must be called only from the thread they were created on. Use Control.Invoke() and/or Control.BeginInvoke() as appropriate.

link|flag
vote up 0 vote down

DoEvents() was what I was looking for but I've also voted up the backgroundworker answers because that looks like a good solution that I will investigate some more.

link|flag
Definitely consider the BackgroundWorker -- every time I've encountered DoEvents(), it's never been fun to fix subsequent issues. – Austin Salonen Sep 19 '08 at 22:25
vote up 2 vote down

The quick and dirty way is using Application.DoEvents() But this can cause problems with the order events are handled. So it's not recommended

The problem is probably not that you have to yield to the ui thread but that you do the processing on the ui thread blocking it from handling messages. You can use the backgroundworker component to do the batch processing on a different thread without blocking the UI thread.

link|flag
vote up 2 vote down

Run the lengthy process on a background thread. The background worker class is an easy way of doing this - it provides simple support for sending progress updates and completion events for which the event handlers are called on the correct thread for you. This keeps the code clean and concise.

To display the updates, progress bars or status bar text are two of the most common approaches.

The key thing to remember is if you are doing things on a background thread, you must switch to the UI thread in order to update windows controls etc.

link|flag
vote up 1 vote down

Use the backgroundworker component to run your batch processing in a seperate thread, this will then not impact on the UI thread.

link|flag
vote up 9 vote down

The BackgroundWorker sounds like the object you want.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.