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

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

?? reborrowbooks.cs

?? 圖書館信息管理系統 Library Information Management System
?? CS
?? 第 1 頁 / 共 3 頁
字號:
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>
	/// ReborrowBooks 的摘要說明。
	/// </summary>
	public class ReborrowBooks : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.GroupBox groupBox5;
		private System.Windows.Forms.Button button2;
		private System.Windows.Forms.Button button1;
		private System.Windows.Forms.GroupBox groupBox4;
		private System.Windows.Forms.ListView listView1;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.TextBox textBox6;
		private System.Windows.Forms.TextBox textBox5;
		private System.Windows.Forms.TextBox textBox4;
		private System.Windows.Forms.TextBox textBox3;
		private System.Windows.Forms.TextBox textBox2;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.Button button3;
		private System.Windows.Forms.Button button4;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.GroupBox groupBox6;
		private System.Windows.Forms.ContextMenu contextMenu1;
		private System.Windows.Forms.MenuItem menuItem1;
		private System.Windows.Forms.MenuItem menuItem2;
		private System.Windows.Forms.MenuItem menuItem3;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label13;
		private System.Windows.Forms.Label label15;
		private System.Windows.Forms.Label label16;
		private System.Windows.Forms.Label label17;
		private System.Windows.Forms.Label label19;
		private System.Windows.Forms.Label label20;
		private System.Windows.Forms.Label label21;
		private System.Windows.Forms.ColumnHeader columnHeader1;
		private System.Windows.Forms.ColumnHeader columnHeader2;
		private System.Windows.Forms.ColumnHeader columnHeader3;
		private System.Windows.Forms.ColumnHeader columnHeader4;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.ListView listView2;
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		private SqlCommand cmd;
		private SqlDataReader dr;
		private int rc;
		private int i;
		//private DataTable tableTemp;
		private static string dtNow = DateTime.Now.Year.ToString() + 
			"-" + DateTime.Now.Month.ToString() + 
			"-" + DateTime.Now.Day.ToString();
		private string strReturnDate = "";
		private int CanBDays = 0;

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

			listView1.Columns.Add("借書證號",100,HorizontalAlignment.Left);
			listView1.Columns.Add("所借圖書",120,HorizontalAlignment.Left);
			listView1.Columns.Add("作者",80,HorizontalAlignment.Left);
			listView1.Columns.Add("出版社",100,HorizontalAlignment.Left);
			listView1.Columns.Add("是否超期",60,HorizontalAlignment.Left);
			listView1.Columns.Add("借書日期",100,HorizontalAlignment.Left);
			listView1.Columns.Add("還書日期",100,HorizontalAlignment.Left);
		}

		/// <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.label1 = new System.Windows.Forms.Label();
			this.groupBox5 = new System.Windows.Forms.GroupBox();
			this.button4 = new System.Windows.Forms.Button();
			this.button3 = new System.Windows.Forms.Button();
			this.button2 = new System.Windows.Forms.Button();
			this.button1 = new System.Windows.Forms.Button();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.listView1 = new System.Windows.Forms.ListView();
			this.contextMenu1 = new System.Windows.Forms.ContextMenu();
			this.menuItem1 = new System.Windows.Forms.MenuItem();
			this.menuItem2 = new System.Windows.Forms.MenuItem();
			this.menuItem3 = new System.Windows.Forms.MenuItem();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.label9 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.textBox6 = new System.Windows.Forms.TextBox();
			this.textBox5 = new System.Windows.Forms.TextBox();
			this.textBox4 = new System.Windows.Forms.TextBox();
			this.textBox3 = new System.Windows.Forms.TextBox();
			this.textBox2 = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.label6 = 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.groupBox1 = new System.Windows.Forms.GroupBox();
			this.label10 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.groupBox6 = new System.Windows.Forms.GroupBox();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.listView2 = new System.Windows.Forms.ListView();
			this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
			this.label21 = new System.Windows.Forms.Label();
			this.label20 = new System.Windows.Forms.Label();
			this.label19 = new System.Windows.Forms.Label();
			this.label17 = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.label15 = new System.Windows.Forms.Label();
			this.label13 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.groupBox5.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.groupBox6.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.BackColor = System.Drawing.Color.WhiteSmoke;
			this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.label1.Font = new System.Drawing.Font("宋體", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label1.Location = new System.Drawing.Point(289, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(213, 23);
			this.label1.TabIndex = 0;
			this.label1.Text = "讀  者  續  借";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// groupBox5
			// 
			this.groupBox5.Controls.Add(this.button4);
			this.groupBox5.Controls.Add(this.button3);
			this.groupBox5.Controls.Add(this.button2);
			this.groupBox5.Controls.Add(this.button1);
			this.groupBox5.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox5.Location = new System.Drawing.Point(336, 424);
			this.groupBox5.Name = "groupBox5";
			this.groupBox5.Size = new System.Drawing.Size(416, 64);
			this.groupBox5.TabIndex = 10;
			this.groupBox5.TabStop = false;
			// 
			// button4
			// 
			this.button4.Enabled = false;
			this.button4.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.button4.Location = new System.Drawing.Point(216, 24);
			this.button4.Name = "button4";
			this.button4.TabIndex = 3;
			this.button4.Text = "繳款并歸還";
			this.button4.Click += new System.EventHandler(this.button4_Click);
			// 
			// button3
			// 
			this.button3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.button3.Location = new System.Drawing.Point(126, 24);
			this.button3.Name = "button3";
			this.button3.TabIndex = 2;
			this.button3.Text = "重置";
			this.button3.Click += new System.EventHandler(this.button3_Click);
			// 
			// button2
			// 
			this.button2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.button2.Location = new System.Drawing.Point(306, 24);
			this.button2.Name = "button2";
			this.button2.TabIndex = 1;
			this.button2.Text = "關閉";
			this.button2.Click += new System.EventHandler(this.button2_Click);
			// 
			// button1
			// 
			this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.button1.Location = new System.Drawing.Point(36, 24);
			this.button1.Name = "button1";
			this.button1.TabIndex = 0;
			this.button1.Text = "續借";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.listView1);
			this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox4.Location = new System.Drawing.Point(336, 56);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(416, 184);
			this.groupBox4.TabIndex = 9;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "當前讀者已借書";
			// 
			// listView1
			// 
			this.listView1.ContextMenu = this.contextMenu1;
			this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.listView1.FullRowSelect = true;
			this.listView1.GridLines = true;
			this.listView1.Location = new System.Drawing.Point(3, 17);
			this.listView1.Name = "listView1";
			this.listView1.Size = new System.Drawing.Size(410, 164);
			this.listView1.TabIndex = 5;
			this.listView1.View = System.Windows.Forms.View.Details;
			this.listView1.Click += new System.EventHandler(this.listView1_Click);
			// 
			// contextMenu1
			// 
			this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																						 this.menuItem1,
																						 this.menuItem2,
																						 this.menuItem3});
			// 
			// menuItem1
			// 
			this.menuItem1.Index = 0;
			this.menuItem1.Text = "續借";
			// 
			// menuItem2
			// 
			this.menuItem2.Index = 1;
			this.menuItem2.Text = "-";
			// 
			// menuItem3
			// 
			this.menuItem3.Index = 2;
			this.menuItem3.Text = "繳納罰款";
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.label9);
			this.groupBox2.Controls.Add(this.label8);
			this.groupBox2.Controls.Add(this.textBox6);
			this.groupBox2.Controls.Add(this.textBox5);
			this.groupBox2.Controls.Add(this.textBox4);
			this.groupBox2.Controls.Add(this.textBox3);
			this.groupBox2.Controls.Add(this.textBox2);
			this.groupBox2.Controls.Add(this.label7);
			this.groupBox2.Controls.Add(this.label6);
			this.groupBox2.Controls.Add(this.label5);
			this.groupBox2.Controls.Add(this.label4);
			this.groupBox2.Controls.Add(this.label3);
			this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox2.Location = new System.Drawing.Point(40, 168);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(264, 248);
			this.groupBox2.TabIndex = 7;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "讀者信息";
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(208, 192);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(17, 17);
			this.label9.TabIndex = 11;
			this.label9.Text = "冊";
			// 
			// label8
			// 
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(208, 154);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(17, 17);
			this.label8.TabIndex = 10;
			this.label8.Text = "冊";
			// 
			// textBox6
			// 
			this.textBox6.Location = new System.Drawing.Point(96, 190);
			this.textBox6.Name = "textBox6";
			this.textBox6.ReadOnly = true;
			this.textBox6.Size = new System.Drawing.Size(112, 21);
			this.textBox6.TabIndex = 9;
			this.textBox6.Text = "";
			// 
			// textBox5
			// 
			this.textBox5.Location = new System.Drawing.Point(96, 152);
			this.textBox5.Name = "textBox5";
			this.textBox5.ReadOnly = true;
			this.textBox5.Size = new System.Drawing.Size(112, 21);
			this.textBox5.TabIndex = 8;
			this.textBox5.Text = "";
			// 
			// textBox4

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成人激情综合网| 国产成人精品一区二区三区四区| 婷婷成人激情在线网| 日韩国产高清在线| 国内精品视频666| 不卡大黄网站免费看| 91成人免费网站| 欧美精品久久久久久久久老牛影院| 日韩欧美三级在线| 国产精品麻豆视频| 午夜精品久久久久久久久| 久久精品av麻豆的观看方式| 国内偷窥港台综合视频在线播放| 国产69精品久久久久777| 欧美性色黄大片手机版| 久久婷婷国产综合精品青草| 亚洲精品午夜久久久| 激情综合色综合久久综合| 99r精品视频| 欧美变态凌虐bdsm| 一区二区免费在线| 国产一区二区三区久久久| 欧美天堂一区二区三区| 久久久精品tv| 视频一区欧美日韩| 成人av电影免费观看| 欧美成人精品福利| 一区二区三区免费在线观看| 国产呦萝稀缺另类资源| 欧美手机在线视频| 国产精品三级在线观看| 日本伊人午夜精品| 色婷婷久久一区二区三区麻豆| 精品女同一区二区| 亚洲成人你懂的| 成av人片一区二区| 欧美xxxxxxxx| 亚洲成人777| 一本大道久久a久久综合| 久久久国产精品麻豆 | 国产成人在线观看| 欧美巨大另类极品videosbest | 国产精品伦理一区二区| 奇米精品一区二区三区四区 | 亚洲美女在线一区| 高清视频一区二区| 欧美成人性福生活免费看| 亚洲午夜精品网| 9久草视频在线视频精品| 久久九九久精品国产免费直播| 日韩激情视频在线观看| 在线看国产一区二区| 中文字幕中文乱码欧美一区二区| 韩国v欧美v日本v亚洲v| 91麻豆精品国产91久久久久久| 一个色在线综合| 91麻豆免费看片| 国产精品久久毛片av大全日韩| 极品少妇xxxx精品少妇偷拍| 欧美一激情一区二区三区| 亚洲一区二区美女| 色av成人天堂桃色av| 亚洲欧美在线视频| 不卡的电视剧免费网站有什么| 国产欧美一区二区精品性| 国产一区二区美女| 久久综合国产精品| 国产精品一区二区果冻传媒| 精品久久久久av影院| 麻豆国产欧美一区二区三区| 91精品国产品国语在线不卡| 天天色天天操综合| 91精品免费在线观看| 日韩在线播放一区二区| 91精品在线免费观看| 午夜精品123| 9191久久久久久久久久久| 水蜜桃久久夜色精品一区的特点| 欧美日韩一区二区不卡| 日韩一区精品视频| 欧美一区二区久久| 麻豆精品在线视频| 精品久久久久久久久久久久包黑料 | 国产一区视频导航| 久久精品亚洲精品国产欧美| 国产成人8x视频一区二区| 国产精品久久久久影院亚瑟 | 一个色在线综合| 欧美在线视频日韩| 日韩**一区毛片| 精品国产一区二区三区不卡 | 欧美视频中文一区二区三区在线观看 | 激情久久久久久久久久久久久久久久| 欧美大片在线观看一区| 国内外精品视频| 国产精品婷婷午夜在线观看| 不卡av在线网| 亚洲第四色夜色| 欧美刺激脚交jootjob| 国产福利一区二区三区| 最新不卡av在线| 欧美视频完全免费看| 麻豆精品一区二区三区| 亚洲国产精品99久久久久久久久| www.亚洲人| 午夜激情一区二区| 国产视频一区在线播放| 91极品视觉盛宴| 日本不卡一二三区黄网| 国产视频一区二区三区在线观看 | 亚洲在线视频一区| 精品国产一区二区在线观看| 99久久精品免费| 五月天激情综合| 欧美经典一区二区三区| 在线亚洲一区观看| 久久成人久久爱| 亚洲美腿欧美偷拍| 精品国产sm最大网站| 99精品1区2区| 另类人妖一区二区av| 国产精品色在线观看| 91精品国产入口在线| www.欧美精品一二区| 日韩精品91亚洲二区在线观看 | 国产精品99久| 亚洲一区二区三区精品在线| 久久久久国色av免费看影院| 欧美性生活影院| 东方aⅴ免费观看久久av| 午夜av电影一区| 欧美—级在线免费片| 欧美美女视频在线观看| 丁香天五香天堂综合| 日韩av中文在线观看| 最新不卡av在线| 久久网站最新地址| 欧美裸体一区二区三区| 成人av在线资源网| 理论片日本一区| 亚洲图片欧美色图| 国产视频一区二区在线| 欧美一激情一区二区三区| 色婷婷综合中文久久一本| 国产在线乱码一区二区三区| 亚洲综合一区二区三区| 国产精品美女久久福利网站| 精品少妇一区二区三区日产乱码| 欧美色男人天堂| 不卡av电影在线播放| 国模大尺度一区二区三区| 亚洲成人免费视| 一区二区三区中文在线观看| 日本一区二区高清| 日韩欧美国产综合| 欧美亚洲国产一区在线观看网站| 成人免费毛片片v| 国产综合久久久久久鬼色| 日韩激情一二三区| 亚洲高清在线精品| 一区二区三区毛片| 综合久久久久久| 欧美激情在线一区二区三区| 日韩精品一区二区三区视频播放| 欧美麻豆精品久久久久久| 欧美在线视频全部完| 91玉足脚交白嫩脚丫在线播放| 国产大片一区二区| 国产一区视频在线看| 国内精品免费在线观看| 久久不见久久见中文字幕免费| 天堂成人国产精品一区| 亚洲国产欧美日韩另类综合 | 免费成人美女在线观看.| 亚洲成人资源网| 亚洲成a人在线观看| 一区二区成人在线| 亚洲黄色小视频| 亚洲精品成人悠悠色影视| 亚洲欧美日韩系列| 亚洲免费大片在线观看| 一区二区三区免费在线观看| 最新不卡av在线| 亚洲精品成人悠悠色影视| 一区二区视频免费在线观看| 亚洲一区二区在线免费观看视频| 一区二区三区高清不卡| 亚洲精品videosex极品| 亚洲最大成人网4388xx| 亚洲一区二区在线免费观看视频| 亚洲一区二区欧美日韩| 性欧美疯狂xxxxbbbb| 午夜久久久影院| 日韩高清一区二区| 麻豆精品视频在线观看免费| 激情综合色播五月| 国产精品1024| 99久久er热在这里只有精品15| 一本久久综合亚洲鲁鲁五月天 | 一区二区三区欧美视频|