Reputation: 72514
I have a problem with Crystal Reports 8. When exporting a report from my application, Crystal Reports sometimes freezes. The progress windows just stays, saying X of X records exported.
Is there a way to stop this or at least a way to predict a freeze?
Upvotes: 0
Views: 2377
Reputation: 72514
After a long search we finally tracked down the source to a WaitForSingleObject(?, INFINITE)
call. It seems like CR8 has some synchronization errors which become obvious on fast workstations.
It is somehow related to the progress window, and the animations in Vista seem to mitigate the problem.
Theoretically the solution would be patching the problematic file and replacing the WaitForSingleObject
with a timeout parameter.
Upvotes: 2
Reputation: 3156
CR 8 is a fairly old product, you may want to check whomever owns it now (Business Objects still?) for updates (hotfixes for v8 specifically). This could be something they've fixed in the past with a service release.
Upvotes: 1