├── .gitattributes ├── .gitignore ├── crystalrdlc.sln └── crystalrdlc ├── Class ├── clsADONET.cs ├── clsListViewSorter.cs ├── clsProgram.cs └── clsWebCamArgs.cs ├── Controls ├── ctrlCamera.Designer.cs ├── ctrlCamera.cs ├── ctrlCamera.resx ├── ctrlLineHorizontal.Designer.cs ├── ctrlLineHorizontal.cs └── ctrlLineHorizontal.resx ├── Forms ├── InputBox.Designer.cs ├── InputBox.cs ├── InputBox.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── ReportViewer.Designer.cs ├── ReportViewer.cs ├── ReportViewer.resx ├── SearchFilter.Designer.cs ├── SearchFilter.cs ├── SearchFilter.resx ├── UpdateDelay.Designer.cs ├── UpdateDelay.cs ├── UpdateDelay.resx ├── WebCamera.Designer.cs ├── WebCamera.cs ├── WebCamera.resx ├── frmCustomers_Modify.Designer.cs ├── frmCustomers_Modify.cs └── frmCustomers_Modify.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── downarrow.jpg └── menu_09.gif ├── crystalCustomers.cs ├── crystalCustomers.rpt ├── crystalrdlc.csproj ├── dsCustomers.Designer.cs ├── dsCustomers.xsc ├── dsCustomers.xsd ├── dsCustomers.xss └── rdlcCustomers.rdlc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/.gitignore -------------------------------------------------------------------------------- /crystalrdlc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc.sln -------------------------------------------------------------------------------- /crystalrdlc/Class/clsADONET.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Class/clsADONET.cs -------------------------------------------------------------------------------- /crystalrdlc/Class/clsListViewSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Class/clsListViewSorter.cs -------------------------------------------------------------------------------- /crystalrdlc/Class/clsProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Class/clsProgram.cs -------------------------------------------------------------------------------- /crystalrdlc/Class/clsWebCamArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Class/clsWebCamArgs.cs -------------------------------------------------------------------------------- /crystalrdlc/Controls/ctrlCamera.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Controls/ctrlCamera.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Controls/ctrlCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Controls/ctrlCamera.cs -------------------------------------------------------------------------------- /crystalrdlc/Controls/ctrlCamera.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Controls/ctrlCamera.resx -------------------------------------------------------------------------------- /crystalrdlc/Controls/ctrlLineHorizontal.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Controls/ctrlLineHorizontal.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Controls/ctrlLineHorizontal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Controls/ctrlLineHorizontal.cs -------------------------------------------------------------------------------- /crystalrdlc/Controls/ctrlLineHorizontal.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Controls/ctrlLineHorizontal.resx -------------------------------------------------------------------------------- /crystalrdlc/Forms/InputBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/InputBox.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/InputBox.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/InputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/InputBox.resx -------------------------------------------------------------------------------- /crystalrdlc/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/MainForm.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/MainForm.resx -------------------------------------------------------------------------------- /crystalrdlc/Forms/ReportViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/ReportViewer.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/ReportViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/ReportViewer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/ReportViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/ReportViewer.resx -------------------------------------------------------------------------------- /crystalrdlc/Forms/SearchFilter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/SearchFilter.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/SearchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/SearchFilter.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/SearchFilter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/SearchFilter.resx -------------------------------------------------------------------------------- /crystalrdlc/Forms/UpdateDelay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/UpdateDelay.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/UpdateDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/UpdateDelay.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/UpdateDelay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/UpdateDelay.resx -------------------------------------------------------------------------------- /crystalrdlc/Forms/WebCamera.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/WebCamera.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/WebCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/WebCamera.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/WebCamera.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/WebCamera.resx -------------------------------------------------------------------------------- /crystalrdlc/Forms/frmCustomers_Modify.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/frmCustomers_Modify.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/frmCustomers_Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/frmCustomers_Modify.cs -------------------------------------------------------------------------------- /crystalrdlc/Forms/frmCustomers_Modify.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Forms/frmCustomers_Modify.resx -------------------------------------------------------------------------------- /crystalrdlc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /crystalrdlc/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Properties/Resources.resx -------------------------------------------------------------------------------- /crystalrdlc/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Properties/Settings.settings -------------------------------------------------------------------------------- /crystalrdlc/Resources/downarrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Resources/downarrow.jpg -------------------------------------------------------------------------------- /crystalrdlc/Resources/menu_09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/Resources/menu_09.gif -------------------------------------------------------------------------------- /crystalrdlc/crystalCustomers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/crystalCustomers.cs -------------------------------------------------------------------------------- /crystalrdlc/crystalCustomers.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/crystalCustomers.rpt -------------------------------------------------------------------------------- /crystalrdlc/crystalrdlc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/crystalrdlc.csproj -------------------------------------------------------------------------------- /crystalrdlc/dsCustomers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/dsCustomers.Designer.cs -------------------------------------------------------------------------------- /crystalrdlc/dsCustomers.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/dsCustomers.xsc -------------------------------------------------------------------------------- /crystalrdlc/dsCustomers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/dsCustomers.xsd -------------------------------------------------------------------------------- /crystalrdlc/dsCustomers.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/dsCustomers.xss -------------------------------------------------------------------------------- /crystalrdlc/rdlcCustomers.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/crystalrdlc/HEAD/crystalrdlc/rdlcCustomers.rdlc --------------------------------------------------------------------------------