namespace QueueSys { partial class frmEmployeeView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.lblCustomerName = new System.Windows.Forms.Label(); this.lblNumBags = new System.Windows.Forms.Label(); this.lblEmployeeName = new System.Windows.Forms.Label(); this.tbCustomerName = new System.Windows.Forms.TextBox(); this.cbNumBags = new System.Windows.Forms.ComboBox(); this.btnAdd = new System.Windows.Forms.Button(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.generateReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitAltF4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.tbEmployeeName = new System.Windows.Forms.TextBox(); this.dgvEmployeeView = new System.Windows.Forms.DataGridView(); this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.menuStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvEmployeeView)).BeginInit(); this.SuspendLayout(); // // lblCustomerName // this.lblCustomerName.AutoSize = true; this.lblCustomerName.Location = new System.Drawing.Point(18, 77); this.lblCustomerName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.lblCustomerName.Name = "lblCustomerName"; this.lblCustomerName.Size = new System.Drawing.Size(124, 20); this.lblCustomerName.TabIndex = 0; this.lblCustomerName.Text = "Customer Name"; // // lblNumBags // this.lblNumBags.AutoSize = true; this.lblNumBags.Location = new System.Drawing.Point(326, 77); this.lblNumBags.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.lblNumBags.Name = "lblNumBags"; this.lblNumBags.Size = new System.Drawing.Size(77, 20); this.lblNumBags.TabIndex = 1; this.lblNumBags.Text = "# of Bags"; // // lblEmployeeName // this.lblEmployeeName.AutoSize = true; this.lblEmployeeName.Location = new System.Drawing.Point(537, 77); this.lblEmployeeName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.lblEmployeeName.Name = "lblEmployeeName"; this.lblEmployeeName.Size = new System.Drawing.Size(125, 20); this.lblEmployeeName.TabIndex = 2; this.lblEmployeeName.Text = "Employee Name"; // // tbCustomerName // this.tbCustomerName.Location = new System.Drawing.Point(22, 117); this.tbCustomerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tbCustomerName.MaxLength = 255; this.tbCustomerName.Name = "tbCustomerName"; this.tbCustomerName.Size = new System.Drawing.Size(228, 26); this.tbCustomerName.TabIndex = 0; // // cbNumBags // this.cbNumBags.FormattingEnabled = true; this.cbNumBags.Items.AddRange(new object[] { "1", "2", "3", "4", "5"}); this.cbNumBags.Location = new System.Drawing.Point(285, 115); this.cbNumBags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.cbNumBags.MaxDropDownItems = 5; this.cbNumBags.Name = "cbNumBags"; this.cbNumBags.Size = new System.Drawing.Size(180, 28); this.cbNumBags.TabIndex = 1; // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(753, 112); this.btnAdd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(112, 35); this.btnAdd.TabIndex = 3; this.btnAdd.Text = "Add"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // menuStrip1 // this.menuStrip1.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2); this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24); this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(882, 33); this.menuStrip1.TabIndex = 5; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.generateReportToolStripMenuItem, this.optionsToolStripMenuItem, this.exitAltF4ToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(54, 29); this.fileToolStripMenuItem.Text = "&File"; // // generateReportToolStripMenuItem // this.generateReportToolStripMenuItem.Name = "generateReportToolStripMenuItem"; this.generateReportToolStripMenuItem.Size = new System.Drawing.Size(242, 34); this.generateReportToolStripMenuItem.Text = "&Generate Report"; this.generateReportToolStripMenuItem.Click += new System.EventHandler(this.generateReportToolStripMenuItem_Click); // // optionsToolStripMenuItem // this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; this.optionsToolStripMenuItem.Size = new System.Drawing.Size(242, 34); this.optionsToolStripMenuItem.Text = "Options"; this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click); // // exitAltF4ToolStripMenuItem // this.exitAltF4ToolStripMenuItem.Name = "exitAltF4ToolStripMenuItem"; this.exitAltF4ToolStripMenuItem.Size = new System.Drawing.Size(242, 34); this.exitAltF4ToolStripMenuItem.Text = "E&xit (Alt-F4)"; this.exitAltF4ToolStripMenuItem.Click += new System.EventHandler(this.exitAltF4ToolStripMenuItem_Click); // // tbEmployeeName // this.tbEmployeeName.Location = new System.Drawing.Point(514, 117); this.tbEmployeeName.Name = "tbEmployeeName"; this.tbEmployeeName.Size = new System.Drawing.Size(199, 26); this.tbEmployeeName.TabIndex = 2; // // dgvEmployeeView // this.dgvEmployeeView.AllowUserToAddRows = false; this.dgvEmployeeView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvEmployeeView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dataGridViewTextBoxColumn1, this.dataGridViewTextBoxColumn2}); this.dgvEmployeeView.Location = new System.Drawing.Point(22, 181); this.dgvEmployeeView.Name = "dgvEmployeeView"; this.dgvEmployeeView.RowHeadersWidth = 62; this.dgvEmployeeView.RowTemplate.Height = 28; this.dgvEmployeeView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.dgvEmployeeView.Size = new System.Drawing.Size(843, 352); this.dgvEmployeeView.TabIndex = 7; this.dgvEmployeeView.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvEmployeeView_CellClick); // // dataGridViewTextBoxColumn1 // this.dataGridViewTextBoxColumn1.MinimumWidth = 8; this.dataGridViewTextBoxColumn1.Name = "CustomerID"; this.dataGridViewTextBoxColumn1.Width = 150; // // dataGridViewTextBoxColumn2 // this.dataGridViewTextBoxColumn2.MinimumWidth = 8; this.dataGridViewTextBoxColumn2.Name = "CustomerName"; this.dataGridViewTextBoxColumn2.Width = 150; // // frmEmployeeView // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(882, 554); this.Controls.Add(this.dgvEmployeeView); this.Controls.Add(this.tbEmployeeName); this.Controls.Add(this.btnAdd); this.Controls.Add(this.cbNumBags); this.Controls.Add(this.tbCustomerName); this.Controls.Add(this.lblEmployeeName); this.Controls.Add(this.lblNumBags); this.Controls.Add(this.lblCustomerName); this.Controls.Add(this.menuStrip1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MainMenuStrip = this.menuStrip1; this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.Name = "frmEmployeeView"; this.Text = "Queue System"; this.Load += new System.EventHandler(this.frmEmployeeView_Load); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvEmployeeView)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label lblCustomerName; private System.Windows.Forms.Label lblNumBags; private System.Windows.Forms.Label lblEmployeeName; private System.Windows.Forms.TextBox tbCustomerName; private System.Windows.Forms.ComboBox cbNumBags; private System.Windows.Forms.Button btnAdd; private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem exitAltF4ToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem generateReportToolStripMenuItem; private System.Windows.Forms.TextBox tbEmployeeName; private System.Windows.Forms.DataGridView dgvEmployeeView; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; } }