gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
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?
-
Use latest version of FR
-
Can I use FireDAC with FastReport VCL 5 Embarcadero Edition? Yes, you can Add TfrxDBDataset to project, assign it with FireDAC dataset, go to FR's designer and enable TfrxDBDataset (menu Report-Data), add TfrxMasterdata band to report template, …
-
wrote: If I compile my applications the compiler uses the PAS files instead of the DCUs which defeats the whole purpose of precompiling FR AFAICT. Units will be compiled one time only. If you will not change FR's pas files - it will not recom…
-
Attach your report template (fr3) and prepared report (fp3) here
-
Try to use latest FR 5.5.11. If error still exists - create small demo project with error and send it to support@fast-report.com
-
Use such script: var   s : String; procedure MasterData2OnAfterPrint(Sender: TfrxComponent); begin   if Engine.FinalPass then     s:= s + #13#10 +'AfterPrint ' +Sender.Name+  ' - Page:' + IntToStr(); end; procedure MasterData2OnBeforePrin…
-
Use TfrxPageFooter band
-
Try to use TfrxMasterData with Height = 0 and RowCount =25 Run query in the TfrxMasterData.OnBeforePrint event and show query result on the TfrxDetailData
-
Store data from group footer in the array during first pass and then show this array on the second pass
-
Fixed. Use latest FR
-
wrote: String ImpresoraSeleccionada = "A"; // This line of code is not real, but it is for selecting the desired printer Check printer's name, it may be a typo in the printer's name
-
FR doesn't have such feature. You need to modify FR's sources
-
wrote: I tried using the DBCross-tab object, but i need the table to allways occupie the full page width even if it as to strech the columns It seems you will need a complex calculations during report's preparing to calculate width of columns…
-
Use Master-Detail-Subdetail datasets Order Master dataset by department field, Detail dataset - unique values of the years values, subdetail - Av values Add TfrxGroupHeader, TfrxMasterData, vertical TfrxHeader and TfrxMasterData Assign horizonta…
-
All these things you can do in the Delphi's code In the script you can call user function to force printing in black/white from the Delphi's code. Use Report.OnReportPrint event
-
Set TfrxGroupHeader properties and change dataset sort order before preparing of report
-
wrote: Would it be possible to just print the contract page once, as the last page, and then go through inserting the blank pages and using ModifyPage(i * 2 + 1, page); on each blank page with the same cached "page"? Yes, if contract page hav…
-
Users can drag&drop available dataset fields from Data Tree to report page
-
You may use several e-mail adresses delimited by comma
-
wrote: And I have more records, so separate pages is not good idea Separate pages is good idea, just assign TfrxReport.Dataset with Master dataset
-
uses frxPreview; procedure TForm1.frxReport1Preview(Sender: TObject); begin   TfrxPreviewForm(frxReport1.PreviewForm).ExportPopup.Items[0].Visible := False; end;
-
You can resort preview pages after report's preparing var i, j: integer;     page : TfrxReportPage; begin     frxReport1.PrepareReport();     j := frxReport1.PreviewPages.Count div 2;     page := TfrxReportPage.Create(nil);   …