• 大小: 3.38MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-12
  • 语言: C#
  • 标签: VS2010  

资源简介

这是我的课程设,虽然界面是看别人的,但功能实现代码完全自己编写的,界面还可以,功能很完。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 宿舍管理系统
{
    public partial class AddCharge : Form
    {
        ChargeInfo chargeInfo = new ChargeInfo();
        DormInfo dormInfo = new DormInfo();

        public AddCharge()
        {
            InitializeComponent();
        }

        private void buttonOK_Click(object sender EventArgs e)
        {
            if (textDormID.Text.Trim() == ““)
                MessageBox.Show(“输入宿舍号“ “提示“);
            else
            {                
                if (!dormInfo.seldormInfo(textDormID.Text.Trim()))
                    MessageBox.Show(“没有该房间号,请重新输入“ “提示“);
                else
                {
                    chargeInfo.dormId = textDormID.Text.Trim();
                    chargeInfo.num = textElec.Text.Trim();
                    chargeInfo.money = textMoney.Text.Trim();
                    chargeInfo.buyer = textBuyer.Text.Trim();
                    chargeInfo.date = dateTimePicker1.Text.Trim();

                    chargeInfo.instCharge();
                    MessageBox.Show(“添加完成“ “提示“);
                }
               
            }
        }

        private void AddCharge_Load(object sender EventArgs e)
        {
            chargeInfo.connDb();
            dormInfo.connDb();
        }

        private void buttonClose_Click(object sender EventArgs e)
        {
            this.Close();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-11-30 21:50  宿舍管理系统\
     目录           0  2012-11-30 21:50  宿舍管理系统\宿舍管理系统\
     文件         896  2012-11-30 21:50  宿舍管理系统\宿舍管理系统.sln
     文件       41472  2012-12-07 17:11  宿舍管理系统\宿舍管理系统.suo
     文件        1675  2012-12-02 22:18  宿舍管理系统\宿舍管理系统\AddCharge.cs
     文件        8621  2012-12-02 22:18  宿舍管理系统\宿舍管理系统\AddCharge.Designer.cs
     文件        5817  2012-12-02 22:18  宿舍管理系统\宿舍管理系统\AddCharge.resx
     文件        1318  2012-12-02 23:17  宿舍管理系统\宿舍管理系统\AddDorm.cs
     文件       10664  2012-12-01 18:54  宿舍管理系统\宿舍管理系统\AddDorm.Designer.cs
     文件        5817  2012-12-01 18:54  宿舍管理系统\宿舍管理系统\AddDorm.resx
     文件        1658  2012-12-02 20:32  宿舍管理系统\宿舍管理系统\AddDormCheck.cs
     文件        7992  2012-12-02 20:32  宿舍管理系统\宿舍管理系统\AddDormCheck.Designer.cs
     文件        5817  2012-12-02 20:32  宿舍管理系统\宿舍管理系统\AddDormCheck.resx
     文件        1856  2012-12-03 12:38  宿舍管理系统\宿舍管理系统\AddRegis.cs
     文件        9682  2012-12-03 12:38  宿舍管理系统\宿舍管理系统\AddRegis.Designer.cs
     文件        5817  2012-12-03 12:38  宿舍管理系统\宿舍管理系统\AddRegis.resx
     文件        1680  2012-12-03 13:06  宿舍管理系统\宿舍管理系统\AddRepair.cs
     文件        8872  2012-12-03 13:06  宿舍管理系统\宿舍管理系统\AddRepair.Designer.cs
     文件        5817  2012-12-03 13:06  宿舍管理系统\宿舍管理系统\AddRepair.resx
     文件        2842  2012-12-02 16:11  宿舍管理系统\宿舍管理系统\AddStudent.cs
     文件        8694  2012-12-02 16:11  宿舍管理系统\宿舍管理系统\AddStudent.Designer.cs
     文件        5817  2012-12-02 16:11  宿舍管理系统\宿舍管理系统\AddStudent.resx
     文件        1688  2012-12-01 17:26  宿舍管理系统\宿舍管理系统\AddUser.cs
     文件        5873  2012-12-01 17:26  宿舍管理系统\宿舍管理系统\AddUser.Designer.cs
     文件        5817  2012-12-01 17:26  宿舍管理系统\宿舍管理系统\AddUser.resx
     目录           0  2012-11-30 21:50  宿舍管理系统\宿舍管理系统\bin\
     目录           0  2012-11-30 21:50  宿舍管理系统\宿舍管理系统\bin\Debug\
     文件      919552  2012-12-07 17:11  宿舍管理系统\宿舍管理系统\bin\Debug\宿舍管理系统.exe
     文件      228864  2012-12-07 17:11  宿舍管理系统\宿舍管理系统\bin\Debug\宿舍管理系统.pdb
     文件       11600  2012-12-07 21:24  宿舍管理系统\宿舍管理系统\bin\Debug\宿舍管理系统.vshost.exe
     文件         490  2010-03-17 22:39  宿舍管理系统\宿舍管理系统\bin\Debug\宿舍管理系统.vshost.exe.manifest
............此处省略106个文件信息

评论

共有 条评论