亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? bookborrow.cs

?? 圖書館管理系統(tǒng)采用C#和SQL Server 數(shù)據(jù)庫編寫 適合小型圖書館的管理
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace 圖書館管理系統(tǒng)
{
	/// <summary>
	/// BookBorrow 的摘要說明。
	/// </summary>
	public class BookBorrow : System.Windows.Forms.Form
	{
		private int totalCount,thisCount;//儲存已借書和本次借書數(shù)據(jù)
		private DataTable tblBooks;
		private string readerID;//保存查詢到的讀者編號
		private System.Windows.Forms.ImageList imageList1;
		private System.Windows.Forms.ToolBar toolBar1;
		private System.Windows.Forms.ToolBarButton tBtnSubmit;
		private System.Windows.Forms.ToolBarButton tBtnCancel;
		private System.Windows.Forms.ToolBarButton tBtnQuit;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.DataGrid dataGrid1;
		private System.Windows.Forms.RadioButton rbt1;
		private System.Windows.Forms.RadioButton rbt2;
		private System.Windows.Forms.RadioButton rbt4;
		private System.Windows.Forms.RadioButton rbt3;
		private System.Windows.Forms.TextBox txt1;
		private System.Windows.Forms.TextBox txt2;
		private System.Windows.Forms.TextBox txt3;
		private System.Windows.Forms.TextBox txt4;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.TextBox txt5;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
	
		private System.ComponentModel.IContainer components;

		public BookBorrow()
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(BookBorrow));
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.toolBar1 = new System.Windows.Forms.ToolBar();
			this.tBtnSubmit = new System.Windows.Forms.ToolBarButton();
			this.tBtnCancel = new System.Windows.Forms.ToolBarButton();
			this.tBtnQuit = new System.Windows.Forms.ToolBarButton();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.label3 = new System.Windows.Forms.Label();
			this.txt1 = new System.Windows.Forms.TextBox();
			this.rbt1 = new System.Windows.Forms.RadioButton();
			this.rbt2 = new System.Windows.Forms.RadioButton();
			this.txt2 = new System.Windows.Forms.TextBox();
			this.txt3 = new System.Windows.Forms.TextBox();
			this.txt4 = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.rbt4 = new System.Windows.Forms.RadioButton();
			this.rbt3 = new System.Windows.Forms.RadioButton();
			this.txt5 = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.SuspendLayout();
			// 
			// imageList1
			// 
			this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.SystemColors.ControlLightLight;
			// 
			// toolBar1
			// 
			this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
																						this.tBtnSubmit,
																						this.tBtnCancel,
																						this.tBtnQuit});
			this.toolBar1.DropDownArrows = true;
			this.toolBar1.ImageList = this.imageList1;
			this.toolBar1.Location = new System.Drawing.Point(0, 0);
			this.toolBar1.Name = "toolBar1";
			this.toolBar1.ShowToolTips = true;
			this.toolBar1.Size = new System.Drawing.Size(672, 41);
			this.toolBar1.TabIndex = 34;
			this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
			// 
			// tBtnSubmit
			// 
			this.tBtnSubmit.ImageIndex = 7;
			this.tBtnSubmit.Text = "確定借書";
			this.tBtnSubmit.ToolTipText = "確定借書";
			// 
			// tBtnCancel
			// 
			this.tBtnCancel.ImageIndex = 8;
			this.tBtnCancel.Text = "取消借書";
			this.tBtnCancel.ToolTipText = "取消借書";
			// 
			// tBtnQuit
			// 
			this.tBtnQuit.ImageIndex = 9;
			this.tBtnQuit.Text = "退出";
			this.tBtnQuit.ToolTipText = "退出";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.label3);
			this.groupBox1.Controls.Add(this.txt1);
			this.groupBox1.Controls.Add(this.rbt1);
			this.groupBox1.Controls.Add(this.rbt2);
			this.groupBox1.Controls.Add(this.txt2);
			this.groupBox1.Controls.Add(this.txt3);
			this.groupBox1.Controls.Add(this.txt4);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.label5);
			this.groupBox1.Controls.Add(this.label6);
			this.groupBox1.Location = new System.Drawing.Point(0, 40);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(672, 72);
			this.groupBox1.TabIndex = 35;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "讀者信息";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(112, 24);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(100, 16);
			this.label3.TabIndex = 2;
			this.label3.Text = "輸入后請回車";
			// 
			// txt1
			// 
			this.txt1.Location = new System.Drawing.Point(112, 40);
			this.txt1.Name = "txt1";
			this.txt1.Size = new System.Drawing.Size(136, 21);
			this.txt1.TabIndex = 1;
			this.txt1.Text = "";
			this.txt1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt1_KeyPress);
			// 
			// rbt1
			// 
			this.rbt1.Checked = true;
			this.rbt1.Location = new System.Drawing.Point(24, 16);
			this.rbt1.Name = "rbt1";
			this.rbt1.Size = new System.Drawing.Size(64, 24);
			this.rbt1.TabIndex = 0;
			this.rbt1.TabStop = true;
			this.rbt1.Text = "編號";
			// 
			// rbt2
			// 
			this.rbt2.Location = new System.Drawing.Point(24, 44);
			this.rbt2.Name = "rbt2";
			this.rbt2.Size = new System.Drawing.Size(64, 24);
			this.rbt2.TabIndex = 0;
			this.rbt2.Text = "條形碼";
			// 
			// txt2
			// 
			this.txt2.Location = new System.Drawing.Point(280, 40);
			this.txt2.Name = "txt2";
			this.txt2.ReadOnly = true;
			this.txt2.TabIndex = 1;
			this.txt2.Text = "";
			// 
			// txt3
			// 
			this.txt3.Location = new System.Drawing.Point(408, 40);
			this.txt3.Name = "txt3";
			this.txt3.ReadOnly = true;
			this.txt3.TabIndex = 1;
			this.txt3.Text = "";
			// 
			// txt4
			// 
			this.txt4.Location = new System.Drawing.Point(536, 40);
			this.txt4.Name = "txt4";
			this.txt4.ReadOnly = true;
			this.txt4.TabIndex = 1;
			this.txt4.Text = "";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(280, 24);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(100, 16);
			this.label4.TabIndex = 2;
			this.label4.Text = "姓名";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(408, 24);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(100, 16);
			this.label5.TabIndex = 2;
			this.label5.Text = "類型";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(536, 24);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(100, 16);
			this.label6.TabIndex = 2;
			this.label6.Text = "可借冊";
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.rbt4);
			this.groupBox2.Controls.Add(this.rbt3);
			this.groupBox2.Controls.Add(this.txt5);
			this.groupBox2.Controls.Add(this.label7);
			this.groupBox2.Enabled = false;
			this.groupBox2.Location = new System.Drawing.Point(0, 112);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(672, 72);
			this.groupBox2.TabIndex = 35;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "借閱圖書信息";
			// 
			// rbt4
			// 
			this.rbt4.Location = new System.Drawing.Point(96, 32);
			this.rbt4.Name = "rbt4";
			this.rbt4.Size = new System.Drawing.Size(72, 24);
			this.rbt4.TabIndex = 0;
			this.rbt4.Text = "條形碼";
			// 
			// rbt3
			// 
			this.rbt3.Checked = true;
			this.rbt3.Location = new System.Drawing.Point(24, 32);
			this.rbt3.Name = "rbt3";
			this.rbt3.Size = new System.Drawing.Size(56, 24);
			this.rbt3.TabIndex = 0;
			this.rbt3.TabStop = true;
			this.rbt3.Text = "編號";
			// 
			// txt5
			// 
			this.txt5.Location = new System.Drawing.Point(264, 32);
			this.txt5.Name = "txt5";
			this.txt5.Size = new System.Drawing.Size(136, 21);
			this.txt5.TabIndex = 1;
			this.txt5.Text = "";
			this.txt5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt5_KeyPress);
			// 
			// label7

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久成人免费网站| 成人激情视频网站| 成人免费观看视频| 日韩免费在线观看| 亚洲一区二区三区三| 国产成人综合在线观看| 51精品国自产在线| 一区二区三区在线观看欧美 | 久久亚洲捆绑美女| 亚洲午夜一区二区| 91美女片黄在线观看91美女| 国产亚洲欧美中文| 国产在线观看一区二区| 日韩一二在线观看| 美女一区二区视频| 3d成人动漫网站| 性做久久久久久免费观看欧美| 99re这里只有精品视频首页| 国产精品色在线| 高清不卡一区二区| 国产欧美视频在线观看| 精品一区精品二区高清| 日韩免费观看2025年上映的电影 | 欧美视频一区二区三区在线观看 | 99久久精品国产导航| 国产欧美一区二区三区沐欲| 精品一区二区三区蜜桃| 久久综合久久综合九色| 韩国午夜理伦三级不卡影院| 欧美不卡一区二区三区四区| 久久国产精品99久久久久久老狼| 日韩视频国产视频| 精久久久久久久久久久| 精品国产91洋老外米糕| 国产一区二区精品久久99| 国产丝袜美腿一区二区三区| 懂色av中文一区二区三区 | 欧美一区二区三区在线| 蜜臀va亚洲va欧美va天堂| 337p粉嫩大胆噜噜噜噜噜91av| 国内久久精品视频| 国产精品区一区二区三区| 波多野结衣欧美| 亚洲欧美日韩一区二区| 欧美日本免费一区二区三区| 欧美一区二区视频在线观看2022| 亚洲欧美aⅴ...| 欧美日韩精品一区二区| 精品亚洲成a人| 中文字幕国产一区二区| 91福利在线播放| 美国毛片一区二区| 国产日本欧洲亚洲| 色噜噜狠狠成人中文综合| 亚洲va中文字幕| 久久久99精品久久| 欧美综合亚洲图片综合区| 美女网站色91| 亚洲日穴在线视频| 日韩你懂的电影在线观看| a在线欧美一区| 五月婷婷久久丁香| 国产欧美日韩亚州综合| 欧美最猛黑人xxxxx猛交| 久久电影网电视剧免费观看| 国产精品成人一区二区三区夜夜夜| 成人一级片在线观看| 婷婷国产在线综合| 国产精品无人区| 欧美一区二区三区免费在线看| 成人激情午夜影院| 轻轻草成人在线| 亚洲欧美色综合| 国产日韩av一区| 91精品国产91久久久久久最新毛片| 国产不卡视频在线播放| 三级成人在线视频| 中文字幕第一页久久| 8x福利精品第一导航| 99国产欧美另类久久久精品 | 一区二区三区在线免费| 日韩精品自拍偷拍| 欧美综合亚洲图片综合区| 国产精品 欧美精品| 日本亚洲一区二区| 一区二区三区在线影院| 久久久不卡影院| 欧美一级欧美三级在线观看| 欧美主播一区二区三区美女| 成人免费观看视频| 国产精品中文字幕日韩精品 | 国产精品538一区二区在线| 午夜国产不卡在线观看视频| 国产精品嫩草影院com| 日韩精品一区二区三区蜜臀| 欧美色精品天天在线观看视频| 成人动漫一区二区三区| 久久国产精品一区二区| 日韩国产精品久久久| 一区二区三区日韩精品视频| 国产精品视频第一区| 欧美不卡123| 欧美成人精品1314www| 欧美日韩视频不卡| 欧美日韩综合色| 色婷婷av一区二区三区软件| www.99精品| 成人av影院在线| 成人avav影音| eeuss鲁片一区二区三区在线观看| 狠狠色狠狠色综合| 国产一区在线精品| 国产乱码精品1区2区3区| 狠狠狠色丁香婷婷综合激情| 国产综合色精品一区二区三区| 麻豆精品国产传媒mv男同| 日本欧美加勒比视频| 久久精品国产第一区二区三区| 男人的天堂亚洲一区| 精品一二三四区| 国产成人亚洲精品狼色在线| 成人午夜激情片| 99久久久久久| 日本丶国产丶欧美色综合| 在线观看一区二区视频| 欧美男生操女生| 日韩视频一区二区三区| 久久蜜桃av一区精品变态类天堂 | 日韩精品色哟哟| 日韩电影一区二区三区| 久久99久国产精品黄毛片色诱| 国产一区二区毛片| 成人动漫精品一区二区| 欧洲精品一区二区| 日韩视频一区二区在线观看| 国产日韩欧美高清在线| 亚洲精品免费电影| 美国十次综合导航| 成人激情午夜影院| 欧美丝袜自拍制服另类| 日韩欧美一级在线播放| 欧美国产精品一区| 亚洲一区二区免费视频| 久久成人羞羞网站| 97久久精品人人爽人人爽蜜臀 | 免费一区二区视频| 丁香桃色午夜亚洲一区二区三区| 91啪九色porn原创视频在线观看| 欧美三级资源在线| 国产无遮挡一区二区三区毛片日本| 亚洲欧美日韩国产一区二区三区| 首页亚洲欧美制服丝腿| 国产精品77777竹菊影视小说| 欧美在线观看一区| 国产性色一区二区| 午夜精品123| 99re热视频这里只精品| 精品美女被调教视频大全网站| 自拍偷拍国产精品| 国产做a爰片久久毛片| 色哟哟一区二区| 中文字幕成人网| 日本aⅴ精品一区二区三区| 91麻豆国产福利精品| 久久九九久久九九| 免费在线观看一区| 在线日韩av片| 日韩一区中文字幕| 国精产品一区一区三区mba桃花| 欧美四级电影在线观看| 国产蜜臀av在线一区二区三区| 日韩电影免费一区| 欧美综合欧美视频| 中文字幕日本不卡| 国产伦精品一区二区三区视频青涩 | 欧美色区777第一页| 中文字幕亚洲在| 高清国产午夜精品久久久久久| 日韩一区二区三区在线| 亚洲 欧美综合在线网络| 91色综合久久久久婷婷| 欧美激情在线一区二区| 久久99国产精品免费网站| 欧美老人xxxx18| 一区二区三区高清| 91麻豆国产精品久久| 亚洲桃色在线一区| 成人av片在线观看| 欧美激情一区二区在线| 国产精品自拍毛片| 久久久不卡影院| 国产成人免费视频| 欧美韩国日本不卡| 国产成人亚洲综合色影视| 久久久精品中文字幕麻豆发布| 激情图片小说一区| 2019国产精品| 国产精品一二三四区| 久久综合成人精品亚洲另类欧美| 日本亚洲欧美天堂免费|