gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 603
- Last Active
- Roles
- Members, FR Team
Comments
-
Attach a screenshot of corrupted CHM file here
-
Use for example uses frxClass, frxPreview, frxPreviewPages, frxRes; type TForm1 = class(TForm) Â Â frxReport1: TfrxReport; Â Â procedure frxReport1Preview(Sender: TObject); Â Â procedure NewOnClick(Sender: TObject); end; var Form1: TForm1; …
-
Ask this question in FR.Net forum
-
I try with FR 4.10.16 - all works OK
-
You must prevent overlapping of objects for better perfomance
-
Try to use FR.Net
-
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)]