gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 558
- Last Active
- Roles
- Members, FR Team
Comments
-
Set TfrxMasterData.Stretched to True
-
Try to call frxpt.loadfilefrom('xxx.fr3'); after all TfrxDBDatasets creation
-
See a sample for FRDemo in the attach
-
Use TfrxHeader and TfrxFooter bands for masterdata for several records. Get value before header/footer print
-
Did you add TfrxDesigner to project? Better to attach small demo project with error here
-
Use function TForm1.frxDesigner1SaveReport(Report: TfrxReport;   SaveAs: Boolean): Boolean; begin   if Report.Modified then ... end;
-
Attach your report template (fr3) and prepared report (fp3) here
-
Try to check current in the TfrxMasterData OnBeforePrint and OnAfterPrint events on the first pass
-
Does report template loaded to TfrxReport? Try frxReport1.DesignReport; if frxReport1.PrepareReport(true) then frxreport1.ShowPreparedReport;
-
unit Unit1; interface uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,   Dialogs, frxClass, frxExportPDF, frxPreview, frxDsgnIntf, Menus; type   TForm1 = class(TForm)     frxReport1: TfrxReport;     …
-
Try to uninstall all instances of FR, remove all FR's files and folders (see hidden and system folders too) and then install latest build of FR again
-
wrote: they have parameters Does parameters have default values?
-
Use TfrxBarcode2DView.Expression property
-
Confirmed. Your ticket #449070 was redirected to our developer. Resolving in progress
-
Place TfrxMemoView with frame on the band with subreport, set TfrxSubreport.PrintOnParent = True, TfrxMemoView.StretchMode = smMaxHeight
-
Try to remove HKEY_CURRENT_USER\Software\Fast Reports registry entry
-
1. Do you use latest FR 5.6.7? 2. Try to open session, print from any other application (MS Word, WordPad), run your application and print prepared report. Did you get same behavior?
-
Create and send small demo project with error to support@fast-report.com
-
Set band's PrintIfDetaiEmpty to True
-
Does frxClass.hpp exists in the FR's LibDXX folder?
-
See attach
-
Add path to FR's LibDXX folder to Library and Browsing path in the IDE
-
Add TfrxBarcodeObject to your project or add frxBarcode unit in the uses list
-
Try to use subreports, see FRDemo "Side-by-side subreports" sample
-
Set Page1.LargeDesignHeight to True
-
Try to check Engine.FreeSpace in the TfrxMasterData.OnAfterCalcHeight event and call Engine.NewPage if free space is not enought
-
You may change PDF button behavior in the preview unit Unit1; interface uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,   Dialogs, frxClass, frxExportPDF, frxPreview, frxDsgnIntf, Menus; type   TForm1 = cla…
-
Jo??o Ferreira You may use PDF printer to get TfrxRichView as text in the FR5
-
Daniel Gex wrote: » I have with the Standard Edition no source code. How can I fix this problem? Use FR 5.6 - 5.6.3 or wait for next build of FR
-
Modify frxPreview.pas in the Source folder: procedure TfrxPreview.SetFindFmVisible(Value: Boolean); var NeedChange: Boolean; begin NeedChange := Value <> FSearchFrm.Visible; //FSearchFrm.trvFind.Items.Clear; if Value then TextToFind := ''; if…