
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, You need to write own script function that does such formatting. You may call it in the Text object then: [MyFunc(152653)]
-
Hello, It's all not possible in webreport.
-
Hello, FastReport uses the String.Format method to do the formatting. This method cannot work with string-type parameters. Please check this post: http://www.fast-report.com/en/forum/?p=/discussion/6765
-
Hello, No, WebForms app cannot print directly. You need to export your report to PDF. You may use the following code: Â Â Â Â Â Â Â Â protected void Button1_Click(object sender, EventArgs e) Â Â Â Â Â Â Â Â { Â Â Â Â Â Â Â Â Â Â Â Â FastReport…
-
Hello, Sorry, we don't have object that can display html in a report. You can try to convert html format to rtf (rich text) and display it using RichObject.
-
Hello, 1) WebReport supports percent sizes now. You may set its Width and Height to "100%", so it will fit the window. 2) Unfortunately, yes, you'll have to change the version number each time when you upgrade FR.Net.
-
Hello, The problem may be with different regional settings. Both designer's preview and regular preview must be the same on the same PC.
-
Could you make a test report that demonstrates the error and send it to tz@fast-report.com?
-
Hello, Everything looks ok. Which error do you get?
-
Hello, Read about totals here: http://fast-report.com/documentation/UserM...T-en/totals.htm Conditional totals (which you probably need): http://fast-report.com/documentation/UserM...ionaltotals.htm
-
Hello, Please tell me exact version number of VS2010 (you can find it in the "Help/About" window).
-
Thank you!
-
Hello, I've tested both FastReport.Net for .Net 2.0 and for .Net 4.0 in VS2010 WPF project. Both versions work just fine.
-
Hello, Please describe step-by-step how to reproduce the problem.
-
Hello, FastReport does not perform any additional processing while reading xml files. The xml file is loaded into a DataSet by the following code: Â Â Â Â Â Â if (!String.IsNullOrEmpty(XsdFile)) Â Â Â Â Â Â Â Â dataset.ReadXmlSchema(XsdFile); Â…
-
Hello, Do not call .ShowPrepared method in web mode. It will try to show the preview window (which is windows.form) which is not allowed in web mode. To show a report, use the WebReport component. Here is the code: Report report = new Report()…
-
Hello, ... and what is the question?
-
Hello, Please look at the TableObject: http://fast-report.com/documentation/UserM...tableobject.htm Example report (from the demo.exe): Table/Column Datasource.
-
You are using FastReport VCL. Please post your problem here: http://www.fast-report.com/en/forum/index.php?showforum=13
-
Hello, Double click the group header band. Set sort to "Do not sort".
-
The easiest way to do this is to create a new calculated column in the CustomerMaster datasource. This column will return the full name. To do this: - go to the "Data" window; - select the "CustomerMaster" datasource; - right-click it and select …
-
Hello, Use data filtering feature: http://fast-report.com/documentation/UserM...rhowitworks.htm Some report examples can be found in Demo.exe under the "Dialogs" category.
-
Hello, You probably should install MS Chart control first. It can be downloaded here: http://www.microsoft.com/downloads/details...a8-910ae6ea442c
-
Please install MS Chart Control first. It can be downloaded here: http://www.microsoft.com/downloads/details...a8-910ae6ea442c You also may use the latest build of FR.Net which installs this control to GAC by default.
-
Here is the code, I hope you will figure it out.     private DataSet FReportsDs;     private DataTable ReportsTable     {       get { return FReportsDs.Tables[0]; }     }         private void InitializeDatabase()  …
-
I have checked VS2008 C# Express edition with the latest FR.Net 1.4.28. Everything is working well. Since FR.Net installer cannot add anything to the express edition toolbox, you should install items manually, as described in the programmer's manual…
-
Hello, FR does not install toolbox items in Express edition. You should install them manually as described in the programmer's manual. In your screenshot I see that you are trying to add COM component. It's not correct, you should add .Net Frame…
-
No, it's not possible.
-
Hello, Do you have full stack trace?