gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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…
-
It seems you still have some FR's files from previous version of FR in the system. Uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too) and then install FR 5.6.6 again
-
Use Engine.NewPage to start new page during report's preparing
-
Add TfrxDialogControl to project or add frxDCtrl unit in the uses list
-
Try to prepare one page empty report frxReport1.LoadFromFile('OneEmptyPage.fr3'); frxReport1.PrepareReport(False); or frxReport2.LoadFromFile('OneEmptyPage.fr3'); frxReport2.PrepareReport(False); frxReport1.PreviewPages.AddFrom(frxReport2);
-
Try to install IDE on this PC and debug your application
-
wrote: Perhaps v5.6.6 was a procedural release only, and contained no new or changed functionality... Yes. There are no any changes between 5.6.5 and 5.6.6. Both builds (5.6.5 and 5.6.6) was created in the one day to aligh build numbers in th…