Rank: Newbie Groups: Member
Joined: 5/30/2009 Posts: 1
|
I referred to the Progress Bar demo code. In the ProgressBar1_RunTask event, System.Threading.Thread.Sleep(500) has benused and is advised to replace it with code that performs long running task.
How to set the progress status based on the status of server side task completion status. Please provide some real world small dummy example.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
The progress bar is updated by calling e.UpdateProgress. That's all there is about "how to set progress status based on the status of server side task" --- you do whatever to get the progress information, then pass it to the progress bar by calling e.UpdateProgress.
Thanks!
|