資源簡介
VS2010+ACCESS開發(fā)的源碼,一本開發(fā)書配套的系統(tǒng),適合初學(xué)者,需要安裝一個采集卡驅(qū)動,也可以自行去掉這一部分運(yùn)行,可以試著修改學(xué)習(xí)

代碼片段和文件信息
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?frmLogin?:?Form
????{
????????public?frmLogin()
????????{
????????????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();
????????????????????frmMain?frmmain?=?new?frmMain();
????????????????????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;
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????637952??2007-12-24?09:43??01\readme.doc
????..A..H.?????78336??2015-11-26?10:17??01\VWMS\.vs\VWMS\v14\.suo
?????文件????????163??2015-11-26?09:48??01\VWMS\VWMS\app.config
?????文件??????53248??2007-12-01?16:30??01\VWMS\VWMS\bin\Debug\AxInterop.MediaPla
?????文件??????61440??2010-08-11?08:58??01\VWMS\VWMS\bin\Debug\AxInterop.WMPLib.dll
?????文件??????86016??2007-12-10?09:05??01\VWMS\VWMS\bin\Debug\Interop.MediaPla
?????文件?????330752??2015-11-26?09:48??01\VWMS\VWMS\bin\Debug\Interop.WMPLib.dll
?????文件????3944448??2015-11-26?10:10??01\VWMS\VWMS\bin\Debug\VWMS.exe
?????文件????????163??2015-11-26?09:48??01\VWMS\VWMS\bin\Debug\VWMS.exe.config
?????文件??????75264??2015-11-26?10:10??01\VWMS\VWMS\bin\Debug\VWMS.pdb
?????文件??????14328??2010-08-11?09:01??01\VWMS\VWMS\bin\Debug\VWMS.vshost.exe
?????文件????????490??2009-06-11?05:14??01\VWMS\VWMS\bin\Debug\VWMS.vshost.exe.manifest
?????文件??????20480??2007-12-02?16:06??01\VWMS\VWMS\bin\Debug\系統(tǒng)注冊機(jī).exe
?????文件????????704??2007-11-21?09:19??01\VWMS\VWMS\CommonClass\DataCon.cs
?????文件????????909??2007-11-21?09:18??01\VWMS\VWMS\CommonClass\DataOperate.cs
?????文件???????5505??2007-12-10?10:35??01\VWMS\VWMS\CommonClass\PelcoD.cs
?????文件???????3536??2007-12-04?17:00??01\VWMS\VWMS\CommonClass\SoftReg.cs
?????文件???????8483??2007-12-04?10:27??01\VWMS\VWMS\CommonClass\VideoOperate.cs
?????文件?????196608??2015-11-26?09:40??01\VWMS\VWMS\Databa
?????文件???????1976??2015-11-26?09:54??01\VWMS\VWMS\frmLogin.cs
?????文件???????5294??2015-11-26?09:54??01\VWMS\VWMS\frmLogin.Designer.cs
?????文件?????279092??2015-11-26?09:54??01\VWMS\VWMS\frmLogin.resx
?????文件??????16513??2015-11-26?10:10??01\VWMS\VWMS\frmMain.cs
?????文件??????25346??2015-11-26?09:54??01\VWMS\VWMS\frmMain.Designer.cs
?????文件????5008326??2015-11-26?09:58??01\VWMS\VWMS\frmMain.resx
?????文件???????1035??2007-12-24?09:33??01\VWMS\VWMS\frmPlay.cs
?????文件???????4523??2007-12-24?09:33??01\VWMS\VWMS\frmPlay.Designer.cs
?????文件??????12463??2007-12-14?14:22??01\VWMS\VWMS\frmPlay.resx
?????文件???????1568??2007-12-10?18:16??01\VWMS\VWMS\frmRegister.cs
?????文件???????4272??2007-12-10?18:16??01\VWMS\VWMS\frmRegister.Designer.cs
............此處省略95個文件信息
評論
共有 條評論