Hi,
With PB2017, it shows black screen when it comes processing large number of database records or when its about more time to fetch the datwindow rows. In earlier version it used to show hour glass or 'Not Responding' which was a better user experience compared to black screen.
Any sugegstion why this is happening or how it can be resolved?
Regards,
Rahul
We've seen this as well when waiting on long retrieves. Is there a way we can tell Windows that we're waiting on the database? Usually the application main thread says 'waiting on user input' which may be why Windows flags it as 'not responding' after 5 seconds.
Thanks,
Brandon
I would suggest then that you move any Retrieve(s) from either the Window OPEN or a Control on the Window's Constructor events to either a POST Open or POST Constructor event. That would then let the window draw itself properly before performing any long processing that could hamper the initial rendering.
Food for thought.
Regards ... Chris