News

September 02, 2024

Changes to the FastCube .NET License Agreement and Terms of Use

New license agreement for FastCube .NET will come into effect at September 30, 2024
March 14, 2023

Update of .NET-based products to ver. 2023.2

Meet new opportunities for your projects! Added support for Blazor Web Assembly, new icons for the Ribbon interface, the ability to open a page of another report inside the current one, changes to the report validator and WebReport, and much more. Changes are available for the following products: - FastReport .NET, - FastReport Mono, - FastReport Desktop, - FastReport for DBA, - FastCube .NET. New opportunities Blazor WebAssembly support Added FastReport.Blazor.Wasm package with Blazor WebAssembly support for owners of FastReport .NET Enterprise and higher editions. Now you can use Razor components to display a report in your WebAssembly application. Attention! Blazor WebAssembly support is currently in beta. <WebReportContainer WebReport="WebReport" /> Read more in this article.   Ability to open another report page The designer now allows you to open and add pages and dialog forms of another report to the developing report. To do this, go to the "File" menu and select "Open Page...". Next, the standard file selection dialog box will open where you can select a report. After that a window will appear with a list of pages and a preview of the selected page. Here you can select one or more pages to be added to the current report. The names of pages and all objects contained in them, will be changed to unique, if the report already has them. This is necessary to avoid errors, as identical names are not allowed. Read more in this article.   New icons for the Ribbon interface New Visual Studio-style icons have been added to the Ribbon interface in the designer. You can select them in the user interface options. Will need to restart the designer for the changes to take effect.    Filter in the properties window A new button has been added to the properties window that allows you to enable the display of object-specific properties. For example, for a text object, this mode displays the Text, Font properties. Common object properties such as Top, Left, Height and Width are not displayed.   Report validator changes The report validator now doesn't run in the background, but runs with a separate "Validate Report" button in the "Report" menu. In addition, the validator window has been removed, and its messages are displayed in the window "Messages".   Ability to hide connection string Added a new property Config.ConnectionStringVisible, which gives the ability to hide the connection string in the designer. Can be used to differentiate permissions between the application developer and the report user. When set to false, the user will not be able to see and edit connection strings in the designer.   WebReport changes Added support for MemoryCache. By default, at the moment, the current WebReportCache is used. You can enable MemoryCache when registering FastReport services: services.AddFastReport(options => { options.CacheOptions.UseLegacyWebReportCache = false; }); Unlike the built-in cache in WebReport, MemoryCache unloads WebReport instances more aggressively after a certain time CacheOptions.CacheDuration of WebReport instance inactivity, which can help in cases where the old cache for some reason does not clear memory. Added the ability to fix the toolbar on the screen. Now you can configure the toolbar to always stay in place, even when scrolling through the page. This is convenient when working with large reports - the toolbar will always be visible. To pin the toolbar on the screen, you need to set the following property: webReport.Toolbar.Sticky = true; Now the toolbar will always be in view. Also, the ability to customize the export settings window has been added. Now it can be made fixed on the screen and displayed in the foreground. To do this, you need to set the following property: webReport.Toolbar.Exports.PinnedSettingsPosition = true; Validation for entering a range of pages has been added to the export settings window. Now, in case of incorrect input, the field will look like this.   FastReport.Core.Skia improvements Improved the performance of the FastReport.Core.Skia package. Export errors have been fixed, examples are listed below. Fixed the rendering of objects with CanShrink = true: Fixed the background rendering of objects with transparent backgrounds: Added a standard font that depends on the operating system. Now, if the font from the report is not detected in the system, the export will not produce an error, but will render the report with the standard font. For other fixes, please refer to the full list of changes.   Updated design of FastReport Cloud file manager Updated the design of the file manager window for more convenient and intuitive use of the service. Changes have been made to the layout of interface elements and color scheme, which will improve the overall visual perception of users.   Full list of changes  [Engine]+ added property Config.ConnectionStringVisible, which indicates whether the connection strings of data sources will be displayed in the designer;- fixed a bug with extraction of procedures in connection that cannot contain procedures;- fixed a bug where the first column of the page was always displayed in the leftmost position;- fixed a bug when GaugeObject.Value property was set equal GaugeObject.Minimum, if new value was more than GaugeObject.Maximum. Now it will be set equal GaugeObject.Maximum; [Designer]+ added the ability to open report from FastReport Cloud using recent files list;+ added a context menu to the page panel elements;+ a context menu for creating new pages and dialog forms has been added for the panel with report pages;+ added new Visual Studio style icons for the Ribbon interface;+ added "Sync" button in the "Report Tree" window;+ added Filter button in the Properties window;+ added HiDPI icons for Ribbon-interface;+ added support of DBNull and Guid types for parameters;* now the name of the attached file when exporting to mail, can be set from the code when creating the export form;* report validator now runs from "Report|Validate report" menu. "Messages" window is used to display validation messages;* changed interface of QR code editor;- fixed a bug on right clicking Data Sources menu item;- fixed a bug when checkbox "Select all" was not visible in Data wizard;- fixed a bug causing System.NullReferenceException when deleting dialog form;- fixed the absence of the Api key when re-opening the Account->Server window if it was entered in the standard server item;- fixed incorrect web address when trying to preview webview for custom server;- fixed the problem of collapsing panels and incorrect change of the language of tabs and bars when changing the localization in the Ribbon interface;- fixed issue with adding tables that were not selected in the connection wizard;- fixed a bug causing System.NullReferenceException when creating connection to stored procedure;- fixed exception when manually entering an invalid parameter type;- fixed a bug where it was impossible to set an object to a transparent color;- fixed reopening of the query wizard; [Preview]+ added a message about sending a report to the mail in the status bar; [Exports]+ added word wrapping in cells when exporting to Excel 2007;- fixed a bug that made MSChart text blurred after HTML export;- fixed incorrect margins when exporting the report to HTML;- fixed an error that made the transparent background become white with Skia;- fixed a bug with an extra empty page when exporting if there are bands with the Exportable property equal false;- fixed a bug when padding top was not taken into account when exporting to layered HTML;- fixed an error that made the text go beyond the table when the page was zoomed out in HTML export; [WebReport]+ added Blazor WebAssembly support;+ added support for DI in WebReport.Core/Blazor. To use, call services.AddFastReport();+ added support for Microsoft.Extensions.Caching.Memory.MemoryCache instead of the standard WebReportLegacyCache. To use, when registering a DI container, use services.AddFastReport(options => options.CacheOptions.UseLegacyWebReportCache = false);+ implemented the ItemCheck event in CheckedListBox;+ added an option to enable the toolbar to display regardless of the screen position in WebReport using WebReport.Toolbar.Sticky property;+ added asynchronous version of method WebReport.Designer.SaveMethod - WebReport.Designer.SaveMethodAsync;+ added validation of page range in WebReport export settings window;+ added WebReport.Toolbar.Exports.PinnedSettingsPosition property. If enabled, the container of export settings will be fixed on the screen and displayed in the foreground;- fixed a bug when selection mode in ListBox was multiple, but it was able to select only one item;- fixed a bug of non-refreshing dialog when CheckedBox was the initiator of the event. In this case, add at least one dependent object of the CheckedBox to the DetailControl property;- fixed a bug when in .NET Framework MVC application the report with dialog form on clicking "OK" would not hide dialog form and not show loading of the report;- fixed an error that caused extra pages to appear when printing;- fixed incorrect work of report 'Interactive Report' on WebReport.Core;- fixed rare NullReferenceException in WebReportLegacyCache; [Online Designer]- fixed a bug where First Page Source, Other Page Source, Last Page Source and Duplex properties was not saved when changing ReportPage;- fixed an error that made the report preview not refresh before pressing "Refresh" button; [.NET Core]+ the script compiler will now display errors depending on the selected locale set with FastReport.Utils.Res.LoadLocale() or FastReport.Utils.Config.CompilerSettings.CultureInfo;- fixed an issue where text with CanShrink = True was incorrectly rendered after export with Skia;- fixed a bug with incorrect indent width between characters with TextRenderType = HtmlTags in Skia;- fixed a bug that caused the watermark with transparency to have a gray background when exporting with Skia;- fixed an error that caused incorrect calculation of table row height; [CoreWin]- fixed error when trying to add new data connection; [Mono]+ added zoom control in preview and designer windows;- fixed problem of scaling PreviewControl; [Demos]+ added demo-app ASP.NET Core (Razor pages) under .NET 6.0;* updated demo applications for FastReport Core; [Extras]- fixed a situation in which the host during logout could not match the one during authorization;- fixed a bug when updating an expired session in the Account window, a browser opens and requests re-authorization.
December 26, 2022

