Something

This commit is contained in:
Adam McCane 2024-02-20 16:57:25 -05:00
parent b0e7bed537
commit f618333264
2 changed files with 14 additions and 8 deletions

View File

@ -34,8 +34,8 @@ namespace Louis__Pharmacy_CNSA212_FP
System.Windows.Forms.Label lblPatientLast;
System.Windows.Forms.Label lblPhysicianFirst;
System.Windows.Forms.Label lblPhysicianLast;
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmInfo));
this.tbcInfo = new System.Windows.Forms.TabControl();
this.tbpPatient = new System.Windows.Forms.TabPage();
@ -414,9 +414,9 @@ namespace Louis__Pharmacy_CNSA212_FP
// DOB
//
this.DOB.DataPropertyName = "DOB";
dataGridViewCellStyle1.Format = "d";
dataGridViewCellStyle1.NullValue = null;
this.DOB.DefaultCellStyle = dataGridViewCellStyle1;
dataGridViewCellStyle3.Format = "d";
dataGridViewCellStyle3.NullValue = null;
this.DOB.DefaultCellStyle = dataGridViewCellStyle3;
this.DOB.HeaderText = "DOB";
this.DOB.MinimumWidth = 6;
this.DOB.Name = "DOB";
@ -844,9 +844,9 @@ namespace Louis__Pharmacy_CNSA212_FP
// dobb
//
this.dobb.DataPropertyName = "DOB";
dataGridViewCellStyle2.Format = "d";
dataGridViewCellStyle2.NullValue = null;
this.dobb.DefaultCellStyle = dataGridViewCellStyle2;
dataGridViewCellStyle4.Format = "d";
dataGridViewCellStyle4.NullValue = null;
this.dobb.DefaultCellStyle = dataGridViewCellStyle4;
this.dobb.HeaderText = "DOB";
this.dobb.MinimumWidth = 6;
this.dobb.Name = "dobb";
@ -1052,6 +1052,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.cmuAddRefill.Name = "cmuAddRefill";
this.cmuAddRefill.Size = new System.Drawing.Size(180, 22);
this.cmuAddRefill.Text = "Add Refill";
this.cmuAddRefill.Click += new System.EventHandler(this.cmuAddRefill_Click);
//
// frmInfo
//

View File

@ -706,5 +706,10 @@ namespace Louis__Pharmacy_CNSA212_FP
{
}
private void cmuAddRefill_Click(object sender, EventArgs e)
{
}
}
}