gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Try PageHeader.Top := tempT;
-
Use Engine.CurY := Engine.CurY + Engine.FreeSpace + PageFooter1.Height - ReportSummary1.Height - 1;
-
Attach your report template (fr3). Use TfrxReport.SaveToFile Also set correct Top position for all bands
-
Modify your code report_runtime.SaveToFile('C:\test.fr3'); report_runtime.PrepareReport(); Â Â report_runtime.DesignReport(); Â Â report_runtime.ShowPreparedReport; and attach test.fr3 here
-
wrote: 3.6 Aggregate functions In most cases group reports need to display some summary information (such as: ???total of a group???, ???number of group elements??? etc). FastReport provides aggregate functions for calculating aggregate values ov…
-
frxreport.ScriptText.Insert(0, 'end;'); frxreport.ScriptText.Insert(0, 'Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Height - 1;'); frxreport.ScriptText.Insert(0, 'Begin'); frxreport.ScriptText.Insert(0, 'procedure ReportSummary1On…
-
1. You should add your script at the begin of frxreport.ScriptText 2. Add ReportSummary.OnBeforePrint := 'ReportSummary1OnBeforePrint'; to your Delphi's code
-
For example for frxExportXLSX.pas: var   f, i, j, k, l, x, y, dx, dy: Integer;   Obj: TfrxIEMObject;   r: TfrxRect;   MCells: array of TRect; // merged cells   StrList: TStrings;   StylesMap: array of Integer;   Pictures: TList; // of …
-
Sorry, but FR doesn't have such feature
-
There is no such component. You should use several objects (TfrxShapeView, TfrxMemoView, TfrxCheckboxView)
-
Does your printer driver supports continuous paper? Set it in the TfrxReportPage settings
-
1. TfrxDBDataset.CloseDatasource = False 2. property Buttons : TfrxPreviewButtons; Description A set of buttons, which will be available in the preview window. The available values of this property are the following: pbPrint - printing pbLoad -…
-
Try to use ReportTitle MasterData for mdComments Header 1 (this data needs to stay together) Child1 for Header 1 (this data needs to stay together) Child2 for Child1 (this data needs to stay together) MasterData for mdNotes Child1 for mdNot…
-
Place stretched TfrxPictureView on the stretched band
-
Add TfrxPageHeader band and use counter in the PageHeader1OnBeforePrint event
-
Try to use latest FR 5.5.12 - it works OK for me
-
Sorry, but FR doesn't have such feature
-
Try to use latest FR 5.5.12. If problem still exists - create a small demo project with error and send it to support@fast-report.com
-
No, you should set relation between tables
-
procedure Memo19OnBeforePrint(Sender: TfrxComponent); begin   Memo19.Visible := <> ;                                                              end;
-
Confirmed. Doesn't works with TfrxReport.OnGetValue, but works with report script. See attach
-
If Memo2 and Memo3 have a static text procedure Memo1OnBeforePrint(Sender: TfrxComponent); begin   Memo1.Visible := Memo2.Text <> Memo3.Text; end; If Memo2 and Memo3 have expressions - you should compare these expressions instead of TfrxM…
-
FR doesn't have have such feature. You may show/hide some objects on the TfrxHeader depont of TfrxDetailData.Dataset.RecordCount value
-
Try to set TFrxCSVExport.UTF8 to True
-
Try to save report template in the BLOB field
-
See my report template and prepared report - works OK for me. I can't to prepare report with your fr3 - no data from TFrxReport.OnGetValue
-
Try to create user function, call it and add a field to kbmmemtable in the Delphi's code
-
Try to set TfrxDBDataset.RangeBegin to rbCurrent, TfrxDBDataset.RangeEnd to reCurrent
-
Try frxReport1.DataSets.Clear; frxReport1.EnabledDataSets.Clear; frxReport1.DataSets.Add(fsData1); frxReport1.EnabledDataSets.Add(fsData1); if iCount>1 then   begin     frxReport1.DataSets.Add(fsData2);     frxReport1.EnabledDataSets.Ad…
-
Use for Open command procedure TForm1.FormShow(Sender: TObject); var   Designer: TfrxDesignerForm; begin   ........   NewDialogMI.Action := Designer.NewDialogCmd;   //OpenMI.Action := Designer.OpenCmd;   SaveMI.Action := Designer.SaveCmd; …