Summary and plans

The year 2022 was full of important events. Despite its unpredictability and all challenges, that we've faced over the past 12 months, we've continued to work hard to improve document generation in thousands of apps. What important happened? A milestone for the VCL report generators was the end of support for obsolete non-Unicode versions, which will allow us to work harder to improve FastReport and introduce more sophisticated features with each release. Since the release of 2023.1, FastReport VCL supports Delphi versions starting from 2010. We have released the fp3 converter which converts to any FastReport VCL data format — FastConverter.FP3. We have launched NuGet server for the .NET direction — a repository of licensed products for users. Now you can conveniently download the latest versions of our components on any operating system. FastReport.Core now supports graphics and text rendering using the SkiaSharp library. Also, FastReport .NET got a bronze medal in the "Reporting, Analysis and Visualization" nomination in the Reader's Choice Awards by Visual Studio Magazine. We were happy to share the stand with Devexpress and SAP Crystal Reports. What about plans? The release of several services at once will be a truly revolutionary breakthrough in 2023. One of them is FastReport Cloud cloud report builder. This is an online service for creating, storing, and editing reports and documents, which allows you to set up and implement reporting in companies with minimal involvement of programmers. Stay tuned and you will be one of the first to try it! We are also working on a high-performance WPF reporting and document library for business application development. Other products will have the following features: WASM support New report objects Support for the latest version of the environment — NET 8, RAD Studio 11.3 Updated user interface and user experience Digital signature stamp Support for RFID tags for ZPL export Map implementation based on GeoJson And much more! It's also time for New Year's wishes. Maybe it's reporting for Android? Or export to some exotic format? Write to us your wish in the form below. It would be great if you also tell us how this will change the work of your applications. Congratulations on the upcoming holidays, Fast Reports team. Загрузка…
December 12, 2022

