vote up 0 vote down star
1

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.

  1. Smaller reports with less data are more likley to freeze.
  2. Faster workstations (P4, Core2) tend to freeze much more often, sometimes every second try. On older workstations (< P2) no freezing happens at all, or at least once every one or two days.
  3. The export format (rtf, pdf, html, rpt) does not influence the freezing behavior.
  4. The same report can be successfully exported multiple times with excactly the same data, but eventually it will freeze.
  5. No freezing happens on Windows Vista (!)

Is there a way to stop this or at least a way to predict a freeze?

flag

You might want to post your code. Funny enough, I'm updating a CR8 application to CR XI, and having freezing problems with XI, while CR8 worked perfectly fine. – psoul Oct 21 '08 at 10:05

3 Answers

vote up 1 vote down

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.

link|flag
Yes, we've done that (CR 11). But unfortunatly we have to provide support for some of our legacy products. – DR Oct 21 '08 at 11:29
Sorry, I should clarify. I did not mean upgrade to the latest version, I meant updates in the way of hotfixes to v8 of the product. – Jeff Schumacher Oct 21 '08 at 16:44
Ok, sorry, I should have read more carefully... We've tried that already, with no success. – DR Oct 24 '08 at 6:53
vote up 1 vote down check

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.

link|flag
Might I ask how you identified this as the cause of the problem? I'm experiencing a similar problem during a mass export of thousands of CR8.5 files. – CodeByMoonlight Sep 10 at 11:58
I used ProcessMonitor do display the callstack of each thread. – DR Sep 10 at 13:10
vote up 0 vote down

So having tracked down the possible origin of your problems, how did you finally solve the issue? I have to deal with the same subject (crystal reports 8 freezing on fast machines).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.