sunny shukla
sunny shukla

Reputation:

how to create dynamic crystal report

We are able to display data in grid view dynamically. We let the user select one of table out of 153 tables , on selection of of any table we are able to generate a check box list containing fields of the selected table and allow user to select field/s of his choice.On pressing show data button we are able to show the corresponding data in grid view.Now my question is how can i am able to display this data in crystal report using asp.net c# .

Upvotes: 1

Views: 10860

Answers (2)

Nathan Koop
Nathan Koop

Reputation: 25197

If you are loading a dataset with the data you can set the crystal report datasource to the dataset.

cvwMain.ReportSource = New CustomersBasic()

Example from http://msdn.microsoft.com/en-us/magazine/cc301570.aspx

Upvotes: 1

Related Questions