Click here to Skip to main content
15,892,737 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I want to set data source dynamically to a Crystal Report in C# Winform application..
But when I create the crystal report with "Using the Report Wizard", it shows all records fields in crystal report..

I checked the SQL Query in Crystal Report -> Right click on "Database Fields" in Field Explorer and then click on "Show SQL Query..."
It show simple connection, which fetch all records from two tables..

How to set that SQL Query dynamically???

I tried to set dataset, when I call the Crystal report, but it does not worked... :-(
My C# code is :-
C#
OleDbConnection con = new OleDbConnection("Provider=Microsoft.jet.oledb.4.0; data source=" + Application.StartupPath + @"\DataInfo1.mdb;Persist Security Info=true;User Id='Admin'; password=;");

con.Open();

OleDbDataAdapter da = new OleDbDataAdapter(@"SELECT ct.custID, c.custName, c.custAdd,ct.custTranDate,ct.custTranType,ct.custPaidAmt,ct.custDueAmt, c.custArea FROM custTransaction ct left JOIN custDetails c ON ct.custID = c.custID where ct.custID='CUST-000002' and ct.custTranDate BETWEEN #2/28/13# AND #3/1/13#", con);  
          
DataSet ds = new DataSet();
da.Fill(ds);

CrystalReport1 cr = new CrystalReport1();
cr.SetDataSource(ds);
this.crystalReportViewer1.ReportSource = new CrystalReport1();
this.crystalReportViewer1.Show();

Please help me.

Thanks in Advanced.
Posted
v2

1 solution

u r problem is over here
this.crystalReportViewer1.ReportSource = new CrystalReport1();

u have to use as follows
this.crystalReportViewer1.ReportSource = cr;
this.crystalReportViewer1.Refresh();

hope it will help
also check following link...
http://csharp.net-informations.com/crystal-reports/csharp-dynamic-crystal-reports.htm[^]
 
Share this answer
 
v2
Comments
JayantaChatterjee 6-Mar-13 11:16am    
Thankss a Lottttttttt Sir...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900