AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
You can use TfrxPreview component to create own preview windows, without need to change FR sources.
-
In the FastReport you can only change its sources.
-
Yes, pascal procedures can't return a value, you should use 'function' word.
-
These filters are for FR.
-
FR3.10 should work.
-
Tell me step-by-step instructions how to reproduce this.
-
Please send the .fr3 and .fp3 files (.fp3 - save from preview) to tz@fast-report.com
-
Use other export filters by third-party developers (for example, Gnostice).
-
Try to use other ScaleX/ScaleY ratio. TXT export is not so good, we will rewrite it in the further releases.
-
See http://fast-report.com/en/products/variants.php
-
You should handle it yourself (by setting CurX/CurY properties of the Report.Engine), because the code that handle the band columns is not executed when you use manualbuild.
-
FR3 rtf export exports the document into a table format. It is by design.
-
GRFrones wrote: Making some tests and looking for COPY function on FastScript source, I think I found a bug... Try to convert the string '0012' to variant and back to string... It will return '12'... Using the Copy function on FastScript (that …
-
As I said before Delphi6 must have two updates installed, in other case you'll get Invalid Variant Conversion errors when running some scripts. To check if updates was installed correctly, run Delphi and make File|New application and compile it. Siz…
-
Open/Save dialogs always change the current directory. You shouldn't use relative path when loading/saving your reports.
-
Does this error happen when you export any report or only some kind of report?
-
You can't preset the filename. It will be prompted when you press OK in the dialog.
-
1) you can read more in the manual for enterprise edition (download it from our website) 2) to show outline, you should enable the TfrxReport.PreviewOptions.OutlineVisible property. You should also use Report.PreviewPages.Outline.AddItem(text, posi…
-
FR can't split big page to A4. Set page size to A4 and your cross-tab will be splitted automatically.
-
Two errors: fsScript1->AddMethod("Integer Func(x:Integer)",ScriptFunction,NULL,NULL); should be fsScript1->AddMethod("procedure Func(x:Integer): Integer",ScriptFunction,NULL,NULL); if(FuncName=="func") should be if(FuncName…
-
D6 MUST have upd1 and upd2 installed.
-
What Delphi version do you use?
-
Set TfrxReport.EngineOptions.UseFileCache := True.
-
FR can print rtf that aligned both left and right.
-
ReportOptions.InitString should work, you could check the esc command presence in the output file if you select "print to file". There is no special option to send esc command after printing.
-
1) FR will wrap this text as 11111 22222 33333 4444444444444444 444444444 you can't change this behaviour. 2) See the documentation about using [] symbols in the memo.
-
Please see example scripts shipped with FastScript. There is some examples how to use OLE object.
-
FR3 is wysiwyg, all text should be printed as it displayed in the preview. The only one problem may be with TfrxRichView object - it is rendered by Windows and is not wysiwyg.
-
Read the developer manual about adding a user function to FR3.
-
But FR3 works well without vclskin, isn't it?