
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, Please read the user's manual, "Report creation/Groups and totals/Repeating the header and footer" chapter.
-
frxSaveFRX unit has a limitation - your report must be connected to data. In this case it will be converted correctly. It is possible, if you run the conversion from your Delphi project where you have all reports and a data for them. The fr3tofrx.ex…
-
Hello, The converter's source code is included in FastReport VCL. The fr3tofrx tool just calls the converter: uses   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,   StdCtrls, frxClass, frxSaveFRX; type   TForm…
-
Hello, Put the customer info (CuName1, CuAddress1) on the GroupHeader, instead of PageHeader.
-
wrote: 1. Edit the Microsoft Chart Sample. 2. On the Revenue chart, the default is that all the data points are the same color. 3. Double click on the revenue chart. Select Series1. 4. Select the Fills&Border tab and change the palette from…
-
wrote: How come when I select the "excel" palette, it colors each bar in the series (bottom chart) but when I create my own palette (with 16 colors), and select "none" as the series palette, it only displays the first color (top chart)? You s…
-
wrote: What is the correct field type? You have to convert your field content to System.Drawing.Color type. For example, if your field contains color names such as "Blue", "Red", "Gainsboro" (standard color names), you may use the following c…
-
Well, good solution
-
Hello, There is no such limitation. You may have as many child bands/subreports as you want.
-
1) You may turn off the sort and fill the matrix in code (using ManualBuild event, see user's manual "Report creation/Matrix-type reports/Examples/Example 9"). In this case the sort will be in a natural order. You may sort the data as you need, then…
-
Yes, in this case the report uses cashed data. The preferred solution is to create a new instance of a report each time when you show it: using (Report report = new Report()) { report.Load(...); report.RegisterData(...); report.Show(); }
-
Hello, Do you use application datasource (using report.RegisterData() call), or add a new datasource into the report (via "Data|Add Data Source..." menu)?
-
Hello, 1) you can print your report to fax printer; 2) you can export to TIFF and send it to fax software.
-
Hello, I will try to fix this as well.
-
Hello, Version 1.2.24 contains latest fixes (read-only sql result grid).
-
Thanks, reproduced and fixed. The fix will be available in the next build (tomorrow).
-
I will fix this in the next daily build.
-
No, it's not possible: in the SQL you may refer only to the database objects. Queries created in FastReport can't be used in another query.
-
Yes, we have such plans. I can't tell the timeframe however.
-
Hello, I've tried to reproduce this behavior in some demo reports, they work well. Could you send me a simple demo?
-
I found the bug with maxNestingLevel. The update will be available in the next daily build (today).
-
Hello, Sorry, the converter does not support command line or batch convertion, because every .frx report should be corrected manually.
-
Hello, Please send your report file to tz@fast-report.com, I'll take a look at it. Also, if possible, send me the screenshot of what you want to achieve.
-
Hello, Its author is in business trip now; he will be back in the next monday. Right now I can fix the "label1" [Blank Dropdown box] "label2" issue.
-
Hello, The conversion logic is written in Delphi, so it can't be called directly from .net. However, you can run the .exe file from .net application.
-
Hello, From the programmer's manual: wrote: To do this: ?· prepare a report using the Prepare method; ?· create an instance of export filter and set up its properties; ?· call the Export method of the Report object. The following ex…
-
We will try to fix it.
-
Hello, I can't say what's wrong with your report. Please make a demo that I can run and test and send it to tz@fast-report.com.
-
Hello, You may use page columns (can be set in the page settings dialog), or databand columns (can be set in the Properties window). See more details in the user's manual, "Report creation/Multicolumn reports" chapter.
-
Hello, No, we don't have plans to support it.