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

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

?? addnewcard.cs

?? 圖書(shū)館信息管理系統(tǒng) Library Information Management System
?? CS
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/***********************************
 * 
 * 讀者辦理證件
 * 由于此處插入數(shù)據(jù)關(guān)系到多個(gè)表,為了保證數(shù)據(jù)一致性,故采用事務(wù)進(jìn)行數(shù)據(jù)操作
 * 其中證件狀態(tài)利用整形標(biāo)記表示;0表示正常,1表示掛失狀態(tài)
 * 
 * *********************************/
using System;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace Library
{
	/// <summary>
	/// AddNewCard 的摘要說(shuō)明。
	/// </summary>
	public class AddNewCard : System.Windows.Forms.Form
	{
		#region 窗體控件變量
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Button btnAddNewCard;
		private System.Windows.Forms.Button btnCancel;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.TextBox textBox2;
		private System.Windows.Forms.RadioButton radioButton1;
		private System.Windows.Forms.RadioButton radioButton2;
		private System.Windows.Forms.ComboBox comboBox1;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.TextBox textBox3;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label13;
		private System.Windows.Forms.Label label14;
		private System.Windows.Forms.TextBox textBox5;
		private System.Windows.Forms.TextBox textBox6;
		private System.Windows.Forms.TextBox textBox7;
		private System.Windows.Forms.TextBox textBox8;
		private System.Windows.Forms.Label label15;
		private System.Windows.Forms.TextBox textBox4;
		private System.Windows.Forms.Label label16;
		private System.Windows.Forms.ComboBox comboBox2;
		private System.Windows.Forms.DateTimePicker dateTimePicker1;
		private System.Windows.Forms.DateTimePicker dateTimePicker2;
		/// <summary>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;
		#endregion

		private SqlCommand cmd ;
		private SqlDataReader dr ;

		private string ReaderID;

		public AddNewCard()
		{
			//
			// Windows 窗體設(shè)計(jì)器支持所必需的
			//
			InitializeComponent();

			cmd = Global.conn.CreateCommand();
			initializeScreen();
		}

		public AddNewCard(string readerID)
		{
			InitializeComponent();

			cmd = Global.conn.CreateCommand();
			initializeScreen();

			if(readerID!=null && readerID!=string.Empty)
			{
				ReaderID = readerID;
			}
		}

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

		#region Windows 窗體設(shè)計(jì)器生成的代碼
		/// <summary>
		/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.comboBox2 = new System.Windows.Forms.ComboBox();
			this.label16 = new System.Windows.Forms.Label();
			this.textBox4 = new System.Windows.Forms.TextBox();
			this.label15 = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label13 = new System.Windows.Forms.Label();
			this.textBox7 = new System.Windows.Forms.TextBox();
			this.label11 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.textBox5 = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.comboBox1 = new System.Windows.Forms.ComboBox();
			this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
			this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
			this.radioButton2 = new System.Windows.Forms.RadioButton();
			this.radioButton1 = new System.Windows.Forms.RadioButton();
			this.textBox6 = new System.Windows.Forms.TextBox();
			this.textBox3 = new System.Windows.Forms.TextBox();
			this.textBox2 = new System.Windows.Forms.TextBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.label9 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.textBox8 = new System.Windows.Forms.TextBox();
			this.label12 = new System.Windows.Forms.Label();
			this.btnAddNewCard = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.groupBox1.SuspendLayout();
			this.SuspendLayout();
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.comboBox2);
			this.groupBox1.Controls.Add(this.label16);
			this.groupBox1.Controls.Add(this.textBox4);
			this.groupBox1.Controls.Add(this.label15);
			this.groupBox1.Controls.Add(this.label14);
			this.groupBox1.Controls.Add(this.label13);
			this.groupBox1.Controls.Add(this.textBox7);
			this.groupBox1.Controls.Add(this.label11);
			this.groupBox1.Controls.Add(this.label10);
			this.groupBox1.Controls.Add(this.textBox5);
			this.groupBox1.Controls.Add(this.label6);
			this.groupBox1.Controls.Add(this.comboBox1);
			this.groupBox1.Controls.Add(this.dateTimePicker1);
			this.groupBox1.Controls.Add(this.dateTimePicker2);
			this.groupBox1.Controls.Add(this.radioButton2);
			this.groupBox1.Controls.Add(this.radioButton1);
			this.groupBox1.Controls.Add(this.textBox6);
			this.groupBox1.Controls.Add(this.textBox3);
			this.groupBox1.Controls.Add(this.textBox2);
			this.groupBox1.Controls.Add(this.textBox1);
			this.groupBox1.Controls.Add(this.label9);
			this.groupBox1.Controls.Add(this.label8);
			this.groupBox1.Controls.Add(this.label7);
			this.groupBox1.Controls.Add(this.label5);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.label3);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.textBox8);
			this.groupBox1.Controls.Add(this.label12);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox1.Location = new System.Drawing.Point(8, 8);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(440, 344);
			this.groupBox1.TabIndex = 0;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "讀者信息";
			// 
			// comboBox2
			// 
			this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBox2.Location = new System.Drawing.Point(88, 207);
			this.comboBox2.Name = "comboBox2";
			this.comboBox2.Size = new System.Drawing.Size(112, 20);
			this.comboBox2.TabIndex = 9;
			this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
			// 
			// label16
			// 
			this.label16.AutoSize = true;
			this.label16.Location = new System.Drawing.Point(256, 164);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(29, 17);
			this.label16.TabIndex = 31;
			this.label16.Text = "部門";
			// 
			// textBox4
			// 
			this.textBox4.Location = new System.Drawing.Point(88, 162);
			this.textBox4.Name = "textBox4";
			this.textBox4.Size = new System.Drawing.Size(152, 21);
			this.textBox4.TabIndex = 7;
			this.textBox4.Text = "";
			// 
			// label15
			// 
			this.label15.AutoSize = true;
			this.label15.Location = new System.Drawing.Point(24, 164);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(54, 17);
			this.label15.TabIndex = 29;
			this.label15.Text = "身份證號(hào)";
			// 
			// label14
			// 
			this.label14.AutoSize = true;
			this.label14.Location = new System.Drawing.Point(392, 254);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(35, 17);
			this.label14.TabIndex = 28;
			this.label14.Text = "元/天";
			// 
			// label13
			// 
			this.label13.AutoSize = true;
			this.label13.Location = new System.Drawing.Point(176, 254);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(17, 17);
			this.label13.TabIndex = 27;
			this.label13.Text = "冊(cè)";
			// 
			// textBox7
			// 
			this.textBox7.BackColor = System.Drawing.Color.White;
			this.textBox7.Location = new System.Drawing.Point(304, 252);
			this.textBox7.Name = "textBox7";
			this.textBox7.ReadOnly = true;
			this.textBox7.Size = new System.Drawing.Size(80, 21);
			this.textBox7.TabIndex = 14;
			this.textBox7.Text = "";
			this.textBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// label11
			// 
			this.label11.AutoSize = true;
			this.label11.Location = new System.Drawing.Point(239, 254);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(54, 17);
			this.label11.TabIndex = 26;
			this.label11.Text = "超期罰款";
			// 
			// label10
			// 
			this.label10.AutoSize = true;
			this.label10.Location = new System.Drawing.Point(392, 209);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(17, 17);
			this.label10.TabIndex = 24;
			this.label10.Text = "天";
			// 
			// textBox5
			// 
			this.textBox5.BackColor = System.Drawing.Color.White;
			this.textBox5.Location = new System.Drawing.Point(304, 207);
			this.textBox5.Name = "textBox5";
			this.textBox5.ReadOnly = true;
			this.textBox5.Size = new System.Drawing.Size(80, 21);
			this.textBox5.TabIndex = 12;
			this.textBox5.Text = "";
			this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(251, 209);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(42, 17);
			this.label6.TabIndex = 23;
			this.label6.Text = "可借閱";
			// 
			// comboBox1
			// 
			this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBox1.Location = new System.Drawing.Point(304, 162);
			this.comboBox1.Name = "comboBox1";
			this.comboBox1.Size = new System.Drawing.Size(112, 20);
			this.comboBox1.TabIndex = 8;
			// 
			// dateTimePicker1
			// 
			this.dateTimePicker1.Location = new System.Drawing.Point(304, 72);
			this.dateTimePicker1.Name = "dateTimePicker1";
			this.dateTimePicker1.ShowUpDown = true;
			this.dateTimePicker1.Size = new System.Drawing.Size(112, 21);
			this.dateTimePicker1.TabIndex = 4;
			// 
			// dateTimePicker2
			// 
			this.dateTimePicker2.Location = new System.Drawing.Point(88, 117);
			this.dateTimePicker2.Name = "dateTimePicker2";
			this.dateTimePicker2.ShowUpDown = true;
			this.dateTimePicker2.Size = new System.Drawing.Size(112, 21);
			this.dateTimePicker2.TabIndex = 5;
			// 
			// radioButton2
			// 
			this.radioButton2.Location = new System.Drawing.Point(144, 70);
			this.radioButton2.Name = "radioButton2";
			this.radioButton2.Size = new System.Drawing.Size(40, 24);
			this.radioButton2.TabIndex = 3;
			this.radioButton2.Text = "女";
			// 
			// radioButton1
			// 
			this.radioButton1.Location = new System.Drawing.Point(88, 70);
			this.radioButton1.Name = "radioButton1";
			this.radioButton1.Size = new System.Drawing.Size(40, 24);
			this.radioButton1.TabIndex = 2;
			this.radioButton1.Text = "男";
			// 
			// textBox6
			// 
			this.textBox6.BackColor = System.Drawing.Color.White;
			this.textBox6.Location = new System.Drawing.Point(88, 252);
			this.textBox6.Name = "textBox6";
			this.textBox6.ReadOnly = true;
			this.textBox6.Size = new System.Drawing.Size(80, 21);
			this.textBox6.TabIndex = 13;
			this.textBox6.Text = "";
			this.textBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// textBox3
			// 
			this.textBox3.Location = new System.Drawing.Point(304, 117);
			this.textBox3.Name = "textBox3";
			this.textBox3.Size = new System.Drawing.Size(112, 21);
			this.textBox3.TabIndex = 6;
			this.textBox3.Text = "";
			// 
			// textBox2
			// 
			this.textBox2.Location = new System.Drawing.Point(304, 27);
			this.textBox2.Name = "textBox2";
			this.textBox2.Size = new System.Drawing.Size(112, 21);
			this.textBox2.TabIndex = 1;
			this.textBox2.Text = "";
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(88, 27);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(152, 21);
			this.textBox1.TabIndex = 0;
			this.textBox1.Text = "";
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(24, 254);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(42, 17);
			this.label9.TabIndex = 10;
			this.label9.Text = "可借閱";
			// 
			// label8
			// 
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(239, 74);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区精品在线| 精品影视av免费| www国产精品av| 色婷婷av久久久久久久| 韩国欧美国产一区| 亚洲一区在线视频观看| 国产精品网友自拍| 欧美一级生活片| 在线观看网站黄不卡| 国产成人精品影院| 青青青爽久久午夜综合久久午夜| 亚洲欧美在线观看| 久久综合久久综合九色| 欧美精品tushy高清| 色域天天综合网| www.激情成人| 国产福利一区在线| 久久不见久久见免费视频7 | 国产欧美日本一区视频| 91精品欧美综合在线观看最新| 色偷偷成人一区二区三区91 | 国产91精品免费| 久久国产乱子精品免费女| 亚洲国产日韩一级| 亚洲少妇中出一区| 国产精品拍天天在线| 久久综合中文字幕| 精品1区2区在线观看| 日韩精品资源二区在线| 日韩一区二区三区三四区视频在线观看| 91福利在线播放| 色综合激情五月| 色哦色哦哦色天天综合| 91日韩在线专区| 93久久精品日日躁夜夜躁欧美| 国产91丝袜在线播放0| 国产成人免费高清| 成人午夜私人影院| 成人一级黄色片| 国产aⅴ精品一区二区三区色成熟| 久久不见久久见免费视频7| 久久69国产一区二区蜜臀| 久久精品国产亚洲一区二区三区| 奇米色一区二区三区四区| 日韩av一区二| 黄色小说综合网站| 国产综合色视频| 国产精品伊人色| 成人黄色软件下载| 不卡视频免费播放| 一本大道av一区二区在线播放| 色屁屁一区二区| 欧美精品 国产精品| 日韩一区二区电影在线| 精品久久久久久亚洲综合网 | 午夜精彩视频在线观看不卡| 亚欧色一区w666天堂| 日本成人在线电影网| 久久99久久久久| 国产精品18久久久久久久久| 波多野结衣的一区二区三区| 色婷婷av一区| 日韩欧美国产电影| 久久久精品一品道一区| 中文字幕一区二区三中文字幕| 一区二区久久久| 日韩精品一区第一页| 久久99国内精品| 成人美女视频在线看| 在线观看成人小视频| 91麻豆精品国产91久久久久久 | 久久精品男人的天堂| 18欧美亚洲精品| 亚洲123区在线观看| 国产美女精品在线| 99热99精品| 日韩网站在线看片你懂的| 国产精品视频观看| 久久免费午夜影院| 欧美一区二区三区免费观看视频| 亚洲精品一区二区三区福利| 国产成人午夜高潮毛片| 91在线国内视频| 欧美三级日韩三级| 精品久久久久久综合日本欧美| 亚洲图片你懂的| 奇米影视一区二区三区| 不卡欧美aaaaa| 日韩你懂的在线观看| 亚洲视频每日更新| 国产麻豆视频一区| 欧美视频一区二区在线观看| 国产清纯在线一区二区www| 亚洲国产色一区| 成人免费观看av| 日韩三级免费观看| 一区二区在线观看免费视频播放| 久久电影网电视剧免费观看| 色菇凉天天综合网| 国产香蕉久久精品综合网| 亚洲大片一区二区三区| 成人av片在线观看| 日韩欧美卡一卡二| 亚洲一区二区视频| 国产成人av电影在线播放| 7777精品伊人久久久大香线蕉完整版| 中文字幕高清不卡| 日本视频一区二区| 在线精品视频免费播放| 中文一区二区在线观看| 国内精品写真在线观看| 欧美精品乱码久久久久久按摩| 亚洲色图丝袜美腿| 丁香另类激情小说| 久久免费视频一区| 毛片一区二区三区| 欧美精选一区二区| 亚洲第一搞黄网站| 色噜噜狠狠一区二区三区果冻| 亚洲国产精品黑人久久久| 久久国产精品第一页| 制服丝袜一区二区三区| 亚洲国产另类av| 欧美性猛交xxxxxx富婆| 亚洲精品欧美激情| 91亚洲精华国产精华精华液| 国产午夜精品在线观看| 国产一区二区精品久久91| 欧美大片一区二区| 久久福利资源站| 日韩欧美色电影| 精品系列免费在线观看| 欧美va日韩va| 激情图区综合网| 久久一日本道色综合| 国产在线视频一区二区三区| 精品粉嫩超白一线天av| 黄一区二区三区| 国产农村妇女精品| 成人高清伦理免费影院在线观看| 国产精品天美传媒沈樵| 成人激情动漫在线观看| 亚洲欧美日韩中文播放| 在线亚洲一区二区| 香蕉影视欧美成人| 7777精品伊人久久久大香线蕉超级流畅 | 337p日本欧洲亚洲大胆精品| 黄一区二区三区| 欧美极品另类videosde| av电影在线观看一区| 日韩毛片视频在线看| 欧洲精品在线观看| 亚洲成av人在线观看| 日韩欧美国产一区二区三区| 国产二区国产一区在线观看| 国产精品剧情在线亚洲| 日本高清免费不卡视频| 图片区小说区国产精品视频| 日韩欧美一级二级三级久久久| 国产呦萝稀缺另类资源| 国产精品美女久久久久久久久| 色综合久久天天| 性做久久久久久久久| 久久久亚洲国产美女国产盗摄| 成人国产在线观看| 亚洲欧美偷拍三级| 欧美一二三区精品| 国产一区二区三区| 亚洲精品五月天| 91精品午夜视频| 成人午夜大片免费观看| 一区二区欧美视频| 精品成a人在线观看| 91在线一区二区| 卡一卡二国产精品| 国产精品久久久久影院老司| 欧美日韩一区二区三区四区| 久久精品国产亚洲高清剧情介绍| 中文字幕免费观看一区| 欧美美女bb生活片| 国产成人在线视频网站| 亚洲图片欧美视频| 欧美大胆人体bbbb| 在线观看亚洲精品| 国产精品88av| 性做久久久久久久免费看| 中文字幕乱码亚洲精品一区| 欧美日韩在线直播| 粉嫩在线一区二区三区视频| 亚洲一区二区三区中文字幕| 国产欧美日韩在线观看| 欧美老肥妇做.爰bbww| 夫妻av一区二区| 久久疯狂做爰流白浆xx| 亚洲一区二区在线观看视频| 国产精品色哟哟网站| 欧美成va人片在线观看| 欧美优质美女网站| 国产a视频精品免费观看| 免费观看成人av|