gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 559
- Last Active
- Roles
- Members, FR Team
Comments
-
Attach your report template (fr3) and prepared report (fp3)
-
This code should works frxReport1.LoadFromFile('repA1.fr3'); frxReport1.PrepareReport; for i := 2 to count - 1 do begin frxReport1.LoadFromFile('repBi.fr3'); frxReport1.PrepareReport(false); frxReport1.LoadFromFile('repAi.fr3'); frxReport1.PrepareR…
-
wrote: Do you know that the PDF export will work on a recent Windows 10? Latest FR 4.15.13 (3 years old) export to PDF without errors on the Windows 10
-
Try to assign TfrxRichView.RichEdit.Lines with your RTF text
-
Attach your generated report template (fr3) here Try GroupHeaderBand.Condition := DMGenericFastReport.frxDBDataset.Name+'."'+AReportParameters.Fields.Name+'"'; too
-
FR 4.10.5 is very old version. Try to use latest FR 4.15.13
-
No, FR doesn't have such feature
-
Try to disable styles in the application, themes in the Windows
-
See a sample for IntraWeb procedure TformMain.IWButton1Click(Sender: TObject); begin     frxReport1.Script.Variables['s']:=Trim(editText.Text);     frxReport1.PrepareReport();     frxPDFExport1.FileName:=WebApplication.URLBase + 'File…
-
frxjpegexport1.Stream := .... rep1.Export(frxjpegexport1);
-
Did you set TfrxJPGExport.Stream ?
-
Try to completely uninstall FR, remove all FR's files, packages and folders (see system and hidden folders too) and then install FR again
-
1. What is vPrinterName value? 2. What is build number of previous version of Fast Report?
-
Attach your report template (fr3), prepared report (fp3) and a sample what you want to get
-
Works OK for me. See a small demo project in the attach
-
Can you create small demo project with error?
-
Try to use PDF printer to create PDF or use SynPDF (see a demo in the C:\Program Files (x86)\FastReport 5 VCL Enterprise\Demos\SynPDF folder)
-
wrote: I am specifically looking for 'Open in New Tab' functionality for the hyperlinks Can you attach PDF with such feature?
-
procedure TForm1.frxDesigner1Show(Sender: TObject); begin   TfrxDesignerForm(Sender).HelpMenu.Visible := False; end;
-
wrote: I split my report over a few pages to make it easier to modify Set TfrxReportPAge.LargeDesignHeight to True and use one TfrxReportPage 2. There is no such method or property
-
OnBeginDoc called when "Apply to all pages" option selected. It rebuild report. "Apply to the current page" option just change page size, orientation and margins
-
FR doesn't have such option, you should create user function to send page number from report script (TfrxGroupHeader.OnBeforePrint event) to Delphi and then use these page numbers during export to set filter's PageNumbers property
-
Try to check TfrxReportPage(frxReport1.FindObject('Page1')).PaperSize in the TfrxReport.OnBeginDoc event
-
Uninstall all instances of FR, remove all FR's files and folders (see hidden and system folders too) and then install FR 5.6
-
Pass through all TfrxReport.AllObjects and move controls
-
You may use TfrxChild band. Show main band for one page, child band - for another page
-
FR show ₹ in the preview correctly. See here: https://yadi.sk/d/JUbEOnX93GcmFq
-
What version of Delphi do you use? Attach your report template with Rupee symbol here
-
uses frxBarcode2D; Â Â TfrxBarcode2DView(frxReport1.FindObject('Barcode2D1')).Text := 'https://www.fast-report.com'; Â Â frxReport1.ShowReport();
-
If you use page footer on the all pages - use if Engine.FreeSpace < ReportSummary1.Height then Engine.NewPage; Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Height - 0.00001;