亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
亚洲精品免费电影| 在线日韩av片| 在线视频欧美精品| 日韩欧美三级在线| 一区二区三区精品久久久| 老司机精品视频导航| 色先锋久久av资源部| 久久精品综合网| 日韩高清不卡一区二区三区| 91一区二区在线| 国产日本欧美一区二区| 免费高清在线一区| 欧美日韩国产小视频| 亚洲精品久久久蜜桃| 成人黄色软件下载| 2019国产精品| 国产在线观看一区二区| 欧美一区二区视频免费观看| 一区二区视频在线| 91在线观看视频| 中文字幕一区二区三区在线不卡 | 日韩精品福利网| 色综合天天综合网天天看片| 国产精品久久久久久久第一福利| 精品一区二区三区在线播放| 日韩你懂的电影在线观看| 日韩中文字幕91| 欧美日韩视频专区在线播放| 香蕉成人伊视频在线观看| 欧美系列一区二区| 亚洲午夜免费电影| 欧美日韩久久久一区| 亚洲风情在线资源站| 欧美探花视频资源| 午夜一区二区三区在线观看| 欧美高清视频不卡网| 午夜精品福利视频网站| 欧美一区二区不卡视频| 美女爽到高潮91| 精品国产三级电影在线观看| 国产黄色精品网站| 国产精品麻豆视频| 色婷婷av一区二区三区软件| 亚洲一区二区三区视频在线播放| 欧美日韩午夜精品| 老司机精品视频在线| 国产日产欧美一区二区视频| 99久久久久免费精品国产| 亚洲色图20p| 欧美色图第一页| 老司机精品视频线观看86| 国产欧美日韩卡一| 日本伦理一区二区| 秋霞av亚洲一区二区三| 国产女人aaa级久久久级| 91一区二区在线| 日韩av成人高清| 中文字幕欧美三区| 欧美日韩免费一区二区三区 | 精品999在线播放| www.日韩大片| 日韩专区中文字幕一区二区| 精品三级在线看| 91一区二区在线| 免费看黄色91| 国产精品福利影院| 欧美一区二区三区免费大片| 国产成人av一区二区三区在线观看| 亚洲视频中文字幕| 精品久久久久久综合日本欧美 | 亚洲人被黑人高潮完整版| 欧美久久婷婷综合色| 福利电影一区二区| 日韩黄色在线观看| 中文字幕一区二区三区蜜月| 欧美精品丝袜久久久中文字幕| 国产美女在线观看一区| 一区二区三区四区不卡视频| 精品少妇一区二区三区在线播放 | 日韩欧美一级精品久久| av影院午夜一区| 久久国产剧场电影| 午夜激情一区二区| 成人欧美一区二区三区黑人麻豆 | 国产主播一区二区三区| 亚洲一区在线观看免费 | 99re在线视频这里只有精品| 国内精品伊人久久久久影院对白| 亚洲激情中文1区| 国产亚洲1区2区3区| 欧美一区二区三区免费在线看| 色婷婷综合久久久| 福利91精品一区二区三区| 激情伊人五月天久久综合| 亚洲亚洲人成综合网络| ...xxx性欧美| 国产精品第五页| 中文字幕av资源一区| 精品国产一区二区在线观看| 88在线观看91蜜桃国自产| 欧美午夜精品免费| 色妹子一区二区| 99久久亚洲一区二区三区青草| 国产一区二区在线电影| 久久成人久久爱| 日本不卡视频在线| 日韩av二区在线播放| 午夜精品久久久久久久久久久| 亚洲精品伦理在线| 亚洲一区中文在线| 亚洲国产欧美日韩另类综合 | 国产无遮挡一区二区三区毛片日本| 欧美顶级少妇做爰| 欧美日韩和欧美的一区二区| 欧美午夜宅男影院| 欧美日韩高清在线| 欧美蜜桃一区二区三区| 欧美日韩你懂的| 日韩一区二区三区三四区视频在线观看| 欧美三级视频在线| 欧美日本一道本| 宅男噜噜噜66一区二区66| 91精品国产色综合久久ai换脸| 91精品国产欧美一区二区18| 日韩欧美国产综合| 久久一留热品黄| 国产欧美一区二区在线| 国产精品你懂的在线| 中文字幕一区二区三区蜜月| 亚洲精品ww久久久久久p站| 夜色激情一区二区| 免费人成在线不卡| 国产精品18久久久| 色婷婷综合久久久| 欧美日韩日本视频| 久久亚洲免费视频| 国产精品二区一区二区aⅴ污介绍| 最新高清无码专区| 亚洲一二三区在线观看| 麻豆国产一区二区| 高清免费成人av| 欧美午夜精品久久久| 欧美一区二区精品在线| 日本一区二区视频在线| 亚洲一区二区av在线| 麻豆91精品91久久久的内涵| 成人丝袜视频网| 在线观看欧美日本| 精品国产99国产精品| 亚洲柠檬福利资源导航| 免费观看30秒视频久久| 波多野结衣欧美| 欧美二区在线观看| 中文字幕不卡在线观看| 日韩国产精品久久| 风间由美一区二区三区在线观看| 欧美偷拍一区二区| 国产色婷婷亚洲99精品小说| 亚洲午夜激情av| 国产成人在线视频网站| 欧美亚男人的天堂| 国产精品女人毛片| 美女网站色91| 欧美日韩一本到| 国产精品国产成人国产三级| 九色综合国产一区二区三区| 91美女在线观看| 久久久久国产一区二区三区四区 | 尤物在线观看一区| 国产精品影视在线观看| 欧美日本一道本| 亚洲色欲色欲www| 国产乱码精品一品二品| 欧美一区二区成人6969| 一区二区三区在线视频免费 | 91精品国产色综合久久ai换脸| 国产精品美女一区二区三区 | 精品国产一区久久| 日韩精品成人一区二区三区| 欧美亚州韩日在线看免费版国语版| 国产精品久久夜| 国内精品视频666| 日韩精品一区二区三区swag| 午夜av一区二区三区| 在线免费观看日韩欧美| **性色生活片久久毛片| 成人精品gif动图一区| 欧美精品一区二| 免费成人av资源网| 91精品国产综合久久久蜜臀图片| 亚洲另类在线制服丝袜| 91浏览器入口在线观看| 国产精品乱子久久久久| 国v精品久久久网| 欧美国产日产图区| 成年人午夜久久久| 亚洲国产精品精华液ab| 国产91丝袜在线播放九色| 久久精品人人做| 国产69精品一区二区亚洲孕妇 |