namespace Database3 { partial class frmSearch { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.lblDisStID = new System.Windows.Forms.Label(); this.dgvStudents = new System.Windows.Forms.DataGridView(); this.lblDislname = new System.Windows.Forms.Label(); this.lblDisDOB = new System.Windows.Forms.Label(); this.txtStuID = new System.Windows.Forms.TextBox(); this.txtlname = new System.Windows.Forms.TextBox(); this.txtDOB = new System.Windows.Forms.TextBox(); this.btnSearch = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).BeginInit(); this.SuspendLayout(); // // lblDisStID // this.lblDisStID.Location = new System.Drawing.Point(206, 87); this.lblDisStID.Name = "lblDisStID"; this.lblDisStID.Size = new System.Drawing.Size(130, 21); this.lblDisStID.TabIndex = 0; this.lblDisStID.Text = "Student ID:"; this.lblDisStID.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // dgvStudents // this.dgvStudents.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvStudents.Location = new System.Drawing.Point(77, 250); this.dgvStudents.Name = "dgvStudents"; this.dgvStudents.Size = new System.Drawing.Size(638, 150); this.dgvStudents.TabIndex = 1; // // lblDislname // this.lblDislname.Location = new System.Drawing.Point(206, 108); this.lblDislname.Name = "lblDislname"; this.lblDislname.Size = new System.Drawing.Size(130, 21); this.lblDislname.TabIndex = 2; this.lblDislname.Text = "Last Name:"; this.lblDislname.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // lblDisDOB // this.lblDisDOB.Location = new System.Drawing.Point(206, 129); this.lblDisDOB.Name = "lblDisDOB"; this.lblDisDOB.Size = new System.Drawing.Size(130, 21); this.lblDisDOB.TabIndex = 3; this.lblDisDOB.Text = "Date of Birth:"; this.lblDisDOB.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // txtStuID // this.txtStuID.Location = new System.Drawing.Point(342, 88); this.txtStuID.Name = "txtStuID"; this.txtStuID.Size = new System.Drawing.Size(132, 20); this.txtStuID.TabIndex = 4; // // txtlname // this.txtlname.Location = new System.Drawing.Point(342, 109); this.txtlname.Name = "txtlname"; this.txtlname.Size = new System.Drawing.Size(132, 20); this.txtlname.TabIndex = 5; // // txtDOB // this.txtDOB.Location = new System.Drawing.Point(342, 130); this.txtDOB.Name = "txtDOB"; this.txtDOB.Size = new System.Drawing.Size(132, 20); this.txtDOB.TabIndex = 6; // // btnSearch // this.btnSearch.Location = new System.Drawing.Point(399, 175); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(75, 23); this.btnSearch.TabIndex = 7; this.btnSearch.Text = "Search"; this.btnSearch.UseVisualStyleBackColor = true; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // frmSearch // this.AcceptButton = this.btnSearch; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.btnSearch); this.Controls.Add(this.txtDOB); this.Controls.Add(this.txtlname); this.Controls.Add(this.txtStuID); this.Controls.Add(this.lblDisDOB); this.Controls.Add(this.lblDislname); this.Controls.Add(this.dgvStudents); this.Controls.Add(this.lblDisStID); this.Name = "frmSearch"; this.Text = "Form1"; ((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.Label lblDislname; private System.Windows.Forms.Label lblDisDOB; private System.Windows.Forms.TextBox txtStuID; private System.Windows.Forms.TextBox txtlname; private System.Windows.Forms.TextBox txtDOB; private System.Windows.Forms.Button btnSearch; private System.Windows.Forms.Label lblDisStID; private System.Windows.Forms.DataGridView dgvStudents; #endregion } }