Merge remote-tracking branch 'origin/master'
# Conflicts: # Louis'-Pharmacy_CNSA212-FP/frmInfo.Designer.cs # Louis'-Pharmacy_CNSA212-FP/frmInfo.cs
This commit is contained in:
commit
277d53b602
101
Louis'-Pharmacy_CNSA212-FP/frmRefill.Designer.cs
generated
101
Louis'-Pharmacy_CNSA212-FP/frmRefill.Designer.cs
generated
@ -54,8 +54,18 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.cmuAdd = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.cmuUpdate = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.cmuDelete = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
||||
this.txtPatientID = new System.Windows.Forms.TextBox();
|
||||
this.txtDate = new System.Windows.Forms.TextBox();
|
||||
this.btnSearch = new System.Windows.Forms.Button();
|
||||
this.lblPatientID = new System.Windows.Forms.Label();
|
||||
this.lblDate = new System.Windows.Forms.Label();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
||||
this.contextMenuStrip1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
||||
this.splitContainer1.Panel1.SuspendLayout();
|
||||
this.splitContainer1.Panel2.SuspendLayout();
|
||||
this.splitContainer1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// bindingNavigatorAddNewItem
|
||||
@ -121,6 +131,8 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
//
|
||||
// dataGridView1
|
||||
//
|
||||
this.dataGridView1.AllowUserToAddRows = false;
|
||||
this.dataGridView1.AllowUserToDeleteRows = false;
|
||||
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.refillid,
|
||||
@ -128,9 +140,9 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.patientid,
|
||||
this.medicationid,
|
||||
this.rxnumber});
|
||||
this.dataGridView1.Location = new System.Drawing.Point(12, 12);
|
||||
this.dataGridView1.Location = new System.Drawing.Point(3, 3);
|
||||
this.dataGridView1.Name = "dataGridView1";
|
||||
this.dataGridView1.Size = new System.Drawing.Size(607, 326);
|
||||
this.dataGridView1.Size = new System.Drawing.Size(625, 239);
|
||||
this.dataGridView1.TabIndex = 0;
|
||||
//
|
||||
// refillid
|
||||
@ -173,32 +185,94 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.cmuUpdate,
|
||||
this.cmuDelete});
|
||||
this.contextMenuStrip1.Name = "contextMenuStrip1";
|
||||
this.contextMenuStrip1.Size = new System.Drawing.Size(181, 92);
|
||||
this.contextMenuStrip1.Size = new System.Drawing.Size(113, 70);
|
||||
//
|
||||
// cmuAdd
|
||||
//
|
||||
this.cmuAdd.Name = "cmuAdd";
|
||||
this.cmuAdd.Size = new System.Drawing.Size(180, 22);
|
||||
this.cmuAdd.Size = new System.Drawing.Size(112, 22);
|
||||
this.cmuAdd.Text = "Add";
|
||||
//
|
||||
// cmuUpdate
|
||||
//
|
||||
this.cmuUpdate.Name = "cmuUpdate";
|
||||
this.cmuUpdate.Size = new System.Drawing.Size(180, 22);
|
||||
this.cmuUpdate.Size = new System.Drawing.Size(112, 22);
|
||||
this.cmuUpdate.Text = "Update";
|
||||
//
|
||||
// cmuDelete
|
||||
//
|
||||
this.cmuDelete.Name = "cmuDelete";
|
||||
this.cmuDelete.Size = new System.Drawing.Size(180, 22);
|
||||
this.cmuDelete.Size = new System.Drawing.Size(112, 22);
|
||||
this.cmuDelete.Text = "Delete";
|
||||
//
|
||||
// splitContainer1
|
||||
//
|
||||
this.splitContainer1.Location = new System.Drawing.Point(12, 12);
|
||||
this.splitContainer1.Name = "splitContainer1";
|
||||
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
||||
//
|
||||
// splitContainer1.Panel1
|
||||
//
|
||||
this.splitContainer1.Panel1.Controls.Add(this.txtPatientID);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.txtDate);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.btnSearch);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.lblPatientID);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.lblDate);
|
||||
//
|
||||
// splitContainer1.Panel2
|
||||
//
|
||||
this.splitContainer1.Panel2.Controls.Add(this.dataGridView1);
|
||||
this.splitContainer1.Size = new System.Drawing.Size(631, 498);
|
||||
this.splitContainer1.SplitterDistance = 249;
|
||||
this.splitContainer1.TabIndex = 1;
|
||||
//
|
||||
// txtPatientID
|
||||
//
|
||||
this.txtPatientID.Location = new System.Drawing.Point(203, 120);
|
||||
this.txtPatientID.Name = "txtPatientID";
|
||||
this.txtPatientID.Size = new System.Drawing.Size(100, 20);
|
||||
this.txtPatientID.TabIndex = 4;
|
||||
//
|
||||
// txtDate
|
||||
//
|
||||
this.txtDate.Location = new System.Drawing.Point(203, 51);
|
||||
this.txtDate.Name = "txtDate";
|
||||
this.txtDate.Size = new System.Drawing.Size(100, 20);
|
||||
this.txtDate.TabIndex = 3;
|
||||
//
|
||||
// btnSearch
|
||||
//
|
||||
this.btnSearch.Location = new System.Drawing.Point(106, 190);
|
||||
this.btnSearch.Name = "btnSearch";
|
||||
this.btnSearch.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnSearch.TabIndex = 2;
|
||||
this.btnSearch.Text = "Search";
|
||||
this.btnSearch.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// lblPatientID
|
||||
//
|
||||
this.lblPatientID.AutoSize = true;
|
||||
this.lblPatientID.Location = new System.Drawing.Point(62, 120);
|
||||
this.lblPatientID.Name = "lblPatientID";
|
||||
this.lblPatientID.Size = new System.Drawing.Size(57, 13);
|
||||
this.lblPatientID.TabIndex = 1;
|
||||
this.lblPatientID.Text = "Patient ID:";
|
||||
//
|
||||
// lblDate
|
||||
//
|
||||
this.lblDate.AutoSize = true;
|
||||
this.lblDate.Location = new System.Drawing.Point(59, 51);
|
||||
this.lblDate.Name = "lblDate";
|
||||
this.lblDate.Size = new System.Drawing.Size(71, 13);
|
||||
this.lblDate.TabIndex = 0;
|
||||
this.lblDate.Text = "Date of Refill:";
|
||||
//
|
||||
// frmRefill
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(631, 350);
|
||||
this.Controls.Add(this.dataGridView1);
|
||||
this.ClientSize = new System.Drawing.Size(655, 522);
|
||||
this.Controls.Add(this.splitContainer1);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.Name = "frmRefill";
|
||||
@ -206,6 +280,11 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
this.Load += new System.EventHandler(this.frmRefill_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
||||
this.contextMenuStrip1.ResumeLayout(false);
|
||||
this.splitContainer1.Panel1.ResumeLayout(false);
|
||||
this.splitContainer1.Panel1.PerformLayout();
|
||||
this.splitContainer1.Panel2.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
||||
this.splitContainer1.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
@ -248,5 +327,11 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
private System.Windows.Forms.ToolStripMenuItem cmuAdd;
|
||||
private System.Windows.Forms.ToolStripMenuItem cmuUpdate;
|
||||
private System.Windows.Forms.ToolStripMenuItem cmuDelete;
|
||||
private System.Windows.Forms.SplitContainer splitContainer1;
|
||||
private System.Windows.Forms.TextBox txtPatientID;
|
||||
private System.Windows.Forms.TextBox txtDate;
|
||||
private System.Windows.Forms.Button btnSearch;
|
||||
private System.Windows.Forms.Label lblPatientID;
|
||||
private System.Windows.Forms.Label lblDate;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user