Hello,
Everytime I view my crystal report, a "Database Login" prompts me. How do i get rid of this? I did the CrystalReport via the Wizard, so my code snippet is just like this:
Is there a solution for this? Thanks!!
Everytime I view my crystal report, a "Database Login" prompts me. How do i get rid of this? I did the CrystalReport via the Wizard, so my code snippet is just like this:
VB.NET:
Dim report as new ReportsViewer 'the form that contains the crystal report viewer
Dim cr as new ClientInfoReport
cr.SetParameterValue(0, company)
cr.SetParameterValue("strCompanyName", company, "ReportingAddressReport")
report.CrystalReportViewer.ReportSource = cr
report.ShowDialog()
Is there a solution for this? Thanks!!