How to remove "Database Login" in crystal report

graced

Member
Joined
Aug 6, 2008
Messages
18
Programming Experience
1-3
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:
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!!
 
Back
Top