在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 资产管理软件C#源码+SQL2005数据库

资产管理软件C#源码+SQL2005数据库

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:4.10M
  • 下载次数:19
  • 浏览次数:113
  • 发布时间:2023-06-24
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2

实例介绍

【实例简介】资产管理软件C#源码 SQL2005数据库
这是一个完整的资产管理系统,非常美观的界面,修改数据库连接配置即可运行

【实例截图】

from clipboard

from clipboard

【核心代码】
文件清单
└── 资产管理
    ├── DataAccess
    │   ├── App.config
    │   ├── bin
    │   │   └── Debug
    │   │       ├── DataAccess.dll
    │   │       ├── DataAccess.dll.config
    │   │       └── DataAccess.pdb
    │   ├── ClassDiagram1.cd
    │   ├── DataAccess.csproj
    │   ├── DataAccess.csproj.user
    │   ├── obj
    │   │   ├── DataAccess.csproj.FileListAbsolute.txt
    │   │   ├── DataAccess.csproj.FileList.txt
    │   │   └── Debug
    │   │       ├── DataAccess.csproj.FileListAbsolute.txt
    │   │       ├── DataAccess.dll
    │   │       ├── DataAccess.pdb
    │   │       ├── Refactor
    │   │       └── TempPE
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── sqlHandler.cs
    ├── DataBusiness
    │   ├── AddTypeMgr.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── DataAccess.dll
    │   │       ├── DataAccess.pdb
    │   │       ├── DataBusiness.dll
    │   │       ├── DataBusiness.pdb
    │   │       ├── DataEntity.dll
    │   │       └── DataEntity.pdb
    │   ├── BoroowMgr.cs
    │   ├── Class1.cs
    │   ├── ClassDiagram1.cd
    │   ├── ClearMgr.cs
    │   ├── ClearTypeMgr.cs
    │   ├── ConpanyInfoMgr.cs
    │   ├── DataBackupMgr.cs
    │   ├── DataBusiness.csproj
    │   ├── DepartMgr.cs
    │   ├── EmployeeMgr.cs
    │   ├── EpMgr.cs
    │   ├── EqMgr.cs
    │   ├── EqNameMgr.cs
    │   ├── EqTypeMgr.cs
    │   ├── KeeperMgr.cs
    │   ├── KeepPlaceMgr.cs
    │   ├── obj
    │   │   ├── DataBusiness.csproj.FileListAbsolute.txt
    │   │   ├── DataBusiness.csproj.FileList.txt
    │   │   └── Debug
    │   │       ├── DataBusiness.csproj.FileListAbsolute.txt
    │   │       ├── DataBusiness.dll
    │   │       ├── DataBusiness.pdb
    │   │       ├── Refactor
    │   │       ├── ResolveAssemblyReference.cache
    │   │       └── TempPE
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── ReturnMgr.cs
    │   ├── SysMgr.cs
    │   ├── SysUserMgr.cs
    │   └── UnitMgr.cs
    ├── DataEntity
    │   ├── bin
    │   │   └── Debug
    │   │       ├── DataEntity.dll
    │   │       └── DataEntity.pdb
    │   ├── Borrow.cs
    │   ├── Clear.cs
    │   ├── Company.cs
    │   ├── DataEntity.csproj
    │   ├── Employee.cs
    │   ├── Equipment.cs
    │   ├── obj
    │   │   ├── DataEntity.csproj.FileListAbsolute.txt
    │   │   ├── DataEntity.csproj.FileList.txt
    │   │   └── Debug
    │   │       ├── DataEntity.csproj.FileListAbsolute.txt
    │   │       ├── DataEntity.dll
    │   │       ├── DataEntity.pdb
    │   │       ├── Refactor
    │   │       │   └── DataEntity.dll
    │   │       ├── ResolveAssemblyReference.cache
    │   │       └── TempPE
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── Returns.cs
    ├── Equipment_Manager
    │   ├── App.config
    │   ├── Applications Netscape Communicator.ico
    │   ├── bin
    │   │   └── Debug
    │   │       ├── Calmness.ssk
    │   │       ├── Data
    │   │       │   ├── BuidDatabase.sql
    │   │       │   ├── Equipment_Manage_dat.mdf
    │   │       │   ├── Equipment_Manage_log.ldf
    │   │       │   ├── KillProcess.bat
    │   │       │   ├── KillProcessProcedure.sql
    │   │       │   └── SysConfig.bat
    │   │       ├── DataAccess.dll
    │   │       ├── DataAccess.pdb
    │   │       ├── DataBackup
    │   │       │   └── Equipment_Manage.bak
    │   │       ├── DataBusiness.dll
    │   │       ├── DataBusiness.pdb
    │   │       ├── DataEntity.dll
    │   │       ├── DataEntity.pdb
    │   │       ├── defaultImage
    │   │       │   └── no_image_available_large.gif
    │   │       ├── Equipment_Manager.application
    │   │       ├── Equipment_Manager.exe
    │   │       ├── Equipment_Manager.exe.config
    │   │       ├── Equipment_Manager.exe.manifest
    │   │       ├── Equipment_Manager.pdb
    │   │       ├── Equipment_Manager.vshost.application
    │   │       ├── Equipment_Manager.vshost.exe
    │   │       ├── Equipment_Manager.vshost.exe.config
    │   │       ├── Interop.Excel.dll
    │   │       ├── IrisSkin2.dll
    │   │       └── MP10.ssk
    │   ├── ClassDiagram1.cd
    │   ├── dsBecomeOld.Designer.cs
    │   ├── dsBecomeOld.xsc
    │   ├── dsBecomeOld.xsd
    │   ├── dsBecomeOld.xss
    │   ├── dsEqUseing.Designer.cs
    │   ├── dsEqUseing.xsc
    │   ├── dsEqUseing.xsd
    │   ├── dsEqUseing.xss
    │   ├── dsReportByDepart.Designer.cs
    │   ├── dsReportByDepart.xsc
    │   ├── dsReportByDepart.xsd
    │   ├── dsReportByDepart.xss
    │   ├── dsReportByType.cs
    │   ├── dsReportByType.Designer.cs
    │   ├── dsReportByType.xsc
    │   ├── dsReportByType.xsd
    │   ├── dsReportByType.xss
    │   ├── Equipment_Manager.csproj
    │   ├── Equipment_Manager.csproj.user
    │   ├── Equipment_Manager_TemporaryKey.pfx
    │   ├── Form1.cs
    │   ├── Form1.Designer.cs
    │   ├── Form1.resx
    │   ├── frmBackup.cs
    │   ├── frmBackup.Designer.cs
    │   ├── frmBackup.resx
    │   ├── frmBakup.cs
    │   ├── frmBakup.Designer.cs
    │   ├── frmBakup.resx
    │   ├── frmBaseInfo.cs
    │   ├── frmBaseInfo.Designer.cs
    │   ├── frmBaseInfo.resx
    │   ├── frmBorrow.cs
    │   ├── frmBorrow.Designer.cs
    │   ├── frmBorrowLook.cs
    │   ├── frmBorrowLook.Designer.cs
    │   ├── frmBorrowLook.resx
    │   ├── frmBorrow.resx
    │   ├── frmClear.cs
    │   ├── frmClear.Designer.cs
    │   ├── frmClearLook.cs
    │   ├── frmClearLook.Designer.cs
    │   ├── frmClearLook.resx
    │   ├── frmClear.resx
    │   ├── frmConpanyInfo.cs
    │   ├── frmConpanyInfo.Designer.cs
    │   ├── frmConpanyInfo.resx
    │   ├── frmDepart.cs
    │   ├── frmDepart.Designer.cs
    │   ├── frmDepart.resx
    │   ├── frmEmployee.cs
    │   ├── frmEmployee.Designer.cs
    │   ├── frmEmployee.resx
    │   ├── frmEqAdd.cs
    │   ├── frmEqAdd.Designer.cs
    │   ├── frmEqAdd.resx
    │   ├── frmEqClear.cs
    │   ├── frmEqClear.Designer.cs
    │   ├── frmEqClear.resx
    │   ├── frmEqInfo.cs
    │   ├── frmEqInfo.Designer.cs
    │   ├── frmEqInfo.resx
    │   ├── frmEqUpdate.cs
    │   ├── frmEqUpdate.Designer.cs
    │   ├── frmEqUpdate.resx
    │   ├── frmFlash.cs
    │   ├── frmFlash.Designer.cs
    │   ├── frmFlash.resx
    │   ├── frmKeeper.cs
    │   ├── frmKeeper.Designer.cs
    │   ├── frmKeeper.resx
    │   ├── frmLogin.cs
    │   ├── frmLogin.Designer.cs
    │   ├── frmLogin.resx
    │   ├── frmMain.cs
    │   ├── frmMain.Designer.cs
    │   ├── frmMain.resx
    │   ├── frmOneEqInfo.cs
    │   ├── frmOneEqInfo.Designer.cs
    │   ├── frmOneEqInfo.resx
    │   ├── frmPowerSet.cs
    │   ├── frmPowerSet.Designer.cs
    │   ├── frmPowerSet.resx
    │   ├── frmReporter
    │   │   ├── frmReportBecomeOld.cs
    │   │   ├── frmReportBecomeOld.Designer.cs
    │   │   ├── frmReportBecomeOld.resx
    │   │   ├── frmReportEqUseing.cs
    │   │   ├── frmReportEqUseing.Designer.cs
    │   │   └── frmReportEqUseing.resx
    │   ├── frmReturn.cs
    │   ├── frmReturn.Designer.cs
    │   ├── frmReturnLook.cs
    │   ├── frmReturnLook.Designer.cs
    │   ├── frmReturnLook.resx
    │   ├── frmReturn.resx
    │   ├── frmSata.cs
    │   ├── frmSata.Designer.cs
    │   ├── frmSata.resx
    │   ├── frmSort.cs
    │   ├── frmSort.Designer.cs
    │   ├── frmSort.resx
    │   ├── frmStat.cs
    │   ├── frmStat.Designer.cs
    │   ├── frmStat.resx
    │   ├── frmsysUser.cs
    │   ├── frmsysUser.Designer.cs
    │   ├── frmsysUser.resx
    │   ├── frmUpdateSysUserInfo.cs
    │   ├── frmUpdateSysUserInfo.Designer.cs
    │   ├── frmUpdateSysUserInfo.resx
    │   ├── obj
    │   │   ├── Debug
    │   │   │   ├── Equipment_Manager.application
    │   │   │   ├── Equipment_Manager.csproj.FileListAbsolute.txt
    │   │   │   ├── Equipment_Manager.csproj.GenerateResource.Cache
    │   │   │   ├── Equipment_Manager.exe
    │   │   │   ├── Equipment_Manager.exe.manifest
    │   │   │   ├── Equipment_Manager.Form1.resources
    │   │   │   ├── Equipment_Manager.frmBackup.resources
    │   │   │   ├── Equipment_Manager.frmBaseInfo.resources
    │   │   │   ├── Equipment_Manager.frmBorrowLook.resources
    │   │   │   ├── Equipment_Manager.frmBorrow.resources
    │   │   │   ├── Equipment_Manager.frmClearLook.resources
    │   │   │   ├── Equipment_Manager.frmClear.resources
    │   │   │   ├── Equipment_Manager.frmConpanyInfo.resources
    │   │   │   ├── Equipment_Manager.frmDepart.resources
    │   │   │   ├── Equipment_Manager.frmEmployee.resources
    │   │   │   ├── Equipment_Manager.frmEqAdd.resources
    │   │   │   ├── Equipment_Manager.frmEqClear.resources
    │   │   │   ├── Equipment_Manager.frmEqInfo.resources
    │   │   │   ├── Equipment_Manager.frmEqUpdate.resources
    │   │   │   ├── Equipment_Manager.frmFlash.resources
    │   │   │   ├── Equipment_Manager.frmKeeper.resources
    │   │   │   ├── Equipment_Manager.frmLogin.resources
    │   │   │   ├── Equipment_Manager.frmMain.resources
    │   │   │   ├── Equipment_Manager.frmOneEqInfo.resources
    │   │   │   ├── Equipment_Manager.frmPowerSet.resources
    │   │   │   ├── Equipment_Manager.frmReporter.frmReportBecomeOld.resources
    │   │   │   ├── Equipment_Manager.frmReporter.frmReportEqUseing.resources
    │   │   │   ├── Equipment_Manager.frmReturnLook.resources
    │   │   │   ├── Equipment_Manager.frmReturn.resources
    │   │   │   ├── Equipment_Manager.frmSata.resources
    │   │   │   ├── Equipment_Manager.frmSort.resources
    │   │   │   ├── Equipment_Manager.frmStat.resources
    │   │   │   ├── Equipment_Manager.frmsysUser.resources
    │   │   │   ├── Equipment_Manager.frmUpdateSysUserInfo.resources
    │   │   │   ├── Equipment_Manager.pdb
    │   │   │   ├── Equipment_Manager.Properties.Resources.resources
    │   │   │   ├── Equipment_Manager.Reprter.ReportBecomeOld.rpt
    │   │   │   ├── Equipment_Manager.Reprter.ReportBorrowByDepart.rpt
    │   │   │   ├── Equipment_Manager.Reprter.ReportByType.rpt
    │   │   │   ├── Equipment_Manager.Reprter.ReporterEqUseing.rpt
    │   │   │   ├── Refactor
    │   │   │   ├── ResolveAssemblyReference.cache
    │   │   │   └── TempPE
    │   │   │       ├── dsBecomeOld.Designer.cs.dll
    │   │   │       ├── DsBorrowByDepart.Designer.cs.dll
    │   │   │       ├── dsEqUseing.Designer.cs.dll
    │   │   │       ├── dsReportByDepart.Designer.cs.dll
    │   │   │       ├── dsReportByType.Designer.cs.dll
    │   │   │       ├── Properties.Resources.Designer.cs.dll
    │   │   │       ├── ReportBorrowByDepart.cs.dll
    │   │   │       ├── Reprter.CrystalReport1.cs.dll
    │   │   │       ├── Reprter.ReportBecomeOld.cs.dll
    │   │   │       ├── Reprter.ReportBorrowByDepart.cs.dll
    │   │   │       ├── Reprter.ReportByType.cs.dll
    │   │   │       ├── Reprter.ReporterEqUseing.cs.dll
    │   │   │       ├── Reprter.t.cs.dll
    │   │   │       └── rptbydepart.cs.dll
    │   │   ├── Equipment_Manager.csproj.FileListAbsolute.txt
    │   │   └── Equipment_Manager.csproj.FileList.txt
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Reprter
    │   │   ├── ReportBecomeOld.cs
    │   │   ├── ReportBecomeOld.rpt
    │   │   ├── ReportBorrowByDepart.cs
    │   │   ├── ReportBorrowByDepart.rpt
    │   │   ├── ReportByType.cs
    │   │   ├── ReportByType.rpt
    │   │   ├── ReporterEqUseing.cs
    │   │   └── ReporterEqUseing.rpt
    │   └── untCommon.cs
    ├── readme.txt
    ├── Solut_EquipentMgr.sln
    ├── Solut_EquipentMgr.suo
    ├── sqlHandler
    │   ├── bin
    │   │   └── Debug
    │   ├── Class1.cs
    │   ├── obj
    │   │   └── Debug
    │   │       └── TempPE
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── sqlHandler.csproj
    ├── UpgradeLog.XML
    └── _UpgradeReport_Files
        ├── UpgradeReport.css
        ├── UpgradeReport_Minus.gif
        ├── UpgradeReport_Plus.gif
        └── UpgradeReport.xslt

46 directories, 287 files

实例下载地址

资产管理软件C#源码+SQL2005数据库

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警