I have a common problem with Dynamic dialogs going to [Not Responding]. This happens in a lot of scenarios, but here's an example in pseduocode:
- load array with 2000 rows
- update StaticText element with value of Array[i,x] with the DialogControlSet command
- loop through all elements in array
The Dialog will run OK if i never change focus away from the dialog. But if i open another window and come back to the Dialog, it will be blank, show as [Not Responding] and no controls will be updating. HOWEVER, the script is still running, the array is still processing, and the dialog will resume operation once the loop is complete.
This only happens if i have a high volume of refreshes --- 1000+ records. Quick bursts of 10 records / dialog refreshes don't have any negative effect.
If i use a simple BoxText command, I have no problems. the BOX will dispay the refreshing text whether i have focus or not and never goes to [Not Responding]
Looking for some guidance on what could be causing this...
thanks for your help!
-- Steve