
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, Unfortunately I have no VFP OLE DB driver on my machine. It however works with Jet.OLEDB driver for .mdb (tested in WinXP and Vista, both 32bit). If you get an error after pressing the "Next" button in the OLE DB connection string builder …
-
Hello, You may use the Duplicates property of the Text object: http://fast-report.com/documentation/UserM...eatedvalues.htm
-
Since the main FR.Net demo is WinForms application, there is no Web categories here. You can find some web demo projects under the Demos folder. Currently we don't support the following features in the WebReport: - direct printing (printing is don…
-
[[Report.I3] == 0 ? null : (object)([Report.I2]/[Report.I3])] I've converted the result to (object) to make "?" operator working.
-
Hello, WebReport does not support interactive features now. This is very complex task, it will be implemented in further versions.
-
Hello, Report dialogs are not working in ASP.Net mode. Don't use it.
-
Please tell me the step-by-step instruction to reproduce this error. Which FR version are you using?
-
Hello, FastReport automatically converts null date values to dates like 1.1.0001. To hide zero dates in a TextObject, use the HideZeros property (it works for numeric and date values).
-
Hello, It's not possible to show anything under PageFooter. Instead of PageFooter, you may use data footer band (or group footer in a group report) with the RepeatOnEveryPage property set to true.
-
Hello, The correct expression is: Report.I3] == 0 ? -1 : [Report.I2]/[Report.I3 Even if you set ConvertNulls to false, the conversion is always performed in an expression. To check for null or DBNull, you need to use the following method: …
-
Hello, Columns in subreports are not supported.
-
You also may try to use OLE DB connection from FastReport. There seems a problem with ADS native driver.
-
You may use ToDecimal function in the Text object: [ToDecimal([Table1.Column1])]
-
Hello, I'm afraid there is no way to do this because the report preview, pdf output and html use different text drawing methods.
-
Ok, I will add the topic in the next major build.
-
Hello, The reason is in SqlDecimal data type. It cannot be formatted using String.Format function (which is used in FR to format values). SqlDecimal d = (SqlDecimal)1234; MessageBox.Show(String.Format("{0:n}", d)); // you will see 1234 instea…
-
Hello, You may use the Config.DesignerSettings.FilterConnectionTables event to filter unnecessary tables. Here is the example in the Class Reference: ///
/// Occurs when getting available table names from the connection. /// Hello, I have tried to export the first demo report in html, it works fine. How can I reproduce the bug?Hello, The only way to connect to such DB is via ODBC. Are you able to connect to it in Visual Studio?Hello, The development is stopped at this time, I can't say when we have a ready-to-use solution. The only solution I can suggest now is to use the self-made webservice which uses Report & PDFExport components and returns a ready report in th…Hello, You need to do the following: - in the WebReport.StartReport event, pass the physical path root to the report: WebReport1.Report.SetParameterValue("PathRoot", Server.MapPath("")); - in the report designer, select your Picture objec…Hello, Look at the following article: http://fast-report.com/documentation/UserM...cthighlight.htmIt's better to register that datasource before you run the report. In this case you may set up the chart visually, and don't use a script to fill it. Another option is to use chart.BeforePrint event script: MSChart1.Series[0].ClearValues(); Da…Hello, You can find the documentation & forum links here: http://code.msdn.microsoft.com/mschartHello, In a test report everything looks good. Could you provide me a sample that I can run and check?Hello, Custom format uses String.Format() function to format a value. It cannot format string-type value. You may use custom function to return a formatted value. Add the following code to the report script: Â Â Â Â private string FormatMask(s…Please read the "Working with ASP.NET/Storing and loading a report" chapter of the programmer's manual.Hello, You are trying to show a report in the preview window. This is not allowed in ASP.Net mode. Please use the WebReport component, as described in the programmer's manual, "Working with ASP.Net" section.Hello, The grouping feature of Microsoft Chart control is not working very well in case when you group by number interval, so it's better to prepare the grouped data before passing it to the chart.You need to cast it to double: [[A]==0.00 ? 0 : (double)((-[C])/[A]*100)]