• 大小: 5.34MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-18
  • 语言: C#
  • 标签: C#项目  C#  含源码  

资源简介

C#项目之视频监控系统(含源码)

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
//添加的命名空间
using System.Data.OleDb;
using VWMS.CommonClass;

namespace VWMS
{
    public partial class Login : Form
    {
        public Login()
        {
            InitializeComponent();
        }

        DataCon datacon = new DataCon();
        DataOperate dataoperate = new DataOperate();

        private void btnLogin_Click(object sender EventArgs e)
        {
            if (txtName.Text == ““)
            {
                errorProName.SetError(txtName “用户名不能为空!“);
            }
            else
            {
                errorProName.Clear();
                string strSql = “select * from tb_admin where name=‘“ + txtName.Text + “‘ and pwd=‘“ + txtPwd.Text + “‘“;
                DataSet ds = dataoperate.getDs(strSql “tb_admin“);
                if (ds.Tables[0].Rows.Count > 0)
                {
                    this.Hide();
                    Main frmmain = new Main();
                    frmmain.Show();
                }
                else
                {
                    MessageBox.Show(“用户名或密码错误!“ “警告“ MessageBoxButtons.OK MessageBoxIcon.Warning);
                }
            }
        }

        private void btnExit_Click(object sender EventArgs e)
        {
            Application.Exit();
        }

        private void txtName_KeyPress(object sender KeyPressEventArgs e)
        {
            if (e.KeyChar == 13)
            {
                txtPwd.Focus();
                e.Handled = true;
            }
        }

        private void txtPwd_KeyPress(object sender KeyPressEventArgs e)
        {
            if (e.KeyChar == 13)
            {
                btnLogin.Focus();
                e.Handled = true;
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-08-22 16:38  18 视频监控系统\
     文件      637952  2007-12-24 09:43  18 视频监控系统\readme.doc
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\
     文件         909  2010-09-19 22:01  18 视频监控系统\VWMS\jiankong.sln
     文件       58880  2010-09-20 12:41  18 视频监控系统\VWMS\jiankong.suo
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\bin\
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\bin\Debug\
     文件       53248  2007-12-01 16:30  18 视频监控系统\VWMS\VWMS\bin\Debug\AxInterop.MediaPlayer.dll
     文件       53248  2010-09-19 22:00  18 视频监控系统\VWMS\VWMS\bin\Debug\AxInterop.WMPLib.dll
     文件       86016  2007-12-10 09:05  18 视频监控系统\VWMS\VWMS\bin\Debug\Interop.MediaPlayer.dll
     文件      290816  2010-09-19 22:01  18 视频监控系统\VWMS\VWMS\bin\Debug\Interop.WMPLib.dll
     文件     3960832  2010-09-19 22:10  18 视频监控系统\VWMS\VWMS\bin\Debug\VWMS.exe
     文件       87552  2010-09-19 22:10  18 视频监控系统\VWMS\VWMS\bin\Debug\VWMS.pdb
     文件        5632  2005-11-11 22:25  18 视频监控系统\VWMS\VWMS\bin\Debug\VWMS.vshost.exe
     文件       20480  2007-12-02 16:06  18 视频监控系统\VWMS\VWMS\bin\Debug\系统注册机.exe
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\bin\Release\
     文件       53248  2010-09-19 22:06  18 视频监控系统\VWMS\VWMS\bin\Release\AxInterop.WMPLib.dll
     文件      290816  2010-09-19 22:05  18 视频监控系统\VWMS\VWMS\bin\Release\Interop.WMPLib.dll
     文件     3956736  2010-09-19 22:06  18 视频监控系统\VWMS\VWMS\bin\Release\VWMS.exe
     文件       71168  2010-09-19 22:06  18 视频监控系统\VWMS\VWMS\bin\Release\VWMS.pdb
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\CommonClass\
     文件         701  2010-09-19 22:10  18 视频监控系统\VWMS\VWMS\CommonClass\DataCon.cs
     文件         909  2007-11-21 09:18  18 视频监控系统\VWMS\VWMS\CommonClass\DataOperate.cs
     文件        5505  2007-12-10 10:35  18 视频监控系统\VWMS\VWMS\CommonClass\PelcoD.cs
     文件        3536  2007-12-04 17:00  18 视频监控系统\VWMS\VWMS\CommonClass\SoftReg.cs
     文件        8483  2007-12-04 10:27  18 视频监控系统\VWMS\VWMS\CommonClass\VideoOperate.cs
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\Database\
     文件      196608  2010-09-19 21:22  18 视频监控系统\VWMS\VWMS\Database\VWMS.mdb
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\Image\
     目录           0  2019-08-22 16:38  18 视频监控系统\VWMS\VWMS\Image\主页面\
............此处省略95个文件信息

评论

共有 条评论