CNSA-212-Personal/Database2/frmTest.Designer.cs

124 lines
5.4 KiB
C#
Raw Normal View History

2024-02-12 07:06:46 -08:00
namespace Database2
{
2024-02-12 07:27:33 -08:00
partial class frmTest
2024-02-12 07:06:46 -08:00
{
/// <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()
{
2024-02-12 07:37:14 -08:00
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
2024-02-12 07:08:12 -08:00
this.cboTest = new System.Windows.Forms.ComboBox();
this.dgvStudents = new System.Windows.Forms.DataGridView();
2024-02-12 07:27:33 -08:00
this.STUDENT_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.LNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.FNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ACCT_BAL = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DOB = new System.Windows.Forms.DataGridViewTextBoxColumn();
2024-02-12 07:08:12 -08:00
((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).BeginInit();
this.SuspendLayout();
//
// cboTest
//
this.cboTest.FormattingEnabled = true;
this.cboTest.Location = new System.Drawing.Point(184, 120);
this.cboTest.Name = "cboTest";
this.cboTest.Size = new System.Drawing.Size(121, 21);
this.cboTest.TabIndex = 0;
2024-02-12 07:37:14 -08:00
this.cboTest.SelectedIndexChanged += new System.EventHandler(this.cboTest_SelectedIndexChanged);
2024-02-12 07:08:12 -08:00
//
// dgvStudents
//
this.dgvStudents.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
2024-02-12 07:27:33 -08:00
this.dgvStudents.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.STUDENT_ID, this.LNAME, this.FNAME, this.ACCT_BAL, this.DOB });
2024-02-12 07:37:14 -08:00
this.dgvStudents.Location = new System.Drawing.Point(128, 180);
2024-02-12 07:08:12 -08:00
this.dgvStudents.Name = "dgvStudents";
2024-02-12 07:37:14 -08:00
this.dgvStudents.Size = new System.Drawing.Size(545, 242);
2024-02-12 07:08:12 -08:00
this.dgvStudents.TabIndex = 1;
2024-02-12 07:37:14 -08:00
this.dgvStudents.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStudents_CellContentClick);
2024-02-12 07:08:12 -08:00
//
2024-02-12 07:27:33 -08:00
// STUDENT_ID
//
2024-02-12 07:37:14 -08:00
this.STUDENT_ID.DataPropertyName = "STUDENT_ID";
this.STUDENT_ID.HeaderText = "Student ID";
2024-02-12 07:27:33 -08:00
this.STUDENT_ID.Name = "STUDENT_ID";
//
// LNAME
//
2024-02-12 07:37:14 -08:00
this.LNAME.DataPropertyName = "LNAME";
2024-02-12 07:27:33 -08:00
this.LNAME.HeaderText = "Last Name";
this.LNAME.Name = "LNAME";
//
// FNAME
//
2024-02-12 07:37:14 -08:00
this.FNAME.DataPropertyName = "FNAME";
2024-02-12 07:27:33 -08:00
this.FNAME.HeaderText = "First Name";
this.FNAME.Name = "FNAME";
//
// ACCT_BAL
//
2024-02-12 07:37:14 -08:00
this.ACCT_BAL.DataPropertyName = "ACCT_BAL";
dataGridViewCellStyle1.Format = "C2";
dataGridViewCellStyle1.NullValue = null;
this.ACCT_BAL.DefaultCellStyle = dataGridViewCellStyle1;
2024-02-12 07:27:33 -08:00
this.ACCT_BAL.HeaderText = "Account Balance";
this.ACCT_BAL.Name = "ACCT_BAL";
//
// DOB
//
2024-02-12 07:37:14 -08:00
this.DOB.DataPropertyName = "DOB";
dataGridViewCellStyle2.Format = "d";
dataGridViewCellStyle2.NullValue = null;
this.DOB.DefaultCellStyle = dataGridViewCellStyle2;
2024-02-12 07:27:33 -08:00
this.DOB.HeaderText = "Date of Birth";
this.DOB.Name = "DOB";
//
// frmTest
2024-02-12 07:08:12 -08:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
2024-02-12 07:06:46 -08:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
2024-02-12 07:08:12 -08:00
this.Controls.Add(this.dgvStudents);
this.Controls.Add(this.cboTest);
2024-02-12 07:27:33 -08:00
this.Name = "frmTest";
2024-02-12 07:06:46 -08:00
this.Text = "Form1";
2024-02-12 07:53:49 -08:00
this.Load += new System.EventHandler(this.frmTest_Load);
2024-02-12 07:08:12 -08:00
((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit();
this.ResumeLayout(false);
2024-02-12 07:06:46 -08:00
}
2024-02-12 07:27:33 -08:00
private System.Windows.Forms.DataGridViewTextBoxColumn STUDENT_ID;
private System.Windows.Forms.DataGridViewTextBoxColumn FNAME;
private System.Windows.Forms.DataGridViewTextBoxColumn LNAME;
private System.Windows.Forms.DataGridViewTextBoxColumn ACCT_BAL;
private System.Windows.Forms.DataGridViewTextBoxColumn DOB;
2024-02-12 07:08:12 -08:00
private System.Windows.Forms.ComboBox cboTest;
private System.Windows.Forms.DataGridView dgvStudents;
2024-02-12 07:06:46 -08:00
#endregion
}
}