Crystal Report just have one line ?
Posted
by Henry
on Stack Overflow
See other posts from Stack Overflow
or by Henry
Published on 2010-01-08T00:15:59Z
Indexed on
2010/04/15
13:53 UTC
Read the original article
Hit count: 279
OpenConnect();
OleDbDataAdapter olda = new OleDbDataAdapter("Select * from RECORD where LIC_PLATE='GE 320'", con);
DataSet dataset = new DataSet();
olda.Fill(dataset);
cr1.SetDataSource(dataset.Tables[0]);
crystalReportViewer1.ReportSource = cr1;
crystalReportViewer1.Refresh();
CloseConnect();
I had only one line in my report. How can I solve this problem ? I checked that I had too many records that has LIC_PLATE= GE 320
© Stack Overflow or respective owner