实例介绍
固定资产 管理系统 C# 入门或初学者不错,程序能运行,有 固定资产数据库.
【实例截图】
【核心代码】
4744300845204371891.rar
└── 固定资产管理系统
├── Database
│ ├── MyAssets_log.LDF
│ ├── MyAssets.mdf
│ ├── MyAssets数据库.sql
│ ├── 公司信息数据表.sql
│ ├── 公司部门数据表.sql
│ ├── 减少固定资产数据表.sql
│ ├── 可用固定资产视图.sql
│ ├── 固定资产修理记录数据表.sql
│ ├── 固定资产明细数据表.sql
│ ├── 固定资产租借记录数据表.sql
│ ├── 固定资产附属设备数据表.sql
│ ├── 折旧核算表数据表.sql
│ ├── 操作用户数据表.sql
│ ├── 租借固定资产数据表.sql
│ ├── 累计折旧查询视图.sql
│ ├── 维修固定资产数据表.sql
│ └── 计提累计折旧数据表.sql
├── MyAssets
│ ├── app.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Microsoft.Office.Interop.Excel.dll
│ │ │ └── MyAssets.vshost.exe.config
│ │ └── Release
│ │ ├── Data
│ │ │ ├── MyBgPhoto1.JPG
│ │ │ ├── MyBgPhoto2.JPG
│ │ │ ├── ShowMyBgPhoto1.jpg
│ │ │ ├── ShowMyBgPhoto2.jpg
│ │ │ ├── 保存.ico
│ │ │ ├── 修改密码.ico
│ │ │ ├── 借出资产.ico
│ │ │ ├── 公司信息.ico
│ │ │ ├── 减少资产.ico
│ │ │ ├── 分类资产.ico
│ │ │ ├── 增加资产.ico
│ │ │ ├── 完修资产.ico
│ │ │ ├── 导入数据.ico
│ │ │ ├── 帮助信息.ico
│ │ │ ├── 归还资产.ico
│ │ │ ├── 打印.ico
│ │ │ ├── 操作权限.ico
│ │ │ ├── 新增.ico
│ │ │ ├── 查询1.ico
│ │ │ ├── 查询2.ico
│ │ │ ├── 查询.ico
│ │ │ ├── 汇总折旧.ico
│ │ │ ├── 用户密码.ico
│ │ │ ├── 登录系统.ico
│ │ │ ├── 累计折旧.ico
│ │ │ ├── 统计折旧.ico
│ │ │ ├── 计算折旧.ico
│ │ │ ├── 资产减少.ico
│ │ │ ├── 资产出借.ico
│ │ │ ├── 资产卡片.ico
│ │ │ ├── 资产完修.ico
│ │ │ ├── 资产归还.ico
│ │ │ ├── 资产折旧.ico
│ │ │ ├── 资产送修.ico
│ │ │ ├── 返回系统.ico
│ │ │ ├── 退出系统.ico
│ │ │ ├── 送修资产.ico
│ │ │ ├── 部门设置.ico
│ │ │ └── 部门资产.ico
│ │ ├── Microsoft.Office.Interop.Excel.dll
│ │ ├── MyAssets.exe
│ │ ├── MyAssets.exe.config
│ │ ├── MyAssets.pdb
│ │ ├── MyAssets.vshost.exe
│ │ └── MyAssets.vshost.exe.config
│ ├── ChangeUserPasswordForm.cs
│ ├── ChangeUserPasswordForm.Designer.cs
│ ├── ChangeUserPasswordForm.resx
│ ├── CompanyForm.cs
│ ├── CompanyForm.Designer.cs
│ ├── CompanyForm.resx
│ ├── ComputeForm.cs
│ ├── ComputeForm.Designer.cs
│ ├── ComputeForm.resx
│ ├── DepartmentForm.cs
│ ├── DepartmentForm.Designer.cs
│ ├── DepartmentForm.resx
│ ├── FittingsForm.cs
│ ├── FittingsForm.Designer.cs
│ ├── FittingsForm.resx
│ ├── FixedAssetsForm.cs
│ ├── FixedAssetsForm.Designer.cs
│ ├── FixedAssetsForm.resx
│ ├── LeaseForm.cs
│ ├── LeaseForm.Designer.cs
│ ├── LeaseForm.resx
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── MyAssets.csproj
│ ├── MyAssetsDataSet1.Designer.cs
│ ├── MyAssetsDataSet1.xsc
│ ├── MyAssetsDataSet1.xsd
│ ├── MyAssetsDataSet1.xss
│ ├── MyAssetsDataSet.Designer.cs
│ ├── MyAssetsDataSet.xsc
│ ├── MyAssetsDataSet.xsd
│ ├── MyAssetsDataSet.xss
│ ├── obj
│ │ ├── Debug
│ │ │ └── TempPE
│ │ ├── MyAssets.csproj.FileListAbsolute.txt
│ │ └── Release
│ │ ├── MyAssets.ChangeUserPasswordForm.resources
│ │ ├── MyAssets.CompanyForm.resources
│ │ ├── MyAssets.ComputeForm.resources
│ │ ├── MyAssets.csproj.GenerateResource.Cache
│ │ ├── MyAssets.csproj.ResolveComReference.cache
│ │ ├── MyAssets.DepartmentForm.resources
│ │ ├── MyAssets.exe
│ │ ├── MyAssets.FittingsForm.resources
│ │ ├── MyAssets.FixedAssetsForm.resources
│ │ ├── MyAssets.LeaseForm.resources
│ │ ├── MyAssets.LoginForm.resources
│ │ ├── MyAssets.MainForm.resources
│ │ ├── MyAssets.OperatorForm.resources
│ │ ├── MyAssets.pdb
│ │ ├── MyAssets.PrintBorrowForm.resources
│ │ ├── MyAssets.PrintCardForm.resources
│ │ ├── MyAssets.PrintDepartmentForm.resources
│ │ ├── MyAssets.PrintDepreciationForm.resources
│ │ ├── MyAssets.PrintRepairedForm.resources
│ │ ├── MyAssets.PrintRepairForm.resources
│ │ ├── MyAssets.PrintReturnForm.resources
│ │ ├── MyAssets.PrintSubtractForm.resources
│ │ ├── MyAssets.PrintTypeForm.resources
│ │ ├── MyAssets.Properties.Resources.resources
│ │ ├── MyAssets.QueryDepreciationForm.resources
│ │ ├── MyAssets.RepairedForm.resources
│ │ ├── MyAssets.RepairForm.resources
│ │ ├── MyAssets.ReturnForm.resources
│ │ ├── MyAssets.SubtractForm.resources
│ │ ├── MyAssets.SumDepreciationForm.resources
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ ├── MyAssetsDataSet1.Designer.cs.dll
│ │ ├── MyAssetsDataSet.Designer.cs.dll
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── OperatorForm.cs
│ ├── OperatorForm.Designer.cs
│ ├── OperatorForm.resx
│ ├── PrintBorrowForm.cs
│ ├── PrintBorrowForm.Designer.cs
│ ├── PrintBorrowForm.resx
│ ├── PrintCardForm.cs
│ ├── PrintCardForm.Designer.cs
│ ├── PrintCardForm.resx
│ ├── PrintDepartmentForm.cs
│ ├── PrintDepartmentForm.Designer.cs
│ ├── PrintDepartmentForm.resx
│ ├── PrintDepreciationForm.cs
│ ├── PrintDepreciationForm.Designer.cs
│ ├── PrintDepreciationForm.resx
│ ├── PrintRepairedForm.cs
│ ├── PrintRepairedForm.Designer.cs
│ ├── PrintRepairedForm.resx
│ ├── PrintRepairForm.cs
│ ├── PrintRepairForm.Designer.cs
│ ├── PrintRepairForm.resx
│ ├── PrintReturnForm.cs
│ ├── PrintReturnForm.Designer.cs
│ ├── PrintReturnForm.resx
│ ├── PrintSubtractForm.cs
│ ├── PrintSubtractForm.Designer.cs
│ ├── PrintSubtractForm.resx
│ ├── PrintTypeForm.cs
│ ├── PrintTypeForm.Designer.cs
│ ├── PrintTypeForm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── QueryDepreciationForm.cs
│ ├── QueryDepreciationForm.Designer.cs
│ ├── QueryDepreciationForm.resx
│ ├── RepairedForm.cs
│ ├── RepairedForm.Designer.cs
│ ├── RepairedForm.resx
│ ├── RepairForm.cs
│ ├── RepairForm.Designer.cs
│ ├── RepairForm.resx
│ ├── ReturnForm.cs
│ ├── ReturnForm.Designer.cs
│ ├── ReturnForm.resx
│ ├── SubtractForm.cs
│ ├── SubtractForm.Designer.cs
│ ├── SubtractForm.resx
│ ├── SumDepreciationForm.cs
│ ├── SumDepreciationForm.Designer.cs
│ └── SumDepreciationForm.resx
├── 固定资产管理系统.sln
└── 固定资产管理系统.suo
13 directories, 192 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论