Christmas sale on FastReport VCL and FastReport .NET

  Grab the best offer before it expires!  Christmas sale season on FastReport VCL and FastReport .NET Single reporting library of all editions! Days of the promotion: -30% on December 12 - 14 -20% on December 15 - 19 -10% on December 20 - 26 Offer is valid for a full price purchase only and does not apply to a subscription renewal or an upgrade.   BUY NOW!  
December 12, 2022

Digital signature in the new FastReport VCL 2023.1

We have added the option of an attached and detached digital signature of arbitrary files. They will be used with the help of crypto providers installed in the system. You can see an example of a report with a digital signature at the Demos\FileSignature path. You will find the instructions at this link. We had added the ability to set arbitrary sheet names in the following exports: frxBIFFExport, frxXMLExport, frxXLSXExport via the OnGenerateSheetName event. The SVG image engine now supports "pattern" for object fills. Added AutoSize mode for TfrxOLEView object. Improved compatibility with the latest Lazarus version and added the TfrxDateEditControl object. Support for Delphi 7 has also been discontinued with this version. We have also optimized the work of the existing functionality and fixed some bugs.   Full list of changes in version 2023.1 --------------- [Designer]- Fixed dataset filtering [Engine]+ Added a new class for signing an arbitrary file with an attached or detached signature.- Fixed supreport X position when keep mechanism uses inside it [Exports]+ Added ability to customize sheet names in excel exports (frxBIFFExport, frxXMLExport, frxXLSXExport)- Fixed bug when PDFView draws dash line with wrong scale on metafile in PDF export vector output- Fixed pdf export errors- Fixed issue when pictures may disappear during PDF export in multi-thread GUI application- Fixed font size in HTMLTags in XLSX export- Fixed bug in xls(biff8) export under x64 platform- Fixed Cc and Bcc fileds in the SMTP mail sender [Lazarus]+ Added implementation of TfrxDateEditControl- Fixed Lazarus compilation- Disable AutoSize for descriptions functions in functions-tree due to Lazarus internal bug [Preview]- Fixed Search form width [Report object]+ Added support for the dominant-baseline attribute and the pattern element+ Added Autosize for TfrxOLEView- Fixed overflow error when test size of types in HTMLView stream- Fixed issue when TfrxRichView.RichEdit.Lines.LoadFromFile does not load file correctly under Rad Studio 11.2- Fixed bug with Datamatrix barcade with ACSII codepage- Fixed barcodes RTTI- Fixed PDFView memory leaks- Fixed TfrxPDFObject for 64bit in the IDE [Resources]* Updated Swiss resources* Update German Resources* Updated Farsi resources
December 06, 2022

We have released the new version of FastReport Desktop 2023.1

