├── .gitattributes ├── .gitignore ├── sample_3_14.sln └── sample_3_14 ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── licenses.licx └── sample_3_14.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/.gitignore -------------------------------------------------------------------------------- /sample_3_14.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14.sln -------------------------------------------------------------------------------- /sample_3_14/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/App.config -------------------------------------------------------------------------------- /sample_3_14/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Form1.Designer.cs -------------------------------------------------------------------------------- /sample_3_14/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Form1.cs -------------------------------------------------------------------------------- /sample_3_14/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Form1.resx -------------------------------------------------------------------------------- /sample_3_14/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Program.cs -------------------------------------------------------------------------------- /sample_3_14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sample_3_14/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /sample_3_14/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Properties/Resources.resx -------------------------------------------------------------------------------- /sample_3_14/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /sample_3_14/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/Properties/Settings.settings -------------------------------------------------------------------------------- /sample_3_14/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_3_14/sample_3_14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_14_final/HEAD/sample_3_14/sample_3_14.csproj --------------------------------------------------------------------------------