ProgressDialog - shouldn't it spin?

Andris

Active Member
Licensed User
Longtime User
I have a ProgressDialog in my project which displays while calendar listing data is being accessed:

ProgressDialogShow("Loading calendar ...")
StartActivity(Calendar)​

However, the dialog doesn't "spin" while the data is being loaded. I've tried using DoEvents within the Calendar's data access For ... Next loop but that doesn't help.

Any ideas?
 

kickaha

Well-Known Member
Licensed User
Longtime User
When you start another activity it pauses the one you were in, this could be the cause.

Try putting ProgressDialogShow("Loading calendar ...") in the Calendar activity.
 
Upvote 0
Top