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

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

?? returnbooks.cs

?? 圖書館信息管理系統(tǒng) Library Information Management System
?? CS
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
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>
	/// ReturnBooks 的摘要說(shuō)明。
	/// </summary>
	public class ReturnBooks : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.Label label15;
		private System.Windows.Forms.Label label10;
		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 groupBox5;
		private System.Windows.Forms.Button btnRefresh;
		private System.Windows.Forms.GroupBox groupBox4;
		private System.Windows.Forms.ListView listView1;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.GroupBox groupBox6;
		private System.Windows.Forms.TextBox textBox9;
		private System.Windows.Forms.TextBox textBox8;
		private System.Windows.Forms.Label label13;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.Button btnForfeit;
		private System.Windows.Forms.Button btnClose;
		private System.Windows.Forms.TextBox textBox7;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.GroupBox groupBox7;
		private System.Windows.Forms.Label label16;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label14;
		private System.Windows.Forms.Label label17;
		private System.Windows.Forms.Label label18;
		private System.Windows.Forms.Label label19;
		/// <summary>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		private SqlCommand cmd;
		private SqlDataReader dr;
		private string book_ID = "";
		private string r_ID = "";
		private int rc = 0;
		private System.Windows.Forms.Button btnReturn;//可以借閱量
		private int dc = 0;//可以借閱天數(shù)
		private bool isU = false;

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

			listView1.Columns.Add("條形碼",60,HorizontalAlignment.Left);
			listView1.Columns.Add("圖書名稱",140,HorizontalAlignment.Left);
			listView1.Columns.Add("超期",40,HorizontalAlignment.Left);
			listView1.Columns.Add("ISBN",80,HorizontalAlignment.Left);
			listView1.Columns.Add("作者",120,HorizontalAlignment.Left);
			listView1.Columns.Add("單價(jià)",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 窗體設(shè)計(jì)器生成的代碼
		/// <summary>
		/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.label15 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			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.groupBox5 = new System.Windows.Forms.GroupBox();
			this.btnForfeit = new System.Windows.Forms.Button();
			this.btnRefresh = new System.Windows.Forms.Button();
			this.btnClose = new System.Windows.Forms.Button();
			this.btnReturn = new System.Windows.Forms.Button();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.listView1 = new System.Windows.Forms.ListView();
			this.label1 = new System.Windows.Forms.Label();
			this.groupBox6 = new System.Windows.Forms.GroupBox();
			this.textBox7 = new System.Windows.Forms.TextBox();
			this.textBox9 = new System.Windows.Forms.TextBox();
			this.textBox8 = new System.Windows.Forms.TextBox();
			this.label13 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.groupBox7 = new System.Windows.Forms.GroupBox();
			this.label19 = new System.Windows.Forms.Label();
			this.label18 = new System.Windows.Forms.Label();
			this.label17 = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.groupBox3.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox5.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.groupBox6.SuspendLayout();
			this.groupBox7.SuspendLayout();
			this.SuspendLayout();
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.textBox1);
			this.groupBox3.Controls.Add(this.label15);
			this.groupBox3.Controls.Add(this.label10);
			this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox3.Location = new System.Drawing.Point(352, 48);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(416, 72);
			this.groupBox3.TabIndex = 8;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "歸還圖書驗(yàn)證";
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(112, 30);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(200, 21);
			this.textBox1.TabIndex = 0;
			this.textBox1.Text = "";
			this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
			// 
			// label15
			// 
			this.label15.AutoSize = true;
			this.label15.ForeColor = System.Drawing.Color.Red;
			this.label15.Location = new System.Drawing.Point(320, 32);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(48, 17);
			this.label15.TabIndex = 5;
			this.label15.Text = "<Enter>";
			// 
			// label10
			// 
			this.label10.AutoSize = true;
			this.label10.Location = new System.Drawing.Point(32, 32);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(54, 17);
			this.label10.TabIndex = 0;
			this.label10.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(24, 48);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(312, 200);
			this.groupBox2.TabIndex = 10;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "讀者信息";
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(252, 152);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(17, 17);
			this.label9.TabIndex = 11;
			this.label9.Text = "冊(cè)";
			// 
			// label8
			// 
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(252, 120);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(17, 17);
			this.label8.TabIndex = 10;
			this.label8.Text = "冊(cè)";
			// 
			// textBox6
			// 
			this.textBox6.Location = new System.Drawing.Point(108, 150);
			this.textBox6.Name = "textBox6";
			this.textBox6.ReadOnly = true;
			this.textBox6.Size = new System.Drawing.Size(136, 21);
			this.textBox6.TabIndex = 8;
			this.textBox6.Text = "";
			// 
			// textBox5
			// 
			this.textBox5.Location = new System.Drawing.Point(108, 118);
			this.textBox5.Name = "textBox5";
			this.textBox5.ReadOnly = true;
			this.textBox5.Size = new System.Drawing.Size(136, 21);
			this.textBox5.TabIndex = 7;
			this.textBox5.Text = "";
			// 
			// textBox4
			// 
			this.textBox4.Location = new System.Drawing.Point(108, 86);
			this.textBox4.Name = "textBox4";
			this.textBox4.ReadOnly = true;
			this.textBox4.Size = new System.Drawing.Size(168, 21);
			this.textBox4.TabIndex = 6;
			this.textBox4.Text = "";
			// 
			// textBox3
			// 
			this.textBox3.Location = new System.Drawing.Point(108, 54);
			this.textBox3.Name = "textBox3";
			this.textBox3.ReadOnly = true;
			this.textBox3.Size = new System.Drawing.Size(168, 21);
			this.textBox3.TabIndex = 5;
			this.textBox3.Text = "";
			// 
			// textBox2
			// 
			this.textBox2.Location = new System.Drawing.Point(108, 30);
			this.textBox2.Name = "textBox2";
			this.textBox2.ReadOnly = true;
			this.textBox2.Size = new System.Drawing.Size(168, 21);
			this.textBox2.TabIndex = 4;
			this.textBox2.Text = "";
			// 
			// label7
			// 
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(36, 152);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(54, 17);
			this.label7.TabIndex = 4;
			this.label7.Text = "當(dāng)前可借";
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(36, 120);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(66, 17);
			this.label6.TabIndex = 3;
			this.label6.Text = "許可借閱量";
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(36, 88);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(29, 17);
			this.label5.TabIndex = 2;
			this.label5.Text = "類型";
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(36, 64);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(29, 17);
			this.label4.TabIndex = 1;
			this.label4.Text = "性別";
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(36, 32);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(29, 17);
			this.label3.TabIndex = 0;
			this.label3.Text = "姓名";
			// 
			// groupBox5
			// 
			this.groupBox5.Controls.Add(this.btnForfeit);
			this.groupBox5.Controls.Add(this.btnRefresh);
			this.groupBox5.Controls.Add(this.btnClose);
			this.groupBox5.Controls.Add(this.btnReturn);
			this.groupBox5.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox5.Location = new System.Drawing.Point(40, 424);
			this.groupBox5.Name = "groupBox5";
			this.groupBox5.Size = new System.Drawing.Size(712, 64);
			this.groupBox5.TabIndex = 9;
			this.groupBox5.TabStop = false;
			// 
			// btnForfeit
			// 
			this.btnForfeit.Enabled = false;
			this.btnForfeit.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnForfeit.Location = new System.Drawing.Point(368, 24);
			this.btnForfeit.Name = "btnForfeit";
			this.btnForfeit.TabIndex = 5;
			this.btnForfeit.Text = "繳納罰款";
			this.btnForfeit.Click += new System.EventHandler(this.btnForfeit_Click);
			// 
			// btnRefresh
			// 
			this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnRefresh.Location = new System.Drawing.Point(269, 24);
			this.btnRefresh.Name = "btnRefresh";
			this.btnRefresh.TabIndex = 2;
			this.btnRefresh.Text = "重置";
			// 
			// btnClose
			// 
			this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnClose.Location = new System.Drawing.Point(467, 24);
			this.btnClose.Name = "btnClose";
			this.btnClose.TabIndex = 3;
			this.btnClose.Text = "關(guān)閉";
			this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
			// 
			// btnReturn
			// 
			this.btnReturn.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnReturn.Location = new System.Drawing.Point(170, 24);
			this.btnReturn.Name = "btnReturn";
			this.btnReturn.TabIndex = 1;
			this.btnReturn.Text = "歸還";
			this.btnReturn.Click += new System.EventHandler(this.btnReturn_Click);
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.listView1);
			this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox4.Location = new System.Drawing.Point(24, 256);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(536, 160);
			this.groupBox4.TabIndex = 12;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "當(dāng)前讀者已借書";
			// 
			// listView1
			// 
			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(530, 140);
			this.listView1.TabIndex = 5;
			this.listView1.View = System.Windows.Forms.View.Details;
			// 
			// 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(287, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(216, 23);
			this.label1.TabIndex = 7;
			this.label1.Text = "歸  還  圖  書";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// groupBox6
			// 
			this.groupBox6.Controls.Add(this.textBox7);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人免费毛片a| 精品国产亚洲在线| 99re成人在线| 国产成人综合在线| 国产激情视频一区二区在线观看| 美女精品自拍一二三四| 日本91福利区| 九九**精品视频免费播放| 久久不见久久见中文字幕免费| 日韩电影网1区2区| 久久国内精品自在自线400部| 久久精品久久综合| 国产精品自产自拍| www.欧美亚洲| 日本韩国精品在线| 在线观看欧美日本| 5566中文字幕一区二区电影| 欧美一级精品在线| www亚洲一区| 国产欧美精品国产国产专区| 国产精品久久久久久久蜜臀| 综合欧美一区二区三区| 亚洲国产精品视频| 三级影片在线观看欧美日韩一区二区| 男女男精品网站| 国产在线乱码一区二区三区| 成人午夜视频在线观看| 91丝袜呻吟高潮美腿白嫩在线观看| 欧美在线观看视频在线| 欧美一区二区在线免费观看| 欧美videofree性高清杂交| 国产视频在线观看一区二区三区| 亚洲欧美在线aaa| 日韩精品视频网| 国产高清在线精品| 在线视频中文字幕一区二区| 91精品欧美久久久久久动漫| 国产亚洲成年网址在线观看| 亚洲欧美日韩小说| 秋霞成人午夜伦在线观看| 国产成人在线网站| 色天使色偷偷av一区二区| 欧美电影在哪看比较好| 久久精品视频免费观看| 一区二区三区高清| 国产一区91精品张津瑜| 在线观看视频一区二区欧美日韩| 精品少妇一区二区三区免费观看| 成人免费在线观看入口| 免费观看在线综合| 91尤物视频在线观看| 欧美成人一级视频| 一区二区三区日韩精品视频| 另类欧美日韩国产在线| 91小视频免费看| 精品va天堂亚洲国产| 亚洲精品国产精品乱码不99| 精品一区二区久久久| 91福利小视频| 中文字幕不卡在线| 九九精品视频在线看| 欧美亚洲另类激情小说| 国产欧美一区二区三区鸳鸯浴| 亚洲综合在线免费观看| 成人午夜看片网址| 日韩一区二区免费高清| 亚洲免费高清视频在线| 国产成人免费在线| 日韩欧美久久久| 亚洲午夜精品久久久久久久久| 国产精品99久久久久久有的能看| 这里是久久伊人| 亚洲精品视频在线看| 成人黄色片在线观看| 精品捆绑美女sm三区| 午夜伦欧美伦电影理论片| 91丝袜美腿高跟国产极品老师| 337p日本欧洲亚洲大胆色噜噜| 亚洲女同ⅹxx女同tv| 国产suv精品一区二区三区| 宅男在线国产精品| 亚洲午夜免费福利视频| 色综合久久久网| 国产精品久久久久久久久免费樱桃 | 亚洲愉拍自拍另类高清精品| 国产传媒欧美日韩成人| 精品电影一区二区| 麻豆91精品91久久久的内涵| 欧美日韩视频第一区| 亚洲综合一区二区| 91网站黄www| 自拍偷拍国产精品| 97久久人人超碰| 国产精品欧美久久久久无广告| 国产综合久久久久久久久久久久| 日韩欧美中文字幕制服| 日欧美一区二区| 欧美精品久久一区二区三区| 亚洲综合区在线| 在线视频综合导航| 亚洲五月六月丁香激情| 欧美伊人久久久久久久久影院| 亚洲人午夜精品天堂一二香蕉| 成人国产精品免费| 国产精品久99| 成人av电影在线| 亚洲欧洲精品天堂一级 | 日本一区二区成人| 国产大陆a不卡| 欧美国产一区二区在线观看| 国产**成人网毛片九色| 国产欧美视频在线观看| 成人免费av网站| 亚洲欧洲日韩av| 色欧美乱欧美15图片| 亚洲综合小说图片| 欧美在线小视频| 青椒成人免费视频| 精品国产一二三区| 成人精品高清在线| 一区二区三区欧美久久| 欧美日韩精品一区二区三区四区| 婷婷综合在线观看| 日韩免费视频一区| 国产精品主播直播| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 日本韩国欧美一区| 日本在线不卡一区| 欧美不卡一区二区三区四区| 国产成人av电影在线观看| 亚洲欧洲韩国日本视频| 欧美日韩免费一区二区三区视频 | 精品视频在线免费观看| 日韩影视精彩在线| www国产成人| 成人h动漫精品| 亚洲第一在线综合网站| 精品免费日韩av| 91无套直看片红桃| 免费在线观看视频一区| 国产欧美视频一区二区| 91久久精品日日躁夜夜躁欧美| 日韩精品91亚洲二区在线观看| 欧美精品一区在线观看| 色视频成人在线观看免| 久久精品av麻豆的观看方式| 国产精品电影一区二区| 欧美一区日本一区韩国一区| 懂色av一区二区三区免费观看| 一区二区三区在线免费| 精品国偷自产国产一区| av激情亚洲男人天堂| 日本中文在线一区| 亚洲色图欧洲色图| 日韩欧美一区在线| 色婷婷久久一区二区三区麻豆| 免费在线成人网| 亚洲精品第1页| 久久久久久夜精品精品免费| 在线精品视频一区二区三四| 国产一区三区三区| 天天操天天干天天综合网| 中文字幕av一区二区三区高| 69久久夜色精品国产69蝌蚪网| 不卡一卡二卡三乱码免费网站| 日韩精品一卡二卡三卡四卡无卡| 国产精品理论片在线观看| 欧美一区二区三区免费大片 | av亚洲精华国产精华精| 久色婷婷小香蕉久久| 亚洲精品国产一区二区三区四区在线| 欧美精品一区二区三区蜜桃视频| 91精品91久久久中77777| 国产精品一区在线| 蜜乳av一区二区三区| 最新日韩av在线| 久久一区二区三区四区| 欧美情侣在线播放| 91麻豆免费看片| 成人精品gif动图一区| 国模无码大尺度一区二区三区| 亚洲成人7777| 亚洲日本va午夜在线影院| 国产精品网曝门| 久久久精品免费网站| 精品国产乱码久久久久久影片| 欧美日韩国产精选| 欧美伊人久久大香线蕉综合69| 不卡一区二区三区四区| 国产99久久久久| 国内精品久久久久影院一蜜桃| 日本不卡高清视频| 亚洲不卡一区二区三区| 一区二区三区四区国产精品| 国产精品久久夜| 中文字幕一区二区三区不卡| 中文av字幕一区| 欧美国产视频在线| 亚洲国产精品精华液ab| 国产欧美一区二区精品婷婷|