├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Demos ├── OpenSource │ ├── Console apps │ │ ├── DataFromArray │ │ │ ├── DataFromArray.csproj │ │ │ ├── DataFromArray.sln │ │ │ ├── Program.cs │ │ │ └── in │ │ │ │ └── report.frx │ │ ├── DataFromBusinessObject │ │ │ ├── Category.cs │ │ │ ├── DataFromBusinessObject.csproj │ │ │ ├── DataFromBusinessObject.sln │ │ │ ├── Product.cs │ │ │ ├── Program.cs │ │ │ └── in │ │ │ │ └── report.frx │ │ ├── DataFromDataSet │ │ │ ├── DataFromDataSet.csproj │ │ │ ├── DataFromDataSet.sln │ │ │ ├── Program.cs │ │ │ └── in │ │ │ │ └── report.frx │ │ ├── PdfExport │ │ │ ├── PdfExport.csproj │ │ │ ├── PdfExport.sln │ │ │ └── Program.cs │ │ ├── ReportFromCode │ │ │ ├── Program.cs │ │ │ ├── ReportFromCode.csproj │ │ │ ├── ReportFromCode.sln │ │ │ └── in │ │ │ │ └── nwind.xml │ │ └── UserFunctions │ │ │ ├── MyFunctions.cs │ │ │ ├── Program.cs │ │ │ ├── UserFunctions.csproj │ │ │ └── UserFunctions.sln │ ├── Extra │ │ └── FastReport.OpenSource.AvaloniaViewer │ │ │ ├── .gitignore │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── FastReport.OpenSource.AvaloniaViewer.csproj │ │ │ ├── FastReport.OpenSource.AvaloniaViewer.sln │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── Reports │ │ │ ├── Barcode.fpx │ │ │ ├── Master-Detail.fpx │ │ │ └── Simple List.fpx │ │ │ ├── Resources │ │ │ ├── 001.ico │ │ │ ├── 068.png │ │ │ ├── frst.png │ │ │ ├── lst.png │ │ │ ├── nxt.png │ │ │ └── prr.png │ │ │ └── nuget.config │ ├── FastReport.OpenSource.Demos.sln │ ├── MVC │ │ ├── FastReport.OpenSource.MVC.6.0 │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ ├── FastReport.OpenSource.MVC.6.0.csproj │ │ │ ├── FastReport.OpenSource.MVC.6.0.sln │ │ │ ├── Models │ │ │ │ └── HomeModel.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _Layout.cshtml.css │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ └── logo.png │ │ └── FastReport.OpenSource.MVC.DataBase │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── FastReport.OpenSource.MVC.DataBase.csproj │ │ │ ├── FastReport.OpenSource.MVC.DataBase.sln │ │ │ ├── FastreportContext.cs │ │ │ ├── Models │ │ │ ├── Categories.cs │ │ │ ├── Customers.cs │ │ │ ├── Employees.cs │ │ │ ├── ErrorViewModel.cs │ │ │ ├── HomeModel.cs │ │ │ ├── MatrixDemo.cs │ │ │ ├── Orderdetails.cs │ │ │ ├── Orders.cs │ │ │ ├── Products.cs │ │ │ ├── Shippers.cs │ │ │ ├── Suppliers.cs │ │ │ └── Unicode.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _Layout.cshtml.css │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── fastreport.db │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ └── logo.png │ ├── SPA │ │ ├── FastReport.Core.React │ │ │ ├── .gitignore │ │ │ ├── ClientApp │ │ │ │ ├── .env │ │ │ │ ├── .env.development │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── aspnetcore-https.js │ │ │ │ ├── aspnetcore-react.js │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── index.html │ │ │ │ │ ├── logo.png │ │ │ │ │ └── manifest.json │ │ │ │ └── src │ │ │ │ │ ├── App.js │ │ │ │ │ ├── components │ │ │ │ │ ├── Layout.js │ │ │ │ │ ├── NavMenu.css │ │ │ │ │ ├── NavMenu.js │ │ │ │ │ └── Report.js │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── reportWebVitals.js │ │ │ │ │ ├── service-worker.js │ │ │ │ │ ├── serviceWorkerRegistration.js │ │ │ │ │ └── setupProxy.js │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ ├── FastReport.Core.React.sln │ │ │ ├── FastReport.OpenSource.React.csproj │ │ │ ├── Pages │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ └── _ViewImports.cshtml │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Views │ │ │ │ └── Home │ │ │ │ │ └── Get.cshtml │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── FastReport.Core.Vue │ │ │ ├── Controllers │ │ │ │ └── ReportsController.cs │ │ │ ├── FastReport.OpenSource.Vue.csproj │ │ │ ├── FastReport.OpenSource.Vue.sln │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── README.txt │ │ │ ├── ReportQuery.cs │ │ │ ├── Views │ │ │ │ └── Reports │ │ │ │ │ └── ShowReport.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── clientapp │ │ │ │ ├── .gitignore │ │ │ │ ├── aspnetcore-https.js │ │ │ │ ├── babel.config.js │ │ │ │ ├── jsconfig.json │ │ │ │ ├── nuget.config │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ └── index.html │ │ │ │ ├── setup_client.bat │ │ │ │ ├── src │ │ │ │ ├── App.vue │ │ │ │ ├── assets │ │ │ │ │ └── logo.png │ │ │ │ ├── components │ │ │ │ │ └── ReportsBase.vue │ │ │ │ └── main.js │ │ │ │ ├── vue-client.esproj │ │ │ │ └── vue.config.js │ │ └── FastReport.OpenSource.Angular │ │ │ ├── .gitignore │ │ │ ├── App_data │ │ │ ├── Master-Detail.frx │ │ │ └── nwind.xml │ │ │ ├── ClientApp │ │ │ ├── .browserslistrc │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── angular.json │ │ │ ├── aspnetcore-https.js │ │ │ ├── karma.conf.js │ │ │ ├── package.json │ │ │ ├── proxy.conf.js │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app.component.html │ │ │ │ │ ├── app.component.ts │ │ │ │ │ ├── app.module.ts │ │ │ │ │ ├── app.server.module.ts │ │ │ │ │ ├── safeUrl.pipe.ts │ │ │ │ │ └── web-report │ │ │ │ │ │ ├── web-report.component.html │ │ │ │ │ │ └── web-report.component.ts │ │ │ │ ├── assets │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── logo.png │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── index.html │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ ├── styles.css │ │ │ │ └── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.spec.json │ │ │ ├── Controllers │ │ │ └── WebReportController.cs │ │ │ ├── FastReport.OpenSource.Angular.csproj │ │ │ ├── FastReport.OpenSource.Angular.sln │ │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Views │ │ │ └── WebReport │ │ │ │ └── Get.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ └── favicon.ico │ └── _Shared │ │ ├── DataSetService.cs │ │ └── Utils.cs └── Reports │ ├── About Microsoft Chart.frx │ ├── AdvMatrix - Collapse + Sort.frx │ ├── AdvMatrix - Items comparison.frx │ ├── AdvMatrix - Order details.frx │ ├── AdvMatrix - Sort Year by total.frx │ ├── AdvMatrix - Sparkline, Gauge.frx │ ├── AdvMatrix - Stepped layout.frx │ ├── AdvMatrix - Two data cells.frx │ ├── AdvMatrix - User function.frx │ ├── Advanced Matrix.frx │ ├── Alternate Color Each Row.frx │ ├── Badges.frx │ ├── Barcode.frx │ ├── Box.frx │ ├── Business Objects.frx │ ├── Cascaded Data Filtering.frx │ ├── CellularText.frx │ ├── Chart.frx │ ├── CheckBox.frx │ ├── Column Datasource, Wrapped.frx │ ├── Column Datasource.frx │ ├── Complete upto N Rows.frx │ ├── Complex (Hyperlinks, Outline, TOC).frx │ ├── Complex (Master-detail + Group).frx │ ├── Complex Column Headers.frx │ ├── Databand Columns, Row Numbers.frx │ ├── Dialog Elements.frx │ ├── Dialog Events.frx │ ├── Dialog-WebResponse Book a room.frx │ ├── Double Pass, Total Pages.frx │ ├── Drill-Down Groups.frx │ ├── Duplicate Values.frx │ ├── Filtering with CheckedListBox.frx │ ├── Filtering with DataSelector.frx │ ├── Filtering with Date Ranges.frx │ ├── Filtering with Ranges.frx │ ├── Fit Dynamic Table To Page.frx │ ├── Gauge.frx │ ├── Groups.frx │ ├── Guidelines.frx │ ├── Handle Dialog Forms.frx │ ├── Handle Page Breaks.frx │ ├── Handle Preview Clicks.frx │ ├── Hello, FastReport!.frx │ ├── Hierarchic List.frx │ ├── Highlight Based on Row-Column.frx │ ├── Highlight.frx │ ├── Hyperlinks, Bookmarks.frx │ ├── Image.frx │ ├── Inherited Report - base.frx │ ├── Inherited Report.frx │ ├── Interactive Chart.frx │ ├── Interactive Forms.frx │ ├── Interactive Matrix - Details.frx │ ├── Interactive Matrix With Chart.frx │ ├── Interactive Matrix.frx │ ├── Interactive Report - Details.frx │ ├── Interactive Report, 2-in-1.frx │ ├── Interactive Report.frx │ ├── Keep Together.frx │ ├── Labels With Dialog.frx │ ├── Labels.frx │ ├── Lines and Shapes.frx │ ├── Mail Merge.frx │ ├── Master-Detail.frx │ ├── Matrix With Columns Only.frx │ ├── Matrix With Rows Only.frx │ ├── Matrix.frx │ ├── Microsoft Chart Sample.frx │ ├── Multiplication Table.frx │ ├── Objects Inside The Matrix.frx │ ├── Odd-Even Pages, Mirror Margins.frx │ ├── Odd-Even Rows.frx │ ├── Outline.frx │ ├── Pharmacode.frx │ ├── Pictures Inside The Matrix.frx │ ├── Polygon.frx │ ├── Print Copy Names.frx │ ├── Print DataTable.frx │ ├── Print Entered Value.frx │ ├── Print Month Names.frx │ ├── Print Total in The Group Header.frx │ ├── Print on Previous Page.frx │ ├── Purchase Order.frx │ ├── QR-Codes.frx │ ├── Repeat Headers.frx │ ├── Report With Cover Page.frx │ ├── RichText.frx │ ├── Row Datasource, Detail Rows.frx │ ├── Row Datasource, Master-Detail.frx │ ├── Row Datasource.frx │ ├── SVG.frx │ ├── Sales in the USA.frx │ ├── Series of Chart.frx │ ├── Shift Object Position.frx │ ├── Side-by-Side Subreports.frx │ ├── Simple List.frx │ ├── Simple Matrix.frx │ ├── Sort Group By Total.frx │ ├── Sparkline.frx │ ├── Start New Page, Reset Page Numbers.frx │ ├── Stress-Test (1000x1000).frx │ ├── Subreport.frx │ ├── Table.frx │ ├── Text.frx │ ├── TextureFill.frx │ ├── The USA Map.frx │ ├── Two Cell Dimensions, Side-by-Side.frx │ ├── Two Cell Dimensions.frx │ ├── Two Column Dimensions.frx │ ├── Two Matrices.frx │ ├── Two Row Dimensions.frx │ ├── Unicode.frx │ ├── Using Expressions.frx │ ├── Watermark.frx │ ├── ZipCode.frx │ ├── nwind.xml │ └── reports.xml ├── Directory.Build.targets ├── Extras ├── Core │ ├── FastReport.Data │ │ ├── Connections.props │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ ├── FastReport.Data.Cassandra │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── CassandraConnectionEditor.Designer.cs │ │ │ ├── CassandraConnectionEditor.cs │ │ │ ├── CassandraConnectionEditor.resx │ │ │ ├── CassandraDataConnection.DesignExt.cs │ │ │ ├── CassandraDataConnection.cs │ │ │ ├── FastReport.OpenSource.Data.Cassandra.csproj │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.ClickHouse │ │ │ ├── ClickHouseAssemblyInitializer.cs │ │ │ ├── ClickHouseConnection.DesignExt.cs │ │ │ ├── ClickHouseConnectionEditor.Designer.cs │ │ │ ├── ClickHouseConnectionEditor.cs │ │ │ ├── ClickHouseConnectionEditor.resx │ │ │ ├── ClickHouseDataConnection.cs │ │ │ ├── FastReport.OpenSource.Data.ClickHouse.csproj │ │ │ └── Shared.props │ │ ├── FastReport.Data.Couchbase │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── CouchbaseConnectionEditor.Designer.cs │ │ │ ├── CouchbaseConnectionEditor.cs │ │ │ ├── CouchbaseConnectionEditor.resx │ │ │ ├── CouchbaseConnectionStringBuilder.cs │ │ │ ├── CouchbaseDataConnection.DesignExt.cs │ │ │ ├── CouchbaseDataConnection.cs │ │ │ ├── FastReport.OpenSource.Data.Couchbase.csproj │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.ElasticSearch │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── ESConnectionEditor.Designer.cs │ │ │ ├── ESConnectionEditor.cs │ │ │ ├── ESConnectionEditor.resx │ │ │ ├── ESDataSourceConnection.DesignExt.cs │ │ │ ├── ESDataSourceConnection.cs │ │ │ ├── ESDataSourceConnectionStringBuilder.cs │ │ │ ├── FastReport.OpenSource.Data.ElasticSearch.csproj │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.Excel │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── ExcelConnectionEditor.Designer.cs │ │ │ ├── ExcelConnectionEditor.cs │ │ │ ├── ExcelConnectionEditor.resx │ │ │ ├── ExcelConnectionStringBuilder.cs │ │ │ ├── ExcelDataConnection.DesignExt.cs │ │ │ ├── ExcelDataConnection.cs │ │ │ ├── FastReport.OpenSource.Data.Excel.csproj │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.Firebird │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.Firebird.csproj │ │ │ ├── FirebirdConnectionEditor.Designer.cs │ │ │ ├── FirebirdConnectionEditor.cs │ │ │ ├── FirebirdConnectionEditor.resx │ │ │ ├── FirebirdDataConnection.DesignExt.cs │ │ │ ├── FirebirdDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.Ignite │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.Ignite.csproj │ │ │ ├── IgniteConnectionEditor.Designer.cs │ │ │ ├── IgniteConnectionEditor.cs │ │ │ ├── IgniteConnectionEditor.resx │ │ │ ├── IgniteDataConnection.DesignExt.cs │ │ │ ├── IgniteDataConnection.cs │ │ │ └── Shared.props │ │ ├── FastReport.Data.Json │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.Json.csproj │ │ │ ├── JsonClassGenerator │ │ │ │ ├── CSharpCodeWriter.cs │ │ │ │ ├── FieldInfo.cs │ │ │ │ ├── ICodeWriter.cs │ │ │ │ ├── IJsonClassGeneratorConfig.cs │ │ │ │ ├── JsonClassGenerator.cs │ │ │ │ ├── JsonClassHelper.cs │ │ │ │ ├── JsonType.cs │ │ │ │ ├── JsonTypeEnum.cs │ │ │ │ └── LICENSE.txt │ │ │ ├── JsonCompiler.cs │ │ │ ├── JsonConnectionEditor.cs │ │ │ ├── JsonConnectionEditor.designer.cs │ │ │ ├── JsonConnectionEditor.resx │ │ │ ├── JsonConnectionStringBuilder.cs │ │ │ ├── JsonConnectionType.cs │ │ │ ├── JsonDataConnection.DesignExt.cs │ │ │ ├── JsonDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.Linter │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.Linter.csproj │ │ │ ├── LinterConnection.DesignExt.cs │ │ │ ├── LinterDataConnection.cs │ │ │ ├── LinterDataConnectionEditor.Designer.cs │ │ │ ├── LinterDataConnectionEditor.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.MongoDB │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── Community_FastReport.Data.MongoDB.csproj │ │ │ ├── FastReport.OpenSource.Data.MongoDB.csproj │ │ │ ├── MongoDBConnectionEditor.Designer.cs │ │ │ ├── MongoDBConnectionEditor.cs │ │ │ ├── MongoDBConnectionEditor.resx │ │ │ ├── MongoDBDataConnection.DesignExt.cs │ │ │ ├── MongoDBDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.MsSql │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.MsSql.csproj │ │ │ ├── MsSqlDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.MySql │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.MySql.csproj │ │ │ ├── MySqlConnectionEditor.Designer.cs │ │ │ ├── MySqlConnectionEditor.cs │ │ │ ├── MySqlConnectionEditor.resx │ │ │ ├── MySqlDataConnection.DesignExt.cs │ │ │ ├── MySqlDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.Odbc │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.Odbc.csproj │ │ │ ├── OdbcDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.OracleODPCore │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.OracleODPCore.csproj │ │ │ ├── OracleConnectionEditor.Designer.cs │ │ │ ├── OracleConnectionEditor.cs │ │ │ ├── OracleConnectionEditor.resx │ │ │ ├── OracleDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.Postgres │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.Postgres.csproj │ │ │ ├── PostgresConnectionEditor.Designer.cs │ │ │ ├── PostgresConnectionEditor.cs │ │ │ ├── PostgresConnectionEditor.resx │ │ │ ├── PostgresDataConnection.DesignExt.cs │ │ │ ├── PostgresDataConnection.cs │ │ │ ├── PostgresTypesParsers.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ ├── FastReport.Data.RavenDB │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.RavenDB.csproj │ │ │ ├── RavenDBConnectionEditor.Designer.cs │ │ │ ├── RavenDBConnectionEditor.cs │ │ │ ├── RavenDBConnectionEditor.resx │ │ │ ├── RavenDBConnectionStringBuilder.cs │ │ │ ├── RavenDBDataConnection.DesignExt.cs │ │ │ ├── RavenDBDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ │ └── FastReport.Data.SQLite │ │ │ ├── AssemblyInitializer.cs │ │ │ ├── FastReport.OpenSource.Data.SQLite.csproj │ │ │ ├── SQLiteConnectionEditor.Designer.cs │ │ │ ├── SQLiteConnectionEditor.cs │ │ │ ├── SQLiteConnectionEditor.resx │ │ │ ├── SQLiteDataConnection.DesignExt.cs │ │ │ ├── SQLiteDataConnection.cs │ │ │ ├── Shared.props │ │ │ └── readme.txt │ └── FastReport.Plugin │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ ├── FastReport.Plugins.WebP │ │ ├── AssemblyInitializer.cs │ │ ├── FastReport.Core.Plugins.WebP.csproj │ │ ├── FastReport.OpenSource.Plugins.WebP.csproj │ │ ├── FastReport.Plugins.WebP.csproj │ │ ├── Shared.props │ │ ├── WebPCustomLoader.cs │ │ └── readme.txt │ │ └── Plugins.props ├── FastReport.Plugins.snk ├── OpenSource │ └── FastReport.OpenSource.Export.PdfSimple │ │ ├── FastReport.OpenSource.Export.PdfSimple.Tests │ │ ├── FastReport.OpenSource.Export.PdfSimple.Tests.csproj │ │ ├── PdfSimpleExportTests.cs │ │ ├── TestReport.fpx │ │ └── Watermark.fpx │ │ ├── FastReport.OpenSource.Export.PdfSimple.sln │ │ └── FastReport.OpenSource.Export.PdfSimple │ │ ├── FastReport.OpenSource.Export.PdfSimple.csproj │ │ ├── PDFSimpleExport.Config.cs │ │ ├── PDFSimpleExport.Images.cs │ │ ├── PDFSimpleExport.cs │ │ ├── PdfCore │ │ ├── PdfArray.cs │ │ ├── PdfBoolean.cs │ │ ├── PdfDictionary.cs │ │ ├── PdfDirectObject.cs │ │ ├── PdfIndirectObject.cs │ │ ├── PdfName.cs │ │ ├── PdfNumeric.cs │ │ ├── PdfObjectBase.cs │ │ ├── PdfStream.cs │ │ └── PdfString.cs │ │ └── PdfObjects │ │ ├── PdfCatalog.cs │ │ ├── PdfContents.cs │ │ ├── PdfImage.cs │ │ ├── PdfInfo.cs │ │ ├── PdfMask.cs │ │ ├── PdfPage.cs │ │ ├── PdfPages.cs │ │ ├── PdfTrailerId.cs │ │ └── PdfWriter.cs └── ReportBuilder │ ├── FastReport.ReportBuilder.UnitTest │ ├── FastReport.ReportBuilder.UnitTest.csproj │ ├── Person.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReportTest.cs │ └── packages.config │ ├── FastReport.ReportBuilder.sln │ ├── FastReport.ReportBuilder │ ├── Builders │ │ ├── DataBuilder.cs │ │ ├── DataHeaderBuilder.cs │ │ ├── GroupHeaderBuilder.cs │ │ ├── ReportBuilder.cs │ │ └── ReportTitleBuilder.cs │ ├── Definitions │ │ ├── DataDefinition.cs │ │ ├── DataHeaderDefinition.cs │ │ ├── GroupHeaderDefinition.cs │ │ ├── ReportDefinition.cs │ │ └── ReportTitleDefinition.cs │ ├── FastReport.ReportBuilder.csproj │ ├── Helpers │ │ └── GenericHelpers.cs │ └── ReportHelper.cs │ ├── LICENSE.md │ └── README.md ├── FastReport.Base ├── AssemblyInitializer.cs ├── BandBase.Async.cs ├── BandBase.cs ├── BandCollection.cs ├── BandColumns.cs ├── Barcode │ ├── Aztec │ │ ├── AztecCode.cs │ │ ├── AztecEncodingOptions.cs │ │ ├── BinaryShiftToken.cs │ │ ├── BitArray.cs │ │ ├── BitMatrix.cs │ │ ├── EncodeHintType.cs │ │ ├── Encoder.cs │ │ ├── EncodingOptions.cs │ │ ├── GenericGF.cs │ │ ├── GenericGFPoly.cs │ │ ├── HighLevelEncoder.cs │ │ ├── ReedSolomonEncoder.cs │ │ ├── SimpleToken.cs │ │ ├── State.cs │ │ ├── SupportClass.cs │ │ └── Token.cs │ ├── Barcode128.cs │ ├── Barcode2DBase.cs │ ├── Barcode2of5.cs │ ├── Barcode39.cs │ ├── Barcode93.cs │ ├── BarcodeAztec.cs │ ├── BarcodeBase.cs │ ├── BarcodeCodabar.cs │ ├── BarcodeDatamatrix.cs │ ├── BarcodeEAN.cs │ ├── BarcodeGS1.cs │ ├── BarcodeIntelligentMail.cs │ ├── BarcodeMSI.cs │ ├── BarcodeMaxiCode.cs │ ├── BarcodeObject.Async.cs │ ├── BarcodeObject.cs │ ├── BarcodePDF417.cs │ ├── BarcodePharmacode.cs │ ├── BarcodePlessey.cs │ ├── BarcodePostNet.cs │ ├── BarcodeQR.cs │ ├── BarcodeUPC.cs │ ├── GS1Helper.cs │ ├── LinearBarcodeBase.cs │ ├── QRCode │ │ ├── BitVector.cs │ │ ├── BlockPair.cs │ │ ├── ByteArray.cs │ │ ├── ByteMatrix.cs │ │ ├── Encoder.cs │ │ ├── ErrorCorrectionLevel.cs │ │ ├── GF256.cs │ │ ├── GF256Poly.cs │ │ ├── MaskUtil.cs │ │ ├── MatrixUtil.cs │ │ ├── Mode.cs │ │ ├── QRCode.cs │ │ ├── QRCodeWriter.cs │ │ ├── QRData.cs │ │ ├── ReedSolomonEncoder.cs │ │ ├── SupportClass.cs │ │ ├── Version.cs │ │ └── WriterException.cs │ └── SwissQRCode.cs ├── Base.cs ├── Border.cs ├── BreakableComponent.cs ├── CapSettings.cs ├── CellularTextObject.cs ├── CheckBoxObject.Async.cs ├── CheckBoxObject.cs ├── ChildBand.cs ├── Code │ ├── AssemblyDescriptor.cs │ ├── CodeHelper.cs │ ├── CodeProvider.cs │ ├── CodeUtils.cs │ ├── CsCodeHelper.cs │ ├── ExpressionDescriptor.cs │ ├── Ms │ │ ├── MsAssemblyDescriptor.Async.cs │ │ ├── MsAssemblyDescriptor.cs │ │ ├── MsCodeProvider.cs │ │ ├── MsExpressionDescriptor.cs │ │ └── StubClasses.cs │ └── VbCodeHelper.cs ├── ColumnFooterBand.cs ├── ColumnHeaderBand.cs ├── ComponentBase.cs ├── ConditionCollection.cs ├── ContainerObject.Async.cs ├── ContainerObject.cs ├── CrossView │ ├── BaseCubeLink.cs │ ├── CrossViewCellDescriptor.cs │ ├── CrossViewCells.cs │ ├── CrossViewData.cs │ ├── CrossViewDescriptor.cs │ ├── CrossViewHeader.cs │ ├── CrossViewHeaderDescriptor.cs │ ├── CrossViewHelper.cs │ ├── CrossViewObject.Async.cs │ └── CrossViewObject.cs ├── Data │ ├── BusinessObjectConverter.cs │ ├── BusinessObjectDataSource.Async.cs │ ├── BusinessObjectDataSource.cs │ ├── Column.cs │ ├── ColumnCollection.cs │ ├── CommandParameter.cs │ ├── CommandParameterCollection.cs │ ├── ConnectionCollection.cs │ ├── CsvConnectionStringBuilder.cs │ ├── CsvDataConnection.cs │ ├── CsvUtils.cs │ ├── CubeHelper.cs │ ├── CubeSourceBase.cs │ ├── CubeSourceCollection.cs │ ├── DataComponentBase.cs │ ├── DataConnectionBase.Async.cs │ ├── DataConnectionBase.cs │ ├── DataHelper.cs │ ├── DataSourceBase.Async.cs │ ├── DataSourceBase.cs │ ├── DataSourceCollection.cs │ ├── DataSourceFilter.cs │ ├── DbConnectionExtensions.cs │ ├── Dictionary.cs │ ├── DictionaryHelper.cs │ ├── JsonConnection │ │ ├── IJsonProviderSourceConnection.cs │ │ ├── JsonDataSourceConnection.cs │ │ ├── JsonDataSourceConnectionStringBuilder.cs │ │ └── JsonTableDataSource.cs │ ├── Parameter.cs │ ├── ParameterCollection.cs │ ├── ProcedureDataSource.cs │ ├── ProcedureParameter.cs │ ├── Relation.cs │ ├── RelationCollection.cs │ ├── SliceCubeSource.cs │ ├── SystemVariables.cs │ ├── TableCollection.cs │ ├── TableDataSource.Async.cs │ ├── TableDataSource.cs │ ├── Total.cs │ ├── TotalCollection.cs │ ├── ViewDataSource.Async.cs │ ├── ViewDataSource.cs │ ├── VirtualDataSource.Async.cs │ ├── VirtualDataSource.cs │ ├── XmlConnectionStringBuilder.cs │ └── XmlDataConnection.cs ├── DataBand.Async.cs ├── DataBand.cs ├── DataFooterBand.cs ├── DataHeaderBand.cs ├── Engine │ ├── ReportEngine.Async.cs │ ├── ReportEngine.Bands.Async.cs │ ├── ReportEngine.Bands.cs │ ├── ReportEngine.Break.cs │ ├── ReportEngine.DataBands.Async.cs │ ├── ReportEngine.DataBands.cs │ ├── ReportEngine.Groups.Async.cs │ ├── ReportEngine.Groups.cs │ ├── ReportEngine.Keep.cs │ ├── ReportEngine.KeepWithData.cs │ ├── ReportEngine.Outline.cs │ ├── ReportEngine.PageNumbers.cs │ ├── ReportEngine.Pages.Async.cs │ ├── ReportEngine.Pages.cs │ ├── ReportEngine.ProcessAt.cs │ ├── ReportEngine.Reprint.cs │ ├── ReportEngine.Subreports.Async.cs │ ├── ReportEngine.Subreports.cs │ └── ReportEngine.cs ├── Export │ ├── ExportBase.cs │ ├── ExportUtils.cs │ ├── Html │ │ ├── HTMLExport.cs │ │ ├── HTMLExportDraw.cs │ │ ├── HTMLExportLayers.cs │ │ ├── HTMLExportStyles.cs │ │ ├── HTMLExportTemplates.cs │ │ └── HTMLExportUtils.cs │ └── Image │ │ └── ImageExport.cs ├── Fakes.cs ├── FastReport.Base.csproj ├── Fills.cs ├── Format │ ├── BooleanFormat.cs │ ├── CurrencyFormat.cs │ ├── CustomFormat.cs │ ├── DateFormat.cs │ ├── FormatBase.cs │ ├── FormatCollection.cs │ ├── GeneralFormat.cs │ ├── NumberFormat.cs │ ├── PercentFormat.cs │ └── TimeFormat.cs ├── Functions │ ├── NumToLettersBase.cs │ ├── NumToLettersEn.cs │ ├── NumToLettersRu.cs │ ├── NumToWordSp.cs │ ├── NumToWordsBase.cs │ ├── NumToWordsDe.cs │ ├── NumToWordsEn.cs │ ├── NumToWordsEnGb.cs │ ├── NumToWordsEs.cs │ ├── NumToWordsFr.cs │ ├── NumToWordsIn.cs │ ├── NumToWordsNl.cs │ ├── NumToWordsPersian.cs │ ├── NumToWordsPl.cs │ ├── NumToWordsRu.cs │ ├── NumToWordsUkr.cs │ ├── Roman.cs │ └── StdFunctions.cs ├── Gauge │ ├── GaugeLabel.cs │ ├── GaugeObject.Async.cs │ ├── GaugeObject.cs │ ├── GaugePointer.cs │ ├── GaugeScale.cs │ ├── Linear │ │ ├── LinearGauge.cs │ │ ├── LinearPointer.cs │ │ └── LinearScale.cs │ ├── Radial │ │ ├── RadialGauge.cs │ │ ├── RadialLabel.cs │ │ ├── RadialPointer.cs │ │ ├── RadialScale.cs │ │ └── RadialUtils.cs │ └── Simple │ │ ├── Progress │ │ ├── SimpleProgressGauge.cs │ │ ├── SimpleProgressLabel.cs │ │ └── SimpleProgressPointer.cs │ │ ├── SimpleGauge.cs │ │ ├── SimplePointer.cs │ │ └── SimpleScale.cs ├── GroupFooterBand.cs ├── GroupHeaderBand.Async.cs ├── GroupHeaderBand.cs ├── HeaderFooterBandBase.cs ├── HighlightCondition.cs ├── HtmlObject.Async.cs ├── HtmlObject.cs ├── Hyperlink.cs ├── IContainDataSource.cs ├── IFRSerializable.cs ├── IParent.cs ├── ITranslatable.cs ├── Import │ ├── ComponentsFactory.cs │ ├── DevExpress │ │ ├── DevExpressImport.XmlSource.cs │ │ ├── DevExpressImport.cs │ │ └── UnitsConverter.cs │ ├── ImportBase.cs │ ├── JasperReports │ │ ├── JasperReportsImport.cs │ │ └── UnitsConverter.cs │ ├── ListAndLabel │ │ ├── ListAndLabelImport.cs │ │ └── UnitsConverter.cs │ ├── RDL │ │ ├── ImportTable.cs │ │ ├── RDLImport.cs │ │ ├── SizeUnits.cs │ │ └── UnitsConverter.cs │ └── StimulSoft │ │ ├── StimulSoftImport.cs │ │ └── UnitsConverter.cs ├── LineObject.cs ├── Matrix │ ├── MatrixCellDescriptor.cs │ ├── MatrixCells.cs │ ├── MatrixData.cs │ ├── MatrixDescriptor.cs │ ├── MatrixHeader.cs │ ├── MatrixHeaderDescriptor.cs │ ├── MatrixHeaderItem.cs │ ├── MatrixHelper.cs │ ├── MatrixObject.Async.cs │ ├── MatrixObject.cs │ └── MatrixStyleSheet.cs ├── ObjectCollection.cs ├── OverlayBand.cs ├── PageBase.cs ├── PageCollection.cs ├── PageColumns.cs ├── PageFooterBand.cs ├── PageHeaderBand.cs ├── PictureObject.Async.cs ├── PictureObject.cs ├── PictureObjectBase.Async.cs ├── PictureObjectBase.cs ├── PolyLineObject.cs ├── PolygonObject.cs ├── Preview │ ├── Bookmarks.cs │ ├── Dictionary.cs │ ├── Outline.cs │ ├── PageCache.cs │ ├── PreparedPage.cs │ ├── PreparedPagePostprocessor.cs │ ├── PreparedPages.cs │ └── SourcePages.cs ├── RFIDLabel.Async.cs ├── RFIDLabel.cs ├── Report.Async.cs ├── Report.cs ├── ReportComponentBase.Async.cs ├── ReportComponentBase.cs ├── ReportComponentCollection.cs ├── ReportEventArgs.cs ├── ReportInfo.cs ├── ReportPage.cs ├── ReportSettings.cs ├── ReportSummaryBand.cs ├── ReportTitleBand.cs ├── ShapeObject.cs ├── Sort.cs ├── SortCollection.cs ├── Style.cs ├── StyleBase.cs ├── StyleCollection.cs ├── StyleSheet.cs ├── SubreportObject.cs ├── Table │ ├── TableBase.cs │ ├── TableCell.Async.cs │ ├── TableCell.cs │ ├── TableCellData.cs │ ├── TableColumn.cs │ ├── TableColumnCollection.cs │ ├── TableHelper.cs │ ├── TableObject.Async.cs │ ├── TableObject.cs │ ├── TableResult.cs │ ├── TableRow.cs │ ├── TableRowCollection.cs │ └── TableStyleCollection.cs ├── TextObject.Async.cs ├── TextObject.cs ├── TextObjectBase.Async.cs ├── TextObjectBase.cs ├── TextOutline.cs ├── TypeConverters │ ├── BarcodeConverter.cs │ ├── ComponentRefConverter.cs │ ├── CubeSourceConverter.cs │ ├── DataSourceConverter.cs │ ├── DataTypeConverter.cs │ ├── FRExpandableObjectConverter.cs │ ├── FillConverter.cs │ ├── FlagConverter.cs │ ├── FloatCollectionConverter.cs │ ├── FormatConverter.cs │ ├── ParameterDataTypeConverter.cs │ └── RelationConverter.cs ├── Utils │ ├── AssemblyInitializerBase.cs │ ├── BlobStore.cs │ ├── CompileHelper.cs │ ├── CompilerSettings.cs │ ├── Compressor.cs │ ├── Config.cs │ ├── Converter.cs │ ├── Crc32.cs │ ├── Crypter.cs │ ├── DrawUtils.cs │ ├── Exceptions.cs │ ├── ExportsOptions.cs │ ├── FRCollectionBase.cs │ ├── FRPaintEventArgs.cs │ ├── FRPrivateFontCollection.cs │ ├── FRRandom.cs │ ├── FRReader.cs │ ├── FRWriter.cs │ ├── FastNameCreator.cs │ ├── FastString.cs │ ├── FileUtils.cs │ ├── FloatCollection.cs │ ├── FontManager.Gdi.cs │ ├── FontManager.Internals.cs │ ├── FontManager.cs │ ├── GraphicCache.cs │ ├── HtmlTextRenderer.cs │ ├── ImageHelper.Async.cs │ ├── ImageHelper.cs │ ├── Json │ │ ├── JsonArray.cs │ │ ├── JsonBase.cs │ │ ├── JsonObject.cs │ │ ├── JsonSchema.cs │ │ ├── JsonTextReader.cs │ │ └── Serialization │ │ │ ├── JsonAttributes.cs │ │ │ ├── JsonConverter.cs │ │ │ ├── JsonDeserializer.cs │ │ │ ├── JsonPropertyInfo.cs │ │ │ └── JsonSerializer.cs │ ├── MyEncodingInfo.cs │ ├── RegisteredObjects.cs │ ├── Res.cs │ ├── ResourceLoader.cs │ ├── ScriptSecurityEventArgs.cs │ ├── ShortProperties.cs │ ├── StorageService.cs │ ├── TextRenderer.cs │ ├── TextUtils.cs │ ├── Units.cs │ ├── Validator.cs │ ├── Variant.cs │ ├── Xml.cs │ └── Zip.cs ├── Watermark.cs ├── ZipCodeObject.Async.cs └── ZipCodeObject.cs ├── FastReport.Compat ├── Directory.Build.props ├── FastReport.Compat │ └── FastReport.Compat.csproj ├── LICENSE.md └── shared │ ├── Compiler │ ├── CSharpCodeProvider.cs │ ├── CodeDomProvider.cs │ ├── CodeGenerator.cs │ ├── CompilationEventArgs.cs │ ├── CompilerError.cs │ ├── CompilerParameters.cs │ ├── CompilerResults.cs │ ├── IAssemblyLoadResolver.cs │ ├── TempFileCollection.cs │ └── VBCodeProvider.cs │ ├── DotNetClasses │ ├── Color.Full.cs │ ├── GdiGraphics.cs │ ├── IGraphics.cs │ └── UITypeEditor.cs │ ├── TypeConverters │ ├── Color.Core.cs │ ├── ColorConverter.cs │ ├── FontConverter.IFontFamilyMatcher.cs │ ├── FontConverter.cs │ └── SizeConverter.cs │ └── WindowsForms │ ├── ComboBox.ObjectCollection.cs │ ├── ItemArray.cs │ ├── ListBox.ObjectCollection.cs │ ├── ListBox.SelectedIndexCollection.cs │ ├── ListBox.SelectedObjectCollection.cs │ ├── WindowsFormsReplacement.BindingSource.cs │ ├── WindowsFormsReplacement.ListBindingHelper.cs │ └── WindowsFormsReplacement.cs ├── FastReport.Core.Web ├── Application │ ├── Cache │ │ ├── CacheOptions.cs │ │ ├── IWebReportCache.cs │ │ ├── WebReportCache.cs │ │ ├── WebReportCacheOptions.cs │ │ ├── WebReportDistributedCache.cs │ │ ├── WebReportLegacyCache.cs │ │ └── WebReportMemoryCache.cs │ ├── Constants.cs │ ├── DesignerOptions.cs │ ├── DesignerSettings.cs │ ├── ExportMenuSettings.cs │ ├── ExportsHelper.cs │ ├── Extensions.cs │ ├── Infrastructure │ │ ├── ControllerBuilder.cs │ │ ├── ControllerExecutor.cs │ │ ├── FastReportBuilderExtensions.cs │ │ ├── FastReportGlobal.cs │ │ ├── FastReportMiddleware.cs │ │ ├── FastReportOptions.cs │ │ ├── FastReportServiceCollectionExtensions.Backend.cs │ │ ├── FastReportServiceCollectionExtensions.cs │ │ └── IResult.cs │ ├── LinkerFlags.cs │ ├── Localizations │ │ ├── DocxExportSettingsLocalization.cs │ │ ├── EmailExportSettingsLocalization.cs │ │ ├── HtmlExportSettingsLocalization.cs │ │ ├── ImageExportSettingsLocalization.cs │ │ ├── OdfExportSettingsLocalization.cs │ │ ├── PageSelectorLocalization.cs │ │ ├── PdfExportSettingsLocalization.cs │ │ ├── PptxExportSettingsLocalization.cs │ │ ├── RtfExportSettingsLocalization.cs │ │ ├── SvgExportSettingsLocalization.cs │ │ ├── XlsxExportSettingsLocalization.cs │ │ └── XmlExportSettingsLocalization.cs │ ├── ReportExporter │ │ ├── ReportExporter.cs │ │ └── Strategies │ │ │ ├── ArchiveExportStrategy.cs │ │ │ ├── DefaultExportStrategy.cs │ │ │ ├── ExportStrategyFactory.cs │ │ │ ├── IExportStrategy.cs │ │ │ └── PreparedExportStrategy.cs │ ├── ReportTab.cs │ ├── Toolbar │ │ ├── ToolbarButton.cs │ │ ├── ToolbarElement.cs │ │ ├── ToolbarInput.cs │ │ └── ToolbarSelect.cs │ ├── ToolbarSettings.cs │ ├── WebReport.Backend.cs │ ├── WebReport.Exports.cs │ ├── WebReport.Tabs.cs │ ├── WebReport.cs │ ├── WebReportDesigner.cs │ ├── WebReportExceptions.cs │ ├── WebReportHtml.Backend.cs │ ├── WebReportHtml.cs │ ├── WebReportOptions.cs │ └── WebUtils.cs ├── Controllers │ ├── ApiControllerBase.cs │ ├── Designer │ │ ├── ConnectionsController.cs │ │ ├── DesignerReportController.cs │ │ └── UtilsController.cs │ ├── Preview │ │ ├── DialogController.cs │ │ ├── ExportReportController.cs │ │ ├── GetPictureController.cs │ │ ├── GetReportController.cs │ │ ├── PrintReportController.cs │ │ └── ServiceController.cs │ └── Resources │ │ └── ResourcesController.cs ├── Directory.Build.props ├── Directory.Build.targets ├── FastReport.OpenSource.Web.csproj ├── FastReport.Web.Shared.props ├── README.md ├── Resources │ ├── angle-double-left.svg │ ├── angle-double-right.svg │ ├── angle-left.svg │ ├── angle-right.svg │ ├── button-active.svg │ ├── button.svg │ ├── caret-down.svg │ ├── caret-right.svg │ ├── clear_searchbox.svg │ ├── close.svg │ ├── date-picker.svg │ ├── default-custom-button.svg │ ├── file.svg │ ├── magnifier-search.svg │ ├── magnifier.svg │ ├── notification-bell.svg │ ├── print.svg │ ├── reload.svg │ ├── save.svg │ ├── select-arrow.svg │ ├── settings.svg │ ├── slash.svg │ ├── spinner.svg │ └── split.min.js ├── Services │ ├── Abstract │ │ ├── IConnectionsService.cs │ │ ├── IDesignerUtilsService.cs │ │ ├── IExportsService.cs │ │ ├── IPrintService.cs │ │ ├── IReportDesignerService.cs │ │ ├── IReportService.cs │ │ ├── IResourceLoader.cs │ │ └── ITextEditService.cs │ ├── EmailExportParams.cs │ ├── Helpers │ │ ├── IntelliSenseHelper.cs │ │ └── IntelliSenseModels.cs │ ├── Implementation │ │ ├── ConnectionService.cs │ │ ├── DesignerUtilsService.cs │ │ ├── ExportService.cs │ │ ├── InternalResourceLoader.cs │ │ ├── PrintService.cs │ │ ├── ReportDesignerService.cs │ │ ├── ReportService.cs │ │ └── TextEditService.cs │ └── ServicesParamsModels.cs └── Templates │ ├── ExportSettings │ ├── DocxExportSettings.cs │ ├── EmailExportSettings.cs │ ├── HtmlExportSettings.cs │ ├── ImageExportSettings.cs │ ├── OdsExportSettings.cs │ ├── OdtExportSettings.cs │ ├── PdfExportSettings.cs │ ├── PptxExportSettings.cs │ ├── RtfExportSettings.cs │ ├── SvgExportSettings.cs │ ├── XlsxExportSettings.cs │ └── XmlExportSettings.cs │ ├── body.cs │ ├── main.cs │ ├── modalcontainer.cs │ ├── outline.cs │ ├── script.cs │ ├── style.cs │ ├── tabs.cs │ └── toolbar.cs ├── FastReport.OpenSource.sln ├── FastReport.OpenSource.snk ├── FastReport.OpenSource ├── BandBase.Core.cs ├── Base.Core.cs ├── CellularTextObject.Core.cs ├── Code │ └── Ms │ │ └── MsAssemblyDescriptor.Core.cs ├── ComponentBase.Core.cs ├── CrossView │ ├── CrossViewHelper.Core.cs │ └── CrossViewObject.Core.cs ├── Data │ ├── CsvDataConnection.Core.cs │ ├── DataConnectionBase.Core.cs │ └── TableDataSource.Core.cs ├── Dialog │ └── DialogPage.Core.cs ├── Engine │ ├── ReportEngine.Core.cs │ ├── ReportEngine.Dialogs.OpenSource.cs │ └── ReportEngine.OpenSource.cs ├── Export │ ├── ExportBase.OpenSource.cs │ └── Html │ │ └── HTMLExport.OpenSource.cs ├── FastReport.OpenSource.csproj ├── HtmlObject.Core.cs ├── InternalVisibleTo.OpenSource.cs ├── LineObject.OpenSource.cs ├── Matrix │ └── MatrixObject.Core.cs ├── PictureObject.Core.cs ├── PictureObjectBase.Core.cs ├── PolyLineObject.Core.cs ├── Preview │ ├── PageCache.Core.cs │ └── PreparedPage.OpenSource.cs ├── Report.Core.cs ├── ReportComponentBase.Core.cs ├── ReportPage.Core.cs ├── ReportSettings.Core.cs ├── ShapeObject.Core.cs ├── StyleBase.Core.cs ├── Table │ ├── TableBase.Core.cs │ └── TableCellData.Core.cs ├── TextObject.Core.cs └── Utils │ ├── Config.Core.cs │ ├── Config.OpenSource.cs │ ├── ExportsOptions.OpenSource.cs │ ├── NetRepository.Core.cs │ └── RegisteredObjects.Core.cs ├── FastReport.Web.Base ├── ScriptSecurity.cs ├── Toolbar.Localization.cs └── WebResources.cs ├── FastReport └── Resources │ ├── CIS.frx │ ├── DesignerControl.bmp │ ├── DownArrow.cur │ ├── EnvironmentSettings.bmp │ ├── FastReport.config │ ├── Format.cur │ ├── Games │ └── FastM1nesweeper.frx │ ├── Hand.cur │ ├── HandMove.cur │ ├── Images │ ├── AutoSave-1-hi.png │ ├── AutoSave-1.png │ ├── AutoSave.png │ ├── Collate1-1-hi.png │ ├── Collate1-1.png │ ├── Collate1.png │ ├── Collate2-1-hi.png │ ├── Collate2-1.png │ ├── Collate2.png │ ├── DataWizard-1-hi.png │ ├── DataWizard-1.png │ ├── DataWizard.png │ ├── DefaultMode-1-hi.png │ ├── DefaultMode-1.png │ ├── DefaultMode.png │ ├── Landscape-1-hi.png │ ├── Landscape-1.png │ ├── Landscape.png │ ├── Password-1-hi.png │ ├── Password-1.png │ ├── Password.png │ ├── Portrait-1-hi.png │ ├── Portrait-1.png │ ├── Portrait.png │ ├── QueryWizard-1-hi.png │ ├── QueryWizard-1.png │ ├── QueryWizard.png │ ├── ReportWizard-1-hi.png │ ├── ReportWizard-1.png │ ├── ReportWizard.png │ ├── ScaleMode-1-hi.png │ ├── ScaleMode-1.png │ ├── ScaleMode.png │ ├── Splash.png │ ├── SplitMode-1-hi.png │ ├── SplitMode-1.png │ ├── SplitMode.png │ └── Welcome.png │ ├── MSChart │ ├── Area.png │ ├── Bar.png │ ├── Blue.xml │ ├── Bubble.png │ ├── Candlestick.png │ ├── Column.png │ ├── Doughnut.png │ ├── FastLine.png │ ├── FastPoint.png │ ├── Funnel.png │ ├── Gray.xml │ ├── Green.xml │ ├── Kagi.png │ ├── Light.xml │ ├── Line.png │ ├── Pie.png │ ├── Pink.xml │ ├── Point.png │ ├── PointAndFigure.png │ ├── Polar.png │ ├── Pyramid.png │ ├── Radar.png │ ├── Range.png │ ├── RangeBar.png │ ├── RangeColumn.png │ ├── Renko.png │ ├── Sand.xml │ ├── Spline.png │ ├── SplineArea.png │ ├── SplineRange.png │ ├── StackedArea.png │ ├── StackedArea100.png │ ├── StackedBar.png │ ├── StackedBar100.png │ ├── StackedColumn.png │ ├── StackedColumn100.png │ ├── Steel.xml │ ├── StepLine.png │ ├── Stock.png │ └── ThreeLineBreak.png │ ├── OoXML │ ├── settings.xml │ ├── styles.xml │ └── theme1.xml │ ├── Pdf │ ├── MetaData.xml │ ├── MetaDataX3.xml │ ├── MetaDataX4.xml │ ├── pdfaprofile.icc │ ├── pdfcmykprofile.icc │ └── pdfxprofile.icc │ ├── PreviewControl.bmp │ ├── Report.bmp │ ├── Ribbon │ ├── About-1-hi.png │ ├── About-1.png │ ├── About.png │ ├── Account-1-hi.png │ ├── Account-1.png │ ├── Account.png │ ├── AddDataSource-1-hi.png │ ├── AddDataSource-1.png │ ├── AddDataSource.png │ ├── AlignMenu-1-hi.png │ ├── AlignMenu-1.png │ ├── AlignMenu.png │ ├── AlignToGrid-1-hi.png │ ├── AlignToGrid-1.png │ ├── AlignToGrid.png │ ├── Bands-1-hi.png │ ├── Bands-1.png │ ├── Bands.png │ ├── BringToFront-1-hi.png │ ├── BringToFront-1.png │ ├── BringToFront.png │ ├── ChooseData-1-hi.png │ ├── ChooseData-1.png │ ├── ChooseData.png │ ├── CloudOpen-1-hi.png │ ├── CloudOpen-1.png │ ├── CloudOpen.png │ ├── CloudSave-1-hi.png │ ├── CloudSave-1.png │ ├── CloudSave.png │ ├── Exit-1-hi.png │ ├── Exit-1.png │ ├── Exit.png │ ├── FitToGrid-1-hi.png │ ├── FitToGrid-1.png │ ├── FitToGrid.png │ ├── Format-1-hi.png │ ├── Format-1.png │ ├── Format.png │ ├── Group-1-hi.png │ ├── Group-1.png │ ├── Group.png │ ├── Grouping-1-hi.png │ ├── Grouping-1.png │ ├── Grouping.png │ ├── HelpContents-1-hi.png │ ├── HelpContents-1.png │ ├── HelpContents.png │ ├── Highlight-1-hi.png │ ├── Highlight-1.png │ ├── Highlight.png │ ├── New-1-hi.png │ ├── New-1.png │ ├── New.png │ ├── Open-1-hi.png │ ├── Open-1.png │ ├── Open.png │ ├── OpenWelcomeWindow-1-hi.png │ ├── OpenWelcomeWindow-1.png │ ├── Options-1-hi.png │ ├── Options-1.png │ ├── Options.png │ ├── Page-1-hi.png │ ├── Page-1.png │ ├── Page.png │ ├── PageSetup-1-hi.png │ ├── PageSetup-1.png │ ├── PageSetup.png │ ├── Panels-1-hi.png │ ├── Panels-1.png │ ├── Panels.png │ ├── Paste-1-hi.png │ ├── Paste-1.png │ ├── Paste.png │ ├── Print-1-hi.png │ ├── Print-1.png │ ├── Print.png │ ├── Replace-1-hi.png │ ├── Replace-1.png │ ├── Replace.png │ ├── Report-1-hi.png │ ├── Report-1.png │ ├── Report.png │ ├── Report1-1-hi.png │ ├── Report1-1.png │ ├── Report1.png │ ├── Save-1-hi.png │ ├── Save-1.png │ ├── Save.png │ ├── SelectLanguage-1-hi.png │ ├── SelectLanguage-1.png │ ├── SendToBack-1-hi.png │ ├── SendToBack-1.png │ ├── SendToBack.png │ ├── SizeMenu-1-hi.png │ ├── SizeMenu-1.png │ ├── SizeMenu.png │ ├── SpacingMenu-1-hi.png │ ├── SpacingMenu-1.png │ ├── SpacingMenu.png │ ├── Ungroup-1-hi.png │ ├── Ungroup-1.png │ ├── Ungroup.png │ ├── ViewGridlines-1-hi.png │ ├── ViewGridlines-1.png │ ├── ViewGridlines.png │ ├── ViewGuides-1-hi.png │ ├── ViewGuides-1.png │ ├── ViewGuides.png │ ├── WebPreview-1-hi.png │ ├── WebPreview-1.png │ └── WebPreview.png │ ├── RibbonNew │ ├── AlignMenu-1-hi.png │ ├── AlignMenu-1.png │ ├── AlignMenu.png │ ├── Border-1-hi.png │ ├── Border-1.png │ ├── Border.png │ ├── Highlight-1-hi.png │ ├── Highlight-1.png │ ├── Highlight.png │ ├── New-1-hi.png │ ├── New-1.png │ ├── New.png │ ├── Open-1-hi.png │ ├── Open-1.png │ ├── Open.png │ ├── PageSetup-1-hi.png │ ├── PageSetup-1.png │ ├── PageSetup.png │ ├── Paste-1-hi.png │ ├── Paste-1.png │ ├── Paste.png │ ├── Polygon-1-hi.png │ ├── Polygon-1.png │ ├── Polygon.png │ ├── PolygonMove-1-hi.png │ ├── PolygonMove-1.png │ ├── PolygonMove.png │ ├── PolygonSelect-1-hi.png │ ├── PolygonSelect-1.png │ ├── PolygonSelect.png │ ├── Report-1-hi.png │ ├── Report-1.png │ ├── Report.png │ ├── Styles-1-hi.png │ ├── Styles-1.png │ ├── Styles.png │ ├── Text-1-hi.png │ ├── Text-1.png │ └── Text.png │ ├── RightArrow.cur │ ├── SVG │ └── svg11.dtd │ ├── bo.png │ ├── buttons-1-hi.png │ ├── buttons-1.png │ ├── buttons.png │ ├── cross.frss │ ├── defaultAvatar.jpg │ ├── doc.xml │ ├── en.xml │ ├── fr.png │ ├── icon16.ico │ ├── labels.dat │ ├── perforation.png │ ├── reportstyles.frss │ ├── samplereportcolumnar.frx │ ├── samplereporttabular.frx │ └── samplestylereport.frx ├── LICENSE.md ├── Localization ├── Arabic.frl ├── Armenian.frl ├── Chinese (Simplified).frl ├── Chinese (Traditional).frl ├── Croatian.frl ├── Czech.frl ├── Danish.frl ├── Dutch.frl ├── French.frl ├── German.frl ├── Greek.frl ├── Hungarian.frl ├── Italian.frl ├── Persian.frl ├── Polish.frl ├── Portuguese (Brazil).frl ├── Portuguese.frl ├── Romanian.frl ├── Russian.frl ├── Serbian.frl ├── Slovak.frl ├── Slovenian.frl ├── Spanish.frl ├── Swedish.frl ├── Thai.frl ├── Turkish.frl ├── Ukrainian.frl └── readme.txt ├── Pack ├── BuildScripts │ ├── CakeAPI │ │ └── CakeAPI.cs │ ├── Tasks │ │ ├── BaseTasks.cs │ │ ├── Constants.cs │ │ ├── LocalizationPackage.cs │ │ ├── OpenSourceTasks.cs │ │ └── Tests.cs │ ├── Tools │ │ ├── DebugAttribute.cs │ │ ├── DependsOnAttribute.cs │ │ ├── Graph.cs │ │ └── Startup.cs │ └── buildScript.csproj ├── FastReport MIT license.md ├── FastReport.Localization │ ├── build │ │ └── FastReport.Localization.targets │ ├── buildMultiTargeting │ │ └── FastReport.Localization.targets │ └── buildTransitive │ │ └── FastReport.Localization.targets ├── FastReport.OpenSource │ ├── build │ │ └── FastReport.OpenSource.props │ ├── buildMultiTargeting │ │ └── FastReport.OpenSource.props │ └── buildTransitive │ │ └── FastReport.OpenSource.props └── frlogo192.png ├── README.md ├── SECURITY.md ├── Tools ├── FastReport.OpenSource.Documentation │ ├── docfx.json │ ├── favicon.ico │ ├── index.md │ ├── logo.png │ └── toc.yml └── FastReport.Tests.OpenSource │ ├── BaseTests.cs │ ├── Data │ └── JsonParserTests.cs │ ├── FastReport.OpenSource.Tests.snk │ ├── FastReport.Tests.OpenSource.csproj │ ├── FastReport.Tests.OpenSource.sln │ ├── ReportObjectTests │ └── TextObjectTests.cs │ └── TextObjectBaseTests.cs ├── UsedPackages.version ├── _config.yml ├── assets ├── css │ └── style.scss └── images │ ├── FR-open-source-bw.svg │ ├── FR-open-source.svg │ ├── FastReport-screenshot1.png │ ├── FastReport-screenshot2.png │ └── FastReport-screenshot3.png ├── pack.bat ├── pack.sh └── publiccode.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Demos/OpenSource/SPA/FastReport.Core.React/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Demos/OpenSource/SPA/FastReport.Core.React/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44471 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Demos/OpenSource/SPA/FastReport.Core.React/Views/Home/Get.cshtml: -------------------------------------------------------------------------------- 1 | @await ViewBag.WebReport.Render() -------------------------------------------------------------------------------- /Demos/OpenSource/SPA/FastReport.Core.Vue/Views/Reports/ShowReport.cshtml: -------------------------------------------------------------------------------- 1 | @await ViewBag.WebReport.Render() -------------------------------------------------------------------------------- /Demos/OpenSource/SPA/FastReport.Core.Vue/clientapp/setup_client.bat: -------------------------------------------------------------------------------- 1 | npm run-script serve -------------------------------------------------------------------------------- /Demos/OpenSource/SPA/FastReport.OpenSource.Angular/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/OpenSource/SPA/FastReport.OpenSource.Angular/Views/WebReport/Get.cshtml: -------------------------------------------------------------------------------- 1 | @await ViewBag.WebReport.Render() 2 | -------------------------------------------------------------------------------- /Demos/OpenSource/_Shared/DataSetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/OpenSource/_Shared/DataSetService.cs -------------------------------------------------------------------------------- /Demos/OpenSource/_Shared/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/OpenSource/_Shared/Utils.cs -------------------------------------------------------------------------------- /Demos/Reports/About Microsoft Chart.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/About Microsoft Chart.frx -------------------------------------------------------------------------------- /Demos/Reports/AdvMatrix - Collapse + Sort.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/AdvMatrix - Collapse + Sort.frx -------------------------------------------------------------------------------- /Demos/Reports/AdvMatrix - Items comparison.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/AdvMatrix - Items comparison.frx -------------------------------------------------------------------------------- /Demos/Reports/AdvMatrix - Order details.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/AdvMatrix - Order details.frx -------------------------------------------------------------------------------- /Demos/Reports/AdvMatrix - Sparkline, Gauge.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/AdvMatrix - Sparkline, Gauge.frx -------------------------------------------------------------------------------- /Demos/Reports/AdvMatrix - Stepped layout.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/AdvMatrix - Stepped layout.frx -------------------------------------------------------------------------------- /Demos/Reports/AdvMatrix - Two data cells.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/AdvMatrix - Two data cells.frx -------------------------------------------------------------------------------- /Demos/Reports/AdvMatrix - User function.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/AdvMatrix - User function.frx -------------------------------------------------------------------------------- /Demos/Reports/Advanced Matrix.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Advanced Matrix.frx -------------------------------------------------------------------------------- /Demos/Reports/Alternate Color Each Row.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Alternate Color Each Row.frx -------------------------------------------------------------------------------- /Demos/Reports/Badges.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Badges.frx -------------------------------------------------------------------------------- /Demos/Reports/Barcode.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Barcode.frx -------------------------------------------------------------------------------- /Demos/Reports/Box.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Box.frx -------------------------------------------------------------------------------- /Demos/Reports/Business Objects.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Business Objects.frx -------------------------------------------------------------------------------- /Demos/Reports/Cascaded Data Filtering.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Cascaded Data Filtering.frx -------------------------------------------------------------------------------- /Demos/Reports/CellularText.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/CellularText.frx -------------------------------------------------------------------------------- /Demos/Reports/Chart.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Chart.frx -------------------------------------------------------------------------------- /Demos/Reports/CheckBox.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/CheckBox.frx -------------------------------------------------------------------------------- /Demos/Reports/Column Datasource, Wrapped.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Column Datasource, Wrapped.frx -------------------------------------------------------------------------------- /Demos/Reports/Column Datasource.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Column Datasource.frx -------------------------------------------------------------------------------- /Demos/Reports/Complete upto N Rows.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Complete upto N Rows.frx -------------------------------------------------------------------------------- /Demos/Reports/Complex Column Headers.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Complex Column Headers.frx -------------------------------------------------------------------------------- /Demos/Reports/Databand Columns, Row Numbers.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Databand Columns, Row Numbers.frx -------------------------------------------------------------------------------- /Demos/Reports/Dialog Elements.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Dialog Elements.frx -------------------------------------------------------------------------------- /Demos/Reports/Dialog Events.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Dialog Events.frx -------------------------------------------------------------------------------- /Demos/Reports/Double Pass, Total Pages.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Double Pass, Total Pages.frx -------------------------------------------------------------------------------- /Demos/Reports/Drill-Down Groups.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Drill-Down Groups.frx -------------------------------------------------------------------------------- /Demos/Reports/Duplicate Values.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Duplicate Values.frx -------------------------------------------------------------------------------- /Demos/Reports/Filtering with CheckedListBox.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Filtering with CheckedListBox.frx -------------------------------------------------------------------------------- /Demos/Reports/Filtering with DataSelector.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Filtering with DataSelector.frx -------------------------------------------------------------------------------- /Demos/Reports/Filtering with Date Ranges.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Filtering with Date Ranges.frx -------------------------------------------------------------------------------- /Demos/Reports/Filtering with Ranges.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Filtering with Ranges.frx -------------------------------------------------------------------------------- /Demos/Reports/Fit Dynamic Table To Page.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Fit Dynamic Table To Page.frx -------------------------------------------------------------------------------- /Demos/Reports/Gauge.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Gauge.frx -------------------------------------------------------------------------------- /Demos/Reports/Groups.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Groups.frx -------------------------------------------------------------------------------- /Demos/Reports/Guidelines.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Guidelines.frx -------------------------------------------------------------------------------- /Demos/Reports/Handle Dialog Forms.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Handle Dialog Forms.frx -------------------------------------------------------------------------------- /Demos/Reports/Handle Page Breaks.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Handle Page Breaks.frx -------------------------------------------------------------------------------- /Demos/Reports/Handle Preview Clicks.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Handle Preview Clicks.frx -------------------------------------------------------------------------------- /Demos/Reports/Hello, FastReport!.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Hello, FastReport!.frx -------------------------------------------------------------------------------- /Demos/Reports/Hierarchic List.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Hierarchic List.frx -------------------------------------------------------------------------------- /Demos/Reports/Highlight Based on Row-Column.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Highlight Based on Row-Column.frx -------------------------------------------------------------------------------- /Demos/Reports/Highlight.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Highlight.frx -------------------------------------------------------------------------------- /Demos/Reports/Hyperlinks, Bookmarks.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Hyperlinks, Bookmarks.frx -------------------------------------------------------------------------------- /Demos/Reports/Image.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Image.frx -------------------------------------------------------------------------------- /Demos/Reports/Inherited Report - base.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Inherited Report - base.frx -------------------------------------------------------------------------------- /Demos/Reports/Inherited Report.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Inherited Report.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Chart.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Chart.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Forms.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Forms.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Matrix - Details.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Matrix - Details.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Matrix With Chart.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Matrix With Chart.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Matrix.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Matrix.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Report - Details.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Report - Details.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Report, 2-in-1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Report, 2-in-1.frx -------------------------------------------------------------------------------- /Demos/Reports/Interactive Report.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Interactive Report.frx -------------------------------------------------------------------------------- /Demos/Reports/Keep Together.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Keep Together.frx -------------------------------------------------------------------------------- /Demos/Reports/Labels With Dialog.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Labels With Dialog.frx -------------------------------------------------------------------------------- /Demos/Reports/Labels.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Labels.frx -------------------------------------------------------------------------------- /Demos/Reports/Lines and Shapes.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Lines and Shapes.frx -------------------------------------------------------------------------------- /Demos/Reports/Mail Merge.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Mail Merge.frx -------------------------------------------------------------------------------- /Demos/Reports/Master-Detail.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Master-Detail.frx -------------------------------------------------------------------------------- /Demos/Reports/Matrix With Columns Only.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Matrix With Columns Only.frx -------------------------------------------------------------------------------- /Demos/Reports/Matrix With Rows Only.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Matrix With Rows Only.frx -------------------------------------------------------------------------------- /Demos/Reports/Matrix.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Matrix.frx -------------------------------------------------------------------------------- /Demos/Reports/Microsoft Chart Sample.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Microsoft Chart Sample.frx -------------------------------------------------------------------------------- /Demos/Reports/Multiplication Table.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Multiplication Table.frx -------------------------------------------------------------------------------- /Demos/Reports/Objects Inside The Matrix.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Objects Inside The Matrix.frx -------------------------------------------------------------------------------- /Demos/Reports/Odd-Even Rows.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Odd-Even Rows.frx -------------------------------------------------------------------------------- /Demos/Reports/Outline.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Outline.frx -------------------------------------------------------------------------------- /Demos/Reports/Pharmacode.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Pharmacode.frx -------------------------------------------------------------------------------- /Demos/Reports/Pictures Inside The Matrix.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Pictures Inside The Matrix.frx -------------------------------------------------------------------------------- /Demos/Reports/Polygon.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Polygon.frx -------------------------------------------------------------------------------- /Demos/Reports/Print Copy Names.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Print Copy Names.frx -------------------------------------------------------------------------------- /Demos/Reports/Print DataTable.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Print DataTable.frx -------------------------------------------------------------------------------- /Demos/Reports/Print Entered Value.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Print Entered Value.frx -------------------------------------------------------------------------------- /Demos/Reports/Print Month Names.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Print Month Names.frx -------------------------------------------------------------------------------- /Demos/Reports/Print on Previous Page.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Print on Previous Page.frx -------------------------------------------------------------------------------- /Demos/Reports/Purchase Order.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Purchase Order.frx -------------------------------------------------------------------------------- /Demos/Reports/QR-Codes.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/QR-Codes.frx -------------------------------------------------------------------------------- /Demos/Reports/Repeat Headers.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Repeat Headers.frx -------------------------------------------------------------------------------- /Demos/Reports/Report With Cover Page.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Report With Cover Page.frx -------------------------------------------------------------------------------- /Demos/Reports/RichText.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/RichText.frx -------------------------------------------------------------------------------- /Demos/Reports/Row Datasource, Detail Rows.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Row Datasource, Detail Rows.frx -------------------------------------------------------------------------------- /Demos/Reports/Row Datasource, Master-Detail.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Row Datasource, Master-Detail.frx -------------------------------------------------------------------------------- /Demos/Reports/Row Datasource.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Row Datasource.frx -------------------------------------------------------------------------------- /Demos/Reports/SVG.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/SVG.frx -------------------------------------------------------------------------------- /Demos/Reports/Sales in the USA.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Sales in the USA.frx -------------------------------------------------------------------------------- /Demos/Reports/Series of Chart.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Series of Chart.frx -------------------------------------------------------------------------------- /Demos/Reports/Shift Object Position.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Shift Object Position.frx -------------------------------------------------------------------------------- /Demos/Reports/Side-by-Side Subreports.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Side-by-Side Subreports.frx -------------------------------------------------------------------------------- /Demos/Reports/Simple List.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Simple List.frx -------------------------------------------------------------------------------- /Demos/Reports/Simple Matrix.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Simple Matrix.frx -------------------------------------------------------------------------------- /Demos/Reports/Sort Group By Total.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Sort Group By Total.frx -------------------------------------------------------------------------------- /Demos/Reports/Sparkline.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Sparkline.frx -------------------------------------------------------------------------------- /Demos/Reports/Stress-Test (1000x1000).frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Stress-Test (1000x1000).frx -------------------------------------------------------------------------------- /Demos/Reports/Subreport.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Subreport.frx -------------------------------------------------------------------------------- /Demos/Reports/Table.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Table.frx -------------------------------------------------------------------------------- /Demos/Reports/Text.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Text.frx -------------------------------------------------------------------------------- /Demos/Reports/TextureFill.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/TextureFill.frx -------------------------------------------------------------------------------- /Demos/Reports/The USA Map.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/The USA Map.frx -------------------------------------------------------------------------------- /Demos/Reports/Two Cell Dimensions.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Two Cell Dimensions.frx -------------------------------------------------------------------------------- /Demos/Reports/Two Column Dimensions.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Two Column Dimensions.frx -------------------------------------------------------------------------------- /Demos/Reports/Two Matrices.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Two Matrices.frx -------------------------------------------------------------------------------- /Demos/Reports/Two Row Dimensions.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Two Row Dimensions.frx -------------------------------------------------------------------------------- /Demos/Reports/Unicode.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Unicode.frx -------------------------------------------------------------------------------- /Demos/Reports/Using Expressions.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Using Expressions.frx -------------------------------------------------------------------------------- /Demos/Reports/Watermark.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/Watermark.frx -------------------------------------------------------------------------------- /Demos/Reports/ZipCode.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/ZipCode.frx -------------------------------------------------------------------------------- /Demos/Reports/nwind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/nwind.xml -------------------------------------------------------------------------------- /Demos/Reports/reports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Demos/Reports/reports.xml -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Extras/Core/FastReport.Data/Connections.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Extras/Core/FastReport.Data/Connections.props -------------------------------------------------------------------------------- /Extras/Core/FastReport.Plugin/Plugins.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Extras/Core/FastReport.Plugin/Plugins.props -------------------------------------------------------------------------------- /Extras/FastReport.Plugins.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Extras/FastReport.Plugins.snk -------------------------------------------------------------------------------- /Extras/ReportBuilder/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Extras/ReportBuilder/LICENSE.md -------------------------------------------------------------------------------- /Extras/ReportBuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Extras/ReportBuilder/README.md -------------------------------------------------------------------------------- /FastReport.Base/AssemblyInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/AssemblyInitializer.cs -------------------------------------------------------------------------------- /FastReport.Base/BandBase.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/BandBase.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/BandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/BandBase.cs -------------------------------------------------------------------------------- /FastReport.Base/BandCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/BandCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/BandColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/BandColumns.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/AztecCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/AztecCode.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/BitArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/BitArray.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/BitMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/BitMatrix.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/EncodeHintType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/EncodeHintType.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/Encoder.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/GenericGF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/GenericGF.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/GenericGFPoly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/GenericGFPoly.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/SimpleToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/SimpleToken.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/State.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/SupportClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/SupportClass.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Aztec/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Aztec/Token.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Barcode128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Barcode128.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Barcode2DBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Barcode2DBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Barcode2of5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Barcode2of5.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Barcode39.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Barcode39.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/Barcode93.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/Barcode93.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeAztec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeAztec.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeCodabar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeCodabar.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeDatamatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeDatamatrix.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeEAN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeEAN.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeGS1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeGS1.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeMSI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeMSI.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeMaxiCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeMaxiCode.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodePDF417.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodePDF417.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodePharmacode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodePharmacode.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodePlessey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodePlessey.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodePostNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodePostNet.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeQR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeQR.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/BarcodeUPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/BarcodeUPC.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/GS1Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/GS1Helper.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/LinearBarcodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/LinearBarcodeBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/BitVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/BitVector.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/BlockPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/BlockPair.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/ByteArray.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/ByteMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/ByteMatrix.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/Encoder.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/GF256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/GF256.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/GF256Poly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/GF256Poly.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/MaskUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/MaskUtil.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/MatrixUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/MatrixUtil.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/Mode.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/QRCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/QRCode.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/QRCodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/QRCodeWriter.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/QRData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/QRData.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/SupportClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/SupportClass.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/QRCode/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/QRCode/Version.cs -------------------------------------------------------------------------------- /FastReport.Base/Barcode/SwissQRCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Barcode/SwissQRCode.cs -------------------------------------------------------------------------------- /FastReport.Base/Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Base.cs -------------------------------------------------------------------------------- /FastReport.Base/Border.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Border.cs -------------------------------------------------------------------------------- /FastReport.Base/BreakableComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/BreakableComponent.cs -------------------------------------------------------------------------------- /FastReport.Base/CapSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CapSettings.cs -------------------------------------------------------------------------------- /FastReport.Base/CellularTextObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CellularTextObject.cs -------------------------------------------------------------------------------- /FastReport.Base/CheckBoxObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CheckBoxObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/CheckBoxObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CheckBoxObject.cs -------------------------------------------------------------------------------- /FastReport.Base/ChildBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ChildBand.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/AssemblyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/AssemblyDescriptor.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/CodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/CodeHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/CodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/CodeProvider.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/CodeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/CodeUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/CsCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/CsCodeHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/ExpressionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/ExpressionDescriptor.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/Ms/MsAssemblyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/Ms/MsAssemblyDescriptor.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/Ms/MsCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/Ms/MsCodeProvider.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/Ms/StubClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/Ms/StubClasses.cs -------------------------------------------------------------------------------- /FastReport.Base/Code/VbCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Code/VbCodeHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/ColumnFooterBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ColumnFooterBand.cs -------------------------------------------------------------------------------- /FastReport.Base/ColumnHeaderBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ColumnHeaderBand.cs -------------------------------------------------------------------------------- /FastReport.Base/ComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ComponentBase.cs -------------------------------------------------------------------------------- /FastReport.Base/ConditionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ConditionCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/ContainerObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ContainerObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/ContainerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ContainerObject.cs -------------------------------------------------------------------------------- /FastReport.Base/CrossView/BaseCubeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CrossView/BaseCubeLink.cs -------------------------------------------------------------------------------- /FastReport.Base/CrossView/CrossViewCells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CrossView/CrossViewCells.cs -------------------------------------------------------------------------------- /FastReport.Base/CrossView/CrossViewData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CrossView/CrossViewData.cs -------------------------------------------------------------------------------- /FastReport.Base/CrossView/CrossViewHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CrossView/CrossViewHeader.cs -------------------------------------------------------------------------------- /FastReport.Base/CrossView/CrossViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CrossView/CrossViewHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/CrossView/CrossViewObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/CrossView/CrossViewObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/BusinessObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/BusinessObjectConverter.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/Column.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/ColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/ColumnCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/CommandParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/CommandParameter.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/ConnectionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/ConnectionCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/CsvDataConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/CsvDataConnection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/CsvUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/CsvUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/CubeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/CubeHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/CubeSourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/CubeSourceBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/CubeSourceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/CubeSourceCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DataComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DataComponentBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DataConnectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DataConnectionBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DataHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DataSourceBase.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DataSourceBase.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DataSourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DataSourceBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DataSourceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DataSourceCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DataSourceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DataSourceFilter.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DbConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DbConnectionExtensions.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/Dictionary.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/DictionaryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/DictionaryHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/Parameter.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/ParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/ParameterCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/ProcedureDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/ProcedureDataSource.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/ProcedureParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/ProcedureParameter.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/Relation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/Relation.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/RelationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/RelationCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/SliceCubeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/SliceCubeSource.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/SystemVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/SystemVariables.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/TableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/TableCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/TableDataSource.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/TableDataSource.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/TableDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/TableDataSource.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/Total.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/Total.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/TotalCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/TotalCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/ViewDataSource.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/ViewDataSource.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/ViewDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/ViewDataSource.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/VirtualDataSource.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/VirtualDataSource.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/VirtualDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/VirtualDataSource.cs -------------------------------------------------------------------------------- /FastReport.Base/Data/XmlDataConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Data/XmlDataConnection.cs -------------------------------------------------------------------------------- /FastReport.Base/DataBand.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/DataBand.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/DataBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/DataBand.cs -------------------------------------------------------------------------------- /FastReport.Base/DataFooterBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/DataFooterBand.cs -------------------------------------------------------------------------------- /FastReport.Base/DataHeaderBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/DataHeaderBand.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Bands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Bands.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Break.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Break.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Groups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Groups.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Keep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Keep.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Outline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Outline.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Pages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Pages.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.Reprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.Reprint.cs -------------------------------------------------------------------------------- /FastReport.Base/Engine/ReportEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Engine/ReportEngine.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/ExportBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/ExportBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/ExportUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/ExportUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/Html/HTMLExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/Html/HTMLExport.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/Html/HTMLExportDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/Html/HTMLExportDraw.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/Html/HTMLExportLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/Html/HTMLExportLayers.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/Html/HTMLExportStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/Html/HTMLExportStyles.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/Html/HTMLExportUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/Html/HTMLExportUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Export/Image/ImageExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Export/Image/ImageExport.cs -------------------------------------------------------------------------------- /FastReport.Base/Fakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Fakes.cs -------------------------------------------------------------------------------- /FastReport.Base/FastReport.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/FastReport.Base.csproj -------------------------------------------------------------------------------- /FastReport.Base/Fills.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Fills.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/BooleanFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/BooleanFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/CurrencyFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/CurrencyFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/CustomFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/CustomFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/DateFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/DateFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/FormatBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/FormatBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/FormatCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/FormatCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/GeneralFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/GeneralFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/NumberFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/NumberFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/PercentFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/PercentFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Format/TimeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Format/TimeFormat.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToLettersBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToLettersBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToLettersEn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToLettersEn.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToLettersRu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToLettersRu.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordSp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordSp.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsDe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsDe.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsEn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsEn.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsEnGb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsEnGb.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsEs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsEs.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsFr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsFr.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsIn.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsNl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsNl.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsPersian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsPersian.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsPl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsPl.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsRu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsRu.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/NumToWordsUkr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/NumToWordsUkr.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/Roman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/Roman.cs -------------------------------------------------------------------------------- /FastReport.Base/Functions/StdFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Functions/StdFunctions.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/GaugeLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/GaugeLabel.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/GaugeObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/GaugeObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/GaugeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/GaugeObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/GaugePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/GaugePointer.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/GaugeScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/GaugeScale.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Linear/LinearGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Linear/LinearGauge.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Linear/LinearPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Linear/LinearPointer.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Linear/LinearScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Linear/LinearScale.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Radial/RadialGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Radial/RadialGauge.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Radial/RadialLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Radial/RadialLabel.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Radial/RadialPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Radial/RadialPointer.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Radial/RadialScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Radial/RadialScale.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Radial/RadialUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Radial/RadialUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Simple/SimpleGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Simple/SimpleGauge.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Simple/SimplePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Simple/SimplePointer.cs -------------------------------------------------------------------------------- /FastReport.Base/Gauge/Simple/SimpleScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Gauge/Simple/SimpleScale.cs -------------------------------------------------------------------------------- /FastReport.Base/GroupFooterBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/GroupFooterBand.cs -------------------------------------------------------------------------------- /FastReport.Base/GroupHeaderBand.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/GroupHeaderBand.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/GroupHeaderBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/GroupHeaderBand.cs -------------------------------------------------------------------------------- /FastReport.Base/HeaderFooterBandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/HeaderFooterBandBase.cs -------------------------------------------------------------------------------- /FastReport.Base/HighlightCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/HighlightCondition.cs -------------------------------------------------------------------------------- /FastReport.Base/HtmlObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/HtmlObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/HtmlObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/HtmlObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Hyperlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Hyperlink.cs -------------------------------------------------------------------------------- /FastReport.Base/IContainDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/IContainDataSource.cs -------------------------------------------------------------------------------- /FastReport.Base/IFRSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/IFRSerializable.cs -------------------------------------------------------------------------------- /FastReport.Base/IParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/IParent.cs -------------------------------------------------------------------------------- /FastReport.Base/ITranslatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ITranslatable.cs -------------------------------------------------------------------------------- /FastReport.Base/Import/ComponentsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Import/ComponentsFactory.cs -------------------------------------------------------------------------------- /FastReport.Base/Import/ImportBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Import/ImportBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Import/RDL/ImportTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Import/RDL/ImportTable.cs -------------------------------------------------------------------------------- /FastReport.Base/Import/RDL/RDLImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Import/RDL/RDLImport.cs -------------------------------------------------------------------------------- /FastReport.Base/Import/RDL/SizeUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Import/RDL/SizeUnits.cs -------------------------------------------------------------------------------- /FastReport.Base/Import/RDL/UnitsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Import/RDL/UnitsConverter.cs -------------------------------------------------------------------------------- /FastReport.Base/LineObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/LineObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixCellDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixCellDescriptor.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixCells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixCells.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixData.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixDescriptor.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixHeader.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixHeaderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixHeaderItem.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Matrix/MatrixStyleSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Matrix/MatrixStyleSheet.cs -------------------------------------------------------------------------------- /FastReport.Base/ObjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ObjectCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/OverlayBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/OverlayBand.cs -------------------------------------------------------------------------------- /FastReport.Base/PageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PageBase.cs -------------------------------------------------------------------------------- /FastReport.Base/PageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PageCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/PageColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PageColumns.cs -------------------------------------------------------------------------------- /FastReport.Base/PageFooterBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PageFooterBand.cs -------------------------------------------------------------------------------- /FastReport.Base/PageHeaderBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PageHeaderBand.cs -------------------------------------------------------------------------------- /FastReport.Base/PictureObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PictureObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/PictureObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PictureObject.cs -------------------------------------------------------------------------------- /FastReport.Base/PictureObjectBase.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PictureObjectBase.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/PictureObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PictureObjectBase.cs -------------------------------------------------------------------------------- /FastReport.Base/PolyLineObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PolyLineObject.cs -------------------------------------------------------------------------------- /FastReport.Base/PolygonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/PolygonObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Preview/Bookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Preview/Bookmarks.cs -------------------------------------------------------------------------------- /FastReport.Base/Preview/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Preview/Dictionary.cs -------------------------------------------------------------------------------- /FastReport.Base/Preview/Outline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Preview/Outline.cs -------------------------------------------------------------------------------- /FastReport.Base/Preview/PageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Preview/PageCache.cs -------------------------------------------------------------------------------- /FastReport.Base/Preview/PreparedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Preview/PreparedPage.cs -------------------------------------------------------------------------------- /FastReport.Base/Preview/PreparedPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Preview/PreparedPages.cs -------------------------------------------------------------------------------- /FastReport.Base/Preview/SourcePages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Preview/SourcePages.cs -------------------------------------------------------------------------------- /FastReport.Base/RFIDLabel.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/RFIDLabel.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/RFIDLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/RFIDLabel.cs -------------------------------------------------------------------------------- /FastReport.Base/Report.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Report.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Report.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportComponentBase.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportComponentBase.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportComponentBase.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportComponentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportComponentCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportEventArgs.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportInfo.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportPage.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportSettings.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportSummaryBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportSummaryBand.cs -------------------------------------------------------------------------------- /FastReport.Base/ReportTitleBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ReportTitleBand.cs -------------------------------------------------------------------------------- /FastReport.Base/ShapeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ShapeObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Sort.cs -------------------------------------------------------------------------------- /FastReport.Base/SortCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/SortCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Style.cs -------------------------------------------------------------------------------- /FastReport.Base/StyleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/StyleBase.cs -------------------------------------------------------------------------------- /FastReport.Base/StyleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/StyleCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/StyleSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/StyleSheet.cs -------------------------------------------------------------------------------- /FastReport.Base/SubreportObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/SubreportObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableCell.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableCell.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableCell.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableCellData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableCellData.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableColumn.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableColumnCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableResult.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableRow.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableRowCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableRowCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Table/TableStyleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Table/TableStyleCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/TextObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/TextObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/TextObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/TextObject.cs -------------------------------------------------------------------------------- /FastReport.Base/TextObjectBase.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/TextObjectBase.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/TextObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/TextObjectBase.cs -------------------------------------------------------------------------------- /FastReport.Base/TextOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/TextOutline.cs -------------------------------------------------------------------------------- /FastReport.Base/TypeConverters/FillConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/TypeConverters/FillConverter.cs -------------------------------------------------------------------------------- /FastReport.Base/TypeConverters/FlagConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/TypeConverters/FlagConverter.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/BlobStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/BlobStore.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/CompileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/CompileHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/CompilerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/CompilerSettings.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Compressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Compressor.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Config.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Converter.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Crc32.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Crypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Crypter.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/DrawUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/DrawUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Exceptions.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/ExportsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/ExportsOptions.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FRCollectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FRCollectionBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FRPaintEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FRPaintEventArgs.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FRRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FRRandom.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FRReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FRReader.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FRWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FRWriter.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FastNameCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FastNameCreator.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FastString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FastString.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FileUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FloatCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FloatCollection.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FontManager.Gdi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FontManager.Gdi.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FontManager.Internals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FontManager.Internals.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/FontManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/FontManager.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/GraphicCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/GraphicCache.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/HtmlTextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/HtmlTextRenderer.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/ImageHelper.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/ImageHelper.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/ImageHelper.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Json/JsonArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Json/JsonArray.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Json/JsonBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Json/JsonBase.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Json/JsonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Json/JsonObject.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Json/JsonSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Json/JsonSchema.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Json/JsonTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Json/JsonTextReader.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/MyEncodingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/MyEncodingInfo.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/RegisteredObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/RegisteredObjects.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Res.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/ResourceLoader.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/ShortProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/ShortProperties.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/StorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/StorageService.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/TextRenderer.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/TextUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/TextUtils.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Units.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Units.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Validator.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Variant.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Xml.cs -------------------------------------------------------------------------------- /FastReport.Base/Utils/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Utils/Zip.cs -------------------------------------------------------------------------------- /FastReport.Base/Watermark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/Watermark.cs -------------------------------------------------------------------------------- /FastReport.Base/ZipCodeObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ZipCodeObject.Async.cs -------------------------------------------------------------------------------- /FastReport.Base/ZipCodeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Base/ZipCodeObject.cs -------------------------------------------------------------------------------- /FastReport.Compat/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Compat/Directory.Build.props -------------------------------------------------------------------------------- /FastReport.Compat/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Compat/LICENSE.md -------------------------------------------------------------------------------- /FastReport.Core.Web/Application/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Application/Constants.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Application/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Application/Extensions.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Application/LinkerFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Application/LinkerFlags.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Application/ReportTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Application/ReportTab.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Application/WebReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Application/WebReport.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Application/WebUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Application/WebUtils.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Directory.Build.props -------------------------------------------------------------------------------- /FastReport.Core.Web/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Directory.Build.targets -------------------------------------------------------------------------------- /FastReport.Core.Web/FastReport.Web.Shared.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/FastReport.Web.Shared.props -------------------------------------------------------------------------------- /FastReport.Core.Web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/README.md -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/angle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/angle-left.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/angle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/angle-right.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/button-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/button-active.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/button.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/caret-down.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/caret-right.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/close.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/date-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/date-picker.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/file.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/magnifier.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/print.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/reload.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/save.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/select-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/select-arrow.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/settings.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/slash.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/spinner.svg -------------------------------------------------------------------------------- /FastReport.Core.Web/Resources/split.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Resources/split.min.js -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/body.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/body.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/main.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/modalcontainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/modalcontainer.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/outline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/outline.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/script.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/style.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/tabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/tabs.cs -------------------------------------------------------------------------------- /FastReport.Core.Web/Templates/toolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Core.Web/Templates/toolbar.cs -------------------------------------------------------------------------------- /FastReport.OpenSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource.sln -------------------------------------------------------------------------------- /FastReport.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource.snk -------------------------------------------------------------------------------- /FastReport.OpenSource/BandBase.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/BandBase.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/Base.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/Base.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/ComponentBase.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/ComponentBase.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/Dialog/DialogPage.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/Dialog/DialogPage.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/HtmlObject.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/HtmlObject.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/LineObject.OpenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/LineObject.OpenSource.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/PictureObject.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/PictureObject.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/PictureObjectBase.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/PictureObjectBase.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/PolyLineObject.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/PolyLineObject.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/Preview/PageCache.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/Preview/PageCache.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/Report.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/Report.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/ReportPage.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/ReportPage.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/ReportSettings.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/ReportSettings.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/ShapeObject.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/ShapeObject.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/StyleBase.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/StyleBase.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/Table/TableBase.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/Table/TableBase.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/TextObject.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/TextObject.Core.cs -------------------------------------------------------------------------------- /FastReport.OpenSource/Utils/Config.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.OpenSource/Utils/Config.Core.cs -------------------------------------------------------------------------------- /FastReport.Web.Base/ScriptSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Web.Base/ScriptSecurity.cs -------------------------------------------------------------------------------- /FastReport.Web.Base/Toolbar.Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Web.Base/Toolbar.Localization.cs -------------------------------------------------------------------------------- /FastReport.Web.Base/WebResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport.Web.Base/WebResources.cs -------------------------------------------------------------------------------- /FastReport/Resources/CIS.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/CIS.frx -------------------------------------------------------------------------------- /FastReport/Resources/DesignerControl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/DesignerControl.bmp -------------------------------------------------------------------------------- /FastReport/Resources/DownArrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/DownArrow.cur -------------------------------------------------------------------------------- /FastReport/Resources/EnvironmentSettings.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/EnvironmentSettings.bmp -------------------------------------------------------------------------------- /FastReport/Resources/FastReport.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/FastReport.config -------------------------------------------------------------------------------- /FastReport/Resources/Format.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Format.cur -------------------------------------------------------------------------------- /FastReport/Resources/Games/FastM1nesweeper.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Games/FastM1nesweeper.frx -------------------------------------------------------------------------------- /FastReport/Resources/Hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Hand.cur -------------------------------------------------------------------------------- /FastReport/Resources/HandMove.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/HandMove.cur -------------------------------------------------------------------------------- /FastReport/Resources/Images/AutoSave-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/AutoSave-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/AutoSave-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/AutoSave-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/AutoSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/AutoSave.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Collate1-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Collate1-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Collate1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Collate1-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Collate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Collate1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Collate2-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Collate2-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Collate2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Collate2-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Collate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Collate2.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/DataWizard-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/DataWizard-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/DataWizard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/DataWizard-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/DataWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/DataWizard.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/DefaultMode-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/DefaultMode-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/DefaultMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/DefaultMode.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Landscape-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Landscape-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Landscape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Landscape-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Landscape.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Password-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Password-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Password-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Password-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Password.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Portrait-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Portrait-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Portrait-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Portrait-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Portrait.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/QueryWizard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/QueryWizard-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/QueryWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/QueryWizard.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/ReportWizard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/ReportWizard-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/ReportWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/ReportWizard.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/ScaleMode-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/ScaleMode-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/ScaleMode-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/ScaleMode-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/ScaleMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/ScaleMode.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Splash.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/SplitMode-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/SplitMode-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/SplitMode-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/SplitMode-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/SplitMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/SplitMode.png -------------------------------------------------------------------------------- /FastReport/Resources/Images/Welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Images/Welcome.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Area.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Bar.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Blue.xml -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Bubble.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Candlestick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Candlestick.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Column.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Doughnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Doughnut.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/FastLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/FastLine.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/FastPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/FastPoint.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Funnel.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Gray.xml -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Green.xml -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Kagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Kagi.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Light.xml -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Line.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Pie.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Pink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Pink.xml -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Point.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/PointAndFigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/PointAndFigure.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Polar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Polar.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Pyramid.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Radar.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Range.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/RangeBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/RangeBar.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/RangeColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/RangeColumn.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Renko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Renko.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Sand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Sand.xml -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Spline.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/SplineArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/SplineArea.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/SplineRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/SplineRange.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/StackedArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/StackedArea.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/StackedArea100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/StackedArea100.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/StackedBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/StackedBar.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/StackedBar100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/StackedBar100.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/StackedColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/StackedColumn.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Steel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Steel.xml -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/StepLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/StepLine.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/Stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/Stock.png -------------------------------------------------------------------------------- /FastReport/Resources/MSChart/ThreeLineBreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/MSChart/ThreeLineBreak.png -------------------------------------------------------------------------------- /FastReport/Resources/OoXML/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/OoXML/settings.xml -------------------------------------------------------------------------------- /FastReport/Resources/OoXML/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/OoXML/styles.xml -------------------------------------------------------------------------------- /FastReport/Resources/OoXML/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/OoXML/theme1.xml -------------------------------------------------------------------------------- /FastReport/Resources/Pdf/MetaData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Pdf/MetaData.xml -------------------------------------------------------------------------------- /FastReport/Resources/Pdf/MetaDataX3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Pdf/MetaDataX3.xml -------------------------------------------------------------------------------- /FastReport/Resources/Pdf/MetaDataX4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Pdf/MetaDataX4.xml -------------------------------------------------------------------------------- /FastReport/Resources/Pdf/pdfaprofile.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Pdf/pdfaprofile.icc -------------------------------------------------------------------------------- /FastReport/Resources/Pdf/pdfcmykprofile.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Pdf/pdfcmykprofile.icc -------------------------------------------------------------------------------- /FastReport/Resources/Pdf/pdfxprofile.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Pdf/pdfxprofile.icc -------------------------------------------------------------------------------- /FastReport/Resources/PreviewControl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/PreviewControl.bmp -------------------------------------------------------------------------------- /FastReport/Resources/Report.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Report.bmp -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/About-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/About-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/About-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/About-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/About.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Account-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Account-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Account-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Account-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Account.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/AddDataSource-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/AddDataSource-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/AddDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/AddDataSource.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/AlignMenu-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/AlignMenu-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/AlignMenu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/AlignMenu-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/AlignMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/AlignMenu.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/AlignToGrid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/AlignToGrid-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/AlignToGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/AlignToGrid.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Bands-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Bands-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Bands-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Bands-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Bands.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/BringToFront-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/BringToFront-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/BringToFront.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ChooseData-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ChooseData-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ChooseData-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ChooseData-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ChooseData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ChooseData.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/CloudOpen-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/CloudOpen-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/CloudOpen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/CloudOpen-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/CloudOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/CloudOpen.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/CloudSave-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/CloudSave-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/CloudSave-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/CloudSave-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/CloudSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/CloudSave.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Exit-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Exit-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Exit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Exit-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Exit.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/FitToGrid-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/FitToGrid-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/FitToGrid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/FitToGrid-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/FitToGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/FitToGrid.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Format-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Format-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Format-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Format-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Format.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Group-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Group-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Group-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Group-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Group.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Grouping-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Grouping-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Grouping-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Grouping-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Grouping.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/HelpContents-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/HelpContents-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/HelpContents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/HelpContents.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Highlight-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Highlight-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Highlight-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Highlight-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Highlight.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/New-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/New-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/New-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/New-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/New.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Open-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Open-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Open-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Open-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Open.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Options-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Options-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Options-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Options-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Options.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Page-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Page-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Page-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Page-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Page.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/PageSetup-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/PageSetup-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/PageSetup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/PageSetup-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/PageSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/PageSetup.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Panels-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Panels-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Panels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Panels-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Panels.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Paste-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Paste-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Paste-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Paste-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Paste.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Print-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Print-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Print-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Print-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Print.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Replace-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Replace-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Replace-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Replace-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Replace.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Report-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Report-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Report-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Report-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Report.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Report1-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Report1-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Report1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Report1-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Report1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Report1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Save-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Save-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Save-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Save-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Save.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SendToBack-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SendToBack-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SendToBack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SendToBack-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SendToBack.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SizeMenu-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SizeMenu-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SizeMenu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SizeMenu-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SizeMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SizeMenu.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SpacingMenu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SpacingMenu-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/SpacingMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/SpacingMenu.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Ungroup-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Ungroup-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Ungroup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Ungroup-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/Ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/Ungroup.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ViewGridlines-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ViewGridlines-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ViewGridlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ViewGridlines.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ViewGuides-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ViewGuides-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ViewGuides-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ViewGuides-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/ViewGuides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/ViewGuides.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/WebPreview-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/WebPreview-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/WebPreview-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/WebPreview-1.png -------------------------------------------------------------------------------- /FastReport/Resources/Ribbon/WebPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/Ribbon/WebPreview.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/AlignMenu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/AlignMenu-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/AlignMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/AlignMenu.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Border-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Border-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Border.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Highlight.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/New-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/New-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/New-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/New-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/New.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Open-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Open-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Open-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Open-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Open.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/PageSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/PageSetup.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Paste-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Paste-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Paste-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Paste-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Paste.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Polygon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Polygon-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Polygon.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Report-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Report-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Report.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Styles-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Styles-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Styles.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Text-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Text-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Text-1.png -------------------------------------------------------------------------------- /FastReport/Resources/RibbonNew/Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RibbonNew/Text.png -------------------------------------------------------------------------------- /FastReport/Resources/RightArrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/RightArrow.cur -------------------------------------------------------------------------------- /FastReport/Resources/SVG/svg11.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/SVG/svg11.dtd -------------------------------------------------------------------------------- /FastReport/Resources/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/bo.png -------------------------------------------------------------------------------- /FastReport/Resources/buttons-1-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/buttons-1-hi.png -------------------------------------------------------------------------------- /FastReport/Resources/buttons-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/buttons-1.png -------------------------------------------------------------------------------- /FastReport/Resources/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/buttons.png -------------------------------------------------------------------------------- /FastReport/Resources/cross.frss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/cross.frss -------------------------------------------------------------------------------- /FastReport/Resources/defaultAvatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/defaultAvatar.jpg -------------------------------------------------------------------------------- /FastReport/Resources/doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/doc.xml -------------------------------------------------------------------------------- /FastReport/Resources/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/en.xml -------------------------------------------------------------------------------- /FastReport/Resources/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/fr.png -------------------------------------------------------------------------------- /FastReport/Resources/icon16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/icon16.ico -------------------------------------------------------------------------------- /FastReport/Resources/labels.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/labels.dat -------------------------------------------------------------------------------- /FastReport/Resources/perforation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/perforation.png -------------------------------------------------------------------------------- /FastReport/Resources/reportstyles.frss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/reportstyles.frss -------------------------------------------------------------------------------- /FastReport/Resources/samplereportcolumnar.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/samplereportcolumnar.frx -------------------------------------------------------------------------------- /FastReport/Resources/samplereporttabular.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/samplereporttabular.frx -------------------------------------------------------------------------------- /FastReport/Resources/samplestylereport.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/FastReport/Resources/samplestylereport.frx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Localization/Arabic.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Arabic.frl -------------------------------------------------------------------------------- /Localization/Armenian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Armenian.frl -------------------------------------------------------------------------------- /Localization/Chinese (Simplified).frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Chinese (Simplified).frl -------------------------------------------------------------------------------- /Localization/Chinese (Traditional).frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Chinese (Traditional).frl -------------------------------------------------------------------------------- /Localization/Croatian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Croatian.frl -------------------------------------------------------------------------------- /Localization/Czech.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Czech.frl -------------------------------------------------------------------------------- /Localization/Danish.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Danish.frl -------------------------------------------------------------------------------- /Localization/Dutch.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Dutch.frl -------------------------------------------------------------------------------- /Localization/French.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/French.frl -------------------------------------------------------------------------------- /Localization/German.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/German.frl -------------------------------------------------------------------------------- /Localization/Greek.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Greek.frl -------------------------------------------------------------------------------- /Localization/Hungarian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Hungarian.frl -------------------------------------------------------------------------------- /Localization/Italian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Italian.frl -------------------------------------------------------------------------------- /Localization/Persian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Persian.frl -------------------------------------------------------------------------------- /Localization/Polish.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Polish.frl -------------------------------------------------------------------------------- /Localization/Portuguese (Brazil).frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Portuguese (Brazil).frl -------------------------------------------------------------------------------- /Localization/Portuguese.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Portuguese.frl -------------------------------------------------------------------------------- /Localization/Romanian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Romanian.frl -------------------------------------------------------------------------------- /Localization/Russian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Russian.frl -------------------------------------------------------------------------------- /Localization/Serbian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Serbian.frl -------------------------------------------------------------------------------- /Localization/Slovak.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Slovak.frl -------------------------------------------------------------------------------- /Localization/Slovenian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Slovenian.frl -------------------------------------------------------------------------------- /Localization/Spanish.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Spanish.frl -------------------------------------------------------------------------------- /Localization/Swedish.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Swedish.frl -------------------------------------------------------------------------------- /Localization/Thai.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Thai.frl -------------------------------------------------------------------------------- /Localization/Turkish.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Turkish.frl -------------------------------------------------------------------------------- /Localization/Ukrainian.frl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/Ukrainian.frl -------------------------------------------------------------------------------- /Localization/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Localization/readme.txt -------------------------------------------------------------------------------- /Pack/BuildScripts/CakeAPI/CakeAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/CakeAPI/CakeAPI.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tasks/BaseTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tasks/BaseTasks.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tasks/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tasks/Constants.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tasks/OpenSourceTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tasks/OpenSourceTasks.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tasks/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tasks/Tests.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tools/DebugAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tools/DebugAttribute.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tools/DependsOnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tools/DependsOnAttribute.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tools/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tools/Graph.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/Tools/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/Tools/Startup.cs -------------------------------------------------------------------------------- /Pack/BuildScripts/buildScript.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/BuildScripts/buildScript.csproj -------------------------------------------------------------------------------- /Pack/FastReport MIT license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/FastReport MIT license.md -------------------------------------------------------------------------------- /Pack/frlogo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/Pack/frlogo192.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UsedPackages.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/UsedPackages.version -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/images/FR-open-source-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/assets/images/FR-open-source-bw.svg -------------------------------------------------------------------------------- /assets/images/FR-open-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/assets/images/FR-open-source.svg -------------------------------------------------------------------------------- /assets/images/FastReport-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/assets/images/FastReport-screenshot1.png -------------------------------------------------------------------------------- /assets/images/FastReport-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/assets/images/FastReport-screenshot2.png -------------------------------------------------------------------------------- /assets/images/FastReport-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/assets/images/FastReport-screenshot3.png -------------------------------------------------------------------------------- /pack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/pack.bat -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/pack.sh -------------------------------------------------------------------------------- /publiccode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastReports/FastReport/HEAD/publiccode.yml --------------------------------------------------------------------------------