
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, You can delete empty lines in the "Report Tree" window.
-
Hello, Thanks! [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> I will add the "Center" option in the next daily build.[/img]
-
XmlDataSource provides data in a format that can't be used in FR.Net. So it's not supported now.
-
Hello, Sorry, XmlDatasource is not supported now.
-
Do this in the WebReport.StartReport event, and set the WebReport.ReportDone flag just before you leave the event handler: WebReport1_Load(...) { ... WebReport1.Report = repMain; WebReport1.ReportDone = true; }
-
Hello, Please show the full code how do you pass this report to WebReport.
-
Hello, This should not happen with WebReport component. If you use Report instead, add the following line to your page.Load: Config.ReportSettings.ShowProgress = false;
-
Hello, No, it's not possible. You have to replace the text manually.
-
Hello, WebReport.Report can be accessed in the WebReport.StartReport event handler.
-
You can do it programmatically: DataBand band = report.FindObject("Data1") as DataBand; if (band != null) Â Â band.Dispose();
-
Hello, 1) HTML export can't do this now. We will impove it in the next major version. 2) It's impossible, you should take care about copying the necessary files yourself.
-
Hello, 1. Do not put totals in the header. They can work in the footer only. If you want totals in the header, you need to make your report two-pass and use script. The example can be found in the demo program, the "Script/Print Total in The Grou…
-
Hello, If you want to skip empty rows, just set the row's AutoSize to true.
-
wrote: I have tried text export, but some of the report object is not exported correctly. Text export cannot handle all situations because of different nature of report document and text file. You can try to play with ScaleX/ScaleY settings i…
-
You can use Text export filter to do this. There is no native dotmatrix mode in FR.Net.
-
Set report.PrintSettings.ShowDialog = false
-
Hello, Current version of Excel export cannot do this. We plan to improve it later.
-
It's a bit harder, but still possible. See the example attached (you can open it in the Demo.exe). - set cell's HtmlTags property to true; - write an event handler for the cell's AfterData event (see the Code tab).
-
Hello, If you want to change the color only, use the conditional highlight feature. It is described in the user's manual, "Report creation/Formatting/Conditional highlighting" chapter. This chapter describes the Text object, but it applies to tab…
-
Delete all trial dlls from everywhere, and recompile FastReport.Oracle.dll. It should work.
-
Hello, It will take a long time. We plan to improve something in the v1.3.
-
Hello, The fixed version will be available in 6 hours.
-
Hello, Be sure that you have deleted old (trial) FastReport dll from everywhere (including bin/obj folders of your project).
-
Sorry, but calculated column can't work with business objects. Use report parameters instead (you can set the parameter's Expression to any expression that will be calculated each time you access the parameter).
-
Hello, No, it's not possible now. We plan to add this functionality in the v1.3.
-
I see, I will try to fix this.
-
FastReport.Net cannot produce BIFF8 file. The only option is Excel XML now. Soon we will add the .xlsx export (Excel 2007).
-
When you export using "XML (Excel table)" and check the "open after export" flag, the exported file will be opened in Excel.
-
Hello, Excel XML is the one you need. You may rename the resulting file to .xls and it will be opened in any Excel version starting from Excel2003.
-
Hello, You have to set up a filter in the Data band's editor. See user's manual, "Report creation/Report with one "Data" band/Filtering the data" topic.