RE: How to select print report
Hi Maxene,
Just like you say, users can go to "Report Selections" and choose which report(s) to run. And they can choose more than one report in which case they will be run sequentially, and here the user could cancel the one(s) they did not want. But I guess that this is not exactly what they are requesting.
If you want to have a small list to choose from when you print the report, then a simple way would be to just show a small strmenu-list (providing you have access to development) like this:
action(SelectPrint)
{
ApplicationArea = all;
Caption = 'Print select';
trigger OnAction()
begin
case StrMenu('Report A,Report B,Report C') of
1: Report.Run(1);
2: Report.Run(2);
3: Report.Run(3);
end;
end;
}
Would that work? Or if it needs to be a bit more flexible, have an underlying table where you can put available reports, then run a page modally to choose from. If you like, I could make a sample of that.
Is that the kind of thing you were looking for?