在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#库存管理系统.exe

C#库存管理系统.exe

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:5.11M
  • 下载次数:22
  • 浏览次数:126
  • 发布时间:2023-07-11
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 管理系统 exe xe 库存 管理

实例介绍

【实例简介】C#库存管理系统.exe
库存管理系统主要由【货物管理】、【基本档案】、【查询统计】、【系统维护】和【帮助】等模块组成。进入该系统后,用户可以对系统中的一些基本信息进行添加、修改和删除等操作。另外,如果是管理员登录,还可以对...

【实例截图】

from clipboard

from clipboard

from clipboard

【核心代码】
文件清单
└── 库存管理系统
    └── SMS
        ├── SMS
        │   ├── Backup
        │   │   └── data.bak
        │   ├── BaseClass
        │   │   ├── DataCon.cs
        │   │   └── DataOperate.cs
        │   ├── BasicInfo
        │   │   ├── frmGoodsInfo.cs
        │   │   ├── frmGoodsInfo.Designer.cs
        │   │   ├── frmGoodsInfo.resx
        │   │   ├── frmPrInfo.cs
        │   │   ├── frmPrInfo.Designer.cs
        │   │   ├── frmPrInfo.resx
        │   │   ├── frmStoreInfo.cs
        │   │   ├── frmStoreInfo.Designer.cs
        │   │   └── frmStoreInfo.resx
        │   ├── bin
        │   │   └── Debug
        │   │       ├── AboutUs.txt
        │   │       ├── Database
        │   │       ├── SMS.exe
        │   │       ├── SMS.pdb
        │   │       ├── SMS.vshost.exe
        │   │       └── sum.jpg
        │   ├── Database
        │   │   ├── db_SMS_Data.MDF
        │   │   ├── db_SMS_Log.LDF
        │   │   └── 存储过程
        │   │       ├── proc_insertCheck.sql
        │   │       ├── proc_insertInStore.sql
        │   │       ├── proc_insertProvider.sql
        │   │       ├── proc_insertStorage.sql
        │   │       ├── proc_insertUser.sql
        │   │       ├── proc_Login.sql
        │   │       └── proc_updateUser.sql
        │   ├── frmLogin.cs
        │   ├── frmLogin.Designer.cs
        │   ├── frmLogin.resx
        │   ├── frmMain.cs
        │   ├── frmMain.Designer.cs
        │   ├── frmMain.resx
        │   ├── GoodsManage
        │   │   ├── frmBGManage.cs
        │   │   ├── frmBGManage.Designer.cs
        │   │   ├── frmBGManage.resx
        │   │   ├── frmCKManage.cs
        │   │   ├── frmCKManage.Designer.cs
        │   │   ├── frmCKManage.resx
        │   │   ├── frmISManage.cs
        │   │   ├── frmISManage.Designer.cs
        │   │   ├── frmISManage.resx
        │   │   ├── frmOSManage.cs
        │   │   ├── frmOSManage.Designer.cs
        │   │   ├── frmOSManage.resx
        │   │   ├── frmRGManage.cs
        │   │   ├── frmRGManage.Designer.cs
        │   │   └── frmRGManage.resx
        │   ├── Help
        │   │   ├── frmAboutUs.cs
        │   │   ├── frmAboutUs.Designer.cs
        │   │   ├── frmAboutUs.resx
        │   │   ├── frmEditPwd.cs
        │   │   ├── frmEditPwd.Designer.cs
        │   │   ├── frmEditPwd.resx
        │   │   ├── frmRightManage.cs
        │   │   ├── frmRightManage.Designer.cs
        │   │   ├── frmRightManage.resx
        │   │   ├── frmUserManage.cs
        │   │   ├── frmUserManage.Designer.cs
        │   │   └── frmUserManage.resx
        │   ├── Image
        │   │   ├── ICO
        │   │   │   ├── IE.ico
        │   │   │   ├── Thumbs.db
        │   │   │   ├── 主窗体.ico
        │   │   │   ├── 修改.ico
        │   │   │   ├── 删除.ico
        │   │   │   ├── 取消.ico
        │   │   │   ├── 帮助.ico
        │   │   │   ├── 查询.ico
        │   │   │   ├── 查询窗体.ico
        │   │   │   ├── 添加.ico
        │   │   │   ├── 登录.ico
        │   │   │   ├── 确定.ico
        │   │   │   ├── 管理.ico
        │   │   │   ├── 统计1.ico
        │   │   │   ├── 统计.ico
        │   │   │   ├── 警告.ico
        │   │   │   ├── 进入.ico
        │   │   │   └── 退出.ico
        │   │   ├── image
        │   │   │   ├── 2008010102654.jpg
        │   │   │   ├── 2008010102703.jpg
        │   │   │   ├── Thumbs.db
        │   │   │   ├── 基本档案.jpg
        │   │   │   ├── 帮助.jpg
        │   │   │   ├── 库存管理系统登录界面白背景.jpg
        │   │   │   ├── 查询统计.jpg
        │   │   │   ├── 系统维护.jpg
        │   │   │   └── 货物管理.jpg
        │   │   └── 复件 image
        │   │       ├── 20061128083253.jpg
        │   │       ├── 20061128083256.jpg
        │   │       ├── 20061128083302.jpg
        │   │       ├── 20061128083303.jpg
        │   │       ├── 20061128083305.jpg
        │   │       ├── 20061128083311.jpg
        │   │       ├── 20061128083313.jpg
        │   │       ├── 20061128083318.jpg
        │   │       ├── 20061128083320.jpg
        │   │       ├── 20061128083322.jpg
        │   │       ├── 20061128083326.jpg
        │   │       ├── 20061128083328.jpg
        │   │       ├── 20061128083330.jpg
        │   │       ├── 20061128083332.jpg
        │   │       ├── 20061128083334.jpg
        │   │       ├── 20061128083336.jpg
        │   │       ├── 20061128083342.jpg
        │   │       ├── 20061128083348.jpg
        │   │       ├── 20061128083353.jpg
        │   │       ├── 20061128083358.jpg
        │   │       ├── 20061130011654.jpg
        │   │       ├── 20061130011708.jpg
        │   │       ├── 20061130011712.jpg
        │   │       ├── 20061130011714.jpg
        │   │       ├── 20061130011808.jpg
        │   │       ├── 20061130011810.jpg
        │   │       ├── 20061130011815.jpg
        │   │       ├── 20061130011831.jpg
        │   │       ├── 20061207015550.jpg
        │   │       ├── 20061207015552.jpg
        │   │       ├── 20061207015554.jpg
        │   │       ├── 20061207015644.jpg
        │   │       ├── 20061207015646.jpg
        │   │       ├── 20061207015648.jpg
        │   │       ├── 20061207015652.jpg
        │   │       ├── 20071230044421.jpg
        │   │       ├── 20071230044427.jpg
        │   │       ├── 20071230044430.jpg
        │   │       ├── 20071230044512.jpg
        │   │       ├── 20071230044522.jpg
        │   │       ├── 20071230044524.jpg
        │   │       ├── 20071230044739.jpg
        │   │       ├── 20071230044747.jpg
        │   │       ├── 20071230044751.jpg
        │   │       ├── 20071230044850.jpg
        │   │       ├── 20071230044920.jpg
        │   │       ├── 20071230044926.jpg
        │   │       ├── 20071230044952.jpg
        │   │       ├── 20071230045034.jpg
        │   │       ├── 20071230045110.jpg
        │   │       ├── 2007123005108.jpg
        │   │       ├── 2007123005110.jpg
        │   │       ├── 2007123005843.jpg
        │   │       ├── 20071231021003.jpg
        │   │       ├── 2008010102207.jpg
        │   │       ├── Thumbs.db
        │   │       ├── 基本档案.jpg
        │   │       ├── 帮助.jpg
        │   │       ├── 库存管理系统登录界面白背景.jpg
        │   │       ├── 查询统计.jpg
        │   │       ├── 系统维护.jpg
        │   │       └── 货物管理.jpg
        │   ├── LookandSum
        │   │   ├── frmBGLook.cs
        │   │   ├── frmBGLook.Designer.cs
        │   │   ├── frmBGLook.resx
        │   │   ├── frmGILook.cs
        │   │   ├── frmGILook.Designer.cs
        │   │   ├── frmGILook.resx
        │   │   ├── frmIOSMSum.cs
        │   │   ├── frmIOSMSum.Designer.cs
        │   │   ├── frmIOSMSum.resx
        │   │   ├── frmIOSYSum.cs
        │   │   ├── frmIOSYSum.Designer.cs
        │   │   ├── frmIOSYSum.resx
        │   │   ├── frmISLook.cs
        │   │   ├── frmISLook.Designer.cs
        │   │   ├── frmISLook.resx
        │   │   ├── frmOSLook.cs
        │   │   ├── frmOSLook.Designer.cs
        │   │   ├── frmOSLook.resx
        │   │   ├── frmRGLook.cs
        │   │   ├── frmRGLook.Designer.cs
        │   │   ├── frmRGLook.resx
        │   │   ├── frmWGLook.cs
        │   │   ├── frmWGLook.Designer.cs
        │   │   └── frmWGLook.resx
        │   ├── obj
        │   │   ├── Debug
        │   │   │   ├── Interop.AgentObjects.dll
        │   │   │   ├── Refactor
        │   │   │   ├── SMS.BasicInfo.frmGoodsInfo.resources
        │   │   │   ├── SMS.BasicInfo.frmPrInfo.resources
        │   │   │   ├── SMS.BasicInfo.frmStoreInfo.resources
        │   │   │   ├── SMS.csproj.GenerateResource.Cache
        │   │   │   ├── SMS.csproj.ResolveComReference.cache
        │   │   │   ├── SMS.exe
        │   │   │   ├── SMS.frmLogin.resources
        │   │   │   ├── SMS.frmMain.resources
        │   │   │   ├── SMS.GoodsManage.frmBGManage.resources
        │   │   │   ├── SMS.GoodsManage.frmCKManage.resources
        │   │   │   ├── SMS.GoodsManage.frmISManage.resources
        │   │   │   ├── SMS.GoodsManage.frmOSManage.resources
        │   │   │   ├── SMS.GoodsManage.frmRGManage.resources
        │   │   │   ├── SMS.Help.frmAboutUs.resources
        │   │   │   ├── SMS.Help.frmEditPwd.resources
        │   │   │   ├── SMS.Help.frmRightManage.resources
        │   │   │   ├── SMS.Help.frmUserManage.resources
        │   │   │   ├── SMS.LookandSum.frmBGLook.resources
        │   │   │   ├── SMS.LookandSum.frmGILook.resources
        │   │   │   ├── SMS.LookandSum.frmIOSMSum.resources
        │   │   │   ├── SMS.LookandSum.frmIOSYSum.resources
        │   │   │   ├── SMS.LookandSum.frmISLook.resources
        │   │   │   ├── SMS.LookandSum.frmOSLook.resources
        │   │   │   ├── SMS.LookandSum.frmRGLook.resources
        │   │   │   ├── SMS.LookandSum.frmWGLook.resources
        │   │   │   ├── SMS.pdb
        │   │   │   ├── SMS.Properties.Resources.resources
        │   │   │   ├── SMS.SysManage.frmDataCut.resources
        │   │   │   ├── SMS.SysManage.frmDataRevert.resources
        │   │   │   ├── SMS.SysManage.frmDataStore.resources
        │   │   │   └── TempPE
        │   │   │       └── Properties.Resources.Designer.cs.dll
        │   │   └── SMS.csproj.FileList.txt
        │   ├── Program.cs
        │   ├── Properties
        │   │   ├── AssemblyInfo.cs
        │   │   ├── Resources.Designer.cs
        │   │   ├── Resources.resx
        │   │   ├── Settings.Designer.cs
        │   │   └── Settings.settings
        │   ├── SMS.csproj
        │   ├── SMS.csproj.user
        │   └── SysManage
        │       ├── frmDataCut.cs
        │       ├── frmDataCut.Designer.cs
        │       ├── frmDataCut.resx
        │       ├── frmDataRevert.cs
        │       ├── frmDataRevert.Designer.cs
        │       ├── frmDataRevert.resx
        │       ├── frmDataStore.cs
        │       ├── frmDataStore.Designer.cs
        │       └── frmDataStore.resx
        ├── SMS.sln
        └── SMS.suo

24 directories, 224 files

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警