Crystal Report [modified]
-
I want that user can select fields from form and than only that selected fields can display on the report using C# & ADo.NET connectivity. Can anyone help me!!!!! -- modified at 2:30 Thursday 28th September, 2006
There are few ways to do that, 1)If you have reports in your project itself you can use iteract with section items collection and make appripriate items suppress attribute to false. 2)If you have reports as report file(*.rpt) you can play around with the datasource, a) Make sure you have selected verify database on every print b) by using ADO.NET method fill a dataset with selected fileds,then set the datatable or dataview as a datasource for the report. the second solution worked for me with a simple check list report,never tried the first one.. Good luck Where there is a will,there is a way.
Where there is a will,there is a way.