Extension of functionality for FastReport Desktop. Since versions 2023.1, you have access to: improvement of the report validator, integration with FastReport Cloud, correction of the MSChartObject object, stored procedures, etc.   Integration with FastReport Cloud FastReport Desktop and FastReport for DBA now support some interaction experience with FastReport Cloud.   Downloading and uploading reports Now you can download the report from Cloud and work on it in the designer, or vice versa — upload your files to Cloud.   Web Preview A web preview function has also appeared in addition to the standard preview. The report can only be viewed this way if it was opened from Cloud.   Connecting to FastReport Cloud data sources FastReport Cloud can store connections to data sources. From now on, you have the option to add these data sources to your report.    It also became possible to add the connection to Cloud. Read this article to learn more about the new features.   Report validator improvements Increased work speed Now the report validator runs in a single thread. The speed of its work is significantly optimized. You can notice the changes in processing reports with a large number of errors. While the validator is checking the report, the check window shows a respective message.   In this case, you can edit the report. A table with errors will appear upon completion of the validator.   Validator table setup For convenience, we have added a new column with error numbers. Its display can be enabled or disabled via the table context menu. In the same way, you can customize the display of the error type column.   JasperReports Template Converter We have added the option to convert report templates from JasperReports to FastReport .NET templates. JasperReports reports may contain objects that are not supported by the FastReport designer. These objects will not be converted or will be replaced to make the generated report as similar as possible to the one created in JasperReports. Read more in the article. MSChartObject improvements and fixes The MSChartObject object has many properties and settings. The most frequently used ones are moved to the object editor. Properties that are not available in the editor can be modified using the Object Inspector. However, there was a problem with these properties — when they were changed, the report was not seen as modified. As a result, saving was not available. To save the report, it was necessary to change its other property or object. In addition, the values of the specified properties were reset to their default values when preparing a report and after closing the preview window. This bug has been fixed in the new version.   Connection to Stored Procedures in MsSQL We have added the option to connect to procedures stored in MsSQL. This was previously available via a database query. Now you can connect to procedures much more conveniently using the interface of database table connection. They will be displayed in the selection window along with the tables. Once you select a procedure, a window with parameter settings, if any, will appear. Read more in the article.   Export Improvements "Print optimized" option in RTF export We have added a new PrintOptimized property and a corresponding option in the export window. Enabling this option will greatly increase the quality of the exported image. However, the size of the output file will be bigger.     Accounting format when exporting to Excel 2007 You can now export the currency data format as an accounting format. To do this, a corresponding option has been added in the export window and the CurrencyToAccounting property. The full list of changes is available at the following link.
December 06, 2022

New features in FastReport for DBA 2023.1

The new version of FastReport for DBA 2023.1 with the template converter from JasperReports is already available for download! And we have also created integration with FastReport Cloud, improved the report validator with exports and much more.   Integration with FastReport Cloud FastReport Desktop and FastReport for DBA now support some interaction experience with FastReport Cloud.   Downloading and uploading reports Now you can download the report from Cloud and work on it in the designer, or vice versa — upload your files to Cloud.   Web Preview A web preview function has also appeared in addition to the standard preview. The report can only be viewed this way if it was opened from Cloud.   Connecting to FastReport Cloud data sources FastReport Cloud can store connections to data sources. From now on, you have the option to add these data sources to your report.    It also became possible to add the connection to Cloud. Read this article to learn more about the new features.   Report validator improvements Increased work speed Now the report validator runs in a single thread. The speed of its work is significantly optimized. You can notice the changes in processing reports with a large number of errors. While the validator is checking the report, the check window shows a respective message.   In this case, you can edit the report. A table with errors will appear upon completion of the validator.   Validator table setup For convenience, we have added a new column with error numbers. Its display can be enabled or disabled via the table context menu. In the same way, you can customize the display of the error type column.   JasperReports Template Converter We have added the option to convert report templates from JasperReports to FastReport .NET templates. JasperReports reports may contain objects that are not supported by the FastReport designer. These objects will not be converted or will be replaced to make the generated report as similar as possible to the one created in JasperReports. Read more in the article. MSChartObject improvements and fixes The MSChartObject object has many properties and settings. The most frequently used ones are moved to the object editor. Properties that are not available in the editor can be modified using the Object Inspector. However, there was a problem with these properties — when they were changed, the report was not seen as modified. As a result, saving was not available. To save the report, it was necessary to change its other property or object. In addition, the values of the specified properties were reset to their default values when preparing a report and after closing the preview window. This bug has been fixed in the new version.   Connection to Stored Procedures in MsSQL We have added the option to connect to procedures stored in MsSQL. This was previously available via a database query. Now you can connect to procedures much more conveniently using the interface of database table connection. They will be displayed in the selection window along with the tables. Once you select a procedure, a window with parameter settings, if any, will appear. Read more in the article.   Export Improvements "Print optimized" option in RTF export We have added a new PrintOptimized property and a corresponding option in the export window. Enabling this option will greatly increase the quality of the exported image. However, the size of the output file will be bigger.     Accounting format when exporting to Excel 2007 You can now export the currency data format as an accounting format. To do this, a corresponding option has been added in the export window and the CurrencyToAccounting property. The full list of changes is available at the following link.
Fast Reports
  • 800-985-8986 (English, US)
  • +4930568373928 (German)
  • +55 19 98147-8148 (Portuguese)
  • info@fast-report.com
  • 901 N Pitt Str #325 Alexandria VA 22314

© 1998-2024 Fast Reports Inc.