
Samuray
Samuray · Administrator
About
- Username
- Samuray
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
We shall make news since day for day. Your fr7.dpk is broken. Don't save fr7.dpk on delphi query after installation (Delphi remove all precompiler directives). Get original fr7.dpk and try again please.
-
Increase scaling by height in export settings window. Use preview for checking optimal scaling parameters. Try to uncheck "Empty lines" and "Lead spaces" for best results.
-
In ReportTitle OnBeforePrint script write: begin mysum := 0 end In maserdata Memo OnBefore script write: begin mysum := mysum + [Total Cost]; end In PageFooter Memo write: [mysum]
-
Thank you Gord!
-
Remove paths to old version of the FastReport from Delphi-Environment-Library Path
-
procedure PrintPreparedReport(PageNumbers: String; Copies: Integer; Collate: Boolean; PrintPages: TfrPrintPages); PageNumbers: clear for all pages, 1-3 for pages from 1 to 3 etc. Copies: number of copies Collate: true if collate PrintPages: …
-
treierts wrote: However, I've hit a snag. There doesn't seem to be a TRichView wrapper for Fast Reports. I've read some posts at the TRichView support forums that suggests that there are some API changes needed in FastReports to get it to work. …
-
1. Use this code: frReport1.LoadFromFile('filename'); if frReport1.PrepareReport then frreport1.ShowPreparedReport; or frReport1.LoadFromFile('filename'); frReport1.ShowReport; ShowReport include PrepareReport and ShowPreparedReport. 2. …
-
Send me please your report .frf file. I want to look on this problem in current report ...
-
FieldIsNull new function (from 2.5) See undocumented.chm (in 2.51) for details. New documentation coming soon.
-
1. Don't use construction: if ([datam.cds."FLOATVAR"] <> null) then // wrong code use this code: if not FieldIsNull('datam.cds."FLOATVAR"') then // right code 2. What decimal separator you use?
-
Hi Gord! Thanx a lot! I will mind all you wishes!
-
If report has several pages, FR prints all records in the page1 and then all records in the page2. If you want to change it, set the TfrReport.DataSet property to main dataset and set the TfrReport.ReportType = rtMultiple.
-
Simple example Write in Delphi code: frReport1.LoadFromFile('mylikereport.frf'); frVariables := 'MyCompanyName, Ltd.'; frReport1.ShowReport; In report place memo on page and double click on memo by mouse. Print in memo: [COMPANY] After…
-
Noting problem. Use this way. In composite report you have any merged reports. Not strongly with ReportTitle - with any bands. Composite report preparing contained reports independently.
-
gordk wrote: thanks for fix but unclear as to exactly where it goes. do you want to insert this added code ... // insert here Don't insert. Simply change order old lines: InitGroups(b.FirstGroup); if b.HeaderBand <> nil then…
-
We a not have Matrox P750 Shall be grateful for help in decision of this problem.
-
Whats problem? Simply add new report page and make all what you needed.
-
See this code as example: TfrView *obj = frReport1->FindObject("Memo1"); obj->FillColor = clRed;
-
Tell more about your report. Many details. I do not understand what you want to do.
-
Talk with yours provider. Or use any other mailbox.
-
Uninstall FastReport package. Delete all fr*.dcu, fr*.obj, fr*.bpl, fr*.bpi, fr*.lib files and try to reinstall package again.
-
Simply way - using the Custom Preview.... I'm think in future we release this feature by default.
-
Use FastReport 2.51, this problem in many events has fixed.
-
css wrote: Remote host said: 554 Service unavailable; Client host [62.67.200.156] blocked using dnsbl.sorbs.net; Spam Received See: http://www.dnsbl.sorbs.net/cgi-bin/lookup?IP=62.67.200.156 Your subnet stored in spam black list. Any ser…
-
Several variants: 1.Use many master data with many grouping. 2.Using subreports. If you have any problems - tell me more datails with real example and we a help you.
-
wrote: - I work with some Global variables in delphi, How can I pass/go these variables to FR.? Nothing problem. frVariables := anyvalue; after use variable with name 'ANYVARNAME' in report. This is very simple way. wrote: - I work w…
-
Stored procedures don't supported directy by FastReport. Use custom functions or handlers on TfrReport.OnGetValue or TfrReport.OnUserFunction. Examples: procedure TForm1.frReport1GetValue(ParName: String; var ParValue: Variant); begin if Par…
-
See example with table of contents in FastReport 2.51 Demo. Simply way - using internal varables in two-pass report.
-
We shall do all that from us depend in next versions