124 lines
5.4 KiB
C#
124 lines
5.4 KiB
C#
namespace Database2
|
|
{
|
|
partial class frmTest
|
|
{
|
|
/// <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()
|
|
{
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
this.cboTest = new System.Windows.Forms.ComboBox();
|
|
this.dgvStudents = new System.Windows.Forms.DataGridView();
|
|
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();
|
|
((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;
|
|
this.cboTest.SelectedIndexChanged += new System.EventHandler(this.cboTest_SelectedIndexChanged);
|
|
//
|
|
// dgvStudents
|
|
//
|
|
this.dgvStudents.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvStudents.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.STUDENT_ID, this.LNAME, this.FNAME, this.ACCT_BAL, this.DOB });
|
|
this.dgvStudents.Location = new System.Drawing.Point(128, 180);
|
|
this.dgvStudents.Name = "dgvStudents";
|
|
this.dgvStudents.Size = new System.Drawing.Size(545, 242);
|
|
this.dgvStudents.TabIndex = 1;
|
|
this.dgvStudents.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStudents_CellContentClick);
|
|
//
|
|
// STUDENT_ID
|
|
//
|
|
this.STUDENT_ID.DataPropertyName = "STUDENT_ID";
|
|
this.STUDENT_ID.HeaderText = "Student ID";
|
|
this.STUDENT_ID.Name = "STUDENT_ID";
|
|
//
|
|
// LNAME
|
|
//
|
|
this.LNAME.DataPropertyName = "LNAME";
|
|
this.LNAME.HeaderText = "Last Name";
|
|
this.LNAME.Name = "LNAME";
|
|
//
|
|
// FNAME
|
|
//
|
|
this.FNAME.DataPropertyName = "FNAME";
|
|
this.FNAME.HeaderText = "First Name";
|
|
this.FNAME.Name = "FNAME";
|
|
//
|
|
// ACCT_BAL
|
|
//
|
|
this.ACCT_BAL.DataPropertyName = "ACCT_BAL";
|
|
dataGridViewCellStyle1.Format = "C2";
|
|
dataGridViewCellStyle1.NullValue = null;
|
|
this.ACCT_BAL.DefaultCellStyle = dataGridViewCellStyle1;
|
|
this.ACCT_BAL.HeaderText = "Account Balance";
|
|
this.ACCT_BAL.Name = "ACCT_BAL";
|
|
//
|
|
// DOB
|
|
//
|
|
this.DOB.DataPropertyName = "DOB";
|
|
dataGridViewCellStyle2.Format = "d";
|
|
dataGridViewCellStyle2.NullValue = null;
|
|
this.DOB.DefaultCellStyle = dataGridViewCellStyle2;
|
|
this.DOB.HeaderText = "Date of Birth";
|
|
this.DOB.Name = "DOB";
|
|
//
|
|
// frmTest
|
|
//
|
|
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.dgvStudents);
|
|
this.Controls.Add(this.cboTest);
|
|
this.Name = "frmTest";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.frmTest_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit();
|
|
this.ResumeLayout(false);
|
|
}
|
|
|
|
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;
|
|
|
|
private System.Windows.Forms.ComboBox cboTest;
|
|
private System.Windows.Forms.DataGridView dgvStudents;
|
|
|
|
#endregion
|
|
}
|
|
} |