实例介绍
如果系统使用的对象较多,则要求有较好的权限管理; 在进行业务操作时,要求能够方便、快捷地对产品销售信息进行添加、修改、删除和查询操作; 使用水晶报表统计业务数据和业务数据进行图表分析; 在相应的权限下,...
【实例截图】
文件清单
└── 编程词典销售分析系统
├── DataBase
│ ├── Sale_Data.ldf
│ ├── Sale_Data.MDF
│ └── 数据库脚本.sql
├── SALE
│ ├── SALE
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── SALE.ini
│ │ │ │ ├── SALE.vshost.exe
│ │ │ │ └── SALE.vshost.exe.manifest
│ │ │ └── Release
│ │ ├── BLL
│ │ │ ├── AgentManage
│ │ │ │ ├── AgentRecord.cs
│ │ │ │ └── DepRegister.cs
│ │ │ ├── Other
│ │ │ │ └── AppMain.cs
│ │ │ ├── SaleManage
│ │ │ │ ├── BarterBaseCDRecord.cs
│ │ │ │ ├── BarterConsignCDRecord.cs
│ │ │ │ ├── RetailBarterBaseBill.cs
│ │ │ │ ├── RetailBarterConsignBill.cs
│ │ │ │ ├── RetailBarterExchangeBill.cs
│ │ │ │ ├── RetailCustomer.cs
│ │ │ │ ├── RetailSaleConsignBill.cs
│ │ │ │ ├── RetailSaleOrderBill.cs
│ │ │ │ ├── RetailSaleTradeBill.cs
│ │ │ │ ├── RetailUntreadBaseBill.cs
│ │ │ │ ├── RetailUntreadGatherBill.cs
│ │ │ │ ├── RetailUntreadRefundBill.cs
│ │ │ │ ├── SaleCDRecord.cs
│ │ │ │ └── UntreadCDRecord.cs
│ │ │ └── SystemSetting
│ │ │ ├── AgentLevel.cs
│ │ │ ├── Bank.cs
│ │ │ ├── ConsignCorp.cs
│ │ │ ├── Employee.cs
│ │ │ ├── GoodsSeries.cs
│ │ │ ├── GoodsType.cs
│ │ │ ├── Operator.cs
│ │ │ ├── PayType.cs
│ │ │ ├── Province.cs
│ │ │ └── SysModule.cs
│ │ ├── Common
│ │ │ ├── ControlBindDataSource.cs
│ │ │ ├── GlobalProperty.cs
│ │ │ ├── OperFile.cs
│ │ │ └── Useful.cs
│ │ ├── DAL
│ │ │ └── DataLogic.cs
│ │ ├── Images
│ │ │ ├── AgentManage
│ │ │ │ ├── 16代理商档案.gif
│ │ │ │ ├── 16代理登记.gif
│ │ │ │ └── 16代理管理.gif
│ │ │ ├── ChartAnalyse
│ │ │ │ ├── 16图表分析.gif
│ │ │ │ ├── 16月份间分析.gif
│ │ │ │ └── 16某时段分析.gif
│ │ │ ├── DataReport
│ │ │ │ ├── 16数据报表.gif
│ │ │ │ ├── 16明细表.gif
│ │ │ │ └── 16汇总表.gif
│ │ │ ├── other
│ │ │ │ ├── 16编程词典销售分析系统.gif
│ │ │ │ ├── 16编程词典销售分析系统.ico
│ │ │ │ ├── 16退出.gif
│ │ │ │ ├── an_03.gif
│ │ │ │ ├── an_05.gif
│ │ │ │ ├── an_07.gif
│ │ │ │ ├── 关闭.gif
│ │ │ │ ├── 关闭的文件夹副本.ico
│ │ │ │ ├── 大图c#.bmp
│ │ │ │ ├── 打开.gif
│ │ │ │ ├── 打开的文件夹副本.ico
│ │ │ │ ├── 登录.bmp
│ │ │ │ ├── 登录小样C#.bmp
│ │ │ │ ├── 登录背景C#.bmp
│ │ │ │ ├── 退出.bmp
│ │ │ │ └── 重置.bmp
│ │ │ ├── SaleManage
│ │ │ │ ├── 16业务管理.gif
│ │ │ │ ├── 16换货业务.gif
│ │ │ │ ├── 16红点.gif
│ │ │ │ ├── 16绿点.gif
│ │ │ │ ├── 16蓝点.gif
│ │ │ │ ├── 16退货业务.gif
│ │ │ │ └── 16销售业务.gif
│ │ │ ├── SystemSetting
│ │ │ │ ├── 16人员设置.gif
│ │ │ │ ├── 16代理级别.gif
│ │ │ │ ├── 16修改密码.gif
│ │ │ │ ├── 16商品大类.gif
│ │ │ │ ├── 16商品系列.gif
│ │ │ │ ├── 16基础设置.gif
│ │ │ │ ├── 16操作员维护.gif
│ │ │ │ ├── 16操作员设置.gif
│ │ │ │ ├── 16支付方式.gif
│ │ │ │ ├── 16权限设置.gif
│ │ │ │ ├── 16物流公司.gif
│ │ │ │ ├── 16省市设置.gif
│ │ │ │ ├── 16系统设置.gif
│ │ │ │ └── 16银行设置.gif
│ │ │ └── tool
│ │ │ ├── add.ico
│ │ │ ├── btnfind.ico
│ │ │ ├── cancel.ico
│ │ │ ├── change.ico
│ │ │ ├── Close.ico
│ │ │ ├── delete.ico
│ │ │ ├── exit.ico
│ │ │ ├── find.ico
│ │ │ ├── Query.ico
│ │ │ └── save.ico
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── SALE.csproj.FileListAbsolute.txt
│ │ │ └── TempPE
│ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ ├── UI.ChartAnalyse.CryReprot.AllKinds.Designer.cs.dll
│ │ │ ├── UI.ChartAnalyse.CryReprot.CryAllkindsSometimeSaleAnalyse.cs.dll
│ │ │ ├── UI.ChartAnalyse.CryReprot.CryDifferentMonthSaleAnalyse.cs.dll
│ │ │ ├── UI.ChartAnalyse.CryReprot.CrystalReport1.cs.dll
│ │ │ ├── UI.ChartAnalyse.CryReprot.DifferentMonth.Designer.cs.dll
│ │ │ ├── UI.ChartAnalyse.CryReprot.DifferentMonths.Designer.cs.dll
│ │ │ ├── UI.ChartAnalyse.WinForm.FormDifferentMonthSaleAnalyse.cs.dll
│ │ │ ├── UI.ChartAnalyse.WinForm.FormDifferentMonthSaleAnalyse.Designer.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CryBarterList.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CryChargeList.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CryOperationCollect.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CrySaleList.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CryServiceList.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CrystalReport1.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CryText.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.CryUntreadList.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.DataSet1.Designer.cs.dll
│ │ │ ├── UI.DataReport.CryReprot.OperationCollect.Designer.cs.dll
│ │ │ └── UI.DataReport.CryReprot.SaleCollect.Designer.cs.dll
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── SALE.csproj
│ │ ├── SALE.csproj.user
│ │ └── UI
│ │ ├── AgentManage
│ │ │ ├── FormAgentRecord .cs
│ │ │ ├── FormAgentRecord .Designer.cs
│ │ │ ├── FormAgentRecordInput.cs
│ │ │ ├── FormAgentRecordInput.Designer.cs
│ │ │ ├── FormAgentRecordInput.resx
│ │ │ ├── FormAgentRecord .resx
│ │ │ ├── FormDepRegister.cs
│ │ │ ├── FormDepRegister.Designer.cs
│ │ │ ├── FormDepRegisterInput.cs
│ │ │ ├── FormDepRegisterInput.Designer.cs
│ │ │ ├── FormDepRegisterInput.resx
│ │ │ └── FormDepRegister.resx
│ │ ├── ChartAnalyse
│ │ │ ├── CryReprot
│ │ │ │ ├── AllKinds.cs
│ │ │ │ ├── AllKinds.Designer.cs
│ │ │ │ ├── AllKinds.xsc
│ │ │ │ ├── AllKinds.xsd
│ │ │ │ ├── AllKinds.xss
│ │ │ │ ├── CryAllkindsSometimeSaleAnalyse.cs
│ │ │ │ ├── CryAllkindsSometimeSaleAnalyse.rpt
│ │ │ │ ├── CryDifferentMonthSaleAnalyse.cs
│ │ │ │ ├── CryDifferentMonthSaleAnalyse.rpt
│ │ │ │ ├── DifferentMonth.Designer.cs
│ │ │ │ ├── DifferentMonth.xsc
│ │ │ │ ├── DifferentMonth.xsd
│ │ │ │ └── DifferentMonth.xss
│ │ │ └── WinForm
│ │ │ ├── FormAllkindsSometimeSaleAnalyse.cs
│ │ │ ├── FormAllkindsSometimeSaleAnalyse.Designer.cs
│ │ │ ├── FormAllkindsSometimeSaleAnalyse.resx
│ │ │ ├── FormDifferentMonthSaleAnalyse.cs
│ │ │ ├── FormDifferentMonthSaleAnalyse.Designer.cs
│ │ │ └── FormDifferentMonthSaleAnalyse.resx
│ │ ├── DataReport
│ │ │ ├── CryReprot
│ │ │ │ ├── CryBarterList.cs
│ │ │ │ ├── CryBarterList.rpt
│ │ │ │ ├── CryOperationCollect.cs
│ │ │ │ ├── CryOperationCollect.rpt
│ │ │ │ ├── CrySaleList.cs
│ │ │ │ ├── CrySaleList.rpt
│ │ │ │ ├── CryUntreadList.cs
│ │ │ │ ├── CryUntreadList.rpt
│ │ │ │ ├── OperationCollect.cs
│ │ │ │ ├── OperationCollect.Designer.cs
│ │ │ │ ├── OperationCollect.xsc
│ │ │ │ ├── OperationCollect.xsd
│ │ │ │ └── OperationCollect.xss
│ │ │ └── WinForm
│ │ │ ├── FormOperationCollect.cs
│ │ │ ├── FormOperationCollect.Designer.cs
│ │ │ ├── FormOperationCollect.resx
│ │ │ ├── FormOperationList.cs
│ │ │ ├── FormOperationList.Designer.cs
│ │ │ └── FormOperationList.resx
│ │ ├── FormAppMain.cs
│ │ ├── FormAppMain.Designer.cs
│ │ ├── FormAppMain.resx
│ │ ├── FormLogin.cs
│ │ ├── FormLogin.Designer.cs
│ │ ├── FormLogin.resx
│ │ ├── SaleManage
│ │ │ ├── FormBarterBaseCDRecord.cs
│ │ │ ├── FormBarterBaseCDRecord.Designer.cs
│ │ │ ├── FormBarterBaseCDRecord.resx
│ │ │ ├── FormBarterConsignCDRecord.cs
│ │ │ ├── FormBarterConsignCDRecord.Designer.cs
│ │ │ ├── FormBarterConsignCDRecord.resx
│ │ │ ├── FormBrowseRetailBarterBaseBill.cs
│ │ │ ├── FormBrowseRetailBarterBaseBill.Designer.cs
│ │ │ ├── FormBrowseRetailBarterBaseBillOther.cs
│ │ │ ├── FormBrowseRetailBarterBaseBillOther.Designer.cs
│ │ │ ├── FormBrowseRetailBarterBaseBillOther.resx
│ │ │ ├── FormBrowseRetailBarterBaseBill.resx
│ │ │ ├── FormBrowseRetailBarterConsignBill.cs
│ │ │ ├── FormBrowseRetailBarterConsignBill.Designer.cs
│ │ │ ├── FormBrowseRetailBarterConsignBill.resx
│ │ │ ├── FormBrowseRetailBarterExchangeBill.cs
│ │ │ ├── FormBrowseRetailBarterExchangeBill.Designer.cs
│ │ │ ├── FormBrowseRetailBarterExchangeBill.resx
│ │ │ ├── FormBrowseRetailCustomer.cs
│ │ │ ├── FormBrowseRetailCustomer.Designer.cs
│ │ │ ├── FormBrowseRetailCustomer.resx
│ │ │ ├── FormBrowseRetailSaleConsignBill.cs
│ │ │ ├── FormBrowseRetailSaleConsignBill.Designer.cs
│ │ │ ├── FormBrowseRetailSaleConsignBill.resx
│ │ │ ├── FormBrowseRetailSaleOrderBill.cs
│ │ │ ├── FormBrowseRetailSaleOrderBill.Designer.cs
│ │ │ ├── FormBrowseRetailSaleOrderBill.resx
│ │ │ ├── FormBrowseRetailSaleTradeBill.cs
│ │ │ ├── FormBrowseRetailSaleTradeBill.Designer.cs
│ │ │ ├── FormBrowseRetailSaleTradeBill.resx
│ │ │ ├── FormBrowseRetailUntreadBaseBill.cs
│ │ │ ├── FormBrowseRetailUntreadBaseBill.Designer.cs
│ │ │ ├── FormBrowseRetailUntreadBaseBillOther.cs
│ │ │ ├── FormBrowseRetailUntreadBaseBillOther.Designer.cs
│ │ │ ├── FormBrowseRetailUntreadBaseBillOther.resx
│ │ │ ├── FormBrowseRetailUntreadBaseBill.resx
│ │ │ ├── FormBrowseRetailUntreadGatherBill.cs
│ │ │ ├── FormBrowseRetailUntreadGatherBill.Designer.cs
│ │ │ ├── FormBrowseRetailUntreadGatherBill.resx
│ │ │ ├── FormBrowseRetailUntreadRefundBill.cs
│ │ │ ├── FormBrowseRetailUntreadRefundBill.Designer.cs
│ │ │ ├── FormBrowseRetailUntreadRefundBill.resx
│ │ │ ├── FormRetailBarterBaseBill.cs
│ │ │ ├── FormRetailBarterBaseBill.Designer.cs
│ │ │ ├── FormRetailBarterBaseBillInput.cs
│ │ │ ├── FormRetailBarterBaseBillInput.Designer.cs
│ │ │ ├── FormRetailBarterBaseBillInput.resx
│ │ │ ├── FormRetailBarterBaseBill.resx
│ │ │ ├── FormRetailBarterConsignBill.cs
│ │ │ ├── FormRetailBarterConsignBill.Designer.cs
│ │ │ ├── FormRetailBarterConsignBillInput.cs
│ │ │ ├── FormRetailBarterConsignBillInput.Designer.cs
│ │ │ ├── FormRetailBarterConsignBillInput.resx
│ │ │ ├── FormRetailBarterConsignBill.resx
│ │ │ ├── FormRetailBarterExchangeBill.cs
│ │ │ ├── FormRetailBarterExchangeBill.Designer.cs
│ │ │ ├── FormRetailBarterExchangeBillInput.cs
│ │ │ ├── FormRetailBarterExchangeBillInput.Designer.cs
│ │ │ ├── FormRetailBarterExchangeBillInput.resx
│ │ │ ├── FormRetailBarterExchangeBill.resx
│ │ │ ├── FormRetailSaleBill.cs
│ │ │ ├── FormRetailSaleBill.Designer.cs
│ │ │ ├── FormRetailSaleBill.resx
│ │ │ ├── FormRetailSaleConsignBill.cs
│ │ │ ├── FormRetailSaleConsignBill.Designer.cs
│ │ │ ├── FormRetailSaleConsignBillInput.cs
│ │ │ ├── FormRetailSaleConsignBillInput.Designer.cs
│ │ │ ├── FormRetailSaleConsignBillInput.resx
│ │ │ ├── FormRetailSaleConsignBill.resx
│ │ │ ├── FormRetailSaleOrderBill.cs
│ │ │ ├── FormRetailSaleOrderBill.Designer.cs
│ │ │ ├── FormRetailSaleOrderBillInput.cs
│ │ │ ├── FormRetailSaleOrderBillInput.Designer.cs
│ │ │ ├── FormRetailSaleOrderBillInput.resx
│ │ │ ├── FormRetailSaleOrderBill.resx
│ │ │ ├── FormRetailSaleTradeBill.cs
│ │ │ ├── FormRetailSaleTradeBill.Designer.cs
│ │ │ ├── FormRetailSaleTradeBillInput.cs
│ │ │ ├── FormRetailSaleTradeBillInput.Designer.cs
│ │ │ ├── FormRetailSaleTradeBillInput.resx
│ │ │ ├── FormRetailSaleTradeBill.resx
│ │ │ ├── FormRetailUntreadBaseBill.cs
│ │ │ ├── FormRetailUntreadBaseBill.Designer.cs
│ │ │ ├── FormRetailUntreadBaseBillInput.cs
│ │ │ ├── FormRetailUntreadBaseBillInput.Designer.cs
│ │ │ ├── FormRetailUntreadBaseBillInput.resx
│ │ │ ├── FormRetailUntreadBaseBill.resx
│ │ │ ├── FormRetailUntreadGatherBill.cs
│ │ │ ├── FormRetailUntreadGatherBill.Designer.cs
│ │ │ ├── FormRetailUntreadGatherBillInput.cs
│ │ │ ├── FormRetailUntreadGatherBillInput.Designer.cs
│ │ │ ├── FormRetailUntreadGatherBillInput.resx
│ │ │ ├── FormRetailUntreadGatherBill.resx
│ │ │ ├── FormRetailUntreadRefundBill.cs
│ │ │ ├── FormRetailUntreadRefundBill.Designer.cs
│ │ │ ├── FormRetailUntreadRefundBillInput.cs
│ │ │ ├── FormRetailUntreadRefundBillInput.Designer.cs
│ │ │ ├── FormRetailUntreadRefundBillInput.resx
│ │ │ ├── FormRetailUntreadRefundBill.resx
│ │ │ ├── FormSaleCDRecord.cs
│ │ │ ├── FormSaleCDRecord.Designer.cs
│ │ │ ├── FormSaleCDRecord.resx
│ │ │ ├── FormUntreadCDRecord.cs
│ │ │ ├── FormUntreadCDRecord.Designer.cs
│ │ │ └── FormUntreadCDRecord.resx
│ │ └── SystemSetting
│ │ ├── FormAgentLevel.cs
│ │ ├── FormAgentLevel.Designer.cs
│ │ ├── FormAgentLevelInput.cs
│ │ ├── FormAgentLevelInput.Designer.cs
│ │ ├── FormAgentLevelInput.resx
│ │ ├── FormAgentLevel.resx
│ │ ├── FormAmendPassword.cs
│ │ ├── FormAmendPassword.Designer.cs
│ │ ├── FormAmendPassword.resx
│ │ ├── FormBank.cs
│ │ ├── FormBank.Designer.cs
│ │ ├── FormBankInput.cs
│ │ ├── FormBankInput.Designer.cs
│ │ ├── FormBankInput.resx
│ │ ├── FormBank.resx
│ │ ├── FormConsignCorp.cs
│ │ ├── FormConsignCorp.Designer.cs
│ │ ├── FormConsignCorpInput.cs
│ │ ├── FormConsignCorpInput.Designer.cs
│ │ ├── FormConsignCorpInput.resx
│ │ ├── FormConsignCorp.resx
│ │ ├── FormEmployee.cs
│ │ ├── FormEmployee.Designer.cs
│ │ ├── FormEmployeeInput.cs
│ │ ├── FormEmployeeInput.Designer.cs
│ │ ├── FormEmployeeInput.resx
│ │ ├── FormEmployee.resx
│ │ ├── FormGoodsSeries.cs
│ │ ├── FormGoodsSeries.Designer.cs
│ │ ├── FormGoodsSeriesInput.cs
│ │ ├── FormGoodsSeriesInput.Designer.cs
│ │ ├── FormGoodsSeriesInput.resx
│ │ ├── FormGoodsSeries.resx
│ │ ├── FormGoodsType.cs
│ │ ├── FormGoodsType.Designer.cs
│ │ ├── FormGoodsTypeInput.cs
│ │ ├── FormGoodsTypeInput.Designer.cs
│ │ ├── FormGoodsTypeInput.resx
│ │ ├── FormGoodsType.resx
│ │ ├── FormOperator.cs
│ │ ├── FormOperator.Designer.cs
│ │ ├── FormOperatorInput.cs
│ │ ├── FormOperatorInput.Designer.cs
│ │ ├── FormOperatorInput.resx
│ │ ├── FormOperator.resx
│ │ ├── FormPayType.cs
│ │ ├── FormPayType.Designer.cs
│ │ ├── FormPayTypeInput.cs
│ │ ├── FormPayTypeInput.Designer.cs
│ │ ├── FormPayTypeInput.resx
│ │ ├── FormPayType.resx
│ │ ├── FormProvince.cs
│ │ ├── FormProvince.Designer.cs
│ │ ├── FormProvinceInput.cs
│ │ ├── FormProvinceInput.Designer.cs
│ │ ├── FormProvinceInput.resx
│ │ ├── FormProvince.resx
│ │ ├── FormPurviewAssign.cs
│ │ ├── FormPurviewAssign.Designer.cs
│ │ └── FormPurviewAssign.resx
│ ├── SALE.sln
│ └── SALE.suo
└── 程序使用说明书.docx
37 directories, 349 files
标签: c# winform winforms winform FORM 源代码
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论