I have a following problem. I made an application that generates rdlc reports for one of my clients. I used TableAdapters to fill the DataTables that I use in those reports. The problem is that my client has a new database and he wants to be able to use that application to generate reports from both the old and the new one. I thought it was possible to change the connection that my TableAdapters use so that they would just take the data from the database that my client selects (both databases have identical schema’s) but I was told that that cannot be done. So is it possible to change the DataTable that rdlc report uses?
How can I solve this problem
I have a following problem. I made an application that generates rdlc reports for
Share
You can assign any datatable to rdlc at run time using following code.