AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Just download the FR3 compiled demo (which has all exports included) and check how they work.
-
When printing page footer, freespace is always 0! Freespace returns an amount of space between current Y position (CurY) and top coordinate of the page footer.
-
I don't familiar with kbmmw. FR3.0 is working in multi-threaded web server - see our server demo at fastreports.net/server
-
FR3 does not depend on RxLib and does not use any of its components. Bug with database is fixed, will be in the FR3.02.
-
It works for me. Did you recompile the packages using instructions in the "install.txt" file? Please wait for FR3.02 - it comes soon.
-
Please read carefully. If you have Tee 7 Pro, the package name should be Tee77.
-
Yes, probably.
-
Bin is a member of the TfrxReportPage. (frxReport1.Pages[0] as TfrxReportPage).Bin := DMBIN_AUTO (frxReport1.Pages[0] as TfrxReportPage).BinOtherPages := DMBIN_AUTO
-
Please look at "teechart.txt" file.
-
There is no spanish resources yet.
-
That file should be placed into fr\Source\ExportPack folder. Now it is in the fr\Source, but compiler can't find it (interesting, why - path to this folder is in the LibraryPath).
-
You can't do this report with standard Cross-tab object, you have to use vertical bands (it's much harder, but you can show any data what you want).
-
To show that field in the report, use TfrxReport.OnBeforePrint event: if Sender.Name = 'Picture1' then TfrxPictureView(Picture).Picture.Assign(do_something_with_your_dbfield)
-
FR3 stores the report in a dfm by default, you can't switch it off. If you don't want to store a report, press the "New" button when you're leaving the designer.
-
Change the frxADOComponents.pas file: TfrxADOQuery = class(TfrxCustomQuery) protected procedure OnChangeSQL(Sender: TObject); override; procedure TfrxADOQuery.OnChangeSQL(Sender: TObject); begin FQuery.Parameters.ParseSQL(FQuery.SQL.Text…
-
Use the "Set" procedure (this is described in the user manual, "Script" section).
-
This property limites the number of datasets available to a report. To solve non-databands problem, fix the frxDBSet.pas: function TfrxDBDataset.GetDisplayText(Index: String): String; var  i: Integer; begin  if not FInitialized then   In…
-
FR3.0 dont' fire OnGetValue event for such variables. You should set the variable value before running a report, or in the OnBeforePrint event.
-
http://www.fast-report.com/en/download/download.php?BID=16 "Utilities" section
-
the following script works well: if = 1 then ...
-
1. Use TfrxReport.LoadFromStream method. There is db-related methods in FR3 because it is completely DB-independent. 2. Set the TfrxIBXComponents.DefaultDatabase to your application database. Now all TfrxIBXQuery/Table will use it. 3. There is…
-
The problem in the FR2.53 - picture format is incompatible with FR3. Will be fixed in the 2.54.
-
Send them to tz _at_ fast-report.com
-
In the download area.
-
Will be fixed.
-
ttsoftware wrote: Hello, I'd like to ask you, when will be available czech language. Best regards Tomas You can make a translation (translate the files from res\english folder) and get free upgrade to FR3 Pro.
-
khh wrote: Arabic. Arabic is a BiDi language, After I tested V2.53, I noticed that it requires some additional features to be fully supporting the RTL languages such as Direction [RTL/LTR] property for columns pages to start printing columns fr…
-
You should use "New db engine" wizard to create such engine (it is in the "Extra" folder"). Use Developer manual to read about this.
-
Do you have FR2.x? See the "simple/detailed" report in the demos\reports demo.
-
FR2.53->FR3 converter just helps you to convert a report form to a new format. You should correct the converted form manually to get it working with FR3.