
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
This functionality is used very rarely; it merges an existing dictionary with the new one.
-
Hello, The "Close" button closes the current form. You may disable the standard Close button and add own button that does what you need: using DevComponents.DotNetBar; ButtonItem customButton = new ButtonItem(); customButton.Text = "my but…
-
Hello, There are no such properties in ComboBoxControl, but you can use underlying WinForms control accessible via ComboBoxControl.ComboBox property.
-
Hello, You may use dynamic mode of the Table object to fill it in code and adjust the width. There are some demo reports that demonstrates this (see "Table" category in the main demo). I will consider adding the option to adjust table width to pa…
-
Hello, Unfortunately the report inheritance works with report objects only. There are many limitations in inheritance mode, you can read about this in the user's manual.
-
Hello, Sorry, it's not possible.
-
Hello, It's hard enough to make existing format system extendable. I will try to do this in the next major version.
-
Hello, You may use converter tool that reads .fr3 file and saves it in .frx format: http://www.fast-report.com/pbc_download/files/fr3tofrx.exe This converter does not perform 100% conversion; you need to change the .frx file. The followin…
-
Hello, Select dtOrgLevelsummary datasource, select its ParentId column, then set its DataType property to Int64.
-
Hello, It depends on your report complexity. I've made some tests with demo reports. Each new report opened in a separate preview window eats about 5mb. You can minimize the memory usage in the following ways: - use report.UseFileCache proper…
-
You have to create a separate total and print it in the report summary band.
-
Hello, Two possible options: - modify FastReport source code if you have it, - or, use own preview window, disable standard email button, and add custom button that does export & send mail.
-
You have to set the "Print on the band" field in the total editor. If you leave it empty, the total will not reset after printing, so you'll get the running total.
-
Hello, Look at the demo report, "General/Groups". Also read the manual topics: http://fast-report.com/documentation/UserM...printtotals.htm http://fast-report.com/documentation/UserM...T-en/totals.htm
-
It is possible only while the report is running. Call the report.Calc(some_expression) method.
-
I'll think about using expressions in SQL (just like in the Text object now). The problem is that [] symbols cannot be used, this will confuse developers.
-
It's hard to do in a report. It would be easier if you calculate these values by yourself before running a report. Then, in a report, you may just print the value without using totals, script, etc.
-
If I understand you correctly, you need to print the total value in the parent data band (see the picture). I'll show you how to do this with I/C total: - download the latest build; - copy Text122 content to the Text15 object (so it will be [Curre…
-
Could you post a screenshot (what you need to sum, and where you want to print the sum)? It's not easy to figure out what you need. mohanaraj wrote: » Dear alex, In the report the summary, value is displayed according to the parent - child r…
-
mohanaraj wrote: » I tried this but it throw an error as 'Specified cast is not valid.' I tried this in Data1 (First Data band) as [dtOrgsummary.ParentId] == 10 please advice. ParentId column should be of Int64 type (as it is defined …
-
Hello, Looks like one of your operand is of String type. Try to convert both operands to double using ToDouble function: [ToDouble(op1) / ToDouble(op2)]
-
We don't have such tool.
-
I've tried to google and found your post: http://groups.google.com/group/sybase.publ...754fa7bdef15f7# It's a .Net DataAdapter behavior. You should modify the query: SELECT Employees.ID AS Employees_ID, Department.ID AS Department_ID FROM E…
-
Hello, Try to embed fonts into the pdf file. This may help.
-
I've fixed (2) issue in the latest build 1.3.33, you can try it now.
-
Doubleclick the databand, select "Filter" tab and write the following expression: [TableName.ColumnName] == 0 (replace TableName.ColumnName with actual table/column)
-
2) I will try to modify my connectors to allow use TableSchema if it is set. 4) I'm afraid it's not possible. The style (called "last formatting") is applied at the moment when you start the insertion, there is no "parent band" here. 5) We have se…
-
Hello, It's not possible now because there is no ToWords for Turkish in FR.Net.
-
Hello, This combobox (font charset) has no effect in FR.Net.
-
Hello, Don't use square brakets when referring to the report objects. Brakets are needed for data columns, totals, system variables, and report parameters.