cancel
Showing results for 
Search instead for 
Did you mean: 

Question about the ReplaceConnection_click event

former_member468298
Participant
0 Kudos

In the ReplaceConnection_Click event there is a reference to a variable named

rptClientDoc. The code does not compile because it is not referenced anywhere. How is this variable initialized?

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

It's referenced in a few places but globally in the form load event:

public class frmMain : System.Windows.Forms.Form
{
CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rptClientDoc;

Don

former_member468298
Participant
0 Kudos

Hi Don, Thanks Ben

Answers (0)