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

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

?? fm_imformq.cs

?? 招聘考試成績管理系統(tǒng),自己做的,C#的,我的軟件工程作業(yè)
?? CS
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace 招聘考試成績管理系統(tǒng)
{
	/// <summary>
	/// fm_imformq 的摘要說明。
	/// </summary>
	public class fm_imformq : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Label label1;
		private System.Data.SqlClient.SqlConnection sqlConnection1;
		private System.Data.SqlClient.SqlDataAdapter sqlDataAdapter1;
		private 招聘考試成績管理系統(tǒng).DataSet1 dataSet11;
		private System.Data.SqlClient.SqlCommand sqlCommand1;
		private System.Windows.Forms.DataGrid dataGrid1;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.Button btquery;
		private System.Windows.Forms.ComboBox comboBox;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Data.SqlClient.SqlCommand sqlSelectCommand1;
		private System.Data.SqlClient.SqlCommand sqlInsertCommand1;
		/// <summary>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

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

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}

		/// <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.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
			this.sqlDataAdapter1 = new System.Data.SqlClient.SqlDataAdapter();
			this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
			this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
			this.dataSet11 = new 招聘考試成績管理系統(tǒng).DataSet1();
			this.sqlCommand1 = new System.Data.SqlClient.SqlCommand();
			this.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.comboBox = new System.Windows.Forms.ComboBox();
			this.btquery = new System.Windows.Forms.Button();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.SuspendLayout();
			// 
			// sqlConnection1
			// 
			this.sqlConnection1.ConnectionString = "workstation id=\"GHX-82E19EF0633\";packet size=4096;integrated security=SSPI;data s" +
				"ource=\".\";persist security info=False;initial catalog=zhaopin";
			// 
			// sqlDataAdapter1
			// 
			this.sqlDataAdapter1.InsertCommand = this.sqlInsertCommand1;
			this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
			this.sqlDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
																									  new System.Data.Common.DataTableMapping("Table", "vstudent", new System.Data.Common.DataColumnMapping[] {
																																																				  new System.Data.Common.DataColumnMapping("準(zhǔn)考證號", "準(zhǔn)考證號"),
																																																				  new System.Data.Common.DataColumnMapping("姓名", "姓名"),
																																																				  new System.Data.Common.DataColumnMapping("性別", "性別"),
																																																				  new System.Data.Common.DataColumnMapping("生日", "生日"),
																																																				  new System.Data.Common.DataColumnMapping("地址", "地址"),
																																																				  new System.Data.Common.DataColumnMapping("身份證", "身份證"),
																																																				  new System.Data.Common.DataColumnMapping("電話", "電話")})});
			// 
			// sqlInsertCommand1
			// 
			this.sqlInsertCommand1.CommandText = "INSERT INTO vstudent(準(zhǔn)考證號, 姓名, 性別, 生日, 地址, 身份證, 電話) VALUES (@準(zhǔn)考證號, @姓名, @性別, @生日," +
				" @地址, @身份證, @電話); SELECT 準(zhǔn)考證號, 姓名, 性別, 生日, 地址, 身份證, 電話 FROM vstudent";
			this.sqlInsertCommand1.Connection = this.sqlConnection1;
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@準(zhǔn)考證號", System.Data.SqlDbType.VarChar, 6, "準(zhǔn)考證號"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@姓名", System.Data.SqlDbType.VarChar, 10, "姓名"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@性別", System.Data.SqlDbType.VarChar, 10, "性別"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@生日", System.Data.SqlDbType.VarChar, 20, "生日"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@地址", System.Data.SqlDbType.VarChar, 50, "地址"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@身份證", System.Data.SqlDbType.VarChar, 20, "身份證"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@電話", System.Data.SqlDbType.VarChar, 20, "電話"));
			// 
			// sqlSelectCommand1
			// 
			this.sqlSelectCommand1.CommandText = "SELECT 準(zhǔn)考證號, 姓名, 性別, 生日, 地址, 身份證, 電話 FROM vstudent";
			this.sqlSelectCommand1.Connection = this.sqlConnection1;
			// 
			// dataSet11
			// 
			this.dataSet11.DataSetName = "DataSet1";
			this.dataSet11.Locale = new System.Globalization.CultureInfo("zh-CN");
			// 
			// sqlCommand1
			// 
			this.sqlCommand1.Connection = this.sqlConnection1;
			this.sqlCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Zno", System.Data.SqlDbType.Char, 6));
			this.sqlCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Name", System.Data.SqlDbType.Char, 10));
			// 
			// dataGrid1
			// 
			this.dataGrid1.CaptionVisible = false;
			this.dataGrid1.DataMember = "";
			this.dataGrid1.DataSource = this.dataSet11.vstudent;
			this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
			this.dataGrid1.Location = new System.Drawing.Point(16, 104);
			this.dataGrid1.Name = "dataGrid1";
			this.dataGrid1.ReadOnly = true;
			this.dataGrid1.RowHeadersVisible = false;
			this.dataGrid1.Size = new System.Drawing.Size(530, 264);
			this.dataGrid1.TabIndex = 1;
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(296, 74);
			this.textBox1.Name = "textBox1";
			this.textBox1.TabIndex = 2;
			this.textBox1.Text = "";
			// 
			// comboBox
			// 
			this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBox.ForeColor = System.Drawing.SystemColors.WindowFrame;
			this.comboBox.Items.AddRange(new object[] {
														  "姓名",
														  "準(zhǔn)考證號碼"});
			this.comboBox.Location = new System.Drawing.Point(88, 75);
			this.comboBox.Name = "comboBox";
			this.comboBox.Size = new System.Drawing.Size(121, 20);
			this.comboBox.Sorted = true;
			this.comboBox.TabIndex = 3;
			// 
			// btquery
			// 
			this.btquery.Location = new System.Drawing.Point(416, 72);
			this.btquery.Name = "btquery";
			this.btquery.TabIndex = 4;
			this.btquery.Text = "查詢";
			this.btquery.Click += new System.EventHandler(this.btquery_Click);
			// 
			// label2
			// 
			this.label2.Font = new System.Drawing.Font("華文楷體", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label2.Location = new System.Drawing.Point(192, 24);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(136, 24);
			this.label2.TabIndex = 5;
			this.label2.Text = "考生信息查詢";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(24, 79);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(56, 16);
			this.label3.TabIndex = 6;
			this.label3.Text = "查詢類型:";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(224, 79);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(56, 16);
			this.label4.TabIndex = 7;
			this.label4.Text = "關(guān)鍵字:";
			// 
			// fm_imformq
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(560, 374);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.btquery);
			this.Controls.Add(this.comboBox);
			this.Controls.Add(this.textBox1);
			this.Controls.Add(this.dataGrid1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
			this.Name = "fm_imformq";
			this.Text = "考生信息查詢";
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.Load += new System.EventHandler(this.fm_imformq_Load);
			((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
			this.ResumeLayout(false);

		}
		#endregion

		private void fm_imformq_Load(object sender, System.EventArgs e)
		{
			this.comboBox.SelectedIndex =1;
			sqlDataAdapter1.Fill(dataSet11,"vstudent");
		}

		private void btquery_Click(object sender, System.EventArgs e)
		{
			try
			{
				this.sqlCommand1.Parameters[0].Value="%"+this.textBox1.Text+"%";
				this.sqlCommand1.Parameters[1].Value="%"+this.textBox1.Text+"%";
				string str ="select * from vstudent ";
				if(this.comboBox.SelectedIndex==0)
                    str += "where 姓名 like @Name";
				else 
					str += "where 準(zhǔn)考證號 like @Zno ";
				this.sqlCommand1.CommandType=CommandType.Text;
				this.sqlDataAdapter1.SelectCommand = sqlCommand1;
				sqlCommand1.CommandText=str;
				dataSet11.Clear();				
				sqlDataAdapter1.Fill(dataSet11,"vstudent");
			}
			catch(Exception oe) 
			{
				this.textBox1.Text=oe.Message;
				MessageBox.Show(oe.Message,"Error");
			}
		}
	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美r级电影在线观看| 中文字幕免费一区| 亚洲国产精品成人久久综合一区| 国产精品久久一级| 日本欧美在线观看| 91天堂素人约啪| 精品成人私密视频| 亚洲国产日韩一区二区| 国产69精品久久久久毛片| 欧美视频三区在线播放| 欧美国产国产综合| 奇米影视一区二区三区| 日本高清无吗v一区| 26uuu亚洲婷婷狠狠天堂| 一区二区三区欧美在线观看| 成人性视频免费网站| 日韩精品一区二区三区蜜臀| 依依成人精品视频| 成人国产免费视频| 国产日韩欧美综合在线| 日韩精品视频网站| 在线电影国产精品| 亚洲h在线观看| 成人av午夜电影| 国产亚洲一区字幕| 九色综合狠狠综合久久| 欧美一区在线视频| 丝袜美腿亚洲一区| 欧美日本高清视频在线观看| 亚洲六月丁香色婷婷综合久久| 成人网男人的天堂| 国产三级欧美三级日产三级99 | 五月开心婷婷久久| 在线一区二区三区四区| 又紧又大又爽精品一区二区| 国产999精品久久久久久绿帽| 久久久久久久综合狠狠综合| 青青草原综合久久大伊人精品优势| 欧美日韩黄视频| 亚洲成人av一区二区三区| 欧美吞精做爰啪啪高潮| 午夜精品福利久久久| 欧美日韩五月天| 免费观看成人av| 精品美女一区二区| 国产一区二区三区四区五区入口| 欧美va亚洲va| 成人开心网精品视频| 亚洲色图制服诱惑| 欧美日韩夫妻久久| 看片网站欧美日韩| 国产日韩欧美一区二区三区综合| 成人黄动漫网站免费app| 亚洲精品免费在线| 欧美一区二区观看视频| 精品一区二区三区免费视频| 中文字幕第一区综合| 91免费精品国自产拍在线不卡| 亚洲黄色片在线观看| 91精品国产综合久久久久久久久久| 日本欧美加勒比视频| 久久综合久色欧美综合狠狠| 国产成人精品亚洲日本在线桃色| 亚洲人精品午夜| 欧美精品乱码久久久久久| 麻豆精品视频在线| 国产精品免费久久久久| 欧美日韩一卡二卡三卡| 麻豆高清免费国产一区| 最近日韩中文字幕| 欧美丰满嫩嫩电影| 国产成人无遮挡在线视频| 一区二区三区不卡在线观看| 精品成人一区二区三区四区| 91视频精品在这里| 韩国午夜理伦三级不卡影院| 一卡二卡三卡日韩欧美| 精品人在线二区三区| 色爱区综合激月婷婷| 国产在线精品视频| 亚洲va欧美va人人爽午夜| 国产精品色在线| 日韩欧美一区二区免费| 色国产综合视频| 国产乱国产乱300精品| 午夜久久久影院| 亚洲午夜影视影院在线观看| 欧美成人精品1314www| av在线综合网| 国产伦精品一区二区三区在线观看| 亚洲激情在线播放| 国产亚洲欧美一级| 日韩欧美www| 欧美老年两性高潮| 色综合 综合色| 成人激情开心网| 国产精品1区2区3区| 婷婷国产v国产偷v亚洲高清| 亚洲乱码一区二区三区在线观看| 久久夜色精品一区| 日韩一区二区三区四区| 在线精品视频免费播放| www.色精品| www.久久精品| 99久久久久久| 成人免费视频app| 国产成人啪免费观看软件| 蜜桃精品在线观看| 蜜臀91精品一区二区三区 | 亚洲制服丝袜av| 1区2区3区欧美| 国产精品视频九色porn| 国产欧美日韩精品在线| 久久精品人人做| 国产精品人妖ts系列视频| 国产亚洲欧美日韩日本| 欧美一级在线视频| 欧美一级片在线| 欧美成人一区二区| 精品欧美一区二区在线观看| 欧美一区二区在线视频| 欧美一区二区三区在线观看| 欧美一级在线视频| 日韩一区二区免费电影| 日韩欧美中文字幕一区| 日韩免费观看2025年上映的电影 | 亚洲欧洲av色图| ●精品国产综合乱码久久久久| 国产精品理论片| 亚洲美女在线国产| 亚洲一区二区在线免费观看视频| 亚洲愉拍自拍另类高清精品| 亚洲国产日韩在线一区模特| 三级欧美在线一区| 精品一区二区三区的国产在线播放| 国产一区二区毛片| 成人高清免费在线播放| 在线视频一区二区免费| 正在播放亚洲一区| 久久久久免费观看| 亚洲摸摸操操av| 日韩国产欧美在线视频| 国产在线精品一区二区不卡了| 成人永久aaa| 精品视频一区三区九区| 精品乱人伦一区二区三区| 91精品国产91久久久久久一区二区 | 欧美精品一区在线观看| 久久亚洲免费视频| 中文字幕在线不卡视频| 午夜一区二区三区视频| 国产一区二区剧情av在线| 色综合咪咪久久| 欧美一区欧美二区| 国产精品欧美久久久久无广告| 亚洲国产日韩av| 国产精品123区| 欧美精品自拍偷拍| 国产女人18水真多18精品一级做| 亚洲精品成人悠悠色影视| 久久国产精品72免费观看| 99久久免费视频.com| 日韩欧美一区电影| 亚洲视频电影在线| 九九国产精品视频| 在线观看日韩国产| 国产亚洲欧洲一区高清在线观看| 亚洲欧美区自拍先锋| 国产一区 二区| 666欧美在线视频| 国产精品初高中害羞小美女文| 麻豆国产精品777777在线| 欧美在线影院一区二区| 国产日产欧美一区| 蜜臀精品久久久久久蜜臀| 成人avav在线| 欧美mv和日韩mv的网站| 同产精品九九九| 成人激情午夜影院| 精品国产污污免费网站入口| 夜夜嗨av一区二区三区| 99视频热这里只有精品免费| 久久五月婷婷丁香社区| 日本不卡的三区四区五区| 欧美在线观看一区| 亚洲精品免费电影| 9色porny自拍视频一区二区| 精品国精品国产| 久久成人免费电影| 欧美一二三区精品| 三级欧美韩日大片在线看| 日韩欧美一二三| 亚洲国产精品一区二区尤物区| 不卡的av电影在线观看| 国产亚洲制服色| 高清国产午夜精品久久久久久| 精品奇米国产一区二区三区| 久久99热这里只有精品| 91麻豆精品国产91久久久久久| 亚洲一区视频在线观看视频|