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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? addnewcard.cs

?? 圖書館信息管理系統 Library Information Management System
?? CS
?? 第 1 頁 / 共 2 頁
字號:
/***********************************
 * 
 * 讀者辦理證件
 * 由于此處插入數據關系到多個表,為了保證數據一致性,故采用事務進行數據操作
 * 其中證件狀態利用整形標記表示;0表示正常,1表示掛失狀態
 * 
 * *********************************/
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 的摘要說明。
	/// </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>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;
		#endregion

		private SqlCommand cmd ;
		private SqlDataReader dr ;

		private string ReaderID;

		public AddNewCard()
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			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 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </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 = "身份證號";
			// 
			// 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 = "冊";
			// 
			// 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);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美电影免费观看高清完整版在线| 亚洲成av人片在线观看| 亚洲永久免费av| 久久精品av麻豆的观看方式| 91视频观看视频| 精品免费视频.| 午夜精品久久久久久久久久| 91在线视频网址| 国产欧美日韩激情| 国产尤物一区二区| 日韩视频一区二区| 天天av天天翘天天综合网| www.日本不卡| 欧美激情在线观看视频免费| 毛片一区二区三区| 在线成人午夜影院| 亚洲一区二区三区视频在线播放| av亚洲精华国产精华精华| 久久综合av免费| 激情综合网av| 2021中文字幕一区亚洲| 久久国产夜色精品鲁鲁99| 欧美一区二区免费视频| 亚州成人在线电影| 欧美日本一区二区三区| 亚洲最新视频在线观看| 91久久一区二区| 亚洲色图一区二区| 色综合av在线| 亚洲成人免费av| 欧美日韩久久久一区| 同产精品九九九| 91麻豆精品国产91久久久更新时间| 亚洲3atv精品一区二区三区| 欧美吞精做爰啪啪高潮| 亚洲一区视频在线| 欧美日韩第一区日日骚| 亚洲美女屁股眼交3| 91亚洲国产成人精品一区二区三| 国产精品人妖ts系列视频 | 欧美一区日韩一区| 日韩电影免费一区| 精品日韩在线观看| 韩国成人福利片在线播放| 久久久激情视频| 99视频有精品| 亚洲成人中文在线| 日韩欧美一区二区在线视频| 精品一区二区免费在线观看| 久久久精品国产免大香伊| 成人免费电影视频| 亚洲成在人线在线播放| 精品对白一区国产伦| 成人中文字幕合集| 亚洲综合色视频| 日韩午夜av一区| 99免费精品在线| 日韩精品免费视频人成| 久久久久久久久久久久久女国产乱| 国产99一区视频免费| 亚洲一区二区三区国产| 日韩欧美你懂的| 成人免费av资源| 亚洲欧美日韩精品久久久久| 极品少妇一区二区| 国产精品国产三级国产普通话三级 | 色综合久久久久久久久久久| 色一区在线观看| 精品捆绑美女sm三区| 日韩黄色免费电影| 色香色香欲天天天影视综合网| 久久精品日韩一区二区三区| 日韩国产精品91| 欧美巨大另类极品videosbest | 亚洲综合精品久久| 一本一道综合狠狠老| 国产精品电影一区二区| 成人aaaa免费全部观看| 亚洲欧洲精品天堂一级| 成人av免费在线播放| 亚洲女同ⅹxx女同tv| 日本韩国一区二区| 亚洲成人tv网| 日韩精品一区二区三区四区 | 在线日韩一区二区| 午夜精品一区二区三区免费视频| 欧美日韩一区三区| 蜜臀av在线播放一区二区三区| 欧美大片在线观看一区二区| 国产一区二区三区免费看| 久久女同性恋中文字幕| 99久久99久久精品免费看蜜桃| 中文字幕在线不卡一区二区三区| 色婷婷综合激情| 日韩av一区二| 国产欧美一区视频| 欧美亚洲动漫精品| 久久成人免费日本黄色| 国产精品私人自拍| 色哟哟精品一区| 免费人成在线不卡| 欧美国产精品中文字幕| 在线日韩av片| 麻豆极品一区二区三区| 国产精品成人免费| 欧美一区二区三区四区视频| 国产成人综合在线| 亚洲最大成人综合| 国产欧美日韩麻豆91| 欧美三级乱人伦电影| 国产高清精品网站| 日韩精品五月天| 综合激情网...| 欧美本精品男人aⅴ天堂| 色综合色综合色综合色综合色综合 | 亚洲久本草在线中文字幕| 欧美精品久久99| 成人午夜电影小说| 亚洲成人综合网站| 1024国产精品| 久久老女人爱爱| 日韩一区二区三区观看| av中文字幕一区| 激情欧美一区二区三区在线观看| 亚洲久草在线视频| 国产精品的网站| 国产日韩一级二级三级| 欧美日韩国产片| 日本道在线观看一区二区| 国产乱色国产精品免费视频| 日韩国产欧美在线视频| 亚洲综合激情另类小说区| 国产精品免费人成网站| 久久综合狠狠综合久久综合88| 欧美精品久久99久久在免费线 | 图片区小说区区亚洲影院| 中文字幕精品—区二区四季| 精品久久国产字幕高潮| 欧美一级二级在线观看| 欧美日韩小视频| 欧美三片在线视频观看| 97精品视频在线观看自产线路二| 国产成人综合精品三级| 国产一区在线精品| 国产麻豆9l精品三级站| 久久国产婷婷国产香蕉| 久久精品72免费观看| 黄一区二区三区| 久久精工是国产品牌吗| 精品一区二区三区蜜桃| 久久国产成人午夜av影院| 日韩精品91亚洲二区在线观看 | 国产欧美日韩另类一区| 国产婷婷色一区二区三区四区| 精品国产免费人成在线观看| 日韩视频免费观看高清完整版| 日韩一区二区在线观看视频| 日韩一区二区中文字幕| 精品成人一区二区三区四区| 日韩精品最新网址| 久久色.com| 国产精品免费视频网站| 亚洲精品国产a久久久久久| 亚洲激情自拍视频| 五月婷婷久久丁香| 久久精品久久99精品久久| 蜜臀av性久久久久av蜜臀妖精| 久久99精品久久久久久国产越南| 国产一区二区成人久久免费影院 | gogo大胆日本视频一区| 色诱视频网站一区| 欧美日韩国产高清一区二区| 日韩一区国产二区欧美三区| 2024国产精品| 亚洲蜜臀av乱码久久精品蜜桃| 午夜婷婷国产麻豆精品| 国产真实精品久久二三区| av电影在线观看一区| 欧美日本一道本| 国产午夜精品久久久久久久| 一区二区三区国产精华| 奇米影视一区二区三区| 国产91精品一区二区| 欧美日韩一区二区在线视频| 日韩欧美美女一区二区三区| 国产精品美女www爽爽爽| 亚洲超丰满肉感bbw| 国产成人在线看| 欧美老肥妇做.爰bbww| 国产清纯白嫩初高生在线观看91 | 久久久噜噜噜久噜久久综合| 中文字幕一区二区视频| 免费的成人av| 日本精品免费观看高清观看| 日韩欧美在线网站| 一区二区三区成人| 国产不卡在线视频| 91精品国产综合久久精品图片| 国产精品免费免费| 狠狠色丁香婷婷综合久久片|