Hide a page at Runtime
I'm using FR 4 with BCB 6
I have a report that consist of two pages. How can I disable the first page at run time?
I've tried the following but it does not work.
Any ideas will be appreciated
I have a report that consist of two pages. How can I disable the first page at run time?
I've tried the following but it does not work.
// Get a pointer to the object
ReportPage = (TfrxReportPage*)frxReport->FindObject("FirstPage");
// Disable the first page
ReportPage->Visible = false;
Any ideas will be appreciated
Comments