CNSA-212-Personal/Database3-submit/Database3/frmSearch.Designer.cs
EggMan20339 082b1f2bcd update
2024-02-16 07:50:40 -05:00

194 lines
8.6 KiB
C#

namespace Database3
{
partial class frmSearch
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.lblDisStID = new System.Windows.Forms.Label();
this.dgvStudents = new System.Windows.Forms.DataGridView();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.cmuSearch = new System.Windows.Forms.ToolStripMenuItem();
this.cmuEdit = new System.Windows.Forms.ToolStripMenuItem();
this.cmuDelete = new System.Windows.Forms.ToolStripMenuItem();
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.contextMenuStrip1.SuspendLayout();
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.ContextMenuStrip = this.contextMenuStrip1;
this.dgvStudents.Location = new System.Drawing.Point(77, 250);
this.dgvStudents.Name = "dgvStudents";
this.dgvStudents.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvStudents.Size = new System.Drawing.Size(638, 150);
this.dgvStudents.TabIndex = 1;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSeparator1, this.cmuSearch, this.cmuEdit, this.cmuDelete });
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(153, 98);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
//
// cmuSearch
//
this.cmuSearch.Name = "cmuSearch";
this.cmuSearch.Size = new System.Drawing.Size(152, 22);
this.cmuSearch.Text = "Search";
this.cmuSearch.Click += new System.EventHandler(this.cmuSearch_Click);
//
// cmuEdit
//
this.cmuEdit.Name = "cmuEdit";
this.cmuEdit.Size = new System.Drawing.Size(152, 22);
this.cmuEdit.Text = "Edit";
this.cmuEdit.Click += new System.EventHandler(this.cmuEdit_Click);
//
// cmuDelete
//
this.cmuDelete.Name = "cmuDelete";
this.cmuDelete.Size = new System.Drawing.Size(152, 22);
this.cmuDelete.Text = "Delete";
this.cmuDelete.Click += new System.EventHandler(this.cmuDelete_Click);
//
// 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;
this.txtStuID.TextChanged += new System.EventHandler(this.txtStuID_TextChanged);
//
// 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.ContextMenuStrip = this.contextMenuStrip1;
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";
this.Load += new System.EventHandler(this.frmSearch_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem cmuSearch;
private System.Windows.Forms.ToolStripMenuItem cmuEdit;
private System.Windows.Forms.ToolStripMenuItem cmuDelete;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
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
}
}