DOubt in crystal reports

selvakumar_82

Member
Joined
Nov 29, 2005
Messages
6
Programming Experience
Beginner
I have set of values in listview,
i want to display all the details into crystal reports,
any1 tell me how to solve this problem.......................?
 
Crystal report Push Method

Sounds like you just want to 'push' a datatable into a crystal report.

You should take the listview items and create a dataset from them. You will push the data from a datatable into the report and then display/print the report.

Set a public variable to hold the data: (in a PublicVariables Module)
Public tblTempReport As DataTable

Set the report datasource to this table:
Dim TempReport As New rptCrystalReportName
TempReport .SetDataSource(tblTempReport )


Read up on the Crystal Reports Push method, there are some good tutorials out there.

Hope this helps.
 
Last edited:
Back
Top