CNSA-212-FP/Louis'-Pharmacy_CNSA212-FP/frmPrescription.Designer.cs

217 lines
10 KiB
C#

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmPrescription
{
/// <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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPrescription));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.dgvPrescriptions = new System.Windows.Forms.DataGridView();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.btnSearch = new System.Windows.Forms.Button();
this.lblLastName = new System.Windows.Forms.Label();
this.lblRxNumber = new System.Windows.Forms.Label();
this.lblFirstName = new System.Windows.Forms.Label();
this.txtPatientRx = new System.Windows.Forms.TextBox();
this.txtPatientLast = new System.Windows.Forms.TextBox();
this.txtPatientFirst = new System.Windows.Forms.TextBox();
this.ep1 = new System.Windows.Forms.ErrorProvider(this.components);
this.cmuPrescriptionEdit = new System.Windows.Forms.ToolStripMenuItem();
this.cmuPrescriptionDelete = new System.Windows.Forms.ToolStripMenuItem();
this.cmuPrescriptionAdd = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvPrescriptions)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ep1)).BeginInit();
this.SuspendLayout();
//
// contextMenuStrip1
//
this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cmuPrescriptionAdd,
this.cmuPrescriptionEdit,
this.cmuPrescriptionDelete});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(123, 76);
//
// dgvPrescriptions
//
this.dgvPrescriptions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvPrescriptions.Location = new System.Drawing.Point(0, 3);
this.dgvPrescriptions.Name = "dgvPrescriptions";
this.dgvPrescriptions.RowHeadersWidth = 51;
this.dgvPrescriptions.RowTemplate.Height = 24;
this.dgvPrescriptions.Size = new System.Drawing.Size(878, 263);
this.dgvPrescriptions.TabIndex = 2;
//
// splitContainer1
//
this.splitContainer1.Location = new System.Drawing.Point(13, 12);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.btnSearch);
this.splitContainer1.Panel1.Controls.Add(this.lblLastName);
this.splitContainer1.Panel1.Controls.Add(this.lblRxNumber);
this.splitContainer1.Panel1.Controls.Add(this.lblFirstName);
this.splitContainer1.Panel1.Controls.Add(this.txtPatientRx);
this.splitContainer1.Panel1.Controls.Add(this.txtPatientLast);
this.splitContainer1.Panel1.Controls.Add(this.txtPatientFirst);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.dgvPrescriptions);
this.splitContainer1.Size = new System.Drawing.Size(881, 546);
this.splitContainer1.SplitterDistance = 273;
this.splitContainer1.TabIndex = 3;
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(35, 213);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(93, 28);
this.btnSearch.TabIndex = 6;
this.btnSearch.Text = "Search";
this.btnSearch.UseVisualStyleBackColor = true;
//
// lblLastName
//
this.lblLastName.Location = new System.Drawing.Point(16, 101);
this.lblLastName.Name = "lblLastName";
this.lblLastName.Size = new System.Drawing.Size(100, 23);
this.lblLastName.TabIndex = 5;
this.lblLastName.Text = "Last Name:";
this.lblLastName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblRxNumber
//
this.lblRxNumber.Location = new System.Drawing.Point(16, 154);
this.lblRxNumber.Name = "lblRxNumber";
this.lblRxNumber.Size = new System.Drawing.Size(100, 23);
this.lblRxNumber.TabIndex = 4;
this.lblRxNumber.Text = "Rx Number:";
this.lblRxNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblFirstName
//
this.lblFirstName.Location = new System.Drawing.Point(16, 55);
this.lblFirstName.Name = "lblFirstName";
this.lblFirstName.Size = new System.Drawing.Size(100, 23);
this.lblFirstName.TabIndex = 3;
this.lblFirstName.Text = "First Name:";
this.lblFirstName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// txtPatientRx
//
this.txtPatientRx.Location = new System.Drawing.Point(122, 154);
this.txtPatientRx.Name = "txtPatientRx";
this.txtPatientRx.Size = new System.Drawing.Size(148, 22);
this.txtPatientRx.TabIndex = 2;
//
// txtPatientLast
//
this.txtPatientLast.Location = new System.Drawing.Point(122, 101);
this.txtPatientLast.Name = "txtPatientLast";
this.txtPatientLast.Size = new System.Drawing.Size(148, 22);
this.txtPatientLast.TabIndex = 1;
//
// txtPatientFirst
//
this.txtPatientFirst.Location = new System.Drawing.Point(122, 56);
this.txtPatientFirst.Name = "txtPatientFirst";
this.txtPatientFirst.Size = new System.Drawing.Size(148, 22);
this.txtPatientFirst.TabIndex = 0;
//
// ep1
//
this.ep1.ContainerControl = this;
//
// cmuPrescriptionEdit
//
this.cmuPrescriptionEdit.Name = "cmuPrescriptionEdit";
this.cmuPrescriptionEdit.Size = new System.Drawing.Size(122, 24);
this.cmuPrescriptionEdit.Text = "Edit";
//
// cmuPrescriptionDelete
//
this.cmuPrescriptionDelete.Name = "cmuPrescriptionDelete";
this.cmuPrescriptionDelete.Size = new System.Drawing.Size(122, 24);
this.cmuPrescriptionDelete.Text = "Delete";
//
// cmuPrescriptionAdd
//
this.cmuPrescriptionAdd.Name = "cmuPrescriptionAdd";
this.cmuPrescriptionAdd.Size = new System.Drawing.Size(122, 24);
this.cmuPrescriptionAdd.Text = "Add";
//
// frmPrescription
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(981, 570);
this.Controls.Add(this.splitContainer1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmPrescription";
this.Text = "Louis\' Pharmacy - Add / Update Prescription";
this.Load += new System.EventHandler(this.frmPrescription_Load);
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvPrescriptions)).EndInit();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.ep1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.DataGridView dgvPrescriptions;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.TextBox txtPatientFirst;
private System.Windows.Forms.TextBox txtPatientRx;
private System.Windows.Forms.TextBox txtPatientLast;
private System.Windows.Forms.Label lblFirstName;
private System.Windows.Forms.Label lblLastName;
private System.Windows.Forms.Label lblRxNumber;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.ErrorProvider ep1;
private System.Windows.Forms.ToolStripMenuItem cmuPrescriptionEdit;
private System.Windows.Forms.ToolStripMenuItem cmuPrescriptionDelete;
private System.Windows.Forms.ToolStripMenuItem cmuPrescriptionAdd;
}
}