
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, Could you attach your report file (.frx) here (or send it to tz@fast-report.com)?
-
Hello, Please use the latest version of FR.Net and FRNetConnections.zip. I've made some changes in the class architecture some time ago.
-
Hello, It is possible using a script. See the attached report example (you can open it in the Demo.exe).
-
Hello, wrote: Not 6 cm. I mean the page count. When the report having total page count is more than 6 at that time the summary band is not displayed in .pdf files. Probably you are using the trial version. It has a limitation - max. 5 e…
-
You will be able to do this in the next daily build (tomorrow): Config.DesignerSettings.FilterConnectionTables += DesignerSettings_FilterConnectionTables; Â Â Â Â Â Â Â Â private void DesignerSettings_FilterConnectionTables(object sender, Filte…
-
I think it's not suitable in your case. I will add an event that you can use to filter the tables.
-
If you make a DataSet using Visual Studio, it will generate a DataAdapter for each table. FR will use it to fill a table.
-
Sorry, there is no way to hide some tables, if you pass a connection object. You may use a DataSet, there is no need to fill it with data - FastReport will automatically fill only tables that are needed in a report.
-
No, report dialogs are for Windows Forms only. This is also in our todo list.
-
Just call report.Show() instead of report.Design().
-
Hello, It's not possible now. We will try to implement this feature in further versions.
-
Hello, Since the sql query may return completely different column set, you have to create your report in code. You may find the info about such report creation in the Demos\C#\ReportFromCode demo.
-
Hello, Right now try to place this dll in your application's root. I will fix it in the next build.
-
Copying the total field is not allowed; I will fix this in the next daily build.
-
You can change the sql text in the WebReport.StartReport event handler (i.e. in your asp.net code), or use the report script to do this. In the latter case, go the report designer, select the "Report" item in the Properties window, click the "Events…
-
Hello, You need to change the query before generating a report: report.Load(...); TableDataSource query = report.GetDataSource("YourQuery") as TableDataSource; query.SelectCommand = "select * from ...."; report.Show();
-
Hello, FastReport.Export.Xml.XMLExport export = new FastReport.Export.Xml.XMLExport(); if (export.ShowDialog()) Â Â report1.Export(export, "result.xml");
-
Hello, I don't understand what do you mean here, please explain: wrote: the page size is more than 6 What is 6? cm, inches, or something else? wrote: How can it possible ? You should set all report parameters in the WebReport.…
-
Hello, I will try to fix this in the next build.
-
Hello, You need to use a script to do this. Look at attached example (you can open it in the Demo.exe).
-
Hello, report.Load(...); if (report.Dictionary.Connections.Count > 0) { Â Â DataConnectionBase conn = report.Dictionary.Connections[0]; Â Â conn.ConnectionString = ... } report.Show();
-
Hello, You should use AllcallDetails_StartReport event handler to access the report. Move all code to this handler.
-
Hello, Excel2007 export produces the .xlsx file that can be opened in Excel2007+. XML (Excel) export produces .xml file that can be opened in Excel2003+. One limitation of this format is that it cannot contain pictures.
-
Hello, In your customer panel, download the latest (current) version and reinstall. We prepare a new build each day.
-
The query builder developer will come back today and fix it asap. I will let you know.
-
Fixed. The fix will be available in 6 hours.
-
Could you send me your report file?
-
Yes, the problem may be connected with child-filler. You may use the ColumnFooter band in this case. Put the bottom line on it.
-
Hello, Please download the FRNetConnections.zip file from dl page ("Extras" section): http://www.fast-report.com/en/download/fas...t-download.html (Firebird, MySQL, Postgres, VistaDB, Oracle, IBM DB2, SQLite)
-
Hello, I attach a modified "Groups" report from Demo.exe, built using this technique. Pay attention to groupfooter: wrote: In this report, the group footer has two objects, placed one on top of the other