gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
Try this (Pascal script): Memo9.Text := Format('%2.2m',[Get()]);
-
What version of FR do you use? I try with FR 4.10.1 - all works OK
-
Try to set cells function to None
-
wrote: A customer sent me a FR template which printed dots in place where font 'calibri' was used (no password/encryption, fonts not embedded) Tell you customer replace font name with 'Calibri'
-
Try to use: procedure TForm1.MyNewBClick(Sender: TObject); begin   TfrxDesignerForm(frxReport1.Designer).NewReportCmdExecute(nil);   TfrxReportPage(frxReport1.Pages[1]).LeftMargin := 0;   TfrxReportPage(frxReport1.Pages[1]).RightMargin := 0; …
-
Try to use: Page.Orientation := poLandscape; Page.PaperSize := DMPAPER_USER; Page.PaperWidth := 162; // Page.PaperHeight := 114;
-
See FRDemo "Dialogs and script" section "Choosing records to print" report wrote: (insert x blank records? blink.gif ) You may use additional MasterData band with empty label and RowRount = x
-
wrote: how to read a path (*.ini) with Delphi to report using fastreport You may use TIniFile in report's script wrote: so make the page setup settings such as page setup in Ms.Word. This is impossible. FR have own page settings dial…
-
Hello, You can download trial versions and try it http://www.fast-report.com/en/download/fas...4-download.html http://www.fast-report.com/en/download/fas...t-download.html
-
Do you use design-time or run-time designer? If you use run-time designer - did you add TfrxDialogControls in your project?
-
Did you use stretched MasterData band?
-
Hello, Use Memo.SetBounds instead of Memo.Height
-
You may set Paper Source for first and others pages in Page Settings dialog window
-
Try to use latest build of FR. With FR 4.10.2 I get 160 in ODS file
-
Just add this code in main procedure of the report's script: begin Chart1.AddSeries(csLine); with Chart1.SeriesData[0] do       begin         DataType := dtDBData;         DataSet := ADOQuery1;               …
-
What build of FR do you use?
-
Hello, Please attach your report template (fr3)
-
Try to use TfrxPreview If you use TfrxPreview you must create your own toolbar and add all the buttons and then hook them to the appropriate functions This functions should be called by each button: frxPreview1.Print; frxPreview1.LoadFromFile; frx…
-
Try to export preview pages: Report.PreviewPages.Export
-
Hello, What build of FR do you use? Try to use latest build 4.10.x
-
Try procedure TForm1.ButtonClick(Sender: TObject); begin     ShowMessage('My Button pressed'); end; procedure TForm1.frxReport1Preview(Sender: TObject); var   Button: TSpeedButton; begin   // add new button   Button := TSpeedButton.Cre…
-
Hello, Try this report template: http://rapidshare.com/files/422321706/test.fr3 - all works OK for me. What result did you get?
-
See changes.txt for FR 4.10: wrote: + added option EmbedProt which allows to disable embedding fonts into an encrypted PDF file
-
Try to add riched20.dll in WINE
-
Create support ticket and ask developers to add this feature in FR
-
1. No. Embedded designer requires correct code and not good solution (IMHO). Better to use modal FR Designer 2. No, if you build project without runtime packages 3. Select the object with the variable and call its context menu. The format editor i…
-
You can use CopyName# report variable in FR4
-
Try to use: Chart1.AddSeries(csLine); with Chart1.SeriesData[0] do       begin         DataType := dtDBData;         DataSet := ADOQuery1;                                           …
-
Use in Delphi: frxReport1.Variables.Variables['FileName'] := '''' + 'C:\test.bmp' + ''''; in script: procedure Picture1OnPreviewClick(Sender: TfrxView; Button: TMouseButton; Shift: Integer; var Modified: Boolean); begin     TfrxPictureView…
-
No. I see English, Russian and German user's manuals only