├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── Icon.png ├── LICENSE ├── Logo.docx ├── Logo.png ├── RDLCPrinterDemo.png ├── RDLCReport ├── MrDSoft.RDLC │ ├── DSoft.RDLC.csproj │ ├── DispatcherHelper.cs │ ├── LightDoubleSlider.xaml │ ├── LightDoubleSlider.xaml.cs │ ├── LightIntegerSpinner.xaml │ ├── LightIntegerSpinner.xaml.cs │ ├── MethodExtension │ │ └── ButtonExtention.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RDLCPrinter.cs │ ├── RDLCPrinterDialog.xaml │ ├── RDLCPrinterDialog.xaml.cs │ ├── RDLCReportViewer.xaml │ ├── RDLCReportViewer.xaml.cs │ ├── Resources │ │ ├── AllPage.ico │ │ ├── Basic-Settings.ico │ │ ├── Bold.ico │ │ ├── Button-Blank-Green.ico │ │ ├── Button-Blank-Red.ico │ │ ├── Checked-checkbox.ico │ │ ├── DownArrow.ico │ │ ├── ExcelExport.ico │ │ ├── ExportPDF.ico │ │ ├── ImageExport.ico │ │ ├── Refresh.ico │ │ ├── Search.ico │ │ ├── System-Delete.ico │ │ ├── TailleNormal.ico │ │ ├── UpArrow.ico │ │ ├── WordExport.ico │ │ ├── ZoomMoin.ico │ │ ├── ZoomPlus.ico │ │ ├── arrow.ico │ │ ├── move-first.ico │ │ ├── move-last.ico │ │ ├── move-next.ico │ │ ├── move-previous.ico │ │ ├── ok-apply.ico │ │ └── print.ico │ ├── Style │ │ ├── BrushDictionary.xaml │ │ ├── ButtonDictionary.xaml │ │ ├── LabelDictionary.xaml │ │ └── ToolBarDictionary.xaml │ ├── app.config │ └── enumeration.cs ├── RDLCDemo │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Northwind.sdf │ ├── NorthwindDataSet.Designer.cs │ ├── NorthwindDataSet.xsc │ ├── NorthwindDataSet.xsd │ ├── NorthwindDataSet.xss │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RDLCDemo.ModernWPF.csproj │ ├── RDLCDemo.csproj.vspscc │ └── ReportTest.rdlc ├── RDLCDemoClassic │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Northwind.sdf │ ├── NorthwindDataSet.Designer.cs │ ├── NorthwindDataSet.xsc │ ├── NorthwindDataSet.xsd │ ├── NorthwindDataSet.xss │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RDLCDemo.ClassicWPF.csproj │ └── ReportTest.rdlc ├── RDLCDemoCore │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Northwind.sdf │ ├── NorthwindDataSet.Designer.cs │ ├── NorthwindDataSet.xsc │ ├── NorthwindDataSet.xsd │ ├── NorthwindDataSet.xss │ ├── RDLCDemo.WinUI3.csproj │ ├── ReportTest.rdlc │ ├── amd64 │ │ ├── Microsoft.VC90.CRT │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ ├── README_ENU.txt │ │ │ └── msvcr90.dll │ │ ├── sqlceca40.dll │ │ ├── sqlcecompact40.dll │ │ ├── sqlceer40EN.dll │ │ ├── sqlceme40.dll │ │ ├── sqlceqp40.dll │ │ └── sqlcese40.dll │ ├── app.manifest │ └── x86 │ │ ├── Microsoft.VC90.CRT │ │ ├── Microsoft.VC90.CRT.manifest │ │ ├── README_ENU.txt │ │ └── msvcr90.dll │ │ ├── sqlceca40.dll │ │ ├── sqlcecompact40.dll │ │ ├── sqlceer40EN.dll │ │ ├── sqlceme40.dll │ │ ├── sqlceqp40.dll │ │ └── sqlcese40.dll ├── RDLCReport.sln ├── RDLCReport.sln.DotSettings ├── RDLCReport.vssscc ├── TimePunch.Rdlc │ ├── DispatcherHelper.cs │ ├── MethodExtension │ │ └── ButtonExtention.cs │ ├── RDLCReportViewer.xaml.cs │ ├── RdlcPrinter.cs │ ├── RdlcPrinterDialog.xaml │ ├── RdlcPrinterDialog.xaml.cs │ ├── RdlcReportViewer.xaml │ ├── ReportType.cs │ ├── Resources │ │ ├── ViewerRes.Designer.cs │ │ ├── ViewerRes.de.resx │ │ └── ViewerRes.resx │ ├── TimePunch.Rdlc.csproj │ └── TpRdlcViewer.snk └── TimePunch.RdlcCore │ ├── MethodExtension │ └── ButtonExtention.cs │ ├── RDLCReportViewer.xaml.cs │ ├── RdlcPrinter.cs │ ├── RdlcPrinterDialog.xaml │ ├── RdlcPrinterDialog.xaml.cs │ ├── RdlcReportViewer.xaml │ ├── ReportType.cs │ ├── Strings │ ├── de │ │ └── Resources.resw │ └── en-US │ │ └── Resources.resw │ ├── TimePunch - Backup.RdlcCore.csproj │ ├── TimePunch.RdlcCore.csproj │ ├── TpRdlcViewer.snk │ └── package.appxmanifest ├── README.md └── nuget ├── TpRdlcViewer.2.0.0.nupkg ├── TpRdlcViewer.2.1.1.nupkg ├── TpRdlcViewer.3.0.0.nupkg └── numerge.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Help is accepted :) 2 | -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/Logo.docx -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/Logo.png -------------------------------------------------------------------------------- /RDLCPrinterDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCPrinterDemo.png -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/DSoft.RDLC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/DSoft.RDLC.csproj -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/DispatcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/DispatcherHelper.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/LightDoubleSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/LightDoubleSlider.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/LightDoubleSlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/LightDoubleSlider.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/LightIntegerSpinner.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/LightIntegerSpinner.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/LightIntegerSpinner.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/LightIntegerSpinner.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/MethodExtension/ButtonExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/MethodExtension/ButtonExtention.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Properties/Resources.resx -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Properties/Settings.settings -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/RDLCPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/RDLCPrinter.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/RDLCPrinterDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/RDLCPrinterDialog.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/RDLCPrinterDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/RDLCPrinterDialog.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/RDLCReportViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/RDLCReportViewer.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/RDLCReportViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/RDLCReportViewer.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/AllPage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/AllPage.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/Basic-Settings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/Basic-Settings.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/Bold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/Bold.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/Button-Blank-Green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/Button-Blank-Green.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/Button-Blank-Red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/Button-Blank-Red.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/Checked-checkbox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/Checked-checkbox.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/DownArrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/DownArrow.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/ExcelExport.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/ExcelExport.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/ExportPDF.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/ExportPDF.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/ImageExport.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/ImageExport.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/Refresh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/Refresh.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/Search.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/Search.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/System-Delete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/System-Delete.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/TailleNormal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/TailleNormal.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/UpArrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/UpArrow.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/WordExport.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/WordExport.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/ZoomMoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/ZoomMoin.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/ZoomPlus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/ZoomPlus.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/arrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/arrow.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/move-first.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/move-first.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/move-last.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/move-last.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/move-next.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/move-next.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/move-previous.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/move-previous.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/ok-apply.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/ok-apply.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Resources/print.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Resources/print.ico -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Style/BrushDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Style/BrushDictionary.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Style/ButtonDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Style/ButtonDictionary.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Style/LabelDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Style/LabelDictionary.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/Style/ToolBarDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/Style/ToolBarDictionary.xaml -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/app.config -------------------------------------------------------------------------------- /RDLCReport/MrDSoft.RDLC/enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/MrDSoft.RDLC/enumeration.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/App.config -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/App.xaml -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/App.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/MainWindow.xaml -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/Northwind.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/Northwind.sdf -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/NorthwindDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/NorthwindDataSet.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/NorthwindDataSet.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/NorthwindDataSet.xsc -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/NorthwindDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/NorthwindDataSet.xsd -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/NorthwindDataSet.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/NorthwindDataSet.xss -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/RDLCDemo.ModernWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/RDLCDemo.ModernWPF.csproj -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/RDLCDemo.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/RDLCDemo.csproj.vspscc -------------------------------------------------------------------------------- /RDLCReport/RDLCDemo/ReportTest.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemo/ReportTest.rdlc -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/App.config -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/App.xaml -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/App.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/MainWindow.xaml -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/MainWindow.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/Northwind.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/Northwind.sdf -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/NorthwindDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/NorthwindDataSet.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/NorthwindDataSet.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/NorthwindDataSet.xsc -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/NorthwindDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/NorthwindDataSet.xsd -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/NorthwindDataSet.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/NorthwindDataSet.xss -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/Properties/Resources.resx -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/Properties/Settings.settings -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/RDLCDemo.ClassicWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/RDLCDemo.ClassicWPF.csproj -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoClassic/ReportTest.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoClassic/ReportTest.rdlc -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/App.config -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/App.xaml -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/App.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/MainWindow.xaml -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/MainWindow.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/Northwind.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/Northwind.sdf -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/NorthwindDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/NorthwindDataSet.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/NorthwindDataSet.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/NorthwindDataSet.xsc -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/NorthwindDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/NorthwindDataSet.xsd -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/NorthwindDataSet.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/NorthwindDataSet.xss -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/RDLCDemo.WinUI3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/RDLCDemo.WinUI3.csproj -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/ReportTest.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/ReportTest.rdlc -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/sqlceca40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/sqlceca40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/sqlcecompact40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/sqlceer40EN.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/sqlceme40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/sqlceqp40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/amd64/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/amd64/sqlcese40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/app.manifest -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/sqlceca40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/sqlceca40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/sqlcecompact40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/sqlceer40EN.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/sqlceme40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/sqlceqp40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCDemoCore/x86/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCDemoCore/x86/sqlcese40.dll -------------------------------------------------------------------------------- /RDLCReport/RDLCReport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCReport.sln -------------------------------------------------------------------------------- /RDLCReport/RDLCReport.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCReport.sln.DotSettings -------------------------------------------------------------------------------- /RDLCReport/RDLCReport.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/RDLCReport.vssscc -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/DispatcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/DispatcherHelper.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/MethodExtension/ButtonExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/MethodExtension/ButtonExtention.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/RDLCReportViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/RDLCReportViewer.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/RdlcPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/RdlcPrinter.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/RdlcPrinterDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/RdlcPrinterDialog.xaml -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/RdlcPrinterDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/RdlcPrinterDialog.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/RdlcReportViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/RdlcReportViewer.xaml -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/ReportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/ReportType.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/Resources/ViewerRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/Resources/ViewerRes.Designer.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/Resources/ViewerRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/Resources/ViewerRes.de.resx -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/Resources/ViewerRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/Resources/ViewerRes.resx -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/TimePunch.Rdlc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/TimePunch.Rdlc.csproj -------------------------------------------------------------------------------- /RDLCReport/TimePunch.Rdlc/TpRdlcViewer.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.Rdlc/TpRdlcViewer.snk -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/MethodExtension/ButtonExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/MethodExtension/ButtonExtention.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/RDLCReportViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/RDLCReportViewer.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/RdlcPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/RdlcPrinter.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/RdlcPrinterDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/RdlcPrinterDialog.xaml -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/RdlcPrinterDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/RdlcPrinterDialog.xaml.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/RdlcReportViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/RdlcReportViewer.xaml -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/ReportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/ReportType.cs -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/Strings/de/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/Strings/de/Resources.resw -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/TimePunch - Backup.RdlcCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/TimePunch - Backup.RdlcCore.csproj -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/TimePunch.RdlcCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/TimePunch.RdlcCore.csproj -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/TpRdlcViewer.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/TpRdlcViewer.snk -------------------------------------------------------------------------------- /RDLCReport/TimePunch.RdlcCore/package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/RDLCReport/TimePunch.RdlcCore/package.appxmanifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/README.md -------------------------------------------------------------------------------- /nuget/TpRdlcViewer.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/nuget/TpRdlcViewer.2.0.0.nupkg -------------------------------------------------------------------------------- /nuget/TpRdlcViewer.2.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/nuget/TpRdlcViewer.2.1.1.nupkg -------------------------------------------------------------------------------- /nuget/TpRdlcViewer.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/nuget/TpRdlcViewer.3.0.0.nupkg -------------------------------------------------------------------------------- /nuget/numerge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbaye/RDLCPrinter/HEAD/nuget/numerge.bat --------------------------------------------------------------------------------