AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Could you send me your report file (.frx) and prepared report (.fpx)? tz@fast-report.com
-
Hello Daniel, I will try to fix this in the next build. I'll let you know when it will be fixed.
-
Here it is. Read the readme.txt file.
-
I have added the EnvironmentSettings.ObjectInserted event. In this event, you cannot create an object (it is already created), but you can set its properties.
-
We need to finish the doc. The Asp.Net part is almost ready, you can use it right now. See my post here: http://www.fast-report.com/en/forum/?p=/discussion/4811
-
Hello, I will add the Column.CustomBindableControl property in the next build. You can set the type name of your object in this property.
-
Ok, I will try to create it in this weekend.
-
FastReport just uses all rows in the DataTable. How do you apply the filter?
-
Sorry, it's not in our near plans.
-
Hello, I can create a connector for MySQL. Which MySQL data provider library do you use (where can I download it?)
-
Hello, Just register either the dataset or its table (if you don't want entire dataset). FastReport will use the actual table data. this.callhistory3TableAdapter.ClearBeforeFill = true; this.callhistory3TableAdapter.FillCallLog((this.phonesyste…
-
I will work on charts right after release; now I'm very busy with the docs. I hope we will see the charts in this year. Regarding Silverlight: we have plans to make a new version using WPF, not Silverlight; it will be a new product.
-
Hello, Most likely VS caches its toolbox somewhere. When you put the Report component on a form and run its designer, it will display the actual version number in the "About" box.
-
Hello, We plan to add the chart functionality soon. It will be added after we release FR.Net.
-
We have a demo, but we don't ship it because Asp part is in development yet. You can use step-by-step instructions that I've posted here: http://www.fast-report.com/en/forum/?p=/discussion/4811
-
thinkdif wrote: » If i add my assembly in script's ReferenceAssemblies, error message will display correctly, but i have to add my assembly in every report. Do you have a good idea? If you have custom control, you have to add its assembly …
-
In my report, I have the "Table" datasource which is used in the "Data" band. I have set the filter for this databand to [MyParam]. Here is how I pass the parameter: Â Â Â Â Â Â FReport.Load(@"d:\untitled.frx"); Â Â Â Â Â Â Parameter p = new Para…
-
Try this way: Â Â Â Â Â Â Parameter p = new Parameter("MyParam"); Â Â Â Â Â Â p.DataType = typeof(bool); Â Â Â Â Â Â p.Expression = "a > b"; Â Â Â Â Â Â Report.Parameters.Add(p);
-
The validation code must be placed in the report script. You may use the Report.StartReport event for this purpose.
-
Your expression in not correct in C# terms. The expression cannot contain "if" statement.
-
Strange, it works well for me. One important note: the query defined in the report must have the same data columns. I.e. you may change the "where", "order by" conditions, but don't change the "select" - in this case the query will return the differ…
-
Try this way: [myField.starttime] == DateTime.Parse([prmDateFrom]) but the better solution is to pass date as DateTime, not as String.
-
Ok, I will try to fix it asap.
-
You need to do the following: - run the designer - select the "Report" object (in the "Properties" window) - switch to events and create the "StartReport" event handler - write the following code in it: Â Â Â Â Â Â TableDataSource data = Report.…
-
John, 1) The manual is not ready yet; it covers the use of expressions. The expression must be written in language that you chose for a report (in the "Report|Options..." menu). By default, it is C# language, so your expression should look as fo…
-
Hello, Could you prepare a simple demo and send it to tz@fast-report.com?
-
The email export is internal class; we need to finish some tests and then we make it public. So now you can't use it in your code.
-
Hello, 1) FastReport.Net does not have the pdf export yet; we working on it. 2) We will add the backcolor setting in the future builds.
-
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…
-
The next build will be available in this midnight.