We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

ProgressBarEx.WaitingGradientEnabled

I am using a ProgressBarEx in an app that so far has been working very well. But now I want to enable 'waiting' on the progress bar while performing some intensive computing of unknown length. This computing must be performed on a UI thread. Doing so, however, freezes up the waiting animation of the progress bar because ProgressBarEx uses System.Windows.Forms timers. This seems to contradict the very nature of a 'waiting' progress bar. What am I missing? BTW, I looked at the activity bar sample on GotDotNet, but that sample does not use System.Windows.Forms timers - it uses an entirely separate thread for the animation that sleeps for small increments of time. Thanks, Terry

5 Replies

RP Ramesh Praveen Syncfusion Team May 5, 2003 11:58 AM UTC

Terry, I am not sure how you can update the UI when your UI thread is processing a huge op! Could you post the sample where it works with the ActivityBar? Thanks Praveen Ramesh


TF Terry Foster May 5, 2003 07:01 PM UTC

I didn't ever get it to work with the activity bar, although I suspect I could. I really want to use the syncfusion progess bar, though. What you mention, however, is really the problem I'm facing: I can't be updating the UI if my UI thread is tied up. I guess what I'm wondering is why does the syncfusion progress bar use a system timer to animate 'waiting' when it is very convenient to do the intensive processing of unspecified length on the UI thread (e.g. UI is unresponsive during waiting which is desirable for my case). Instead, it appears that you are always assuming that the intensive processing must be performed on a separate thread, which is extremely inconvenient (or impossible) for my case. Any suggestions for a workaround? Thanks, Terry


RP Ramesh Praveen Syncfusion Team May 6, 2003 11:41 AM UTC

Terry, Which ever timer or thread we use the bottom line is that the final UI update has to happen in the UI thread. So when you perform a huge op., the UI thread blocks and the UI cannot be updated. But, you could workaround by calling Application.DoEvents in the middle of your huge op. (hope that's possible in your case). This will process any pending paint messages. It will however enable mouse processing, etc. so you might have to disable your UI manually. Do let me know if this works. Regards, Praveen


TF Terry Foster May 7, 2003 02:16 PM UTC

Ah - this is the stuff I needed to know. Now I know what I need to do. Thank you very much. Terry


RP Ramesh Praveen Syncfusion Team May 7, 2003 06:45 PM UTC

You are welcome.

Loader.
Live Chat Icon For mobile
Up arrow icon