AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Glad to hear that
-
Hello, Here is the correct string: ([([General.REMISE_TOTALE_HT]/[General.MONTANT_TOTAL_HT] * 100).ToString("F2")] %)
-
Do you mean "Total" = total that you've created in the "Data" window? It can't work in the page header band, because it must be printed on the footer band, after data rows, but not before them.
-
Please, send me the test application that demonstrates this error, to tz@fast-report.com.
-
Hello, Fixed, wait for the next build (tomorrow).
-
I've fixed the bug. Wait for the next build 1.0.222, it will be available tomorrow.
-
MSChartObject has "Chart" property - it's a Microsoft Chart control. To enable 3D, do the following: chart1.Chart.ChartAreas[0].Area3DStyle.Enable3D = true; For further information, refer to MS Chart control documentation.
-
Could you prepare a simple application for me, and send it to tz@fast-report.com? I've tried to reproduce a problem, with no success.
-
Hello, "AlignXValues" is for multi-series chart. Such chart requires that all series have the same set of values. This option allows to align them automatically. The "Color" column is a data column or expression which returns a color for current…
-
I remember
-
Hello, I've replaced old docking library with the new one, you can check it now.
-
Hello, Did you set the report pass to double? It can be done in the "Report|Options..." dialog.
-
Hello, To convert old .fr3 files to a new .frx format, do this: - download the latest version of FastReport 4 (you can even use the trial version) - add the "frxSaveFRX" unit into your uses list - run report designer, go "File|Save as...", cho…
-
I see. To enable relations (after you have enabled data tables), use the following code: Â Â Â Â Â Â foreach (Relation relation in report.Dictionary.Relations) Â Â Â Â Â Â { Â Â Â Â Â Â Â Â relation.Enabled = relation.ParentDataSource != null &…
-
You can't change system variables. Instead, use report variables.
-
Hello, How do you register tables? If you call report.RegisterData for each DataTable in your DataSet, it won't register relations. To do this, register entire DataSet: report.RegisterData(your_DataSet, "ds_name"); In this case, all DataTab…
-
Mistake in the doc, you should use PageWidth and PageHeight properties. I'll correct this.
-
Hello, It depends on where you access the FreeSpace property. Could you show me how you draw the line?
-
Of course, both FastReport dll and your application must be in the same folder.
-
Here is an example, open it in the demo program.
-
You can. To do this: - go "Report|Options..." menu, select "Script" tab and add a reference to your application's executable module (for example, "Demo.exe") - now you will able to use in a script any public class defined in your app. For exa…
-
Hello, I'm not familiar with List&Labels. I guess you want to set starting position (# of column and # of row inside a column). It's possible, you need to use script to do this. You may also add a dialog form to your report, in which you can …
-
Hello, This can be done in the report script. See "Interactive Reports|Handle Preview Clicks" report.
-
Hello, report.Load(...); PictureObject pic = report.FindObject("Picture1") as PictureObject; pic.Image = your_image; report.Show();
-
Hi Bosko, You need to set your report to double pass (menu "Report|Options...", "Double pass" checkbox). It will solve both problems (TotalPages and PrintOn).
-
You can use Footer band which belongs to PersonJob data band. It will be printed after the last row of PersonJob. Another way is to use empty Data band which is not connected to data and is printed after PersonJob: Person data band (master) | +- P…
-
Hello, You have to use WebReport.StartReport event to pass a value to the report parameter. The report can be accessed through the WebReport.Report property: webReport1.Report.SetParameterValue("MyParam", 10);
-
Hello, Sorry, I don't understand what you want to do. Could you provide more details?
-
Hello, Expressions are described in the user's manual (the "Expressions" chapter). What is "Date" in your expression? There is no such method in .Net. If you want to extract the year from your DateTime column, use the following expression: [C…
-
Hi John, I've added your request to our todo list. I will add this feature after v1.1 release.