Hello All, I have created a crystal report using MySql 5.1, using XML (Dataset save as xml in application root folder) now when i run on my machine it works fine. But when app is installed on other machine it give database login required. how can i remove that login window ? The code is given below
cDataSet.DataSetName = "TimeDataSet";
cDataSet.WriteXml(Application.StartupPath
+ "\\" + "TimeDSReport.xml", XmlWriteMode.WriteSchema);
ReportDocument report = new ReportDocument();
report.Load(Application.StartupPath + "\\" + "TimeTracker.rpt");
crystalReportViewer1.ReportSource = report;
Please see if the code is fine or i need to add some additional parameter?
Thanks PAL