Report With Multiple Subreports

  • Thread starter Thread starter Benjamin
  • Start date Start date
B

Benjamin

I have written a Report that includes a number of
Subreports. The Report works fine unless I rerun it
several times. Rerunning the Report causes Access 2002 to
crash. Is anyone familiar with this problem and have a
solution? Any assistance is appreciated.
 
Name AutoCorrect can cause crashes in both reports and queries. Details:
http://members.iinet.net.au/~allenbrowne/bug-03.html

If that is not the issue, it could be something that is not releasing
resources. That could be:
- graphical elements in the report;
- domain aggregate functions in the reports or their source queries, e.g.
DSum();
- your VBA functions, where you have not closed what you opened, and set all
objects to Nothing before they are reused or go out of scope.
 
Back
Top