What does the statement GetDatasource
I have just begun to examine Fast Reports and there are some items not explained in the manual.
I am working from inside the C# IDE
I am using a plain and simple typed dataset.
This is the Fast Report tutorial
Report report = new Report();
// register the "Products" table
report.RegisterData(dataSet1.Tables["Products"], "Products");
// enable it to use in a report
report.GetDataSource("Products").Enabled = true;
What does the previous statement do?
It calls for something called a "datasource alias" but what is a datasource alias?
Anyone?
Regards
Paul
I am working from inside the C# IDE
I am using a plain and simple typed dataset.
This is the Fast Report tutorial
Report report = new Report();
// register the "Products" table
report.RegisterData(dataSet1.Tables["Products"], "Products");
// enable it to use in a report
report.GetDataSource("Products").Enabled = true;
What does the previous statement do?
It calls for something called a "datasource alias" but what is a datasource alias?
Anyone?
Regards
Paul