gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
Try fit to grid all objects
-
Attach your report template (fr3) and saved preview pages (fp3)
-
DestroyForms=False prevent to clear all report variables after preparing of report
-
Hello, Did you set TfrxReport.EngineOptions.DestroyForms to False?
-
You can assign TfrxReport.Dataset with your dataset end create report with Page1, Page2 for each record of your dataset
-
Try procedure Page1OnBeforePrint(Sender: TfrxComponent); begin     Cross1Corner0.Text := '12345';  end;
-
Mick.pl See a report template for FRDemo in attach
-
boky Does Windward's Xml Reports support Delphi?
-
Clear Dataset and DataField properties
-
I think this properties may be same as Delphi's TImage properties
-
You can use Cross' OnBeforePrint event procedure Cross1OnBeforePrint(Sender: TfrxComponent); begin     Cross1Corner3.Text:='123456';                                  end; Not all Delphi's properties was adde…
-
Try TfrxCrossView(frxReport1.FindObject('DBCross1')).CornerMemos[1].Text := 'Items'; TfrxCrossView(frxReport1.FindObject('DBCross1')).CornerMemos[3].Text := 'Ingredients';
-
Try to set TfrxReport.EngineOptions.UseGlobalDataSetList to False and use TfrxReport.EnabledDataSet.Add() to add dataset in local list for each report
-
Try to use TfrxDBCrossView object
-
See a test report template in attach
-
What product (FR VCL, FR.Net, FR Studio, FR Server) do you use?
-
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