gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
You may add 3 TfrxDBDataset on your form and set TfrxDBDataset.Dataset what you need before run FR designer or prepare report Show all 80 datasets (TfrxDBDataset or TfrxADOTable or TfrxADOQuery) doesn't good idea
-
But you can set restrictions in run-time
-
Try to assign query's parameter with report variable and set report variable in Delphi's code
-
Do you have a records with blank date fields?
-
Try for example [SUM(, MasterData1) / SUM(, MasterData1)]
-
Try to write user function and determine primary index of dataset in Delphi's code
-
Attach small demo project with problem
-
Try to use [SUM(,MasterData2) + SUM(,MasterData3) + SUM(,MasterData4)]
-
Attach your report template here
-
Try to set frxMailExport1.UseIniFile to False frxMailExport1.Address:='login1@gmail.com'; Â Â Â Â frxMailExport1.FromCompany:='Company'; Â Â Â Â frxMailExport1.FromMail:='login2@yandex.ru'; Â Â Â Â frxMailExport1.FromName:='Paul'; Â Â Â Â frxMai…
-
Use MasterData Full name: John Doe Date of birth: 01.01.1950 Number of children: 3 Childrens: DetailData Jane Doe (5) Tim Doe (8) Sarah Doe (11) DetailData with RowCount = 1 Current residence: New York, some address Previous residences…
-
Use DetailData band with RowCount=1 for MasterData data
-
Try to create composite report instead of PreviewPages.AddFrom method
-
Just do double click on databand
-
You may assign TfrxDBDataset with Zeos dataset and then assign band with TfrxDBDataset
-
Yes, it's possible. Add one MasterData band and several DetailData bands on your report's page
-
Try to use TfrxPageHeader band
-
Try to add child band (as header) to GroupHeader band and use this script: var EndOfGroup :Boolean;Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â procedure Child1OnAfterPrint(Sender: TfrxComp…
-
Try to use MultiProfile from Devrace http://devrace.com/en/multiprofile/
-
Try to set Header1.ReprintOnNewPage to True
-
See FRDemo "Choosing records to print" report
-
You can't to create charts in script in FR3. This feature was added in FR4 only
-
Do you want to downgrade? In this case some new properties will be unavailable You must uninstall FR, install FR 4.5 and change TeeChart version with FR Recompile wizard (recompile.exe)
-
wrote: ext, as Gpi suggests - you can't use #13#10 inside the string. Try to put two memos one above the other and put necessary texts in each of them - this will allow you to avoid using of #13#10. Or use script variable
-
I think you use installation package for C++ Builder 2010 (with d14 suffix) instead of XE (d15)
-
This code works OK for me: var s: string; begin     s:= QuotedStr('Actual month ' + ' (1.3.2011 - 31.3.2011)');     frxReport1.Variables['My Variable'] := s;     frxReport1.ShowReport(); end; wrote: The biggest problem is/was …
-
Try frxReport1.DesignReportInPanel(Panel1);     with TfrxRichEditorForm.Create(TfrxDesignerForm(frxReport1.Designer)) do       begin         RichView := TfrxRichView(frxReport1.FindObject('Rich1'));         ShowModal;   …
-
1. Yes. See a sample based on FRDemo in attach 2. I get always 2 on your data, because last record for your dataset set value to 2
-
If you use same database for all reports - try to use one TfrxIBXComponent in main app thread
-
wrote: So if this is global variable, declared at unit level - it can be a problem, am i right ? Yes. You may use separate TfrxIBXDatabase in report templates or TfrxDBDataset in datamodule (with TfrxReport.EngineOptions.UseGlobalDataSetList …