
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, Yes, we plan to implement subsets in the next versions.
-
Hello, If your datasource comes from an application, it is better to register it in a report using the report.RegisterData(...) call.
-
I will try to make it working in the next daily build (will be available tomorrow).
-
Hello, Grid cannot display data from business object source. Only TableDataSource is supported now.
-
You may also need to set Config.ReportSettings.ShowProgress = true. The following code works well in my asp.net app: Â Â Â Â Â Â Â Â Â Â Â Â Report report = new Report(); Â Â Â Â Â Â Â Â Â Â Â Â Config.ReportSettings.ShowProgress = true; Â Â Â Â Â…
-
It's FastReport.Utils.Config.
-
Hello, You may use progress events: ... Â Â Â Â Â Â Config.ReportSettings.StartProgress += new EventHandler(ReportSettings_StartProgress); Â Â Â Â Â Â Config.ReportSettings.Progress += new ProgressEventHandler(ReportSettings_Progress); Â Â Â Â …
-
Hello, The error was corrected two weeks ago.
-
Hello, You need to set the DataSource property, then set up columns. It can be done in the grid control's context menu, or in the Properties window (invoke the "Columns" property editor). To add all columns from datasource, press "Add all" button…
-
Hello, Both [IIf([newpage_groepveld]=="1" , [Table.afroepregels_refentie] , [Table.afroepregels_plantnaam])] and newpage_groepveld]=="1" ? [Table.afroepregels_refentie] : [Table.afroepregels_plantnaam must work. The "newpage_groepveld" report…
-
Less than 3-5 months, definitely.
-
Use the report parameter: report.SetParameterValue("myRef", some_reference); In the report, you have to add a reference to an assembly containing this class.
-
Sorry, it is still under development. I can't say now when we finish it.
-
Ok, here is the correct code: [IIf(Report.GetColumnValueNullable("ds.EntryDate") is DBNull, "", [ds.EntryDate])] You may also use the "NullValue" property of the Text object: Text = [ds.EntryDate] NullValue =
-
I forgot to say that the "Convert null values" option must be off.
-
Use the "Cursor" property of the Text object.
-
You need to add a reference to the assembly which contains the class. It can be done in the Report|Options... menu. Now you may use the class in a script.
-
Try IIf([ds.EntryDate] == null || [ds.EntryDate] is DBNull, "", [ds.EntryDate])
-
1) Use the following code to get the chart image: Â Â Â Â Â Â Â Â Â Â Â Â ReportPage page = WebReport1.Report.PreparedPages.GetPage(0); Â Â Â Â Â Â Â Â Â Â Â Â ComponentBase chart = page.FindObject("MSChart1") as ComponentBase; Â Â Â Â Â Â Â Â Â Â…
-
Hello, Sorry, interactive features are not supported in asp.net.
-
I've added check for null & DBNull values. It will be available in the next daily build.
-
One of data rows contains a null value which you are trying to sum. The "Convert null values" option is designed to handle this case correctly.
-
Hello, You have to init the datasource: ... tTra.Init(); MessageBox.Show( tTra.Table.Rows.Count.ToString()); ...
-
You need to pass the report instance to your function. public static string MyFunc(Report report) to call it from a report: MyFunc(Report)
-
Hello, Use "Custom" format type with the following format string: #00.00 (you may skip .00 part if you don't need decimals).
-
Hello, Please inspect the Demos\C#\UserFunctions demo.
-
Hello, For example you have Customers (Id, Name) and Orders (CustomerId, OrderId, Orderdate) tables. Here is how you can link them (I use MS SQL syntax here): Customers table: select * from Customers Orders table: select * from Orders wh…
-
Hello, This font must be installed in your system. You can't create .Net Font instance with non-installed fonts.
-
Could you send me the report file?
-
Could you attach the prepared report file (.fpx, save from preview)?