AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
1) what kind of problems? 2) fixed, will be in the next version 3) of course - you shouldn't do it. FR can't show such fonts in wysiwyg mode. 4) you can open old reports without any modifications.
-
this line should be here: ... DmMain.rptFilters.PrintOptions.ShowDialog := False; DmMain.rptFilters.PrintOptions.Printer := prn; ...
-
If you want to use recompiled files, your path should point on LIBD7 folder, no other folders (like Source) should not be present.
-
This property is private now, you can't change it.
-
You can't without changing the source code (frxPDFFile.pas).
-
We know the problem and will try to solve it in the next version.
-
Probably you have FastScript installed. You should uninstall it because FR3 has a copy of latest FastScript.
-
No, it's just not possible because IS and AS constructions will not work for different rtti's.
-
You can't use classes from dll because they have different RTTI. I.e. TFont from main application <> TFont from dll.
-
AddClass requires 2 params: 1) class, 2) name of ancestor of the class (not the class name!)
-
No, there is no such variable, you can't show error message in the script.
-
1) be sure that memo is big enough to print long text - maybe text is wrapped and you can't see the date. 2) check your library path, it should point to FR\LibD7 if you want to use recompiled units.
-
Probably the problem is that excel sheet cannot contain more than 65535 rows.
-
You can skip records this way: procedure Band4OnBeforePrint(Sender: TfrxComponent); begin while Copy(, 1, 1) = 'K' do Band4.DataSet.Next; end;
-
There is no such option yet, maybe I'll add this in the next release.
-
There is no way to set it because Gantt requires 3 parameters. You should build your chart in the delphi code and print it in the report this way: put the empty Picture object in the report and define TfrxReport.OnBeforePrint event: procedure TF…
-
Use latest FR2.54 to convert reports.
-
Cross-tab is doing some calculations that don't needed for printtable. You can try to use old-style crosstabs (vertical bands), see example in the demos\main demo.
-
Do you mean dot-matrix mode? It can't contain anything than text!
-
Just recompile FR packages using recompile.exe wizard (choose "Recompile IBX package")
-
You can use vertical bands if you want to print more customizable grid. See example in the demos\main, "Old-style cross-tab" and "Calendar" reports.
-
Report.ReportOptions.InitString := #27#48; Report.ShowReport;
-
Probably you forgot to switch databand to use new dataset. Save your report to .fr3 file and look at it in any text editor - search for pFibDataset.
-
It is not possible.
-
FastReport3 can print dot-matrix reports, see the main demo.
-
When printing multi-column bands, you can't handle its visibility - the band is printed different way.
-
Just checked it on the demo, it works well. Code is: procedure TForm1.Button1Click(Sender: TObject); begin frxReport1.LoadFromFile('1.fr3'); frxReport1.PrepareReport(True); frxReport1.LoadFromFile('2.fr3'); frxReport1.PrepareReport(False); …
-
Please send me the report file (saved from preview, .fp3 file). tz@fast-report.com
-
See TfrxReport.PrintOptions property description in the programmer manual.
-
I can't say what's wrong. Do you get error when exporting all reports, or only particular report?