FR4.9
Hello...
First post. FR Newbie. Excellent product.
Trying to show a 'help' page within a report.
What the report is about, how to use report features why we are all here etc.
Just memo fields containing text. No data.
User clicks on help button to display help page.
Clicks a button on the help page and returns to the main preview page.
Have added a memo HelpButton with an OnPreviewClick() event. See below
Have also added another page SubRepHelp which contains the help information.
How do I:
- display the help page
- Return to the main report preview page
Report.FindObject gives me a nice number but what to do next ?
The only examples I can find are for ShowMessage() which works fine.
// Preview - Display help page
void HelpButtonOnPreviewClick(TfrxView Sender, TMouseButton Button, int Shift, bool &Modified)
{
ShowMessage("Nice help page");
ShowMessage(Report.FindObject("SubRepHelp"));
// What goes here ???
}
Cheers...
First post. FR Newbie. Excellent product.
Trying to show a 'help' page within a report.
What the report is about, how to use report features why we are all here etc.
Just memo fields containing text. No data.
User clicks on help button to display help page.
Clicks a button on the help page and returns to the main preview page.
Have added a memo HelpButton with an OnPreviewClick() event. See below
Have also added another page SubRepHelp which contains the help information.
How do I:
- display the help page
- Return to the main report preview page
Report.FindObject gives me a nice number but what to do next ?
The only examples I can find are for ShowMessage() which works fine.
// Preview - Display help page
void HelpButtonOnPreviewClick(TfrxView Sender, TMouseButton Button, int Shift, bool &Modified)
{
ShowMessage("Nice help page");
ShowMessage(Report.FindObject("SubRepHelp"));
// What goes here ???
}
Cheers...