inherited ReportPage class
Hi,
I was trying inherit ReportPage class and when I call Design() method on new instance of this derived class I get Null Reference Exception. It looks like something in class is private. So can I inherit this class?
I was trying inherit ReportPage class and when I call Design() method on new instance of this derived class I get Null Reference Exception. It looks like something in class is private. So can I inherit this class?
public class MyReportPage : ReportPage
{ ?
? public MyReportPage()
? {
? }
}
myReport.Pages.Add(new MyReportPage());
myReport.Design();
Comments
Report page inheritance is not supported.
Thanks?