• 大小: 1.69MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-31
  • 语言: C#
  • 标签: C#  asp.net  sql  代码  论文  

资源简介

学校每个学期都要购进大量的教材,然后发放给学生。目前许多学校是以班级为单位,统一向学生发放教材,然后收取书款。学生每学期开学都需要购买教材。首先学校根据每学期所开设的课程,向各书商或出版社购进课本,然后学生以班级为单位向学校领书交费。这项工作现在在大部分学校还是手工操作,工作起来效率很低,并且不能及时了解教材库存和领取的具体情况。同时由于不可避免的人为因素,可能造成教材收费出错等情况。 针对这种情况,为了更好地适应当前学校管理的需求,避免手工管理存在的这些弊端,开发了本教材管理系统。学校通过使用本系统,可以实现教材收费、领取的自动管理。本系统主要包含4大功能,分别是教材的入库管理,学生的书费管理,系统管理以及综合查询。 本系统使用SQL Server 2005 Express数据库作为后台的数据管理系统,利用ADO数据库组件连接后台数据库。开发采用的是C#,它是由Microsoft公司开发的Windows程序开发环境,是现在最受欢迎的几种开发工具之一。

资源截图

代码片段和文件信息

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

using GoodsReportManage.ItemClass;
using GoodsReportManage.Goods;
using System.Collections;

namespace GoodsReportManage
{
    public partial class AppMain : Form
    {
        public AppMain()
        {
            InitializeComponent();
        }

        SqlbaseClass G_SqlClass = new SqlbaseClass();

        /// 
        /// 根据用户权限分配显示菜单
        /// 

        public void MenuIsVisible()
        {
            ArrayList arylst = new ArrayList();
            ToolStripMenuItem[] menu = new ToolStripMenuItem[] {
                this.menuEmployeethis.menuCompanythis.menuCustomerthis.menuGoodsInthis.menuGoodsOutthis.menuSellGoods
                this.menuGoodsBackthis.menuDepotChangethis.menuDepotAlarmthis.menuSysUserthis.menuPopedomSetthis.menuDatabakthis.menuReBakData
            };
            DataSet P_ds = G_SqlClass.GetDs(“SELECT * FROM v_UserView WHERE SysLoginName = ‘“+ PropertyClass.SendNameValue+“‘“);

            for (int i = 0; i < 13; i++)
            {
                arylst.Add(P_ds.Tables[0].Rows[0][14+i].ToString());
            }
            for (int j = 0; j < arylst.Count; j++)
            {
                if (arylst[j].ToString() == “False“)
                {
                    menu[j].Visible = false;
                }
                else
                {
                    menu[j].Visible = true;
                }
            }
            this.menuEmployee.Visible = false;
            this.menuCompany.Visible = false;
            this.menuCustomer.Visible = false;
            this.menuGoodsOut.Visible = false;
            this.menuGoodsBack.Visible = false;
            this.menuDepotChange.Visible = false;
            this.menuDepotAlarm.Visible = false;
            this.menuSysUser.Visible = false;
            this.menuPopedomSet.Visible = false;

        }

        private void timer1_Tick(object sender EventArgs e)
        {
            this.statusTime.Text = “当前时间:“ + DateTime.Now.ToString();
        }

        private void AppMain_Load(object sender EventArgs e)
        {
            this.timer1.Start();
            this.statusUser.Text = “系统操作员:“+PropertyClass.SendNameValue;
            MenuIsVisible();
        }

        private void AppMain_FormClosing(object sender FormClosingEventArgs e)
        {
        }

        private void Menu_Click(object sender EventArgs e)
        {
            WinOperationClass P_Menu = new WinOperationClass();  //声明对WinForm窗体进行操作的类对象
            P_Menu.ShowForm((ToolStripMenuItem)sender this);   //调用类中的方法,完成对窗体中ToolStripMenuItem控件相应项的操作
        }

        private void AppMain_FormClosed_1(object sender FormClosedEventArgs e)
        {
            if (MessageBox.Show(“确定要退出吗?“ “提示对话框“ MessageBoxButto

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     215552  2007-12-10 09:11  教材管理系统\(教材管理)毕业设计\ReadMe.doc

     文件      26624  2007-12-10 09:25  教材管理系统\(教材管理)毕业设计\摘要.doc

     文件       3372  2007-12-10 08:30  教材管理系统\(教材管理)毕业设计\教材自动化系统\AppMain.cs

     文件      28073  2007-12-10 08:30  教材管理系统\(教材管理)毕业设计\教材自动化系统\AppMain.Designer.cs

     文件      47930  2007-12-10 08:30  教材管理系统\(教材管理)毕业设计\教材自动化系统\AppMain.resx

     文件       9817  2007-12-09 22:10  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\CompanyInfo.cs

     文件      19928  2007-12-09 22:10  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\CompanyInfo.Designer.cs

     文件      13803  2006-10-24 09:11  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\CompanyInfo.resx

     文件      10257  2006-12-07 18:40  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\CustomerInfo.cs

     文件      20770  2006-12-07 18:40  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\CustomerInfo.Designer.cs

     文件      13960  2006-12-07 18:40  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\CustomerInfo.resx

     文件      12168  2006-11-03 13:26  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\EmployeeInfo.cs

     文件      22325  2006-10-27 15:57  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\EmployeeInfo.Designer.cs

     文件      14488  2006-10-27 15:57  教材管理系统\(教材管理)毕业设计\教材自动化系统\baseRecord\EmployeeInfo.resx

     文件    2490368  2007-12-10 08:29  教材管理系统\(教材管理)毕业设计\教材自动化系统\bin\Debug\Database\db_GoodsManage_Data.MDF

     文件     516096  2007-12-10 08:29  教材管理系统\(教材管理)毕业设计\教材自动化系统\bin\Debug\Database\db_GoodsManage_Data_log.ldf

     文件    4784128  2007-12-06 17:21  教材管理系统\(教材管理)毕业设计\教材自动化系统\bin\Debug\Database\db_GoodsManage_Log.LDF

     文件     458752  2007-12-10 08:30  教材管理系统\(教材管理)毕业设计\教材自动化系统\bin\Debug\GoodsReportManage.exe

     文件     460288  2007-12-10 08:30  教材管理系统\(教材管理)毕业设计\教材自动化系统\bin\Debug\GoodsReportManage.pdb

     文件       5632  2005-11-11 22:25  教材管理系统\(教材管理)毕业设计\教材自动化系统\bin\Debug\GoodsReportManage.vshost.exe

     文件       1102  2007-12-10 08:20  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\CompanyReport.cs

     文件       8118  2007-12-10 08:20  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\CompanyReport.Designer.cs

     文件       7766  2007-12-10 08:20  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\CompanyReport.resx

     文件       1722  2006-11-08 16:24  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\EmployeeReport.cs

     文件       9309  2006-10-26 11:56  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\EmployeeReport.Designer.cs

     文件       8110  2006-10-26 11:56  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\EmployeeReport.resx

     文件       1751  2006-11-07 14:37  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\EmployeeSellAnalysisReport.cs

     文件      12589  2006-11-04 09:38  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\EmployeeSellAnalysisReport.Designer.cs

     文件       9186  2006-11-04 09:38  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\EmployeeSellAnalysisReport.resx

     文件       1202  2006-10-30 09:47  教材管理系统\(教材管理)毕业设计\教材自动化系统\CrystalReport\EmployeeSellReport.cs

............此处省略166个文件信息

评论

共有 条评论