Question how to put the listview items to the crytal report

Are your listview items in a dataset/datatable? I would create a typed dataset, fill your items items into it, use that for your listview and passing it to the report is easy and never even has to connect to the database. When creating your report, point it to your typed dataset intsead of a database and add your fields as you want. Then you just have to pass the report you dataset at run time as the datasource.
 
Back
Top