• 大小: 209.74 KB
    文件类型: .rar
    金币: 2
    下载: 0 次
    发布日期: 2024-07-21
  • 语言: C#
  • 标签: C#  

资源简介

用C#写的图书管理系统,并带有部分注释,数据库是
access数据库,读者可以自己更改

资源截图

代码片段和文件信息

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

namespace tsgl
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        OleDbConnection myCon = null;
        OleDbDataReader myReader = null;
        OleDbCommand myCom = new OleDbCommand();

        private void access()
        {
            try
            {
                string myConStr = “Provider=Microsoft.Jet.OlEDB.4.0;“;
                myConStr += “Data Source=yg.mdb;“;
                myCon = new OleDbConnection(myConStr);
                myCon.Open();
            }
            catch (Exception oe)
            {
                MessageBox.Show(oe.Message “Error“);
            }
        }

        private void Form1_Load(object sender EventArgs e)
        {
            this.AcceptButton = this.button1;
            this.button1.DialogResult = DialogResult.OK;
            textBox1.Focus();
        }

        private void button1_Click(object sender EventArgs e)
        {
            try
            {
                if (textBox1.Text == ““ || textBox2.Text == ““)
                {
                    MessageBox.Show(“用户名或者密码不能为空!“ “标题“);
                    return;
                }
                String FindSQL = “select * from yh where 用户=‘“ + textBox1.Text + “‘and 密码=‘“ + textBox2.Text + “‘“;
                access();
                myCom.CommandType = CommandType.Text;
                myCom.CommandText = FindSQL;
                myCom.Connection = myCon;
                myReader = myCom.ExecuteReader();
                if (myReader.HasRows)
                {
                    myReader.Read();
                    switch (myReader.GetInt32(0))
                    {
                        case 10:
                            人员管理ToolStripMenuItem.Enabled = true;
                            label1.Text = “你是系统管理员,拥有所有权限!“; goto default;
                        default:
                            图书管理ToolStripMenuItem.Enabled = true;
                            帮助ToolStripMenuItem.Enabled = true;
                            label2.Visible = false;
                            label3.Visible = false;
                            textBox1.Visible = false;
                            textBox2.Visible = false;
                            button1.Visible = false;
                            textBox3.Visible = false;
                            textBox4.Visible = false;
                            break;
                    }
                }
                else
                    MessageBox.Show(“用户名或者密码错误!“ “提示“);
            }
            catch (Exception oe)
            {
                MessageBox.Show(oe.Message “Error“);
            }
        }

        private void button2_

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

     文件       1172  2009-06-09 18:24  图书管理系统\UpgradeLog.xml

     文件        944  2009-06-09 18:24  图书管理系统\图书管理系统.sln

    ..A..H.     34816  2009-06-18 00:18  图书管理系统\图书管理系统.suo

     文件       3348  2009-06-09 18:24  图书管理系统\_UpgradeReport_Files\UpgradeReport.css

     文件      12505  2008-01-11 01:25  图书管理系统\_UpgradeReport_Files\UpgradeReport.xslt

     文件         69  2009-06-09 18:24  图书管理系统\_UpgradeReport_Files\UpgradeReport_Minus.gif

     文件         71  2009-06-09 18:24  图书管理系统\_UpgradeReport_Files\UpgradeReport_Plus.gif

    ..A.SH.      4608  2009-07-06 15:23  图书管理系统\_UpgradeReport_Files\Thumbs.db

     目录          0  2009-07-06 15:23  图书管理系统\_UpgradeReport_Files

     文件        408  2009-06-09 18:55  图书管理系统\图书管理系统\app.config

     文件       5717  2009-06-18 00:18  图书管理系统\图书管理系统\Form1.cs

     文件      15299  2009-06-18 00:18  图书管理系统\图书管理系统\Form1.Designer.cs

     文件       6012  2009-06-18 00:18  图书管理系统\图书管理系统\Form1.resx

     文件       8942  2009-06-18 00:18  图书管理系统\图书管理系统\Form2.cs

     文件      23111  2009-06-18 00:18  图书管理系统\图书管理系统\Form2.Designer.cs

     文件       6222  2009-06-18 00:18  图书管理系统\图书管理系统\Form2.resx

     文件       9325  2009-01-01 12:52  图书管理系统\图书管理系统\Form3.cs

     文件      13901  2009-01-01 12:38  图书管理系统\图书管理系统\Form3.Designer.cs

     文件       5814  2009-01-01 12:12  图书管理系统\图书管理系统\Form3.resx

     文件       1319  2009-01-01 12:53  图书管理系统\图书管理系统\Form4.cs

     文件       3079  2009-01-01 12:38  图书管理系统\图书管理系统\Form4.Designer.cs

     文件       5814  2009-01-01 12:13  图书管理系统\图书管理系统\Form4.resx

     文件       8818  2009-01-01 12:53  图书管理系统\图书管理系统\Form5.cs

     文件      14062  2009-01-01 12:41  图书管理系统\图书管理系统\Form5.Designer.cs

     文件       5814  2009-01-01 12:41  图书管理系统\图书管理系统\Form5.resx

     文件      10730  2009-01-01 12:53  图书管理系统\图书管理系统\Form6.cs

     文件      13034  2009-01-01 12:48  图书管理系统\图书管理系统\Form6.Designer.cs

     文件       5814  2009-01-01 12:48  图书管理系统\图书管理系统\Form6.resx

     文件       1209  2009-01-01 12:53  图书管理系统\图书管理系统\Form7.cs

     文件       2812  2009-01-01 12:50  图书管理系统\图书管理系统\Form7.Designer.cs

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

评论

共有 条评论