
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, There is no way to rotate the report output in FastReport.Net. You may design the report that looks rotated; use the Text object with rotation angle set to 90.
-
Hello, Next time, please send me the config file before deleting it. tz@fast-report.com.
-
The next version, FastReport.Net v1.4, will fully support Visual Studio 2010, including .Net Framework Client Profile. We plan to release it at the end of April.
-
Hello, Do not use IIf function in a calculation like this. The function evaluates both parameters, then returns one of them. Use ? operator instead: [[A]==0.00 ? 0 : (-[C])/[A]*100]
-
Hello, There is no full support yet. To get it working, you have to do the following: - manually add FastReport components to the Toolbox as described in the programmer's manual ("General information/Installing into VS Toolbox"); - by default, …
-
You may use the LineHeight property of the TextObject.
-
Hello, The minimum height for TextObject with the default settings and font "Times New Roman, 10pt" is 0,46cm. You may decrease the Padding.Bottom property of the Text object if you want less height, for example, set it to -4 (the property is mea…
-
Hello, Not yet, sorry. The development is delayed now due to some technical reasons. We still expect to finish it in a month.
-
1) You can use the script to start a new page after every 5th data row: - click the data band; - go to the Properties window; - click Events button; - create AfterPrint event handler: Â Â Â Â private void Data1_AfterPrint(object sender, EventArg…
-
Hello, WebReport component is designed to use datasources such as SqlDataSource, AccessDataSource, ObjectDataSource and similar. You can read about this in the programmer's manual, "Working with ASP.NET/Using the WebReport component". Using the D…
-
Hello, I would prefer to use groups to group rows by date. You may print the parts of border in the group header (the top part), in the data band (the middle part) and in the group footer (the bottom part). See the demo report, "General/Groups" -…
-
Full name is FastReport.Export.OoXML.Excel2007Export
-
We have separate export filter for Excel2007 which produces .xlsx file.
-
Hello, Could you send me the prepared report file (.fpx, save from preview) to tz@fast-report.com?
-
Hello, No, it's not possible. We don't have plans to implement this mode in the near future.
-
When the datasource which is connected to the databand, has no rows, the whole databand will not be printed. Please tell me how do you register the data in a report?
-
Hello, Looks like the datasource has no rows. In this case you will see an empty page in the preview.
-
Hello, This is probably a problematic font. We cannot fix anything regarding this issue because we use standard Graphics.DrawString method. You may try to use TextObject.Padding property to shift the text down a little.
-
The attached archive is damaged, could you send me a copy to tz@fast-report.com?
-
You have two options to pass the connection string from your application to a report: 1. Pass the connection string directly to the Connection object: report.Dictionary.Connections[0].ConnectionString = "..."; 2. Use the EnvironmentSettings c…
-
Hello, Do this before running a report: (report1.FindObject("Text1") as TextObject).Text = "some text";
-
Hello, This solution may be used as a temporary workaround. In the next version we will add layered html export which allows object overlapping.
-
Hello, You need to set row's AutoSize property. Check this article: http://fast-report.com/documentation/UserM...ctrowsizing.htm
-
Hello, Once you have disabled the progress window, there will be no more UI operations that may steal the focus. Try to replace PrintPrepared call with the following code (prints a test page on a default printer, using the standard printing means…
-
This is probably a problematic font. We cannot fix anything regarding this issue because we use standard Graphics.DrawString method.
-
Sorry, I don't understand what you mean. Could you post a screenshot demonstrating the problem?
-
Hello, By default, group header sorts the datasource by the group condition, in ascending order. If your datasource is sorted already, you may turn off group sorting (in the group header editor).
-
The answer is simple
-
Hello, http://fast-report.com/documentation/UserM...ectexample7.htm also look at the demo report "Table/Handle Page Breaks".
-
Hello, It is not ready yet. We still fixing some bugs.