Search code examples
data-bindingreportrdlc

Can I create a RDLC and databind a table at run time without creating dataset in design time?


Just wondering if it's possible to databind a RDLC's table at run time.

I've created a report, put a table control, but VS compiler says it's necessary to set a dataset.

But I wanted to load data into this table using a dataset created in C# code, and not creating dataset and table adapter.

Is it possible?


Solution

  • You need a Dummy Data Set for the report. You can fill it with you load data on runtime.