实例介绍
纯代码小型进销存系统,附数据库,数据库文档,下载之后可以直接附加数据库然后使用。适合大学生毕业设计!符合初学者学习,有任何问题请勿喷!!
【实例截图】
【核心代码】
ba0f3ead-2773-4b69-9b55-d3e51895115f
└── JXC_CRM
├── BLL
│ ├── Account_Roles.cs
│ ├── Account_UserRole.cs
│ ├── Account_Users.cs
│ ├── bin
│ │ └── Debug
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Maticsoft.BLL.dll
│ │ ├── Maticsoft.BLL.pdb
│ │ ├── Maticsoft.Common.dll
│ │ ├── Maticsoft.Common.pdb
│ │ ├── Maticsoft.DAL.dll
│ │ ├── Maticsoft.DAL.pdb
│ │ ├── Maticsoft.DBUtility.dll
│ │ ├── Maticsoft.DBUtility.pdb
│ │ ├── Maticsoft.Model.dll
│ │ ├── Maticsoft.Model.pdb
│ │ ├── Microsoft.Vbe.Interop.dll
│ │ ├── MySql.Data.dll
│ │ ├── office.dll
│ │ ├── OpenSmtp.dll
│ │ └── System.Data.SQLite.dll
│ ├── BLL.csproj
│ ├── BLL.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Maticsoft.BLL.dll
│ │ └── Maticsoft.BLL.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SysManage.cs
│ ├── TB_Customer.cs
│ ├── TB_Employee.cs
│ ├── TB_Menus.cs
│ ├── TBProductBatchNo.cs
│ ├── TB_Product.cs
│ ├── TB_ProductType.cs
│ ├── TB_Purchase.cs
│ ├── TB_PurchaseDetail.cs
│ ├── TB_Sales.cs
│ ├── TB_SalesDetail.cs
│ ├── TB_Supplier.cs
│ ├── TB_System.cs
│ └── TB_Warehouse.cs
├── Common
│ ├── Assistant.cs
│ ├── bin
│ │ └── Debug
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── Maticsoft.Common.dll
│ │ ├── Maticsoft.Common.pdb
│ │ ├── Microsoft.Vbe.Interop.dll
│ │ ├── office.dll
│ │ ├── OpenSmtp.dll
│ │ └── OWC10Chart.dll
│ ├── ChartHelper.cs
│ ├── CodematicDemo.suo
│ ├── Common.csproj
│ ├── Common.csproj.user
│ ├── ConfigHelper.cs
│ ├── DataCache.cs
│ ├── DataToExcel.cs
│ ├── DEncrypt
│ │ ├── DEncrypt.cs
│ │ ├── DESEncrypt.cs
│ │ ├── HashEncode.cs
│ │ ├── RSACryption.cs
│ │ └── vssver2.scc
│ ├── HttpProc.cs
│ ├── INIFile.cs
│ ├── MailSender.cs
│ ├── MessageBox.cs
│ ├── obj
│ │ └── Debug
│ │ ├── Common.csproj.FileListAbsolute.txt
│ │ ├── Common.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Maticsoft.Common.dll
│ │ └── Maticsoft.Common.pdb
│ ├── PageBase.cs
│ ├── PageValidate.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RMB.cs
│ ├── StringPlus.cs
│ ├── TimeParser.cs
│ ├── UrlOper.cs
│ └── vssver2.scc
├── DAL
│ ├── Account_Roles.cs
│ ├── Account_UserRole.cs
│ ├── Account_Users.cs
│ ├── bin
│ │ └── Debug
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Maticsoft.Common.dll
│ │ ├── Maticsoft.Common.pdb
│ │ ├── Maticsoft.DAL.dll
│ │ ├── Maticsoft.DAL.pdb
│ │ ├── Maticsoft.DBUtility.dll
│ │ ├── Maticsoft.DBUtility.pdb
│ │ ├── Maticsoft.Model.dll
│ │ ├── Maticsoft.Model.pdb
│ │ ├── Microsoft.Vbe.Interop.dll
│ │ ├── MySql.Data.dll
│ │ ├── office.dll
│ │ ├── OpenSmtp.dll
│ │ └── System.Data.SQLite.dll
│ ├── DAL.csproj
│ ├── DAL.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ ├── DAL.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Maticsoft.DAL.dll
│ │ └── Maticsoft.DAL.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SysManage.cs
│ ├── TB_Customer.cs
│ ├── TB_Employee.cs
│ ├── TB_Menus.cs
│ ├── TBProductBatchNo.cs
│ ├── TB_Product.cs
│ ├── TB_ProductType.cs
│ ├── TB_Purchase.cs
│ ├── TB_PurchaseDetail.cs
│ ├── TB_Sales.cs
│ ├── TB_SalesDetail.cs
│ ├── TB_Supplier.cs
│ ├── TB_System.cs
│ └── TB_Warehouse.cs
├── DBUtility
│ ├── BaseSqlMapDao.cs
│ ├── bin
│ │ └── Debug
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Maticsoft.DBUtility.dll
│ │ ├── Maticsoft.DBUtility.pdb
│ │ ├── MySql.Data.dll
│ │ └── System.Data.SQLite.dll
│ ├── CodematicDemo.suo
│ ├── CommandInfo.cs
│ ├── DbHelperMySQL.cs
│ ├── DbHelperOleDb.cs
│ ├── DbHelperOra.cs
│ ├── DbHelperSQL2.cs
│ ├── DbHelperSQL.cs
│ ├── DbHelperSQLite.cs
│ ├── DbHelperSQLP.cs
│ ├── DBUtility.csproj
│ ├── DBUtility.csproj.user
│ ├── DESEncrypt.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DBUtility.csproj.FileListAbsolute.txt
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Maticsoft.DBUtility.dll
│ │ └── Maticsoft.DBUtility.pdb
│ ├── OracleHelper.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── PubConstant.cs
│ └── SQLHelper.cs
├── DLLFullPrint
│ ├── bin
│ │ └── Debug
│ │ ├── DLLFullPrint.dll
│ │ └── DLLFullPrint.pdb
│ ├── DLLFullPrint.csproj
│ ├── Frm_PrintSet.cs
│ ├── Frm_PrintSet.Designer.cs
│ ├── Frm_PrintSet.resx
│ ├── MyDLL.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── DLLFullPrint.csproj.FileListAbsolute.txt
│ │ │ ├── DLLFullPrint.csproj.GenerateResource.Cache
│ │ │ ├── DLLFullPrint.dll
│ │ │ ├── DLLFullPrint.Frm_PrintSet.resources
│ │ │ ├── DLLFullPrint.pdb
│ │ │ ├── Refactor
│ │ │ │ └── DLLFullPrint.dll
│ │ │ └── TempPE
│ │ ├── DLLFullPrint.csproj.FileListAbsolute.txt
│ │ └── DLLFullPrint.csproj.FileList.txt
│ ├── PrintClass.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── jxc_20160427.bak
├── jxc_crm_2.sql
├── JXC_CRM.sln
├── JXC_CRM.sql
├── JXC_CRM.suo
├── JXC_CRM.v11.suo
├── Lib
│ ├── COM.Excel.dll
│ ├── Excel.dll
│ ├── IBatisNet.Common.dll
│ ├── IBatisNet.DataMapper.dll
│ ├── LTP.Accounts.dll
│ ├── LTP.Accounts.txt
│ ├── LtpPageControl.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll
│ ├── Microsoft.Web.UI.WebControls.dll
│ ├── MySql.Data.dll
│ ├── OpenSmtp.dll
│ ├── OWC10Chart.dll
│ ├── System.Data.SQLite.DLL
│ └── System.Data.SQLite.lib
├── Model
│ ├── Account_Roles.cs
│ ├── Account_UserRole.cs
│ ├── Account_Users.cs
│ ├── bin
│ │ └── Debug
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Maticsoft.DBUtility.dll
│ │ ├── Maticsoft.DBUtility.pdb
│ │ ├── Maticsoft.Model.dll
│ │ ├── Maticsoft.Model.pdb
│ │ ├── MySql.Data.dll
│ │ └── System.Data.SQLite.dll
│ ├── Model.csproj
│ ├── Model.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Maticsoft.Model.dll
│ │ ├── Maticsoft.Model.pdb
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ └── Model.csprojResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SysNode.cs
│ ├── TB_Customer.cs
│ ├── TB_Employee.cs
│ ├── TB_Menus.cs
│ ├── TBProductBatchNo.cs
│ ├── TB_Product.cs
│ ├── TB_ProductType.cs
│ ├── TB_Purchase.cs
│ ├── TB_PurchaseDetail.cs
│ ├── TB_Sales.cs
│ ├── TB_SalesDetail.cs
│ ├── TB_Supplier.cs
│ ├── TB_System.cs
│ ├── TB_Warehouse.cs
│ └── User.cs
├── packages
│ ├── repositories.config
│ └── UWS.2.0.21
│ ├── content
│ │ └── UltiDev Software License Agreement.rtf
│ ├── tools
│ │ ├── install.ps1
│ │ └── UWS 21 Setup.exe
│ └── UWS.2.0.21.nupkg
├── sql.sql
├── WinForm
│ ├── App.config
│ ├── Based
│ │ ├── BasedClass.cs
│ │ ├── Frm_CustomerAdd.cs
│ │ ├── Frm_CustomerAdd.Designer.cs
│ │ ├── Frm_CustomerAdd.resx
│ │ ├── Frm_CustomerList.cs
│ │ ├── Frm_CustomerList.Designer.cs
│ │ ├── Frm_CustomerList.resx
│ │ ├── Frm_EmployeeAdd.cs
│ │ ├── Frm_EmployeeAdd.Designer.cs
│ │ ├── Frm_EmployeeAdd.resx
│ │ ├── Frm_EmployeeList.cs
│ │ ├── Frm_EmployeeList.Designer.cs
│ │ ├── Frm_EmployeeList.resx
│ │ ├── Frm_ProductAdd.cs
│ │ ├── Frm_ProductAdd.Designer.cs
│ │ ├── Frm_ProductAdd.resx
│ │ ├── Frm_ProductList.cs
│ │ ├── Frm_ProductList.Designer.cs
│ │ ├── Frm_ProductList.resx
│ │ ├── Frm_ProductTypeList.cs
│ │ ├── Frm_ProductTypeList.Designer.cs
│ │ ├── Frm_ProductTypeList.resx
│ │ ├── Frm_StstemAdd.cs
│ │ ├── Frm_StstemAdd.Designer.cs
│ │ ├── Frm_StstemAdd.resx
│ │ ├── Frm_SupplierAdd.cs
│ │ ├── Frm_SupplierAdd.Designer.cs
│ │ ├── Frm_SupplierAdd.resx
│ │ ├── Frm_SupplierList.cs
│ │ ├── Frm_SupplierList.Designer.cs
│ │ ├── Frm_SupplierList.resx
│ │ ├── Frm_SystemList.cs
│ │ ├── Frm_SystemList.Designer.cs
│ │ ├── Frm_SystemList.resx
│ │ ├── Frm_WareHouseAdd.cs
│ │ ├── Frm_WareHouseAdd.Designer.cs
│ │ ├── Frm_WareHouseAdd.resx
│ │ ├── Frm_WarehouseList.cs
│ │ ├── Frm_WarehouseList.Designer.cs
│ │ └── Frm_WarehouseList.resx
│ ├── bin
│ │ ├── Debug
│ │ │ ├── COM.Excel.dll
│ │ │ ├── config.xml
│ │ │ ├── DevComponents.DotNetBar2.dll
│ │ │ ├── DLLFullPrint.dll
│ │ │ ├── DLLFullPrint.pdb
│ │ │ ├── Excel.dll
│ │ │ ├── IBatisNet.Common.dll
│ │ │ ├── IBatisNet.DataMapper.dll
│ │ │ ├── Index.htm
│ │ │ ├── Interop.WMPLib.dll
│ │ │ ├── Interop.WMPNSSCDS.dll
│ │ │ ├── Maticsoft.BLL.dll
│ │ │ ├── Maticsoft.BLL.pdb
│ │ │ ├── Maticsoft.Common.dll
│ │ │ ├── Maticsoft.Common.pdb
│ │ │ ├── Maticsoft.DAL.dll
│ │ │ ├── Maticsoft.DAL.pdb
│ │ │ ├── Maticsoft.DBUtility.dll
│ │ │ ├── Maticsoft.DBUtility.pdb
│ │ │ ├── Maticsoft.Model.dll
│ │ │ ├── Maticsoft.Model.pdb
│ │ │ ├── Microsoft.DirectX.DirectSound.dll
│ │ │ ├── Microsoft.DirectX.dll
│ │ │ ├── Microsoft.Vbe.Interop.dll
│ │ │ ├── MySql.Data.dll
│ │ │ ├── office.dll
│ │ │ ├── OpenSmtp.dll
│ │ │ ├── Save
│ │ │ │ ├── admin.b
│ │ │ │ ├── bmy.b
│ │ │ │ └── user.b
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── WinForm.exe
│ │ │ ├── WinForm.exe.config
│ │ │ ├── WinForm.pdb
│ │ │ ├── WinForm.vshost.exe
│ │ │ ├── WinForm.vshost.exe.config
│ │ │ ├── WinForm.vshost.exe.manifest
│ │ │ └── 图标.ico
│ │ ├── Debug - 副本
│ │ │ ├── COM.Excel.dll
│ │ │ ├── config.xml
│ │ │ ├── DevComponents.DotNetBar2.dll
│ │ │ ├── DLLFullPrint.dll
│ │ │ ├── DLLFullPrint.pdb
│ │ │ ├── Excel.dll
│ │ │ ├── IBatisNet.Common.dll
│ │ │ ├── IBatisNet.DataMapper.dll
│ │ │ ├── Index.htm
│ │ │ ├── Interop.WMPLib.dll
│ │ │ ├── Interop.WMPNSSCDS.dll
│ │ │ ├── Maticsoft.BLL.dll
│ │ │ ├── Maticsoft.BLL.pdb
│ │ │ ├── Maticsoft.Common.dll
│ │ │ ├── Maticsoft.Common.pdb
│ │ │ ├── Maticsoft.DAL.dll
│ │ │ ├── Maticsoft.DAL.pdb
│ │ │ ├── Maticsoft.DBUtility.dll
│ │ │ ├── Maticsoft.DBUtility.pdb
│ │ │ ├── Maticsoft.Model.dll
│ │ │ ├── Maticsoft.Model.pdb
│ │ │ ├── Microsoft.DirectX.DirectSound.dll
│ │ │ ├── Microsoft.DirectX.dll
│ │ │ ├── Microsoft.Vbe.Interop.dll
│ │ │ ├── MySql.Data.dll
│ │ │ ├── office.dll
│ │ │ ├── OpenSmtp.dll
│ │ │ ├── Save
│ │ │ │ ├── admin.b
│ │ │ │ ├── bmy.b
│ │ │ │ └── user.b
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── WinForm.exe
│ │ │ ├── WinForm.exe.config
│ │ │ ├── WinForm.pdb
│ │ │ ├── WinForm.vshost.exe
│ │ │ ├── WinForm.vshost.exe.config
│ │ │ ├── WinForm.vshost.exe.manifest
│ │ │ └── 图标.ico
│ │ ├── Debug - 副本.rar
│ │ ├── 进销存通用平台
│ │ │ ├── JXC_CRM.sql
│ │ │ ├── sql.htm
│ │ │ └── 运行程序
│ │ │ ├── COM.Excel.dll
│ │ │ ├── config.xml
│ │ │ ├── DevComponents.DotNetBar2.dll
│ │ │ ├── Excel.dll
│ │ │ ├── IBatisNet.Common.dll
│ │ │ ├── IBatisNet.DataMapper.dll
│ │ │ ├── Interop.WMPLib.dll
│ │ │ ├── Interop.WMPNSSCDS.dll
│ │ │ ├── Maticsoft.BLL.dll
│ │ │ ├── Maticsoft.BLL.pdb
│ │ │ ├── Maticsoft.Common.dll
│ │ │ ├── Maticsoft.Common.pdb
│ │ │ ├── Maticsoft.DAL.dll
│ │ │ ├── Maticsoft.DAL.pdb
│ │ │ ├── Maticsoft.DBUtility.dll
│ │ │ ├── Maticsoft.DBUtility.pdb
│ │ │ ├── Maticsoft.Model.dll
│ │ │ ├── Maticsoft.Model.pdb
│ │ │ ├── Microsoft.DirectX.DirectSound.dll
│ │ │ ├── Microsoft.DirectX.dll
│ │ │ ├── Microsoft.Vbe.Interop.dll
│ │ │ ├── MySql.Data.dll
│ │ │ ├── office.dll
│ │ │ ├── OpenSmtp.dll
│ │ │ ├── Save
│ │ │ │ ├── admin.b
│ │ │ │ ├── Index.htm
│ │ │ │ └── user.b
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── WinForm.exe
│ │ │ ├── WinForm.exe.config
│ │ │ ├── WinForm.pdb
│ │ │ ├── WinForm.vshost.exe
│ │ │ ├── WinForm.vshost.exe.config
│ │ │ ├── WinForm.vshost.exe.manifest
│ │ │ └── 图标.ico
│ │ └── 进销存通用平台.rar
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Form2.cs
│ ├── Form2.Designer.cs
│ ├── Form2.resx
│ ├── Form3.cs
│ ├── Form3.Designer.cs
│ ├── Form3.resx
│ ├── Form4.cs
│ ├── Form4.Designer.cs
│ ├── Form4.resx
│ ├── Frm_DynamicMenu.cs
│ ├── Frm_DynamicMenu.Designer.cs
│ ├── Frm_DynamicMenu.resx
│ ├── Frm_EmpSelects.cs
│ ├── Frm_EmpSelects.Designer.cs
│ ├── Frm_EmpSelects.resx
│ ├── Frm_MyInfo.cs
│ ├── Frm_MyInfo.Designer.cs
│ ├── Frm_MyInfo.resx
│ ├── Frm_RolesUserList.cs
│ ├── Frm_RolesUserList.Designer.cs
│ ├── Frm_RolesUserList.resx
│ ├── FrmSystemCenter.cs
│ ├── FrmSystemCenter.Designer.cs
│ ├── FrmSystemCenter.resx
│ ├── Frm_UserAdd.cs
│ ├── Frm_UserAdd.Designer.cs
│ ├── Frm_UserAdd.resx
│ ├── Frm_UserList.cs
│ ├── Frm_UserList.Designer.cs
│ ├── Frm_UserList.resx
│ ├── FromPower.cs
│ ├── FromPower.Designer.cs
│ ├── FromPower.resx
│ ├── Index.htm
│ ├── Login.cs
│ ├── Login.Designer.cs
│ ├── Login.resx
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── WinForm.Based.Frm_CustomerAdd.resources
│ │ ├── WinForm.Based.Frm_CustomerList.resources
│ │ ├── WinForm.Based.Frm_EmployeeAdd.resources
│ │ ├── WinForm.Based.Frm_EmployeeList.resources
│ │ ├── WinForm.Based.Frm_ProductAdd.resources
│ │ ├── WinForm.Based.Frm_ProductList.resources
│ │ ├── WinForm.Based.Frm_ProductTypeList.resources
│ │ ├── WinForm.Based.Frm_StstemAdd.resources
│ │ ├── WinForm.Based.Frm_SupplierAdd.resources
│ │ ├── WinForm.Based.Frm_SupplierList.resources
│ │ ├── WinForm.Based.Frm_SystemList.resources
│ │ ├── WinForm.Based.Frm_WareHouseAdd.resources
│ │ ├── WinForm.Based.Frm_WarehouseList.resources
│ │ ├── WinForm.csproj.FileListAbsolute.txt
│ │ ├── WinForm.csproj.GenerateResource.Cache
│ │ ├── WinForm.csprojResolveAssemblyReference.cache
│ │ ├── WinForm.exe
│ │ ├── WinForm.Form1.resources
│ │ ├── WinForm.Form2.resources
│ │ ├── WinForm.Form3.resources
│ │ ├── WinForm.Form4.resources
│ │ ├── WinForm.Frm_DynamicMenu.resources
│ │ ├── WinForm.Frm_EmpSelects.resources
│ │ ├── WinForm.Frm_MyInfo.resources
│ │ ├── WinForm.Frm_RolesUserList.resources
│ │ ├── WinForm.FrmSystemCenter.resources
│ │ ├── WinForm.Frm_UserAdd.resources
│ │ ├── WinForm.Frm_UserList.resources
│ │ ├── WinForm.FromPower.resources
│ │ ├── WinForm.Login.resources
│ │ ├── WinForm.pdb
│ │ ├── WinForm.Properties.Resources.resources
│ │ ├── WinForm.Purchase.Frm_CheckPurchase.resources
│ │ ├── WinForm.Purchase.Frm_PurchaseAdd.resources
│ │ ├── WinForm.Purchase.Frm_PurchaseList.resources
│ │ ├── WinForm.Purchase.Frm_PurchaseOrder.resources
│ │ ├── WinForm.Report.Frm_PurchaseDetails.resources
│ │ ├── WinForm.Report.Frm_PurchaseSummary.resources
│ │ ├── WinForm.Report.Frm_SaleDetails.resources
│ │ ├── WinForm.Report.Frm_SaleSummary.resources
│ │ ├── WinForm.Sale.Frm_CheckSales.resources
│ │ ├── WinForm.Sale.Frm_SaleAdd.resources
│ │ ├── WinForm.Sale.Frm_SaleListOrder.resources
│ │ ├── WinForm.Sale.Frm_SaleList.resources
│ │ ├── WinForm.Stock.Frm_Pandian.resources
│ │ └── WinForm.Stock.Frm_StockStatus.resources
│ ├── Operation
│ │ ├── CommonOpreation.cs
│ │ └── GlobalData.cs
│ ├── packages.config
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Purchase
│ │ ├── Frm_CheckPurchase.cs
│ │ ├── Frm_CheckPurchase.Designer.cs
│ │ ├── Frm_CheckPurchase.resx
│ │ ├── Frm_PurchaseAdd.cs
│ │ ├── Frm_PurchaseAdd.Designer.cs
│ │ ├── Frm_PurchaseAdd.resx
│ │ ├── Frm_PurchaseList.cs
│ │ ├── Frm_PurchaseList.Designer.cs
│ │ ├── Frm_PurchaseList.resx
│ │ ├── Frm_PurchaseOrder.cs
│ │ ├── Frm_PurchaseOrder.Designer.cs
│ │ ├── Frm_PurchaseOrder.resx
│ │ └── PurchaseClass.cs
│ ├── Report
│ │ ├── Frm_PurchaseDetails.cs
│ │ ├── Frm_PurchaseDetails.Designer.cs
│ │ ├── Frm_PurchaseDetails.resx
│ │ ├── Frm_PurchaseSummary.cs
│ │ ├── Frm_PurchaseSummary.Designer.cs
│ │ ├── Frm_PurchaseSummary.resx
│ │ ├── Frm_SaleDetails.cs
│ │ ├── Frm_SaleDetails.Designer.cs
│ │ ├── Frm_SaleDetails.resx
│ │ ├── Frm_SaleSummary.cs
│ │ ├── Frm_SaleSummary.Designer.cs
│ │ ├── Frm_SaleSummary.resx
│ │ └── ReportClass.cs
│ ├── Sale
│ │ ├── Frm_CheckSales.cs
│ │ ├── Frm_CheckSales.Designer.cs
│ │ ├── Frm_CheckSales.resx
│ │ ├── Frm_SaleAdd.cs
│ │ ├── Frm_SaleAdd.Designer.cs
│ │ ├── Frm_SaleAdd.resx
│ │ ├── Frm_SaleList.cs
│ │ ├── Frm_SaleList.Designer.cs
│ │ ├── Frm_SaleListOrder.cs
│ │ ├── Frm_SaleListOrder.Designer.cs
│ │ ├── Frm_SaleListOrder.resx
│ │ ├── Frm_SaleList.resx
│ │ └── SaleClass.cs
│ ├── Stock
│ │ ├── Frm_Pandian.cs
│ │ ├── Frm_Pandian.Designer.cs
│ │ ├── Frm_Pandian.resx
│ │ ├── Frm_StockStatus.cs
│ │ ├── Frm_StockStatus.Designer.cs
│ │ ├── Frm_StockStatus.resx
│ │ └── StockClass.cs
│ ├── System.Data.SQLite.dll
│ ├── WinForm.csproj
│ └── 图标.ico
└── 库存物资收发存通用平台1449212172.doc
64 directories, 538 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论