收藏 分销(赏)

RFID图书标准管理系统程序源代码.docx

上传人:快乐****生活 文档编号:3024783 上传时间:2024-06-13 格式:DOCX 页数:99 大小:53.82KB
下载 相关 举报
RFID图书标准管理系统程序源代码.docx_第1页
第1页 / 共99页
RFID图书标准管理系统程序源代码.docx_第2页
第2页 / 共99页
RFID图书标准管理系统程序源代码.docx_第3页
第3页 / 共99页
RFID图书标准管理系统程序源代码.docx_第4页
第4页 / 共99页
RFID图书标准管理系统程序源代码.docx_第5页
第5页 / 共99页
点击查看更多>>
资源描述

1、登陆界面using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace Labrary public partial class FormLogin : Form public FormLogin() InitializeComponent(); / / 验证控?件t / / private bool ValidControl

2、() if (this.tbID.Text = ) MessageBox.Show(请填写用户名!?); this.tbID.Focus(); return false; if (this.tbID.Text != admin) if (!UserManage.ObjUser.IsHasID(All.dbo, this.tbID.Text) MessageBox.Show(不存在此用户!?); this.tbID.Text = ; this.tbID.Focus(); return false; if (this.tbID.Text != admin) UserManage.ObjUser u

3、ser= new UserManage.ObjUser(this.tbID.Text, All.dbo); if (user.PWD != this.tbPWD.Text) MessageBox.Show(密码错误!?); this.tbPWD.Text = ; this.tbPWD.Focus(); return false; else if (this.tbPWD.Text != 123456) MessageBox.Show(密码错误! ); this.tbPWD.Text = ; this.tbPWD.Focus(); return false; return true; privat

4、e void gbtnCancel_Click(object sender, EventArgs e) this.Close(); private void gbtnOK_Click(object sender, EventArgs e) /如?果?验证控?件t通过y if (ValidControl() if (this.tbID.Text != admin) All.userLogin = new UserManage.ObjUser(this.tbID.Text, All.dbo); else All.userLogin = new UserManage.ObjUser(All.dbo)

5、; All.userLogin.ID = admin; All.userLogin.Name = 管理员; this.DialogResult = DialogResult.OK; this.Close(); 主界面using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace Labrary public partial c

6、lass FormMain : Form public const int WM_USER = 0x0400; public const int WM_GETBUFFER_LOOP = WM_USER + 2; private RFID_dll.Reader rdr; private RFID_dll.RFID rfid; List rfids = new List(); int directionFlag = 0;/1进;出? FormInAndOut fiao = new FormInAndOut(); public FormMain() InitializeComponent(); th

7、is.rdr = new RFID_dll.Reader(); /this.rfid = new RFID_dll.RFID(rdr); private void FormMain_Load(object sender, EventArgs e) Init(); / / 初始化 / private void Init() fiao.StartPosition = FormStartPosition.Manual; /多窗体在不一样时间显示 Screen screens = Screen.AllScreens; if (screens.Length = 2) List listScreen =

8、new List(); foreach (Screen screen in Screen.AllScreens) if (screen.Primary = false) listScreen.Add(screen); fiao.Location = listScreen0.WorkingArea.Location; SetMenJin(PicIn); fiao.Show(); /toolStripStatusLabel2显示登陆用户名? toolStripStatusLabel2.Text = All.userLogin.Name; this.panel1.BackgroundImage =

9、null; /菜单栏全部显示? this.用?户管理ToolStripMenuItem.Visible = true; this.系统3初?始?化CToolStripMenuItem.Visible = true; this.应|用?模式?ToolStripMenuItem.Visible = true; this.图?书管理ToolStripMenuItem.Visible = true; this.退?办卡ToolStripMenuItem.Visible = true; this.借阅?ToolStripMenuItem.Visible = true; this.门?禁?ToolStri

10、pMenuItem.Visible = true; SetPurview(); this.toolStrip1.Visible = false; this.toolStrip2.Visible = false; this.toolStrip3.Visible = false; /rfid.OpenSerial(); /是?否?找到?门?禁?设备? /if (rfid.ChangeWorkModel(2) / / rfid.StartInventory(this.Handle.ToInt32(),2); / / / 权限设置 / private void SetPurview() if (All

11、.userLogin.ID = admin) this.应|用?模式?ToolStripMenuItem.Visible = false; else this.用户管理ToolStripMenuItem.Visible = false; this.系统初始化CToolStripMenuItem.Visible = false; this.读书管理ToolStripMenuItem.Visible = false; this.退办卡ToolStripMenuItem.Visible = false; this.借阅ToolStripMenuItem.Visible = false; this.门

12、禁?ToolStripMenuItem.Visible = false; for (int i = 0; i All.userLogin.Purview.Count; i+) string purview = All.userLogin.Purviewi; if (purview = 1) this.图书管理ToolStripMenuItem.Visible = true; else if (purview = 2) this.办退卡ToolStripMenuItem.Visible = true; else if (purview = 3) this.借阅?ToolStripMenuItem

13、.Visible = true; else if (purview = 4) this.门禁ToolStripMenuItem.Visible = true; private void 用户管理ToolStripMenuItem_Click(object sender, EventArgs e) UserManage.FormUserList ful = new UserManage.FormUserList(All.conn); ful.ShowDialog(); private void 修改密码?ToolStripMenuItem_Click(object sender, EventAr

14、gs e) UserManage.FormUserPwd fup = new UserManage.FormUserPwd(All.conn, All.userLogin); fup.ShowDialog(); private void tsbtnBookType_Click(object sender, EventArgs e) FormBookTypeList fbtl = new FormBookTypeList(); fbtl.ShowDialog(); private void tsbtnBookAdd_Click(object sender, EventArgs e) FormBo

15、okAdd fba = new FormBookAdd(); fba.ShowDialog(); private void tsbtnBookManage_Click(object sender, EventArgs e) FormBookInfoList fbil = new FormBookInfoList(); fbil.ShowDialog(); private void tsbtnBookStatistics_Click(object sender, EventArgs e) FormBookStatistics fbs = new FormBookStatistics(); fbs

16、.ShowDialog(); private void 退?出?XToolStripMenuItem_Click(object sender, EventArgs e) this.Close(); private void tsbtnCardAdd_Click(object sender, EventArgs e) FormCardInfo fci = new FormCardInfo(1, new ObjCardInfo(); fci.ShowDialog(); private void tsbtnCardManage_Click(object sender, EventArgs e) Fo

17、rmCardList fcl = new FormCardList(); fcl.ShowDialog(); private void tsbtnAddTime_Click(object sender, EventArgs e) string rfid = RfidOperate.GetCard(); if (rfid = ) MessageBox.Show(请把借阅卡放到桌面读写器上!); else if (ObjCardInfo.IsHas(rfid) ObjCardInfo oci = new ObjCardInfo(rfid); FormCardInfo fci = new FormC

18、ardInfo(5, oci); fci.ShowDialog(); else MessageBox.Show(没有此借阅卡信息); private void tsbtnCardDelete_Click(object sender, EventArgs e) string rfid = RfidOperate.GetCard(); if (rfid = ) MessageBox.Show(请把借阅卡到读写器上?); else if (ObjCardInfo.IsHas(rfid) ObjCardInfo oci = new ObjCardInfo(rfid); int count = oci.

19、NotReturnCount(); if (count = 0) if (MessageBox.Show(是否决定退卡!?, , MessageBoxButtons.YesNo) = DialogResult.Yes) oci.Delete(); MessageBox.Show(退卡成功|!?); else MessageBox.Show(oci.Name + 还有一本 + count.ToString() + 本书未归还不能退卡?); else MessageBox.Show(没有此借阅信息?); private void tsbtnJie_Click(object sender, Even

20、tArgs e) FormBookJie fbj = new FormBookJie(1); fbj.ShowDialog(); private void tsbtnHuan_Click(object sender, EventArgs e) FormBookHuan fbh = new FormBookHuan(); fbh.ShowDialog(); private void 图?书管理ToolStripMenuItem_Click(object sender, EventArgs e) this.toolStrip1.Visible = true; this.toolStrip2.Vis

21、ible = false; this.toolStrip3.Visible = false; this.panel1.BackgroundImage = Image.FromFile(AppDomain.CurrentDomain.BaseDirectory + pic1.jpg); private void 退?办卡ToolStripMenuItem_Click(object sender, EventArgs e) this.toolStrip1.Visible = false; this.toolStrip2.Visible = true; this.toolStrip3.Visible

22、 = false; this.panel1.BackgroundImage = Image.FromFile(AppDomain.CurrentDomain.BaseDirectory + pic2.jpg); private void 借阅?ToolStripMenuItem_Click(object sender, EventArgs e) this.toolStrip1.Visible = false; this.toolStrip2.Visible = false; this.toolStrip3.Visible = true; this.panel1.BackgroundImage

23、= Image.FromFile(AppDomain.CurrentDomain.BaseDirectory + pic3.jpg); private void 门?禁?ToolStripMenuItem_Click(object sender, EventArgs e) /MenJinInit(); /this.toolStrip1.Visible = false; /this.toolStrip2.Visible = false; /this.toolStrip3.Visible = false; /this.panel1.BackgroundImage = null; /rfid.Ope

24、nSerial(); /是否找到门禁设备? /if (rfid.IsOpen) / / rfid.StartInventory(this.Handle.ToInt32(); / private void 注销ToolStripMenuItem_Click(object sender, EventArgs e) All.userLogin = null; FormLogin fl = new FormLogin(); if (fl.ShowDialog() != DialogResult.OK) this.Close(); else Init(); private void 帮助ToolStri

25、pMenuItem1_Click(object sender, EventArgs e) private void 系统初始化CToolStripMenuItem_Click(object sender, EventArgs e) if (MessageBox.Show(是否初始化数据库?, , MessageBoxButtons.YesNo) = DialogResult.Yes) All.dbo.excuteSql(delete from lendtable); All.dbo.excuteSql(delete from bookinfo); All.dbo.excuteSql(delet

26、e from booktype); All.dbo.excuteSql(delete from librarycard); All.dbo.excuteSql(delete from usertable); MessageBox.Show(初始化完成?); private void 相关ToolStripMenuItem_Click(object sender, EventArgs e) FormAbout fa = new FormAbout(); fa.ShowDialog(); protected override void DefWndProc(ref System.Windows.F

27、orms.Message m) if (m.Msg = WM_GETBUFFER_LOOP) /开启 if (this.timer1.Tag.ToString() = 0) this.timer1.Start(); this.timer1.Tag = 1; string uid = ; string direction = ; bool personWithMultCard = false; rdr.GetLoopGetBufferData(m, ref uid, ref direction, ref personWithMultCard); if (uid != 0000) /进 if (d

28、irection = In) this.directionFlag = 1; this.rfids.Add(uid); /出 if (direction = Out) this.directionFlag = 2; this.rfids.Add(uid); if (uid = FFFFFFFFFFFFFFFF) base.DefWndProc(ref m); private void timer1_Tick(object sender, EventArgs e) if (this.directionFlag = 1) for (int i = 0; i this.rfids.Count; i+) if (ObjCardInfo.IsHas(this.rfidsi)

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服