Skip to Content
0
Former Member
Mar 03, 2009 at 04:15 PM

From Crystal 11.5 app VB6 to VS2003 Crystal 2008

41 Views

We are converting a Crystal VB6 application into C# with Crystal 2008 (VS2003). We will be processing existing reports from versions 11.5 down to version 10.

Here are some VB6 statements, what are the equivalent in the .NET Crystal 2008 api

1) CRAXDRT.Report.VerifyOnEveryPrint = false

they did this on VB because they did not wanted any addition report refresh or verification of the database

I see that there is a EnableVerifyOnEveryPrint property, but it is not clear how to access it using the ReportDocument. The ReportOptions from the ReportDocument do not include VerifyOnEveryPrint.

2) CRAXDRT.Report.EnableParameterPrompting = false

Disable parameter prompting

3) CRAXDRT.Report.EnableSelectDistinctRecords = true

Thanks