gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Do you use embedded fonts?
-
Install DB engine and see on "Data" page of your report
-
wrote: Does Format( ) works in jscript? Yes. See a test report template for FRDemo Database in attach
-
Hello, Did you see a sample in C:\Program Files\FastReports\FastReport 4\Demos\PrintTable folder?
-
See support ticket # 197164: wrote: You can't to use DisplayFormat for text, just for expressions. You must format memo's text in code: function Memo4OnBeforePrint(Sender) { Â Â Â Â if (Engine.FinalPass) Â Â Â Â Memo4.Text = "Sum: " + Forma…
-
I download zip file without any problem Try to download from here: http://rapidshare.com/files/425820232/test.zip
-
Sorry, but TfrxRichView doesn't support inline formatting at this moment
-
Try [() #n%2.2n] See attach
-
Sorry, but I don't understand you. Can you attach small demo project with problem?
-
Use latest FR 4.10.x
-
See a test project in attach This code works OK: Â Â Â Â frxReport1.ReportOptions.HiddenPassword := 'test'; Â Â Â Â frxReport1.LoadFromFile('test.fr3'); Â Â Â Â frxReport1.ShowReport();
-
See a DB engine for DBISAM in attach
-
Set TfrxReport.ReportOptions.HiddenPassword property
-
Attach all screenshots of your regional settings here
-
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?