Subject Re: Crystal reports holding resources
Author m24paul
Test your application on another machine, not on developer one.
I use this code for my reports :
ShowReport( DataTable dtReport, ReportDocument ReportName)
{
ReportDocument rptDoc = new ReportDocument();
ReportName.SetDataSource(dtReport);
this.crvReports.ReportSource = ReportName;
this.crvReports.RefreshReport();
}
Dataset for report is always passed from application. Crystal don't
use connection used to design the report and it's not connected to
database.

Regards,
Paul

--- In firebird-support@yahoogroups.com, "Rick Debay" <rdebay@...>
wrote:
>
> It's looking like Crystal Reports is holding transactions open,
even if
> the report is closed.
> I've seen cases where a user will close all their reports, but keep
a
> connection to the database. Only after the application is closed
do the
> transaction numbers move. It looks like Crystal polls the database,
> trying to keep itself current with all meta-data changes.
> Is this a problem inherent with Crystal, or do we have it
misconfigured?
>
> Thanks, Rick DeBay
>
> Disclaimer: This message (including attachments) is confidential
and may be privileged. If you have received it by mistake please
notify the sender by return e-mail and delete this message from your
system. Any unauthorized use or dissemination of this message in
whole or in part is strictly prohibited. Please note that e-mails are
susceptible to change. RxStrategies, Inc. shall not be liable for the
improper or incomplete transmission of the information contained in
this communication or for any delay in its receipt or damage to your
system. RxStrategies, Inc. does not guarantee that the integrity of
this communication has been maintained nor that this communication is
free from viruses, interceptions or interference.
>