AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Use OLE object to show that type of file.
-
Should be lbPrograms.Add([DialogForm.tblPrograms."name"]);
-
Use TfsScript.CallFunction1 instead. It takes var params.
-
Do not use old datamanager (disable {$DEFINE DATAMANAGER} directive in the fr.inc file).
-
You can select the "Virtual printer" in the report options. It can handle all of typical paper sizes.
-
Just replace the english words in the RES\ITALIAN\*.rc files and run mk.bat file to build language resources.
-
Much easier than in FR2.x.
-
Enterprise edition costs so much because it has sources. If you don't need them, Pro edition will be great, it's price will be about $250. I'm looking at our competitors' prices. Noone have a "$99 product".
-
Standard cross-tab has been replaced with advanced cross-tab from powerpack since FR2.51 (or 2.5).
-
There is no 'Null' at line 409. Seems you have old version of fr_cross.pas.
-
fr_dbsqledit.pas should be: procedure TfrDBSQLEditorForm.FormCreate(Sender: TObject); var  Ini: TRegIniFile;  Nm: String; begin  Localize;  Ini := TRegIniFile.Create(RegRootKey);  M1 := TfrSyntaxMemo.Create(Self);  M1.Parent := MemoPan…
-
We don't know exact FIB package names. Correct the oqb*0.dpk file: requires VCL, VCLDB, OQB70, // replace these two lines with actual package names ascstd, FIBComponents;
-
I've updated the OQB install instructions: 1. Install QueryBuilder 1.1. Add paths to library path - in the Delphi IDE, select "Tools|Environmet options..." menu - go "Library" tab, "Library path" edit box - add path to FastReport\QueryBuild…
-
I see. Just replace the fr7.dpk's 'requires' section with this: requires  VCL,  VCLSMP,  DESIGNIDE {$IFDEF IBO}  {$IFDEF IBO4} , IBO40CRT,  IBO40FRT,  IBO40TRT,  IBO40VRT,  IBO40XRT  {$ELSE} , IBO_D7  {$ENDIF} {$ELSE} , VCLDB {…
-
Regular report produces pages in order: 1.1.1.2.2.2 How the TfrReport.ReportType = rtMultiple works: it still produces pages in order 1.1.1.2.2.2, but does this in a cycle: (1.1.1.2.2.2)(1.1.1.2.2.2)... If you want to change page order to 1.…
-
Your solution is used in the TfrRxRichView object. This procedure is different for RTF1.0 and RTF2.0.
-
Could you create a simple demo project that has such error and send it to support?
-
Look at http://www.fastreports.net/en/forum/index.php?showtopic=640 topic.
-
No, richedit does not allow this. Use TfrMemoView, if possible.
-
Original fr7.dpk file should looks like this: requires  VCL,  VCLSMP,  DESIGNIDE {$IFDEF IBO}  {$IFDEF IBO4} , IBO40CRT,  IBO40FRT,  IBO40TRT,  IBO40VRT,  IBO40XRT  {$ELSE} , IBO_D7  {$ENDIF} {$ELSE} , VCLDB {$ENDIF} {$IFDEF BD…
-
You can use TfrOLEObject to insert any object into report.
-
Yet not. FR3 is in alpha-stage now.
-
I think Yes. FR3.0 does not use DB.pas if you don't use TfrxDBDataSet.
-
May be, but now we don't have it.
-
1) Five demos in fs\demos and documentation with code snippets 2) What's this?
-
Sorry, we're not planning this.
-
No.
-
Button1.OnClick := Button1Click; procedure TForm1.Button1Click; begin fsScript1.CallFunction('Button1Click', VarArrayOf([Self])); end;
-
It will be ready when it's documentation will be ready I hope it will in two months.
-
Fr3a7 includes xls, rtf, html, txt exports. pdf is planned in the near future.