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