gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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;
-
cika Attach your report template (fr3) and prepared report (fp3) Did you don't show PageFooter on the last page too? Use English if Engine.FreeSpace + PageFooter1.Height < ReportSummary1.Height then Engine.NewPage; Engine.CurY := Engine.CurY…
-
Add TfrxGroupHeader band with unique group condition for each record of MasterData, move all ojects from MasterData to GroupHeader, set MasterData.Height to 0, set GroupHeader.ReprintOnNewPage to True
-
Try to use TfrxDMPCommand to control printer's line feed
-
Attach your report template (fr3), prepared report (fp3) and a sample what you want to get
-
It seems you still have some files from old version Uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too), remove all references to FR from IDE and then install FR 5.6 again
-
Try to recompile all FR's packages by FR Recompile wizard (recompile.exe) And check "With BDE packages" option