AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Sorry, we can't do it faster. The FastScript is already optimized.
-
Hello, We have another product, FastReport.Net which is written in C#. http://www.fast-report.com/en/products/FastReport.Net.html It is beta now, we plan to release it in the September.
-
Hello, We plan to release the FastReport.Net at the September. We will publish the price list soon. All existing FR VCL and FR Studio users will get a discount.
-
We don't know about Rave - what you mean by "update DataView in run-time"? Please tell more details about what you need to do.
-
Could you send a little demo project to tz@fast-report.com?
-
You can use TfrxUserDataset to connect to non-db data. See MasterDetailUDS demo.
-
Sorry, but it's Teechart-specific question. Maybe you ask it in the TeeChart support forums? My suggestion is to not use several series, use several chart objects.
-
1. Attach a child band to your masterdata 2. Add a "text" object to the child band, write "no detail records" in it 3. In the masterdata.OnBeforePrint event write the following code: Child1.Visible := = 0; where is a field from detail record t…
-
Use recompile.exe to recompile the FR packages. To recompile basic edition it is necessary to add a {$DEFINE FR_VER_BASIC} which is performed automatically if you use recompile.exe.
-
I don't have such error. How to reproduce it? Do you have more information about error (call stack, the code line on which it happens, etc).
-
Theoretically it's possible, but requires modification of the FR code. FR always compile a script when you run a report.
-
It works for me. Could you describe step-by-step how to reproduce an error.
-
Use Delphi packages instead of dll.
-
Don't put FR code into two places (dll and exe). This will lead to classes conflict.
-
You can use OnBeforePrint event for picture and check if file exists.
-
Just put the file name in this property. You can also put a variable with filename: [myvar]
-
Normally FR caches 50 preview pages. I can add a parameter to PreviewOptions that handles this. + added TfrxReport.PreviewOptions.PagesInCache property
-
Probably not because Hotmail is web-based mail. We support only regular email.
-
Just tried it: - create an empty report; - put a TfrxPictureView on the databand; - load a picture into it; - set databand.RowCount to 1000 to repeat it 1000 times; - run the report. You will see the report generates immediately and takes a li…
-
At design time you must specify absolute path! Relative path can be used if you have .exe - but it does not exist in designtime.
-
This is impossible now due to docking behavior. Regarding preview: one TfrxReport can open one preview window. If you need 2 - use 2 TfrxReport.
-
Rpts should work, I've just tested it.
-
It's fixed in 4.0.16 which is not on the site yet.
-
Fixed.
-
ReportClient just sends the request to a server and receives the server output. There is no report components inside ReportClient - everything is on the server. The same with user function: the only way is to add it to the report's script.
-
Do you use FastReport VCL or FastReport Studio?
-
Please read the user manual about dot-matrix reports.
-
You can run only one instance of FastReport designer. It's by design.
-
FR automatically converts null values to 0, '', false (depending on field type). You can turn the conversion off by setting Report.EngineOptions.ConvertNulls to False (do it from FR object inspector).
-
recompile.exe modifies tee.inc, so you don't have to do it.