AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
It works well for me.
-
Seems you have different versions of FR3 installed in the IDE and in run-time. For example, IDE version is 3.01, and run-time is 3.04.
-
Your script syntax is not valid: if (Text>'') and (Text[1]) = 'A' then should be: if (Text<>'') and (Text[1] = 'A') then
-
Change the fs_iinterpreter.pas: constructor TfsScript.Create(AOwner: TComponent); begin inherited; FItems := TStringList.Create; FItems.Sorted := True; FLines := TStringList.Create; FStatement := TfsStatement.Create(Self, '', ''); FSyntaxT…
-
Just set the band.stretched to True and richview.stretchmode to smActualHeight. It will stretch automatically.
-
I have tested 21.fr3 report from main demo. It exports well with any font settings.
-
Please read the "developer manual".
-
We don't have Delphi2005 and can't say yes or no.
-
If you have a demo demonstrating this error you can send it to me. tz@fast-report.com
-
3) use column footer in this case.
-
include frxClass.pas unit into your 'uses' list.
-
1) fixed 2) works well for me (there is no Frame property when you select several objects) 3) use page footer instead of master footer.
-
Do you want to do something like this? ADOQuery1.Params[0].Value := ...
-
There was an error in the constructor TfrxEngineOptions.Create should be 10.
-
This is very specific request. If you have FR3 sources you can adapt them for your needs.
-
FR3 can work with any TDataSet descendants.
-
1) use script, masterdata.OnBeforePrint: if = 6 then Engine.NewPage; 2) sorry, I don't understand what you mean.
-
Send the report to tz@fast-report.com
-
Check the databand.RowCount property (must be 0) or TfrxDBDataSet.RangeBegin/RangeEnd properties.
-
1) You should go Aliases editor (doubleclick the TfrxDBDataSet component) and set up field aliases. 2) There is no such component, read the "programmer manual". 3) You can't do that using composite report. Report inheritance would allow that, but …
-
Correct condition is (do not use square brackets): IIF(=NULL,1,0) also be sure that Report.EngineOptions.ConvertNulls is set to False.
-
1) this event fired each time before processing ANY report object. 2) fixed
-
Tell me how I can reproduce that behaviour?
-
I hope in this week.
-
RTF filter exports richview object as RTF, not as picture.
-
Just checked it with main demo - it works.
-
Send them to tz@fast-report.com
-
Seems there is not.
-
Don't use filter named "Text (matrix printer)". Better is to redesign your report using true dot-matrix objects. See demos\main, last category (Dot-matrix reports).
-
There is no such button in FR3. You may use report wizard (File|New...) or drag necessary field from the Data Tree window.