gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 559
- Last Active
- Roles
- Members, FR Team
Comments
-
Set TfrxPDFExport.ShowDialog to False and set TfrxPDFExport.FileName
-
Try to use TfrxFooter band instead of TfrxReportSummary. Set TfrxMasterData.KeepFooter to True
-
Check CopyNo Delphi variable in the TfrxReport.OnPrintPage event, pass through all Page's (prepared page) objects and change visibility for these objects
-
You should set master-detail link between two datasets on the Delphi's level. This is standart Delphi (not FR) task
-
Set TfrxPDFExport.ShowDialog to False and set TfrxPDFExport.FileName
-
Demo project in the attach
-
wrote: It need include some extra unit ? No any extra unit. poLandscape, poPortrait declared in the standart Delphi's Printers unit
-
wrote: Please can you tell me how to use that macro on that event ? You can't. wrote: How can I find out witch copy is ? Look at TfrxReport.OnPrintPage header procedure TForm1.frxReport1PrintPage(Page: TfrxReportPage; CopyNo: Intege…
-
CopyName# variable is macro variable. It available in the prepared report only, you can't to use it during preparing of report. Use TfrxReport.OnPrintPage event
-
wrote: As I've mentioned before, how can I check what copy is printing , so I can disable another memo object to print in the second copy. Try to use TfrxReport.OnPrintPage event wrote: but still in the two copies of my report the memo wi…
-
Attach your report template (fr3)
-
Try to test and use FR 5: https://www.fast-report.com/en/download/public_files/245/
-
wrote: How can I set a Master-Detail link between datasets? Google "Delphi master detail"
-
wrote: First I wonder why I do not have to tell FR which is the unique ID that connects the two datasets. In this case it is not called 'ID' but 'EqID'. Obviously FR can find the connecting field itself? You should set Master-Detail link bet…
-
- put a memo object with [CopyName#] text inside. It will show a copy name; - go "Code" tab and write a simple script that will give names to each copy. You can also do this in Delphi code; begin   frxGlobalVariables['CopyName0'] := '';    …
-
No any idea without test project with error. Attach test project here or send it to support@fast-report.com
-
Use Memo1.Memo.Text := '10'; X := StrToInt(Memo1.Memo.Text) + 10;
-
Reopen detail dataset in the master's OnAfterScroll event on the Delphi's level
-
https://www.fast-report.com/en/product/fast...rt-fmx/changes/
-
See changes.txt in the FR's folder
-
Place notes section on the TfrxChild band
-
1. Sorry, but FR doesn't have such feature 2. Read about data splitting: https://www.fast-report.com/public_download...a_splitting.htm
-
wrote: The two child bands shall be independent from each other. That means that the user should be able to activate child band 1 or band 2 or also both. Add band. Add Child1 and Child2. Set Band.Child = Child1, Child1.Child = Child2, Child1.…
-
procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin   if mod 2 = 0 then MasterData1.Child := Child1 else MasterData1.Child := Child2;                                                  …
-
wrote: how should FR know about a variable that is defined in Delphi? This script will be works in the run-time only. If you want - you may use report variable instead of script variable
-
frxReport1.Script.Variables['HideChild'] := False; Add script (not report) variable. Use my code only
-
wrote: Or how could I tell FR that the above code should only be executed if child1 shall be displayed at all? (It is an optional information that the user chooses to display or not display before print) Use in the Delphi: frxReport1.Script.…
-
This code should work. Check your code and script
-
Set frame for TfrxCheckBoxView