Click here to Skip to main content
15,889,034 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hello,
I have an application which connects to an sql server database and adds data to the database, I have a query that searches for specific records and displays them to a datagrid, I want to print from the datagrig only the user selected rows of the datagrid, I found that I must use a fornula in cr, here is the code I have find and add some of mine.
VB
Dim i As New Int32
       Dim rpt As New CrystalReport7()
       i = 0
       rpt.SetDataSource(DataSet31)
       For i = 0 To Me.DataGridView1.SelectedRows.Count
           print.CrystalReportViewer1.SelectionFormula = String.Format("{{me.Table_1.id}} = '{i}'", Me.DataGridView1.SelectedCells(i).Value)
       Next
       print.CrystalReportViewer1.ReportSource = rpt
       print.Show()


but i thing it is not correct, any help?
Posted

1 solution

 
Share this answer
 

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