gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 559
- Last Active
- Roles
- Members, FR Team
Comments
-
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; …
-
wrote: When load prepared_Stretch_meiryo.fp3 in the preview window, It was supposed to be two lines from line 11 to 20, but it was only one line high. You should rebuild report in the latest FR, don't use old prepared report (fp3). This old …
-
FR FMX 2 doesn't have Android/iOS support wrote: Is there a way to put the report-files into the application-file? You may store report templates in the DFM
-
Set column positions (FRDesigner - Edit Page window - Other options tab - Positions list)
-
Try to use latest FR 5.5.11 - it works OK for me
-
Try to set TfrxBarcodeView.CalcCheckSum to False wrote: Are QR barcodes supported? Yes, but in the registered version of FR (not free FR Embarcadero edition)
-
Fixed. Will be available in the next build (after 5.5.11)
-
Use latest FR 5.5.11 - it works OK for me
-
Did you add horizontal TfrxMasterData with RowCount = 1?