DataGridView with columns of different tables in a DataSet

1

I imported 16 tables from my MSSQL into a DataSet and made all the necessary relationships.

I need to generate a report on a DataGridView (or other tool) with columns specific to several tables.

How can I do this?

    
asked by anonymous 02.12.2014 / 13:48

2 answers

1

I finally got it.

To generate the reports I used Crystal Report and for the login problem I added the following line in my App.Config:

<startup useLegacyV2RuntimeActivationPolicy="true"> 

I'm sorry for the lack of information and details, but I'm in a rush! Thanks to those who answered!

    
03.12.2014 / 13:20
0

You can use ReportViewer to generate the report

link

link

link

link

    
03.12.2014 / 12:31