实例介绍
1.1 课题研究现状分析 在各大高校里,实验设备各式各样。在实验设备的管理中,如果通过使用计算机可以减少大量的手工操作,提高工作效率。实验设备管理系统过去采用人工处理方式,由于工作量非常之大,为了提高工作效率,方便管理,因此需要开发一个实验设备管理系统。 本次课题为:实验设备管理系统,它的主要功能是先通过用户身份验证,然后即可登录实验设备管理系统,然后通过增、删、查、改操作对实验设备信息进行管理和维护。 1.1.1 本领域内已开展的研究工作 1.理论研究基础 (1)后台以SQL数据库支持。 (2)前台以 NeatBeans为开发环境,实现学生基本信息管理的增、删、
【实例截图】
【核心代码】
doq5xh
└── 20114052126苏雪源
└── WindowsFormsApplication1
├── WindowsFormsApplication1
│ ├── AddEquipment.cs
│ ├── AddEquipment.Designer.cs
│ ├── AddEquipment.resx
│ ├── AddType.cs
│ ├── AddType.Designer.cs
│ ├── AddType.resx
│ ├── AddUser.cs
│ ├── AddUser.Designer.cs
│ ├── AddUser.resx
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── Equipment.sdf
│ │ ├── WindowsFormsApplication1.exe
│ │ ├── WindowsFormsApplication1.exe.config
│ │ ├── WindowsFormsApplication1.pdb
│ │ ├── WindowsFormsApplication1.vshost.exe
│ │ ├── WindowsFormsApplication1.vshost.exe.config
│ │ └── WindowsFormsApplication1.vshost.exe.manifest
│ ├── Bumen.cs
│ ├── Bumen.Designer.cs
│ ├── Bumen.resx
│ ├── ChangeManage.cs
│ ├── ChangeManage.Designer.cs
│ ├── ChangeManage.resx
│ ├── ChangePass.cs
│ ├── ChangePass.Designer.cs
│ ├── ChangePass.resx
│ ├── ChangeUser.cs
│ ├── ChangeUser.Designer.cs
│ ├── ChangeUser.resx
│ ├── EquipmentCache.Designer.cs
│ ├── EquipmentCache.sync
│ ├── Equipment.csproj
│ ├── Equipment.csproj.user
│ ├── EquipmentDataSet1.Designer.cs
│ ├── EquipmentDataSet1.xsc
│ ├── EquipmentDataSet1.xsd
│ ├── EquipmentDataSet1.xss
│ ├── EquipmentDataSet.Designer.cs
│ ├── EquipmentDataSet.xsc
│ ├── EquipmentDataSet.xsd
│ ├── EquipmentDataSet.xss
│ ├── Equipment.sdf
│ ├── EquipView.cs
│ ├── EquipView.Designer.cs
│ ├── EquipView.resx
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── LendOut.cs
│ ├── LendOut.Designer.cs
│ ├── LendOut.resx
│ ├── LendView.cs
│ ├── LendView.Designer.cs
│ ├── LendView.resx
│ ├── Login.cs
│ ├── Login.Designer.cs
│ ├── Login.resx
│ ├── MainState.cs
│ ├── MainState.Designer.cs
│ ├── MainState.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Equipment.csproj.FileListAbsolute.txt
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ ├── EquipmentCache.Designer.cs.dll
│ │ │ ├── EquipmentDataSet1.Designer.cs.dll
│ │ │ └── EquipmentDataSet.Designer.cs.dll
│ │ ├── WindowsFormsApplication1.AddEquipment.resources
│ │ ├── WindowsFormsApplication1.AddType.resources
│ │ ├── WindowsFormsApplication1.AddUser.resources
│ │ ├── WindowsFormsApplication1.Bumen.resources
│ │ ├── WindowsFormsApplication1.ChangeManage.resources
│ │ ├── WindowsFormsApplication1.ChangePass.resources
│ │ ├── WindowsFormsApplication1.ChangeUser.resources
│ │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication1.EquipView.resources
│ │ ├── WindowsFormsApplication1.exe
│ │ ├── WindowsFormsApplication1.Form1.resources
│ │ ├── WindowsFormsApplication1.LendOut.resources
│ │ ├── WindowsFormsApplication1.LendView.resources
│ │ ├── WindowsFormsApplication1.Login.resources
│ │ ├── WindowsFormsApplication1.MainState.resources
│ │ ├── WindowsFormsApplication1.pdb
│ │ ├── WindowsFormsApplication1.Properties.Resources.resources
│ │ ├── WindowsFormsApplication1.RepairView.resources
│ │ ├── WindowsFormsApplication1.Search.resources
│ │ ├── WindowsFormsApplication1.UserCancel.resources
│ │ └── WindowsFormsApplication1.UserSearch.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RepairView.cs
│ ├── RepairView.Designer.cs
│ ├── RepairView.resx
│ ├── Search.cs
│ ├── Search.Designer.cs
│ ├── Search.resx
│ ├── SQLScripts
│ │ ├── EquipmentCache.dbo.Teacher.sql
│ │ └── EquipmentCache.Equipment.sql
│ ├── SQLUndoScripts
│ │ ├── EquipmentCache.dbo.Teacher.disable.sql
│ │ └── EquipmentCache.Equipment.disable.sql
│ ├── UserCancel.cs
│ ├── UserCancel.Designer.cs
│ ├── UserCancel.resx
│ ├── UserSearch.cs
│ ├── UserSearch.Designer.cs
│ └── UserSearch.resx
├── WindowsFormsApplication1.sln
└── WindowsFormsApplication1.suo
12 directories, 114 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论