Click here to Skip to main content
16,018,802 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am trying to put filter to filter values from database and then show through crystal report... I tried google my problem but failed to get my answer.. pls help..

C#
private void button1_Click(object sender, EventArgs e)
        {
            creport crpt = new creport();
            billwisecrystalrpt objReport = new billwisecrystalrpt();
           crpt.crystalReportViewer1.SelectionFormula   ="{Projects.challanno} =" +txtbillno.Text;
           
           crpt.crystalReportViewer1.ReportSource = objReport;

        }


With the help of this code i am getting single value but i inseted 10 value on a single ID. I thought i will get all the values but didn't..

Need help..

Thankyou...
Posted

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