Exemplo n.º 1
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(XtraForm1));
			this.printDialog1 = new System.Windows.Forms.PrintDialog();
			this.printDocument1 = new System.Drawing.Printing.PrintDocument();
			this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
			this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog();
			this.dataSet11 = new CPTTProTest.DataSet1();
			this.sqlDataAdapter1 = new System.Data.SqlClient.SqlDataAdapter();
			this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
			this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
			this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
			this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
			this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
			this.button1 = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			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();
			this.SuspendLayout();
			// 
			// printPreviewDialog1
			// 
			this.printPreviewDialog1.AutoScrollMargin = new System.Drawing.Size(0, 0);
			this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
			this.printPreviewDialog1.ClientSize = new System.Drawing.Size(400, 300);
			this.printPreviewDialog1.Enabled = true;
			this.printPreviewDialog1.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
			this.printPreviewDialog1.Location = new System.Drawing.Point(260, 17);
			this.printPreviewDialog1.MinimumSize = new System.Drawing.Size(375, 250);
			this.printPreviewDialog1.Name = "printPreviewDialog1";
			this.printPreviewDialog1.TransparencyKey = System.Drawing.Color.Empty;
			this.printPreviewDialog1.Visible = false;
			// 
			// dataSet11
			// 
			this.dataSet11.DataSetName = "DataSet1";
			this.dataSet11.Locale = new System.Globalization.CultureInfo("zh-CN");
			// 
			// sqlDataAdapter1
			// 
			this.sqlDataAdapter1.DeleteCommand = this.sqlDeleteCommand1;
			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", "SMS_Register_Info", new System.Data.Common.DataColumnMapping[] {
																																																						   new System.Data.Common.DataColumnMapping("smsInfo_id", "smsInfo_id"),
																																																						   new System.Data.Common.DataColumnMapping("studInfo_stuid", "studInfo_stuid"),
																																																						   new System.Data.Common.DataColumnMapping("familial_name", "familial_name"),
																																																						   new System.Data.Common.DataColumnMapping("mobilePhone_number", "mobilePhone_number"),
																																																						   new System.Data.Common.DataColumnMapping("stu_grade", "stu_grade"),
																																																						   new System.Data.Common.DataColumnMapping("stu_class", "stu_class")})});
			this.sqlDataAdapter1.UpdateCommand = this.sqlUpdateCommand1;
			// 
			// sqlDeleteCommand1
			// 
			this.sqlDeleteCommand1.CommandText = @"DELETE FROM SMS_Register_Info WHERE (smsInfo_id = @Original_smsInfo_id) AND (familial_name = @Original_familial_name) AND (mobilePhone_number = @Original_mobilePhone_number) AND (stu_class = @Original_stu_class) AND (stu_grade = @Original_stu_grade) AND (studInfo_stuid = @Original_studInfo_stuid)";
			this.sqlDeleteCommand1.Connection = this.sqlConnection1;
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_smsInfo_id", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "smsInfo_id", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_familial_name", System.Data.SqlDbType.VarChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "familial_name", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_mobilePhone_number", System.Data.SqlDbType.VarChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "mobilePhone_number", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_class", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_class", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_grade", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_grade", System.Data.DataRowVersion.Original, null));
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_studInfo_stuid", System.Data.SqlDbType.VarChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "studInfo_stuid", System.Data.DataRowVersion.Original, null));
			// 
			// sqlConnection1
			// 
			this.sqlConnection1.ConnectionString = "workstation id=YOUNG;packet size=4096;user id=ctpp;password=ctpp;data source=\"YAN" +
				"FASERVER\\CZSERVER\";persist security info=False;initial catalog=CTPPDB";
			// 
			// sqlInsertCommand1
			// 
			this.sqlInsertCommand1.CommandText = @"INSERT INTO SMS_Register_Info(studInfo_stuid, familial_name, mobilePhone_number, stu_grade, stu_class) VALUES (@studInfo_stuid, @familial_name, @mobilePhone_number, @stu_grade, @stu_class); SELECT smsInfo_id, studInfo_stuid, familial_name, mobilePhone_number, stu_grade, stu_class FROM SMS_Register_Info WHERE (smsInfo_id = @@IDENTITY)";
			this.sqlInsertCommand1.Connection = this.sqlConnection1;
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@studInfo_stuid", System.Data.SqlDbType.VarChar, 50, "studInfo_stuid"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@familial_name", System.Data.SqlDbType.VarChar, 10, "familial_name"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@mobilePhone_number", System.Data.SqlDbType.VarChar, 15, "mobilePhone_number"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_grade", System.Data.SqlDbType.SmallInt, 2, "stu_grade"));
			this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_class", System.Data.SqlDbType.SmallInt, 2, "stu_class"));
			// 
			// sqlSelectCommand1
			// 
			this.sqlSelectCommand1.CommandText = "SELECT smsInfo_id, studInfo_stuid, familial_name, mobilePhone_number, stu_grade, " +
				"stu_class FROM SMS_Register_Info";
			this.sqlSelectCommand1.Connection = this.sqlConnection1;
			// 
			// sqlUpdateCommand1
			// 
			this.sqlUpdateCommand1.CommandText = @"UPDATE SMS_Register_Info SET studInfo_stuid = @studInfo_stuid, familial_name = @familial_name, mobilePhone_number = @mobilePhone_number, stu_grade = @stu_grade, stu_class = @stu_class WHERE (smsInfo_id = @Original_smsInfo_id) AND (familial_name = @Original_familial_name) AND (mobilePhone_number = @Original_mobilePhone_number) AND (stu_class = @Original_stu_class) AND (stu_grade = @Original_stu_grade) AND (studInfo_stuid = @Original_studInfo_stuid); SELECT smsInfo_id, studInfo_stuid, familial_name, mobilePhone_number, stu_grade, stu_class FROM SMS_Register_Info WHERE (smsInfo_id = @smsInfo_id)";
			this.sqlUpdateCommand1.Connection = this.sqlConnection1;
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@studInfo_stuid", System.Data.SqlDbType.VarChar, 50, "studInfo_stuid"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@familial_name", System.Data.SqlDbType.VarChar, 10, "familial_name"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@mobilePhone_number", System.Data.SqlDbType.VarChar, 15, "mobilePhone_number"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_grade", System.Data.SqlDbType.SmallInt, 2, "stu_grade"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_class", System.Data.SqlDbType.SmallInt, 2, "stu_class"));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_smsInfo_id", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "smsInfo_id", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_familial_name", System.Data.SqlDbType.VarChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "familial_name", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_mobilePhone_number", System.Data.SqlDbType.VarChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "mobilePhone_number", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_class", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_class", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_grade", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_grade", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_studInfo_stuid", System.Data.SqlDbType.VarChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "studInfo_stuid", System.Data.DataRowVersion.Original, null));
			this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@smsInfo_id", System.Data.SqlDbType.Int, 4, "smsInfo_id"));
			// 
			// button1
			// 
			this.button1.Location = new System.Drawing.Point(320, 360);
			this.button1.Name = "button1";
			this.button1.TabIndex = 1;
			this.button1.Text = "button1";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(312, 168);
			this.label1.Name = "label1";
			this.label1.TabIndex = 2;
			this.label1.Text = "label1";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(312, 232);
			this.label2.Name = "label2";
			this.label2.TabIndex = 2;
			this.label2.Text = "label1";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(304, 272);
			this.label3.Name = "label3";
			this.label3.TabIndex = 2;
			this.label3.Text = "label1";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(304, 312);
			this.label4.Name = "label4";
			this.label4.TabIndex = 2;
			this.label4.Text = "label1";
			// 
			// XtraForm1
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
			this.ClientSize = new System.Drawing.Size(616, 421);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.button1);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.label4);
			this.Name = "XtraForm1";
			this.Text = "XtraForm1";
			this.Load += new System.EventHandler(this.XtraForm1_Load);
			((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
			this.ResumeLayout(false);

		}
Exemplo n.º 2
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(XtraForm1));
     this.printDialog1        = new System.Windows.Forms.PrintDialog();
     this.printDocument1      = new System.Drawing.Printing.PrintDocument();
     this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
     this.pageSetupDialog1    = new System.Windows.Forms.PageSetupDialog();
     this.dataSet11           = new CPTTProTest.DataSet1();
     this.sqlDataAdapter1     = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlDeleteCommand1   = new System.Data.SqlClient.SqlCommand();
     this.sqlConnection1      = new System.Data.SqlClient.SqlConnection();
     this.sqlInsertCommand1   = new System.Data.SqlClient.SqlCommand();
     this.sqlSelectCommand1   = new System.Data.SqlClient.SqlCommand();
     this.sqlUpdateCommand1   = new System.Data.SqlClient.SqlCommand();
     this.button1             = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     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();
     this.SuspendLayout();
     //
     // printPreviewDialog1
     //
     this.printPreviewDialog1.AutoScrollMargin  = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.ClientSize        = new System.Drawing.Size(400, 300);
     this.printPreviewDialog1.Enabled           = true;
     this.printPreviewDialog1.Icon            = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
     this.printPreviewDialog1.Location        = new System.Drawing.Point(260, 17);
     this.printPreviewDialog1.MinimumSize     = new System.Drawing.Size(375, 250);
     this.printPreviewDialog1.Name            = "printPreviewDialog1";
     this.printPreviewDialog1.TransparencyKey = System.Drawing.Color.Empty;
     this.printPreviewDialog1.Visible         = false;
     //
     // dataSet11
     //
     this.dataSet11.DataSetName = "DataSet1";
     this.dataSet11.Locale      = new System.Globalization.CultureInfo("zh-CN");
     //
     // sqlDataAdapter1
     //
     this.sqlDataAdapter1.DeleteCommand = this.sqlDeleteCommand1;
     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", "SMS_Register_Info", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("smsInfo_id", "smsInfo_id"),
             new System.Data.Common.DataColumnMapping("studInfo_stuid", "studInfo_stuid"),
             new System.Data.Common.DataColumnMapping("familial_name", "familial_name"),
             new System.Data.Common.DataColumnMapping("mobilePhone_number", "mobilePhone_number"),
             new System.Data.Common.DataColumnMapping("stu_grade", "stu_grade"),
             new System.Data.Common.DataColumnMapping("stu_class", "stu_class")
         })
     });
     this.sqlDataAdapter1.UpdateCommand = this.sqlUpdateCommand1;
     //
     // sqlDeleteCommand1
     //
     this.sqlDeleteCommand1.CommandText = @"DELETE FROM SMS_Register_Info WHERE (smsInfo_id = @Original_smsInfo_id) AND (familial_name = @Original_familial_name) AND (mobilePhone_number = @Original_mobilePhone_number) AND (stu_class = @Original_stu_class) AND (stu_grade = @Original_stu_grade) AND (studInfo_stuid = @Original_studInfo_stuid)";
     this.sqlDeleteCommand1.Connection  = this.sqlConnection1;
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_smsInfo_id", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "smsInfo_id", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_familial_name", System.Data.SqlDbType.VarChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "familial_name", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_mobilePhone_number", System.Data.SqlDbType.VarChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "mobilePhone_number", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_class", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_class", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_grade", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_grade", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_studInfo_stuid", System.Data.SqlDbType.VarChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "studInfo_stuid", System.Data.DataRowVersion.Original, null));
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = "workstation id=YOUNG;packet size=4096;user id=ctpp;password=ctpp;data source=\"YAN" +
                                            "FASERVER\\CZSERVER\";persist security info=False;initial catalog=CTPPDB";
     //
     // sqlInsertCommand1
     //
     this.sqlInsertCommand1.CommandText = @"INSERT INTO SMS_Register_Info(studInfo_stuid, familial_name, mobilePhone_number, stu_grade, stu_class) VALUES (@studInfo_stuid, @familial_name, @mobilePhone_number, @stu_grade, @stu_class); SELECT smsInfo_id, studInfo_stuid, familial_name, mobilePhone_number, stu_grade, stu_class FROM SMS_Register_Info WHERE (smsInfo_id = @@IDENTITY)";
     this.sqlInsertCommand1.Connection  = this.sqlConnection1;
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@studInfo_stuid", System.Data.SqlDbType.VarChar, 50, "studInfo_stuid"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@familial_name", System.Data.SqlDbType.VarChar, 10, "familial_name"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@mobilePhone_number", System.Data.SqlDbType.VarChar, 15, "mobilePhone_number"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_grade", System.Data.SqlDbType.SmallInt, 2, "stu_grade"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_class", System.Data.SqlDbType.SmallInt, 2, "stu_class"));
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = "SELECT smsInfo_id, studInfo_stuid, familial_name, mobilePhone_number, stu_grade, " +
                                          "stu_class FROM SMS_Register_Info";
     this.sqlSelectCommand1.Connection = this.sqlConnection1;
     //
     // sqlUpdateCommand1
     //
     this.sqlUpdateCommand1.CommandText = @"UPDATE SMS_Register_Info SET studInfo_stuid = @studInfo_stuid, familial_name = @familial_name, mobilePhone_number = @mobilePhone_number, stu_grade = @stu_grade, stu_class = @stu_class WHERE (smsInfo_id = @Original_smsInfo_id) AND (familial_name = @Original_familial_name) AND (mobilePhone_number = @Original_mobilePhone_number) AND (stu_class = @Original_stu_class) AND (stu_grade = @Original_stu_grade) AND (studInfo_stuid = @Original_studInfo_stuid); SELECT smsInfo_id, studInfo_stuid, familial_name, mobilePhone_number, stu_grade, stu_class FROM SMS_Register_Info WHERE (smsInfo_id = @smsInfo_id)";
     this.sqlUpdateCommand1.Connection  = this.sqlConnection1;
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@studInfo_stuid", System.Data.SqlDbType.VarChar, 50, "studInfo_stuid"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@familial_name", System.Data.SqlDbType.VarChar, 10, "familial_name"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@mobilePhone_number", System.Data.SqlDbType.VarChar, 15, "mobilePhone_number"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_grade", System.Data.SqlDbType.SmallInt, 2, "stu_grade"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@stu_class", System.Data.SqlDbType.SmallInt, 2, "stu_class"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_smsInfo_id", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "smsInfo_id", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_familial_name", System.Data.SqlDbType.VarChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "familial_name", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_mobilePhone_number", System.Data.SqlDbType.VarChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "mobilePhone_number", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_class", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_class", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_stu_grade", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "stu_grade", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_studInfo_stuid", System.Data.SqlDbType.VarChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "studInfo_stuid", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@smsInfo_id", System.Data.SqlDbType.Int, 4, "smsInfo_id"));
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(320, 360);
     this.button1.Name     = "button1";
     this.button1.TabIndex = 1;
     this.button1.Text     = "button1";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(312, 168);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 2;
     this.label1.Text     = "label1";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(312, 232);
     this.label2.Name     = "label2";
     this.label2.TabIndex = 2;
     this.label2.Text     = "label1";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(304, 272);
     this.label3.Name     = "label3";
     this.label3.TabIndex = 2;
     this.label3.Text     = "label1";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(304, 312);
     this.label4.Name     = "label4";
     this.label4.TabIndex = 2;
     this.label4.Text     = "label1";
     //
     // XtraForm1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(616, 421);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label4);
     this.Name  = "XtraForm1";
     this.Text  = "XtraForm1";
     this.Load += new System.EventHandler(this.XtraForm1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     this.ResumeLayout(false);
 }