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

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

?? booksinfo.cs

?? 圖書館信息管理系統 Library Information Management System
?? CS
?? 第 1 頁 / 共 2 頁
字號:
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>
	/// BooksInfo 的摘要說明。
	/// </summary>
	public class BooksInfo : System.Windows.Forms.Form
	{
		#region Private Forms
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Button btnClose;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.Button btnSearch;
		private System.Windows.Forms.Button btnRefresh;
		private System.Windows.Forms.Button btnBuyBooks;
		private System.Windows.Forms.Button btnExcel;
		private System.Windows.Forms.Button btnEdit;
		private System.Windows.Forms.Button btnDelete;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.ComboBox comboBox1;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.RadioButton radioButton1;
		private System.Windows.Forms.RadioButton radioButton2;
		private System.Windows.Forms.ListView listView1;
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;
		#endregion

		private SqlCommand cmd = null;
		//private SqlDataReader dr = null;
		private DataTable tableTemp = null;

		public BooksInfo()
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			InitializeComponent();
			//
			//Table
			//
			tableTemp = GetData();
			textBox1.Text = "";
			radioButton1.Checked = true;
			ListViewItem item = null;
			int colIndex=0;
			//tableTemp = GetData();
     
			//將所得到的表的列名,賦值給單元格
			foreach(DataColumn col in tableTemp.Columns)
			{
				colIndex++;
				listView1.Columns.Add(col.ColumnName,-2,HorizontalAlignment.Left);
				comboBox1.Items.Add(col.ColumnName);
			}
			//同樣方法處理數據
			foreach(DataRow row in tableTemp.Rows)
			{
				colIndex=0;
				item = new ListViewItem(row[0].ToString());
				for(colIndex= 1;colIndex<tableTemp.Columns.Count;colIndex++)
				{
					item.SubItems.Add(row[colIndex].ToString());
				}
				listView1.Items.Add(item);
			}
		}

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

		#region Windows 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </summary>
		private void InitializeComponent()
		{
			this.label1 = new System.Windows.Forms.Label();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.listView1 = new System.Windows.Forms.ListView();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.btnDelete = new System.Windows.Forms.Button();
			this.btnEdit = new System.Windows.Forms.Button();
			this.btnBuyBooks = new System.Windows.Forms.Button();
			this.btnRefresh = new System.Windows.Forms.Button();
			this.btnClose = new System.Windows.Forms.Button();
			this.btnExcel = new System.Windows.Forms.Button();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.comboBox1 = new System.Windows.Forms.ComboBox();
			this.radioButton2 = new System.Windows.Forms.RadioButton();
			this.radioButton1 = new System.Windows.Forms.RadioButton();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.btnSearch = new System.Windows.Forms.Button();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.groupBox1.SuspendLayout();
			this.groupBox2.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.ForeColor = System.Drawing.Color.Black;
			this.label1.Location = new System.Drawing.Point(289, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(216, 23);
			this.label1.TabIndex = 0;
			this.label1.Text = "圖   書   資  料";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.listView1);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox1.Location = new System.Drawing.Point(8, 48);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(776, 312);
			this.groupBox1.TabIndex = 1;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "已入庫圖書";
			// 
			// 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.MultiSelect = false;
			this.listView1.Name = "listView1";
			this.listView1.Size = new System.Drawing.Size(770, 292);
			this.listView1.Sorting = System.Windows.Forms.SortOrder.Descending;
			this.listView1.TabIndex = 0;
			this.listView1.View = System.Windows.Forms.View.Details;
			this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
			this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.btnDelete);
			this.groupBox2.Controls.Add(this.btnEdit);
			this.groupBox2.Controls.Add(this.btnBuyBooks);
			this.groupBox2.Controls.Add(this.btnRefresh);
			this.groupBox2.Controls.Add(this.btnClose);
			this.groupBox2.Controls.Add(this.btnExcel);
			this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox2.Location = new System.Drawing.Point(448, 376);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(312, 112);
			this.groupBox2.TabIndex = 2;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "導航";
			// 
			// btnDelete
			// 
			this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnDelete.Location = new System.Drawing.Point(207, 32);
			this.btnDelete.Name = "btnDelete";
			this.btnDelete.Size = new System.Drawing.Size(82, 23);
			this.btnDelete.TabIndex = 8;
			this.btnDelete.Text = "刪除";
			this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
			// 
			// btnEdit
			// 
			this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnEdit.Location = new System.Drawing.Point(115, 32);
			this.btnEdit.Name = "btnEdit";
			this.btnEdit.Size = new System.Drawing.Size(82, 23);
			this.btnEdit.TabIndex = 7;
			this.btnEdit.Text = "修改";
			this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
			// 
			// btnBuyBooks
			// 
			this.btnBuyBooks.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnBuyBooks.Location = new System.Drawing.Point(23, 32);
			this.btnBuyBooks.Name = "btnBuyBooks";
			this.btnBuyBooks.Size = new System.Drawing.Size(82, 23);
			this.btnBuyBooks.TabIndex = 6;
			this.btnBuyBooks.Text = "新添";
			this.btnBuyBooks.Click += new System.EventHandler(this.btnBuyBooks_Click);
			// 
			// btnRefresh
			// 
			this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnRefresh.Location = new System.Drawing.Point(115, 72);
			this.btnRefresh.Name = "btnRefresh";
			this.btnRefresh.Size = new System.Drawing.Size(82, 23);
			this.btnRefresh.TabIndex = 5;
			this.btnRefresh.Text = "重置";
			this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
			// 
			// btnClose
			// 
			this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnClose.Location = new System.Drawing.Point(207, 72);
			this.btnClose.Name = "btnClose";
			this.btnClose.Size = new System.Drawing.Size(82, 23);
			this.btnClose.TabIndex = 4;
			this.btnClose.Text = "關閉";
			this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
			// 
			// btnExcel
			// 
			this.btnExcel.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnExcel.Location = new System.Drawing.Point(23, 72);
			this.btnExcel.Name = "btnExcel";
			this.btnExcel.Size = new System.Drawing.Size(82, 23);
			this.btnExcel.TabIndex = 0;
			this.btnExcel.Text = "導出至Excel";
			this.btnExcel.Click += new System.EventHandler(this.btnExcel_Click);
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.comboBox1);
			this.groupBox3.Controls.Add(this.radioButton2);
			this.groupBox3.Controls.Add(this.radioButton1);
			this.groupBox3.Controls.Add(this.label3);
			this.groupBox3.Controls.Add(this.label2);
			this.groupBox3.Controls.Add(this.btnSearch);
			this.groupBox3.Controls.Add(this.textBox1);
			this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox3.Location = new System.Drawing.Point(24, 376);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(416, 112);
			this.groupBox3.TabIndex = 3;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "查詢記錄";
			// 
			// comboBox1
			// 
			this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBox1.Location = new System.Drawing.Point(104, 32);
			this.comboBox1.Name = "comboBox1";
			this.comboBox1.Size = new System.Drawing.Size(121, 20);
			this.comboBox1.TabIndex = 6;
			// 
			// radioButton2
			// 
			this.radioButton2.Location = new System.Drawing.Point(320, 32);
			this.radioButton2.Name = "radioButton2";
			this.radioButton2.Size = new System.Drawing.Size(72, 24);
			this.radioButton2.TabIndex = 9;
			this.radioButton2.Text = "模糊查詢";
			// 
			// radioButton1
			// 
			this.radioButton1.Checked = true;
			this.radioButton1.Location = new System.Drawing.Point(240, 32);
			this.radioButton1.Name = "radioButton1";
			this.radioButton1.Size = new System.Drawing.Size(72, 24);
			this.radioButton1.TabIndex = 8;
			this.radioButton1.TabStop = true;
			this.radioButton1.Text = "精確查詢";
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(24, 72);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(66, 17);
			this.label3.TabIndex = 7;
			this.label3.Text = "查詢條件:";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(24, 32);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(66, 17);
			this.label2.TabIndex = 5;
			this.label2.Text = "查詢依據:";
			// 
			// btnSearch
			// 
			this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnSearch.Location = new System.Drawing.Point(336, 72);
			this.btnSearch.Name = "btnSearch";
			this.btnSearch.Size = new System.Drawing.Size(56, 23);
			this.btnSearch.TabIndex = 4;
			this.btnSearch.Text = "查詢";
			this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(104, 72);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(208, 21);
			this.textBox1.TabIndex = 3;
			this.textBox1.Text = "";
			this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
			// 
			// BooksInfo
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(790, 503);
			this.ControlBox = false;
			this.Controls.Add(this.groupBox3);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.groupBox1);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99re8在线精品视频免费播放| 国产精品久久久久9999吃药| 亚洲一区二区视频在线观看| 91色porny蝌蚪| 亚洲精品你懂的| 在线免费不卡视频| 日韩主播视频在线| 精品久久久久久最新网址| 国产自产v一区二区三区c| 国产免费久久精品| 在线国产亚洲欧美| 麻豆国产精品一区二区三区| 久久久蜜臀国产一区二区| caoporn国产精品| 亚洲午夜在线观看视频在线| 日韩欧美一区二区在线视频| 粉嫩欧美一区二区三区高清影视| 综合电影一区二区三区 | 欧美高清在线精品一区| 97se亚洲国产综合自在线不卡| 亚洲精品国产一区二区精华液| 这里只有精品电影| 国产成人高清视频| 亚洲电影激情视频网站| 337p日本欧洲亚洲大胆精品| 一本久久a久久免费精品不卡| 亚洲成人动漫在线观看| 国产欧美精品一区| 欧美无人高清视频在线观看| 韩国毛片一区二区三区| 亚洲人成影院在线观看| 欧美大片在线观看| 日本高清不卡一区| 国产最新精品精品你懂的| 一区二区三区欧美久久| 久久久午夜精品| 欧美人动与zoxxxx乱| 粉嫩蜜臀av国产精品网站| 三级欧美在线一区| ●精品国产综合乱码久久久久| 这里只有精品99re| 91丨国产丨九色丨pron| 激情综合色播激情啊| 九色综合国产一区二区三区| 亚洲色图.com| 久久亚洲精品小早川怜子| 欧美日韩中文另类| 91在线观看下载| 国产一区中文字幕| 日韩一区精品视频| 亚洲猫色日本管| 国产精品丝袜在线| 久久久久久亚洲综合| 91美女蜜桃在线| 国产aⅴ综合色| 久久9热精品视频| 三级久久三级久久久| 亚洲三级视频在线观看| 国产清纯白嫩初高生在线观看91 | 色综合久久久久久久| 国产91清纯白嫩初高中在线观看 | 国产在线视频一区二区三区| 亚洲成av人片在www色猫咪| 亚洲综合免费观看高清完整版在线| 亚洲国产精品t66y| 国产精品日日摸夜夜摸av| 国产亚洲成aⅴ人片在线观看| 日韩手机在线导航| 欧美妇女性影城| 欧美巨大另类极品videosbest | 亚洲va欧美va人人爽| 亚洲激情图片一区| 一区二区在线观看视频在线观看| 国产精品乱码久久久久久| 欧美激情一区在线观看| 国产网站一区二区| 亚洲国产高清aⅴ视频| 中文字幕高清不卡| 国产精品久久久久久久久快鸭 | 成人黄色大片在线观看| 成人黄色片在线观看| aaa亚洲精品一二三区| 成人avav影音| 色欧美88888久久久久久影院| 色综合久久综合| 欧美三级资源在线| 日韩一区二区在线看| 精品久久久久一区| 国产精品免费丝袜| 亚洲一区免费视频| 视频一区二区三区中文字幕| 免费观看在线色综合| 国产91丝袜在线播放九色| 99精品热视频| 欧美视频精品在线观看| 日韩欧美激情在线| 国产婷婷色一区二区三区四区| 国产精品久久一卡二卡| 亚洲精选视频免费看| 午夜精品在线看| 国产一区二区三区不卡在线观看 | 91色porny在线视频| 欧洲另类一二三四区| 欧美一区二区三区视频免费| 久久精品夜色噜噜亚洲aⅴ| 亚洲丝袜精品丝袜在线| 视频一区二区三区入口| 国产精品2024| 在线一区二区三区四区五区 | 7799精品视频| 国产亚洲制服色| 亚洲欧美视频在线观看| 蜜桃精品在线观看| 成人一级片网址| 欧美日韩国产另类一区| 亚洲国产精品黑人久久久| 亚洲狠狠爱一区二区三区| 国精产品一区一区三区mba桃花| 99久久er热在这里只有精品15| 欧美日韩日本视频| 国产夜色精品一区二区av| 亚洲va天堂va国产va久| 成人黄色av电影| 欧美肥胖老妇做爰| 国产精品欧美极品| 久久国产精品露脸对白| 色婷婷国产精品| 国产无一区二区| 日本aⅴ亚洲精品中文乱码| 99精品国产99久久久久久白柏 | 国产福利一区二区三区| 欧美三级韩国三级日本一级| 国产人妖乱国产精品人妖| 亚洲成人激情综合网| 成人成人成人在线视频| 日韩欧美色综合| 亚洲一区二区影院| 久久综合中文字幕| 性久久久久久久久久久久| 99久久婷婷国产综合精品| 精品国产乱子伦一区| 亚洲aaa精品| 国产成人亚洲精品狼色在线| 欧美一区二区网站| 亚洲第一狼人社区| 色激情天天射综合网| 亚洲欧洲成人自拍| 国产麻豆视频精品| 亚洲精品在线三区| 男女性色大片免费观看一区二区 | 在线播放日韩导航| 一区二区三区 在线观看视频| 高清在线观看日韩| 久久嫩草精品久久久精品| 视频一区二区三区入口| 欧美日韩美女一区二区| 一区二区成人在线观看| 99精品视频在线观看免费| 欧美国产精品一区二区三区| 国产一区在线精品| 精品国产乱码久久久久久久久| 日本亚洲三级在线| 91精品国产免费| 美女免费视频一区| 日韩免费视频一区二区| 蜜臀av一区二区在线观看| 欧美一区二区视频网站| 欧美a级理论片| 欧美成人在线直播| 激情久久五月天| 久久毛片高清国产| 国产精品亚洲午夜一区二区三区| 久久久久久黄色| 丰满少妇久久久久久久| 国产精品国产精品国产专区不片| 波多野结衣的一区二区三区| 国产精品国产馆在线真实露脸| av在线综合网| 一区二区三区丝袜| 欧美日韩日日骚| 免费成人美女在线观看| 久久久不卡网国产精品二区| 国产99久久久国产精品免费看| 国产女同性恋一区二区| 99re免费视频精品全部| 亚洲最大成人综合| 欧美一级理论片| 成人性生交大片免费看在线播放| 国产精品欧美久久久久一区二区| 99久久久久久| 午夜视频在线观看一区| 欧美videossexotv100| 国产mv日韩mv欧美| 一区二区三区产品免费精品久久75| 欧美丝袜自拍制服另类| 美女视频一区二区三区| 亚洲国产激情av| 欧美片网站yy| 国产·精品毛片| 亚洲成av人片在线观看无码|