Problem with show of inherited report
For example I create empty base report and empty inherited report.
If I load base report then empty report is displayed. (Page 1 of 1)
If I load inherited report then nothing is displayed. (Page 0 of 1)
I try this with texts and database in reports.... same result.
This code i used:
report = new FastReport.Report();
report.Preview = previewControl1;
report.StoreInResources = false;
report.Load("inherited.frx");
report.Show();
Where is problem?
If I load base report then empty report is displayed. (Page 1 of 1)
If I load inherited report then nothing is displayed. (Page 0 of 1)
I try this with texts and database in reports.... same result.
This code i used:
report = new FastReport.Report();
report.Preview = previewControl1;
report.StoreInResources = false;
report.Load("inherited.frx");
report.Show();
Where is problem?
Comments
Try to use full path to report file, like this:
...
report.Load(@c:\yourapp\inherited.frx);
...
There was a problem. Thanks