/// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.dg_tipo_sector = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.btnSalir = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dg_tipo_sector)).BeginInit();
     this.SuspendLayout();
     //
     // dg_tipo_sector
     //
     this.dg_tipo_sector.AllowUserToAddRows = false;
     this.dg_tipo_sector.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dg_tipo_sector.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     this.dg_tipo_sector.Location = new System.Drawing.Point(17, 31);
     this.dg_tipo_sector.Margin = new System.Windows.Forms.Padding(2);
     this.dg_tipo_sector.Name = "dg_tipo_sector";
     this.dg_tipo_sector.ReadOnly = true;
     this.dg_tipo_sector.RowTemplate.Height = 28;
     this.dg_tipo_sector.Size = new System.Drawing.Size(369, 196);
     this.dg_tipo_sector.TabIndex = 0;
     this.dg_tipo_sector.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dg_tipo_sector_CellContentClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.Text = "Eliminar";
     this.Column1.ToolTipText = "Eliminar";
     this.Column1.UseColumnTextForButtonValue = true;
     //
     // btnSalir
     //
     this.btnSalir.Location = new System.Drawing.Point(280, 240);
     this.btnSalir.Margin = new System.Windows.Forms.Padding(2);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(109, 41);
     this.btnSalir.TabIndex = 1;
     this.btnSalir.Text = "Salir";
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // EliminarTipoSector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(402, 301);
     this.Controls.Add(this.btnSalir);
     this.Controls.Add(this.dg_tipo_sector);
     this.Margin = new System.Windows.Forms.Padding(2);
     this.MaximizeBox = false;
     this.Name = "EliminarTipoSector";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Eliminar Tipo de Sector";
     this.Load += new System.EventHandler(this.EliminarTipoSector_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dg_tipo_sector)).EndInit();
     this.ResumeLayout(false);
 }
Example #2
0
        void GetAbortedRecords()
        {
            try
            {
                DataTable dt = new DataTable();
                dt.TableName = "AbortedTrans";
                dt           = objERPDba.GetAbortedRecords(ctrlDateTimeFrom.dateTimePicker1.Value, ctrlDateTimeTo.dateTimePicker1.Value);


                wgrid.dataGridView1.SuspendLayout();
                wgrid.dataGridView1.Columns.Clear();
                wgrid.dataGridView1.DataSource = dt;

                System.Windows.Forms.DataGridViewButtonColumn btnCol = new System.Windows.Forms.DataGridViewButtonColumn();
                btnCol.Name = "Photo";
                btnCol.Text = "Photo";
                btnCol.Tag  = "photo";
                wgrid.dataGridView1.Columns.Add(btnCol);

                SetGridColumnSize();
                wgrid.dataGridView1.Columns[19].DefaultCellStyle.Format = "dd/MMM/yyyy hh:mm:ss tt";
            }
            finally
            {
                wgrid.dataGridView1.ResumeLayout();
            }
        }
Example #3
0
 public FieldViewer(int fieldsize, System.Drawing.Point Location, int CellWidth)
 {
     System.Windows.Forms.DataGridViewButtonColumn[] Cols = new System.Windows.Forms.DataGridViewButtonColumn[fieldsize];
     SelectionMode               = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     ColumnHeadersVisible        = true;
     RowHeadersVisible           = true;
     AllowUserToAddRows          = false;
     AllowUserToDeleteRows       = false;
     AllowUserToResizeColumns    = false;
     AllowUserToResizeRows       = false;
     CellBorderStyle             = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken;
     AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None;
     AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.None;
     BackgroundColor             = System.Drawing.SystemColors.Control;
     RowHeadersWidth             = 50;
     SelectionChanged           += FieldViewer_SelectionChanged;
     ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     for (int i = 0; i < fieldsize; ++i)
     {
         Cols[i]            = new System.Windows.Forms.DataGridViewButtonColumn();
         Cols[i].FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
         Cols[i].Width      = CellWidth;
         Cols[i].HeaderText = "" + Convert.ToChar(i + 65);
         Cols[i].Name       = "" + Convert.ToChar(i + 65);
         Cols[i].ReadOnly   = true;
     }
     Columns.AddRange(Cols);
     Rows.Add(fieldsize);
     for (int i = 0; i < fieldsize; ++i)
     {
         Rows[i].HeaderCell.Value = i.ToString();
         Rows[i].Height           = CellWidth;
         Rows[i].ReadOnly         = true;
     }
     FieldSize        = fieldsize;
     this.Location    = Location;
     Size             = new System.Drawing.Size((RowCount + 1) * CellWidth, (ColumnCount + 1) * CellWidth);
     SelectionEnabled = false;
     ClearSelection();
 }
 private void InitializeAllComponents()
 {
     TablesController       = new System.Windows.Forms.TabControl();
     recipesTable           = new System.Windows.Forms.TabPage();
     createNewRecipeButton  = new System.Windows.Forms.Button();
     TextBoxForSearchRecipe = new System.Windows.Forms.TextBox();
     recipeSearch           = new System.Windows.Forms.Label();
     recipeGrid             = new System.Windows.Forms.DataGridView();
     recipeNameColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     deleteRecipeColumn     = new System.Windows.Forms.DataGridViewButtonColumn();
     recipeIdColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     recipeEditor           = new RecipeBook.Gui.EditRecipe();
     TableOfItems           = new System.Windows.Forms.TabPage();
     itemEditor             = new RecipeBook.Gui.ItemEditor();
     createNewItem          = new System.Windows.Forms.Button();
     TextBoxForSearchItem   = new System.Windows.Forms.TextBox();
     IngredientSearch       = new System.Windows.Forms.Label();
     IngredientTableCreator = new System.Windows.Forms.DataGridView();
     IngredientNameColumn   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     IngredientDeleteColumn = new System.Windows.Forms.DataGridViewButtonColumn();
     IngredientIdColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
 }
Example #5
0
 private void InitializeAllComponents()
 {
     ComboBoxOfItemName = new System.Windows.Forms.ComboBox();
     ingredients        = new System.Windows.Forms.Label();
     amount             = new System.Windows.Forms.Label();
     ComboBoxOfAmount   = new System.Windows.Forms.ComboBox();
     adding             = new System.Windows.Forms.Button();
     ingredientsTable   = new System.Windows.Forms.DataGridView();
     itemColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     amountColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     RemoveButtonColumn = new System.Windows.Forms.DataGridViewButtonColumn();
     createNewItem      = new System.Windows.Forms.Button();
     steps              = new System.Windows.Forms.Label();
     notes              = new System.Windows.Forms.Label();
     save               = new System.Windows.Forms.Button();
     cancel             = new System.Windows.Forms.Button();
     TextBoxForNotes    = new System.Windows.Forms.TextBox();
     TextBoxForSteps    = new System.Windows.Forms.TextBox();
     checkBoxColumn     = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     name               = new System.Windows.Forms.Label();
     TextBoxForName     = new System.Windows.Forms.TextBox();
     ComboBoxOfItemName = new System.Windows.Forms.ComboBox();
 }
        void ucHistory_AfterRecordFetch(object sender, EventArgs e)
        {
            try
            {
                DataTable dtResult = sender as DataTable;

                if (wgrid.dataGridView1.IsHandleCreated == false)
                {
                    return;
                }
                wgrid.BeginInvoke(new Action(() =>
                {
                    if (dtResult != null && dtResult.Rows.Count > 0)
                    {
                        try
                        {
                            wgrid.dataGridView1.SuspendLayout();
                            wgrid.dataGridView1.Columns.Clear();
                            wgrid.dataGridView1.DataSource = dtResult;

                            System.Windows.Forms.DataGridViewButtonColumn btnCol = new System.Windows.Forms.DataGridViewButtonColumn();
                            btnCol.Name = "Photo";
                            btnCol.Text = "Photo";
                            btnCol.Tag  = "photo";
                            wgrid.dataGridView1.Columns.Insert(19, btnCol);

                            //For Note
                            System.Windows.Forms.DataGridViewButtonColumn btnNote = new System.Windows.Forms.DataGridViewButtonColumn();
                            btnNote.Name = "Note";
                            btnNote.Text = "Note";
                            btnNote.Tag  = "Note";
                            wgrid.dataGridView1.Columns.Insert(20, btnNote);


                            wgrid.dataGridView1.Columns["ENTRY TIME"].DefaultCellStyle.Format = "dd/MMM/yyyy hh:mm:ss tt";
                            wgrid.dataGridView1.Columns["EXIT TIME"].DefaultCellStyle.Format  = "dd/MMM/yyyy hh:mm:ss tt";
                        }
                        catch (Exception errMsg)
                        {
                            MessageBox.Show(errMsg.Message);
                        }
                        finally
                        {
                            wgrid.dataGridView1.ResumeLayout();
                            FormatGrid();
                        }
                    }
                    else
                    {
                        //  wgrid.dataGridView1.Rows.Clear();
                        wgrid.dataGridView1.DataSource = dtResult;
                    }
                }));

                if (dtResult != null && dtResult.Rows.Count > 0)
                {
                    lblTotalRecords.Dispatcher.BeginInvoke(new Action(() => lblTotalRecords.Content = "Total Records =" + dtResult.Rows.Count));
                }
                else
                {
                    lblTotalRecords.Dispatcher.BeginInvoke(new Action(() => lblTotalRecords.Content = "Total Records = 0"));
                }
            }
            catch (Exception errMsg)
            {
            }
            finally
            {
            }
        }
Example #7
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.takip           = new System.Windows.Forms.TabControl();
     this.tabPage2        = new System.Windows.Forms.TabPage();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.dataGridView1   = new System.Windows.Forms.DataGridView();
     this.Column1         = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Column2         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.button2         = new System.Windows.Forms.Button();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.comboBox2       = new System.Windows.Forms.ComboBox();
     this.label5          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.comboBox3       = new System.Windows.Forms.ComboBox();
     this.button1         = new System.Windows.Forms.Button();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.label3          = new System.Windows.Forms.Label();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label2          = new System.Windows.Forms.Label();
     this.label1          = new System.Windows.Forms.Label();
     this.tabPage1        = new System.Windows.Forms.TabPage();
     this.groupBox4       = new System.Windows.Forms.GroupBox();
     this.dataGridView2   = new System.Windows.Forms.DataGridView();
     this.Column4         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGrid1       = new System.Windows.Forms.DataGrid();
     this.groupBox3       = new System.Windows.Forms.GroupBox();
     this.button3         = new System.Windows.Forms.Button();
     this.comboBox1       = new System.Windows.Forms.ComboBox();
     this.label9          = new System.Windows.Forms.Label();
     this.button4         = new System.Windows.Forms.Button();
     this.label8          = new System.Windows.Forms.Label();
     this.label7          = new System.Windows.Forms.Label();
     this.label6          = new System.Windows.Forms.Label();
     this.textBox3        = new System.Windows.Forms.TextBox();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.comboBox4       = new System.Windows.Forms.ComboBox();
     this.takip.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // takip
     //
     this.takip.Controls.Add(this.tabPage2);
     this.takip.Controls.Add(this.tabPage1);
     this.takip.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.takip.Location      = new System.Drawing.Point(3, 12);
     this.takip.Name          = "takip";
     this.takip.SelectedIndex = 0;
     this.takip.Size          = new System.Drawing.Size(923, 334);
     this.takip.TabIndex      = 1;
     this.takip.Click        += new System.EventHandler(this.TakipClick);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.groupBox2);
     this.tabPage2.Controls.Add(this.groupBox1);
     this.tabPage2.Location = new System.Drawing.Point(4, 29);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(915, 301);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "tabPage2";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.dataGridView1);
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.textBox2);
     this.groupBox2.Controls.Add(this.comboBox2);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.groupBox2.Location = new System.Drawing.Point(452, 9);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(441, 296);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "sarfiyat";
     //
     // 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.Column1,
         this.Column2,
         this.Column3
     });
     this.dataGridView1.Location   = new System.Drawing.Point(52, 142);
     this.dataGridView1.Name       = "dataGridView1";
     this.dataGridView1.ReadOnly   = true;
     this.dataGridView1.Size       = new System.Drawing.Size(345, 129);
     this.dataGridView1.TabIndex   = 9;
     this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1CellClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "sil";
     this.Column1.Name       = "Column1";
     this.Column1.ReadOnly   = true;
     //
     // Column2
     //
     this.Column2.HeaderText = "malzeme";
     this.Column2.Name       = "Column2";
     this.Column2.ReadOnly   = true;
     this.Column2.Resizable  = System.Windows.Forms.DataGridViewTriState.True;
     this.Column2.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Column3
     //
     this.Column3.HeaderText = "miktar";
     this.Column3.Name       = "Column3";
     this.Column3.ReadOnly   = true;
     //
     // button2
     //
     this.button2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.button2.Location = new System.Drawing.Point(138, 106);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(100, 34);
     this.button2.TabIndex = 7;
     this.button2.Text     = "ekle";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // textBox2
     //
     this.textBox2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.textBox2.Location = new System.Drawing.Point(138, 71);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(100, 26);
     this.textBox2.TabIndex = 6;
     //
     // comboBox2
     //
     this.comboBox2.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location          = new System.Drawing.Point(138, 32);
     this.comboBox2.Name     = "comboBox2";
     this.comboBox2.Size     = new System.Drawing.Size(121, 28);
     this.comboBox2.TabIndex = 5;
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.label5.Location = new System.Drawing.Point(32, 74);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(100, 23);
     this.label5.TabIndex = 1;
     this.label5.Text     = "miktar";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.label4.Location = new System.Drawing.Point(32, 32);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 23);
     this.label4.TabIndex = 0;
     this.label4.Text     = "malzeme";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboBox3);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.dateTimePicker1);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.groupBox1.Location = new System.Drawing.Point(6, 6);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(429, 296);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "iş başlat";
     //this.groupBox1.Enter += new System.EventHandler(this.GroupBox1Enter);
     //
     // comboBox3
     //
     this.comboBox3.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.comboBox3.FormattingEnabled = true;
     this.comboBox3.Location          = new System.Drawing.Point(100, 42);
     this.comboBox3.Name     = "comboBox3";
     this.comboBox3.Size     = new System.Drawing.Size(323, 28);
     this.comboBox3.TabIndex = 1;
     //
     // button1
     //
     this.button1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.button1.Location = new System.Drawing.Point(169, 145);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 35);
     this.button1.TabIndex = 4;
     this.button1.Text     = "iş başlat";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // textBox1
     //
     this.textBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.textBox1.Location = new System.Drawing.Point(153, 108);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(100, 26);
     this.textBox1.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.label3.Location = new System.Drawing.Point(39, 108);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(91, 35);
     this.label3.TabIndex = 5;
     this.label3.Text     = "ücret";
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.dateTimePicker1.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker1.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.dateTimePicker1.Location = new System.Drawing.Point(153, 77);
     this.dateTimePicker1.Name     = "dateTimePicker1";
     this.dateTimePicker1.Size     = new System.Drawing.Size(166, 26);
     this.dateTimePicker1.TabIndex = 2;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.label2.Location = new System.Drawing.Point(39, 74);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 35);
     this.label2.TabIndex = 3;
     this.label2.Text     = "tarih";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.label1.Location = new System.Drawing.Point(39, 48);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 35);
     this.label1.TabIndex = 2;
     this.label1.Text     = "firma";
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox4);
     this.tabPage1.Controls.Add(this.groupBox3);
     this.tabPage1.Location = new System.Drawing.Point(4, 29);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(915, 301);
     this.tabPage1.TabIndex = 2;
     this.tabPage1.Text     = "tabPage1";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.dataGridView2);
     this.groupBox4.Controls.Add(this.dataGrid1);
     this.groupBox4.Location = new System.Drawing.Point(449, 6);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(460, 262);
     this.groupBox4.TabIndex = 1;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "alacaklar";
     this.groupBox4.Enter   += new System.EventHandler(this.GroupBox4Enter);
     //
     // dataGridView2
     //
     this.dataGridView2.AllowUserToAddRows          = false;
     this.dataGridView2.AllowUserToDeleteRows       = false;
     this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Column4,
         this.Column5
     });
     this.dataGridView2.Location             = new System.Drawing.Point(71, 24);
     this.dataGridView2.Name                 = "dataGridView2";
     this.dataGridView2.ReadOnly             = true;
     this.dataGridView2.RowTemplate.ReadOnly = true;
     this.dataGridView2.Size                 = new System.Drawing.Size(287, 117);
     this.dataGridView2.TabIndex             = 1;
     //
     // Column4
     //
     dataGridViewCellStyle1.Format    = "T";
     dataGridViewCellStyle1.NullValue = null;
     this.Column4.DefaultCellStyle    = dataGridViewCellStyle1;
     this.Column4.HeaderText          = "tarih";
     this.Column4.Name      = "Column4";
     this.Column4.ReadOnly  = true;
     this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // Column5
     //
     this.Column5.HeaderText = "ücret";
     this.Column5.Name       = "Column5";
     this.Column5.ReadOnly   = true;
     this.Column5.Resizable  = System.Windows.Forms.DataGridViewTriState.True;
     this.Column5.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGrid1
     //
     this.dataGrid1.AlternatingBackColor = System.Drawing.Color.GhostWhite;
     this.dataGrid1.BackColor            = System.Drawing.Color.GhostWhite;
     this.dataGrid1.BackgroundColor      = System.Drawing.Color.Lavender;
     this.dataGrid1.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.dataGrid1.CaptionBackColor     = System.Drawing.Color.RoyalBlue;
     this.dataGrid1.CaptionFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.dataGrid1.CaptionForeColor     = System.Drawing.Color.White;
     this.dataGrid1.DataMember           = "";
     this.dataGrid1.FlatMode             = true;
     this.dataGrid1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.dataGrid1.ForeColor           = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.GridLineColor       = System.Drawing.Color.RoyalBlue;
     this.dataGrid1.HeaderBackColor     = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.dataGrid1.HeaderForeColor     = System.Drawing.Color.Lavender;
     this.dataGrid1.LinkColor           = System.Drawing.Color.Teal;
     this.dataGrid1.Location            = new System.Drawing.Point(71, 147);
     this.dataGrid1.Name                = "dataGrid1";
     this.dataGrid1.ParentRowsBackColor = System.Drawing.Color.Lavender;
     this.dataGrid1.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.SelectionBackColor  = System.Drawing.Color.Teal;
     this.dataGrid1.SelectionForeColor  = System.Drawing.Color.PaleGreen;
     this.dataGrid1.Size                = new System.Drawing.Size(340, 142);
     this.dataGrid1.TabIndex            = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.button3);
     this.groupBox3.Controls.Add(this.comboBox1);
     this.groupBox3.Controls.Add(this.label9);
     this.groupBox3.Controls.Add(this.button4);
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Controls.Add(this.textBox3);
     this.groupBox3.Controls.Add(this.dateTimePicker2);
     this.groupBox3.Controls.Add(this.comboBox4);
     this.groupBox3.Location = new System.Drawing.Point(5, 8);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(438, 260);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "tahsil";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(344, 217);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(75, 37);
     this.button3.TabIndex = 13;
     this.button3.Text     = "rapor al";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3Click);
     //
     // comboBox1
     //
     this.comboBox1.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox1.FormattingEnabled  = true;
     this.comboBox1.Location           = new System.Drawing.Point(6, 65);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(261, 28);
     this.comboBox1.TabIndex              = 8;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.ComboBox1SelectedIndexChanged);
     this.comboBox1.Leave                += new System.EventHandler(this.ComboBox1Leave);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(236, 111);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(100, 23);
     this.label9.TabIndex = 9;
     this.label9.Text     = "alınma";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(192, 185);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(75, 37);
     this.button4.TabIndex = 12;
     this.button4.Text     = "işle";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.Button4Click);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(31, 111);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(100, 23);
     this.label8.TabIndex = 7;
     this.label8.Text     = "ücret";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(273, 27);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(100, 35);
     this.label7.TabIndex = 6;
     this.label7.Text     = "iş numarası";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(31, 39);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(100, 23);
     this.label6.TabIndex = 5;
     this.label6.Text     = "firma";
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(31, 137);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(100, 26);
     this.textBox3.TabIndex = 10;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker2.Location = new System.Drawing.Point(207, 137);
     this.dateTimePicker2.Name     = "dateTimePicker2";
     this.dateTimePicker2.Size     = new System.Drawing.Size(150, 26);
     this.dateTimePicker2.TabIndex = 11;
     //
     // comboBox4
     //
     this.comboBox4.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox4.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox4.FormattingEnabled  = true;
     this.comboBox4.Location           = new System.Drawing.Point(273, 65);
     this.comboBox4.Name                  = "comboBox4";
     this.comboBox4.Size                  = new System.Drawing.Size(84, 28);
     this.comboBox4.TabIndex              = 9;
     this.comboBox4.SelectedIndexChanged += new System.EventHandler(this.ComboBox4SelectedIndexChanged);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(952, 370);
     this.Controls.Add(this.takip);
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "iscalisma";
     this.Load         += new System.EventHandler(this.MainFormLoad);
     this.takip.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabPage1.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.RightOptions = new System.Windows.Forms.Timer(this.components);
     this.Options = new System.Windows.Forms.Timer(this.components);
     this.pnlMain = new System.Windows.Forms.Panel();
     this.masterTb = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.txtCakeId = new System.Windows.Forms.TextBox();
     this.updateCakeRate = new System.Windows.Forms.Button();
     this.categorySave = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnGetData = new System.Windows.Forms.Button();
     this.txtCakeRate = new System.Windows.Forms.TextBox();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.companyUpdate = new System.Windows.Forms.Button();
     this.companySave = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.companyNew = new System.Windows.Forms.Button();
     this.companytxt = new System.Windows.Forms.TextBox();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.txtOilId = new System.Windows.Forms.TextBox();
     this.btnOilUpdate = new System.Windows.Forms.Button();
     this.btnOilSave = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.btnOilGetData = new System.Windows.Forms.Button();
     this.txtOilRate = new System.Windows.Forms.TextBox();
     this.tabItemRecord = new System.Windows.Forms.TabPage();
     this.txtDirtyId = new System.Windows.Forms.TextBox();
     this.btnDirtyOilUpdate = new System.Windows.Forms.Button();
     this.btnDirtyOilSave = new System.Windows.Forms.Button();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.btnDirtyOilGetData = new System.Windows.Forms.Button();
     this.txtDirtyOil = new System.Windows.Forms.TextBox();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.txtLaborId = new System.Windows.Forms.TextBox();
     this.btnLaborUpdate = new System.Windows.Forms.Button();
     this.btnLaborSave = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.btnLaborGetdata = new System.Windows.Forms.Button();
     this.txtLabor = new System.Windows.Forms.TextBox();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.txtExpenceID = new System.Windows.Forms.TextBox();
     this.btnExpenceGetData = new System.Windows.Forms.Button();
     this.btnExpenceUpdate = new System.Windows.Forms.Button();
     this.btnExpenceDelete = new System.Windows.Forms.Button();
     this.btnExpenceSave = new System.Windows.Forms.Button();
     this.dataGridViewExpenceType = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.btnNew = new System.Windows.Forms.Button();
     this.txtExpenceType = new System.Windows.Forms.TextBox();
     this.lblCopyright = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.panel4 = new System.Windows.Forms.Panel();
     this.btnClose = new System.Windows.Forms.Button();
     this.Label1 = new System.Windows.Forms.Label();
     this.pnlMain.SuspendLayout();
     this.masterTb.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabItemRecord.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.tabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewExpenceType)).BeginInit();
     this.groupBox6.SuspendLayout();
     this.panel4.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlMain
     //
     this.pnlMain.BackColor = System.Drawing.Color.Transparent;
     this.pnlMain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlMain.Controls.Add(this.panel4);
     this.pnlMain.Controls.Add(this.masterTb);
     this.pnlMain.Controls.Add(this.lblCopyright);
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.ForeColor = System.Drawing.Color.White;
     this.pnlMain.Location = new System.Drawing.Point(0, 0);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(1182, 614);
     this.pnlMain.TabIndex = 16;
     //
     // masterTb
     //
     this.masterTb.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.masterTb.Controls.Add(this.tabPage1);
     this.masterTb.Controls.Add(this.tabPage2);
     this.masterTb.Controls.Add(this.tabPage4);
     this.masterTb.Controls.Add(this.tabItemRecord);
     this.masterTb.Controls.Add(this.tabPage3);
     this.masterTb.Controls.Add(this.tabPage5);
     this.masterTb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.masterTb.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.masterTb.Location = new System.Drawing.Point(59, 108);
     this.masterTb.Name = "masterTb";
     this.masterTb.SelectedIndex = 0;
     this.masterTb.Size = new System.Drawing.Size(1062, 472);
     this.masterTb.TabIndex = 7;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.White;
     this.tabPage1.Controls.Add(this.txtCakeId);
     this.tabPage1.Controls.Add(this.updateCakeRate);
     this.tabPage1.Controls.Add(this.categorySave);
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage1.ForeColor = System.Drawing.Color.Black;
     this.tabPage1.Location = new System.Drawing.Point(4, 37);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(1054, 431);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Cotton Cake";
     //
     // txtCakeId
     //
     this.txtCakeId.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtCakeId.ForeColor = System.Drawing.Color.White;
     this.txtCakeId.Location = new System.Drawing.Point(727, 46);
     this.txtCakeId.Name = "txtCakeId";
     this.txtCakeId.Size = new System.Drawing.Size(100, 22);
     this.txtCakeId.TabIndex = 30;
     //
     // updateCakeRate
     //
     this.updateCakeRate.BackColor = System.Drawing.Color.LightSkyBlue;
     this.updateCakeRate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.updateCakeRate.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.updateCakeRate.ForeColor = System.Drawing.Color.White;
     this.updateCakeRate.Location = new System.Drawing.Point(537, 288);
     this.updateCakeRate.Name = "updateCakeRate";
     this.updateCakeRate.Size = new System.Drawing.Size(101, 34);
     this.updateCakeRate.TabIndex = 27;
     this.updateCakeRate.Text = "Update";
     this.updateCakeRate.UseVisualStyleBackColor = false;
     this.updateCakeRate.Click += new System.EventHandler(this.updateCategory_Click);
     //
     // categorySave
     //
     this.categorySave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.categorySave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.categorySave.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.categorySave.ForeColor = System.Drawing.Color.White;
     this.categorySave.Location = new System.Drawing.Point(419, 288);
     this.categorySave.Name = "categorySave";
     this.categorySave.Size = new System.Drawing.Size(101, 34);
     this.categorySave.TabIndex = 29;
     this.categorySave.Text = "Save";
     this.categorySave.UseVisualStyleBackColor = false;
     this.categorySave.Click += new System.EventHandler(this.button20_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnGetData);
     this.groupBox1.Controls.Add(this.txtCakeRate);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.groupBox1.Location = new System.Drawing.Point(274, 131);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(506, 84);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Cotton Cake Rate";
     //
     // btnGetData
     //
     this.btnGetData.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnGetData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnGetData.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGetData.ForeColor = System.Drawing.Color.White;
     this.btnGetData.Location = new System.Drawing.Point(417, 34);
     this.btnGetData.Name = "btnGetData";
     this.btnGetData.Size = new System.Drawing.Size(82, 29);
     this.btnGetData.TabIndex = 34;
     this.btnGetData.Text = "Get Data";
     this.btnGetData.UseVisualStyleBackColor = false;
     this.btnGetData.Click += new System.EventHandler(this.categoryNew_Click);
     //
     // txtCakeRate
     //
     this.txtCakeRate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCakeRate.Location = new System.Drawing.Point(22, 37);
     this.txtCakeRate.Name = "txtCakeRate";
     this.txtCakeRate.Size = new System.Drawing.Size(376, 25);
     this.txtCakeRate.TabIndex = 0;
     this.txtCakeRate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.categoryTxt_KeyPress);
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.tabPage2.Controls.Add(this.textBox3);
     this.tabPage2.Controls.Add(this.companyUpdate);
     this.tabPage2.Controls.Add(this.companySave);
     this.tabPage2.Controls.Add(this.groupBox2);
     this.tabPage2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage2.ForeColor = System.Drawing.Color.Black;
     this.tabPage2.Location = new System.Drawing.Point(4, 37);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(1054, 490);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Cotton Seed";
     //
     // textBox3
     //
     this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox3.ForeColor = System.Drawing.Color.White;
     this.textBox3.Location = new System.Drawing.Point(840, 42);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(100, 22);
     this.textBox3.TabIndex = 31;
     //
     // companyUpdate
     //
     this.companyUpdate.BackColor = System.Drawing.Color.LightSkyBlue;
     this.companyUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.companyUpdate.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.companyUpdate.ForeColor = System.Drawing.Color.White;
     this.companyUpdate.Location = new System.Drawing.Point(506, 296);
     this.companyUpdate.Name = "companyUpdate";
     this.companyUpdate.Size = new System.Drawing.Size(101, 34);
     this.companyUpdate.TabIndex = 27;
     this.companyUpdate.Text = "Update";
     this.companyUpdate.UseVisualStyleBackColor = false;
     this.companyUpdate.Click += new System.EventHandler(this.companyUpdate_Click);
     //
     // companySave
     //
     this.companySave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.companySave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.companySave.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.companySave.ForeColor = System.Drawing.Color.White;
     this.companySave.Location = new System.Drawing.Point(383, 296);
     this.companySave.Name = "companySave";
     this.companySave.Size = new System.Drawing.Size(101, 34);
     this.companySave.TabIndex = 29;
     this.companySave.Text = "Save";
     this.companySave.UseVisualStyleBackColor = false;
     this.companySave.Click += new System.EventHandler(this.button15_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.companyNew);
     this.groupBox2.Controls.Add(this.companytxt);
     this.groupBox2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.groupBox2.Location = new System.Drawing.Point(274, 131);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(507, 84);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Cotton Seed Rate";
     //
     // companyNew
     //
     this.companyNew.BackColor = System.Drawing.Color.LightSkyBlue;
     this.companyNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.companyNew.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.companyNew.ForeColor = System.Drawing.Color.White;
     this.companyNew.Location = new System.Drawing.Point(417, 34);
     this.companyNew.Name = "companyNew";
     this.companyNew.Size = new System.Drawing.Size(82, 29);
     this.companyNew.TabIndex = 35;
     this.companyNew.Text = "Get Data";
     this.companyNew.UseVisualStyleBackColor = false;
     this.companyNew.Click += new System.EventHandler(this.companyNew_Click);
     //
     // companytxt
     //
     this.companytxt.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.companytxt.Location = new System.Drawing.Point(22, 37);
     this.companytxt.Name = "companytxt";
     this.companytxt.Size = new System.Drawing.Size(376, 25);
     this.companytxt.TabIndex = 0;
     this.companytxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.companytxt_KeyPress);
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.tabPage4.Controls.Add(this.txtOilId);
     this.tabPage4.Controls.Add(this.btnOilUpdate);
     this.tabPage4.Controls.Add(this.btnOilSave);
     this.tabPage4.Controls.Add(this.groupBox3);
     this.tabPage4.Location = new System.Drawing.Point(4, 37);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(1054, 490);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Cotton Oil";
     //
     // txtOilId
     //
     this.txtOilId.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtOilId.ForeColor = System.Drawing.SystemColors.Window;
     this.txtOilId.Location = new System.Drawing.Point(519, 53);
     this.txtOilId.Name = "txtOilId";
     this.txtOilId.Size = new System.Drawing.Size(100, 25);
     this.txtOilId.TabIndex = 32;
     this.txtOilId.TabStop = false;
     //
     // btnOilUpdate
     //
     this.btnOilUpdate.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnOilUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnOilUpdate.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOilUpdate.ForeColor = System.Drawing.Color.White;
     this.btnOilUpdate.Location = new System.Drawing.Point(537, 330);
     this.btnOilUpdate.Name = "btnOilUpdate";
     this.btnOilUpdate.Size = new System.Drawing.Size(101, 34);
     this.btnOilUpdate.TabIndex = 30;
     this.btnOilUpdate.Text = "Update";
     this.btnOilUpdate.UseVisualStyleBackColor = false;
     this.btnOilUpdate.Click += new System.EventHandler(this.btnOilUpdate_Click);
     //
     // btnOilSave
     //
     this.btnOilSave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnOilSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnOilSave.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOilSave.ForeColor = System.Drawing.Color.White;
     this.btnOilSave.Location = new System.Drawing.Point(414, 330);
     this.btnOilSave.Name = "btnOilSave";
     this.btnOilSave.Size = new System.Drawing.Size(101, 34);
     this.btnOilSave.TabIndex = 31;
     this.btnOilSave.Text = "Save";
     this.btnOilSave.UseVisualStyleBackColor = false;
     this.btnOilSave.Click += new System.EventHandler(this.btnOilSave_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.btnOilGetData);
     this.groupBox3.Controls.Add(this.txtOilRate);
     this.groupBox3.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox3.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.groupBox3.Location = new System.Drawing.Point(274, 135);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(507, 84);
     this.groupBox3.TabIndex = 21;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Cotton Oil Rate";
     //
     // btnOilGetData
     //
     this.btnOilGetData.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnOilGetData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnOilGetData.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOilGetData.ForeColor = System.Drawing.Color.White;
     this.btnOilGetData.Location = new System.Drawing.Point(417, 34);
     this.btnOilGetData.Name = "btnOilGetData";
     this.btnOilGetData.Size = new System.Drawing.Size(82, 29);
     this.btnOilGetData.TabIndex = 35;
     this.btnOilGetData.Text = "Get Rate";
     this.btnOilGetData.UseVisualStyleBackColor = false;
     this.btnOilGetData.Click += new System.EventHandler(this.btnOilGetData_Click);
     //
     // txtOilRate
     //
     this.txtOilRate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOilRate.Location = new System.Drawing.Point(22, 37);
     this.txtOilRate.Name = "txtOilRate";
     this.txtOilRate.Size = new System.Drawing.Size(376, 25);
     this.txtOilRate.TabIndex = 0;
     //
     // tabItemRecord
     //
     this.tabItemRecord.BackColor = System.Drawing.Color.White;
     this.tabItemRecord.Controls.Add(this.txtDirtyId);
     this.tabItemRecord.Controls.Add(this.btnDirtyOilUpdate);
     this.tabItemRecord.Controls.Add(this.btnDirtyOilSave);
     this.tabItemRecord.Controls.Add(this.groupBox4);
     this.tabItemRecord.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabItemRecord.Location = new System.Drawing.Point(4, 37);
     this.tabItemRecord.Name = "tabItemRecord";
     this.tabItemRecord.Padding = new System.Windows.Forms.Padding(3);
     this.tabItemRecord.Size = new System.Drawing.Size(1054, 490);
     this.tabItemRecord.TabIndex = 4;
     this.tabItemRecord.Text = "Dirty Oil";
     //
     // txtDirtyId
     //
     this.txtDirtyId.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtDirtyId.ForeColor = System.Drawing.SystemColors.Window;
     this.txtDirtyId.Location = new System.Drawing.Point(770, 40);
     this.txtDirtyId.Name = "txtDirtyId";
     this.txtDirtyId.Size = new System.Drawing.Size(100, 18);
     this.txtDirtyId.TabIndex = 34;
     this.txtDirtyId.TabStop = false;
     //
     // btnDirtyOilUpdate
     //
     this.btnDirtyOilUpdate.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnDirtyOilUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnDirtyOilUpdate.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDirtyOilUpdate.ForeColor = System.Drawing.Color.White;
     this.btnDirtyOilUpdate.Location = new System.Drawing.Point(514, 261);
     this.btnDirtyOilUpdate.Name = "btnDirtyOilUpdate";
     this.btnDirtyOilUpdate.Size = new System.Drawing.Size(101, 34);
     this.btnDirtyOilUpdate.TabIndex = 32;
     this.btnDirtyOilUpdate.Text = "Update";
     this.btnDirtyOilUpdate.UseVisualStyleBackColor = false;
     this.btnDirtyOilUpdate.Click += new System.EventHandler(this.btnDirtyOilUpdate_Click);
     //
     // btnDirtyOilSave
     //
     this.btnDirtyOilSave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnDirtyOilSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnDirtyOilSave.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDirtyOilSave.ForeColor = System.Drawing.Color.White;
     this.btnDirtyOilSave.Location = new System.Drawing.Point(391, 261);
     this.btnDirtyOilSave.Name = "btnDirtyOilSave";
     this.btnDirtyOilSave.Size = new System.Drawing.Size(101, 34);
     this.btnDirtyOilSave.TabIndex = 33;
     this.btnDirtyOilSave.Text = "Save";
     this.btnDirtyOilSave.UseVisualStyleBackColor = false;
     this.btnDirtyOilSave.Click += new System.EventHandler(this.btnDirtyOilSave_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.btnDirtyOilGetData);
     this.groupBox4.Controls.Add(this.txtDirtyOil);
     this.groupBox4.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox4.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.groupBox4.Location = new System.Drawing.Point(274, 127);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(507, 84);
     this.groupBox4.TabIndex = 3;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Dirty Oil Rate";
     //
     // btnDirtyOilGetData
     //
     this.btnDirtyOilGetData.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnDirtyOilGetData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnDirtyOilGetData.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDirtyOilGetData.ForeColor = System.Drawing.Color.White;
     this.btnDirtyOilGetData.Location = new System.Drawing.Point(417, 34);
     this.btnDirtyOilGetData.Name = "btnDirtyOilGetData";
     this.btnDirtyOilGetData.Size = new System.Drawing.Size(82, 29);
     this.btnDirtyOilGetData.TabIndex = 35;
     this.btnDirtyOilGetData.Text = "Get Data";
     this.btnDirtyOilGetData.UseVisualStyleBackColor = false;
     this.btnDirtyOilGetData.Click += new System.EventHandler(this.btnDirtyOilGetData_Click);
     //
     // txtDirtyOil
     //
     this.txtDirtyOil.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDirtyOil.Location = new System.Drawing.Point(22, 37);
     this.txtDirtyOil.Name = "txtDirtyOil";
     this.txtDirtyOil.Size = new System.Drawing.Size(376, 25);
     this.txtDirtyOil.TabIndex = 0;
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.Color.White;
     this.tabPage3.Controls.Add(this.txtLaborId);
     this.tabPage3.Controls.Add(this.btnLaborUpdate);
     this.tabPage3.Controls.Add(this.btnLaborSave);
     this.tabPage3.Controls.Add(this.groupBox5);
     this.tabPage3.Location = new System.Drawing.Point(4, 37);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(1054, 490);
     this.tabPage3.TabIndex = 5;
     this.tabPage3.Text = "Labor Payment";
     //
     // txtLaborId
     //
     this.txtLaborId.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtLaborId.ForeColor = System.Drawing.Color.White;
     this.txtLaborId.Location = new System.Drawing.Point(680, 46);
     this.txtLaborId.Name = "txtLaborId";
     this.txtLaborId.Size = new System.Drawing.Size(100, 25);
     this.txtLaborId.TabIndex = 37;
     //
     // btnLaborUpdate
     //
     this.btnLaborUpdate.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnLaborUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnLaborUpdate.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLaborUpdate.ForeColor = System.Drawing.Color.White;
     this.btnLaborUpdate.Location = new System.Drawing.Point(514, 254);
     this.btnLaborUpdate.Name = "btnLaborUpdate";
     this.btnLaborUpdate.Size = new System.Drawing.Size(101, 34);
     this.btnLaborUpdate.TabIndex = 35;
     this.btnLaborUpdate.Text = "Update";
     this.btnLaborUpdate.UseVisualStyleBackColor = false;
     this.btnLaborUpdate.Click += new System.EventHandler(this.btnLaborUpdate_Click);
     //
     // btnLaborSave
     //
     this.btnLaborSave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnLaborSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnLaborSave.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLaborSave.ForeColor = System.Drawing.Color.White;
     this.btnLaborSave.Location = new System.Drawing.Point(391, 254);
     this.btnLaborSave.Name = "btnLaborSave";
     this.btnLaborSave.Size = new System.Drawing.Size(101, 34);
     this.btnLaborSave.TabIndex = 36;
     this.btnLaborSave.Text = "Save";
     this.btnLaborSave.UseVisualStyleBackColor = false;
     this.btnLaborSave.Click += new System.EventHandler(this.btnLaborSave_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.btnLaborGetdata);
     this.groupBox5.Controls.Add(this.txtLabor);
     this.groupBox5.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox5.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.groupBox5.Location = new System.Drawing.Point(274, 120);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(507, 84);
     this.groupBox5.TabIndex = 34;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Labor Pay  Rate";
     //
     // btnLaborGetdata
     //
     this.btnLaborGetdata.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnLaborGetdata.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnLaborGetdata.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLaborGetdata.ForeColor = System.Drawing.Color.White;
     this.btnLaborGetdata.Location = new System.Drawing.Point(417, 34);
     this.btnLaborGetdata.Name = "btnLaborGetdata";
     this.btnLaborGetdata.Size = new System.Drawing.Size(82, 29);
     this.btnLaborGetdata.TabIndex = 35;
     this.btnLaborGetdata.Text = "Get Data";
     this.btnLaborGetdata.UseVisualStyleBackColor = false;
     this.btnLaborGetdata.Click += new System.EventHandler(this.btnLaborGetdata_Click);
     //
     // txtLabor
     //
     this.txtLabor.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLabor.Location = new System.Drawing.Point(22, 37);
     this.txtLabor.Name = "txtLabor";
     this.txtLabor.Size = new System.Drawing.Size(376, 25);
     this.txtLabor.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.BackColor = System.Drawing.Color.White;
     this.tabPage5.Controls.Add(this.txtExpenceID);
     this.tabPage5.Controls.Add(this.btnExpenceGetData);
     this.tabPage5.Controls.Add(this.btnExpenceUpdate);
     this.tabPage5.Controls.Add(this.btnExpenceDelete);
     this.tabPage5.Controls.Add(this.btnExpenceSave);
     this.tabPage5.Controls.Add(this.dataGridViewExpenceType);
     this.tabPage5.Controls.Add(this.groupBox6);
     this.tabPage5.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage5.ForeColor = System.Drawing.Color.Black;
     this.tabPage5.Location = new System.Drawing.Point(4, 37);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(1054, 431);
     this.tabPage5.TabIndex = 6;
     this.tabPage5.Text = "Expence Type";
     //
     // txtExpenceID
     //
     this.txtExpenceID.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtExpenceID.ForeColor = System.Drawing.SystemColors.Window;
     this.txtExpenceID.Location = new System.Drawing.Point(541, 56);
     this.txtExpenceID.Name = "txtExpenceID";
     this.txtExpenceID.Size = new System.Drawing.Size(100, 18);
     this.txtExpenceID.TabIndex = 41;
     this.txtExpenceID.TabStop = false;
     //
     // btnExpenceGetData
     //
     this.btnExpenceGetData.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnExpenceGetData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnExpenceGetData.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExpenceGetData.ForeColor = System.Drawing.Color.White;
     this.btnExpenceGetData.Location = new System.Drawing.Point(504, 248);
     this.btnExpenceGetData.Name = "btnExpenceGetData";
     this.btnExpenceGetData.Size = new System.Drawing.Size(101, 34);
     this.btnExpenceGetData.TabIndex = 37;
     this.btnExpenceGetData.Text = "Get Data";
     this.btnExpenceGetData.UseVisualStyleBackColor = false;
     this.btnExpenceGetData.Click += new System.EventHandler(this.btnExpenceGetData_Click);
     //
     // btnExpenceUpdate
     //
     this.btnExpenceUpdate.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnExpenceUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnExpenceUpdate.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExpenceUpdate.ForeColor = System.Drawing.Color.White;
     this.btnExpenceUpdate.Location = new System.Drawing.Point(378, 248);
     this.btnExpenceUpdate.Name = "btnExpenceUpdate";
     this.btnExpenceUpdate.Size = new System.Drawing.Size(101, 34);
     this.btnExpenceUpdate.TabIndex = 38;
     this.btnExpenceUpdate.Text = "Update";
     this.btnExpenceUpdate.UseVisualStyleBackColor = false;
     this.btnExpenceUpdate.Click += new System.EventHandler(this.btnExpenceUpdate_Click);
     //
     // btnExpenceDelete
     //
     this.btnExpenceDelete.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnExpenceDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnExpenceDelete.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExpenceDelete.ForeColor = System.Drawing.Color.White;
     this.btnExpenceDelete.Location = new System.Drawing.Point(258, 248);
     this.btnExpenceDelete.Name = "btnExpenceDelete";
     this.btnExpenceDelete.Size = new System.Drawing.Size(101, 34);
     this.btnExpenceDelete.TabIndex = 39;
     this.btnExpenceDelete.Text = "Delete";
     this.btnExpenceDelete.UseVisualStyleBackColor = false;
     this.btnExpenceDelete.Click += new System.EventHandler(this.btnExpenceDelete_Click);
     //
     // btnExpenceSave
     //
     this.btnExpenceSave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnExpenceSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnExpenceSave.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExpenceSave.ForeColor = System.Drawing.Color.White;
     this.btnExpenceSave.Location = new System.Drawing.Point(139, 248);
     this.btnExpenceSave.Name = "btnExpenceSave";
     this.btnExpenceSave.Size = new System.Drawing.Size(101, 34);
     this.btnExpenceSave.TabIndex = 40;
     this.btnExpenceSave.Text = "Save";
     this.btnExpenceSave.UseVisualStyleBackColor = false;
     this.btnExpenceSave.Click += new System.EventHandler(this.btnExpenceSave_Click);
     //
     // dataGridViewExpenceType
     //
     this.dataGridViewExpenceType.BackgroundColor = System.Drawing.Color.White;
     this.dataGridViewExpenceType.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewExpenceType.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewExpenceType.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewExpenceType.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3});
     this.dataGridViewExpenceType.Cursor = System.Windows.Forms.Cursors.Default;
     this.dataGridViewExpenceType.GridColor = System.Drawing.SystemColors.MenuHighlight;
     this.dataGridViewExpenceType.Location = new System.Drawing.Point(655, 0);
     this.dataGridViewExpenceType.Name = "dataGridViewExpenceType";
     this.dataGridViewExpenceType.Size = new System.Drawing.Size(396, 428);
     this.dataGridViewExpenceType.TabIndex = 36;
     this.dataGridViewExpenceType.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewExpenceType_CellContentClick);
     this.dataGridViewExpenceType.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridViewExpenceType_RowPostPaint);
     //
     // Column1
     //
     this.Column1.HeaderText = "Expence ID";
     this.Column1.Name = "Column1";
     this.Column1.Width = 70;
     //
     // Column2
     //
     this.Column2.HeaderText = "Expence Type";
     this.Column2.Name = "Column2";
     this.Column2.Width = 220;
     //
     // Column3
     //
     this.Column3.HeaderText = "Edit";
     this.Column3.Name = "Column3";
     this.Column3.Width = 60;
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.btnNew);
     this.groupBox6.Controls.Add(this.txtExpenceType);
     this.groupBox6.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox6.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.groupBox6.Location = new System.Drawing.Point(142, 110);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(507, 84);
     this.groupBox6.TabIndex = 35;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Enter Expence Type";
     //
     // btnNew
     //
     this.btnNew.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnNew.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNew.ForeColor = System.Drawing.Color.White;
     this.btnNew.Location = new System.Drawing.Point(417, 34);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(82, 29);
     this.btnNew.TabIndex = 35;
     this.btnNew.Text = "New";
     this.btnNew.UseVisualStyleBackColor = false;
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // txtExpenceType
     //
     this.txtExpenceType.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExpenceType.Location = new System.Drawing.Point(22, 37);
     this.txtExpenceType.Name = "txtExpenceType";
     this.txtExpenceType.Size = new System.Drawing.Size(376, 25);
     this.txtExpenceType.TabIndex = 0;
     //
     // lblCopyright
     //
     this.lblCopyright.AutoSize = true;
     this.lblCopyright.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCopyright.ForeColor = System.Drawing.Color.White;
     this.lblCopyright.Location = new System.Drawing.Point(403, 624);
     this.lblCopyright.Name = "lblCopyright";
     this.lblCopyright.Size = new System.Drawing.Size(219, 21);
     this.lblCopyright.TabIndex = 5;
     this.lblCopyright.Text = "Copyright @ Technoxen, 2014";
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.textBox1.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.textBox1.Location = new System.Drawing.Point(103, 98);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size = new System.Drawing.Size(434, 259);
     this.textBox1.TabIndex = 1;
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.LightSkyBlue;
     this.panel4.Controls.Add(this.btnClose);
     this.panel4.Controls.Add(this.Label1);
     this.panel4.Location = new System.Drawing.Point(7, 11);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(1166, 41);
     this.panel4.TabIndex = 134;
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.BackgroundImage = global::OMMS.Properties.Resources.close_2;
     this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnClose.FlatAppearance.BorderSize = 0;
     this.btnClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor = System.Drawing.Color.Black;
     this.btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(1119, 0);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(39, 41);
     this.btnClose.TabIndex = 174;
     this.btnClose.UseVisualStyleBackColor = false;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click_1);
     //
     // Label1
     //
     this.Label1.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.White;
     this.Label1.Location = new System.Drawing.Point(371, 0);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(310, 39);
     this.Label1.TabIndex = 3;
     this.Label1.Text = "Master Entry Form";
     this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // frmMasterEntry
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 30F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1182, 614);
     this.Controls.Add(this.pnlMain);
     this.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(6, 7, 6, 7);
     this.Name = "frmMasterEntry";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.pnlMain.ResumeLayout(false);
     this.pnlMain.PerformLayout();
     this.masterTb.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.tabItemRecord.ResumeLayout(false);
     this.tabItemRecord.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.tabPage5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewExpenceType)).EndInit();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     this.panel4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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.btnMax = new System.Windows.Forms.Button();
     this.btnPre = new System.Windows.Forms.Button();
     this.BtnMin = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.btnClear = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnNext = new System.Windows.Forms.Button();
     this.xTotal = new System.Windows.Forms.TextBox();
     this.Panel2 = new System.Windows.Forms.Panel();
     this.txtVocNo2 = new System.Windows.Forms.TextBox();
     this.txtCashAcCode = new System.Windows.Forms.TextBox();
     this.Panel3 = new System.Windows.Forms.Panel();
     this.btnUpdate = new System.Windows.Forms.Button();
     this.dpVocDate = new System.Windows.Forms.DateTimePicker();
     this.txtVocNo = new System.Windows.Forms.TextBox();
     this.xPriHead = new System.Windows.Forms.TextBox();
     this.xSecHead = new System.Windows.Forms.TextBox();
     this.Flex = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.txtAmount = new System.Windows.Forms.TextBox();
     this.txtNarration = new System.Windows.Forms.TextBox();
     this.txtAcCode = new System.Windows.Forms.TextBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.Label6 = new System.Windows.Forms.Label();
     this.Label5 = new System.Windows.Forms.Label();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label3 = new System.Windows.Forms.Label();
     this.Label8 = new System.Windows.Forms.Label();
     this.Label4 = new System.Windows.Forms.Label();
     this.comboAcTitle = new System.Windows.Forms.ComboBox();
     this.comboCashAc = new System.Windows.Forms.ComboBox();
     this.panel4 = new System.Windows.Forms.Panel();
     this.btnAdd = new System.Windows.Forms.Button();
     this.Panel1 = new System.Windows.Forms.Panel();
     this.Label1 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.btnClose = new System.Windows.Forms.Button();
     this.Panel2.SuspendLayout();
     this.Panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Flex)).BeginInit();
     this.panel4.SuspendLayout();
     this.Panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnMax
     //
     this.btnMax.Location = new System.Drawing.Point(222, 7);
     this.btnMax.Margin = new System.Windows.Forms.Padding(0);
     this.btnMax.Name = "btnMax";
     this.btnMax.Size = new System.Drawing.Size(34, 25);
     this.btnMax.TabIndex = 0;
     this.btnMax.Text = ">>";
     this.btnMax.UseVisualStyleBackColor = true;
     this.btnMax.Click += new System.EventHandler(this.btnMax_Click);
     //
     // btnPre
     //
     this.btnPre.Location = new System.Drawing.Point(34, 7);
     this.btnPre.Margin = new System.Windows.Forms.Padding(0);
     this.btnPre.Name = "btnPre";
     this.btnPre.Size = new System.Drawing.Size(28, 25);
     this.btnPre.TabIndex = 0;
     this.btnPre.Text = "<";
     this.btnPre.UseVisualStyleBackColor = true;
     this.btnPre.Click += new System.EventHandler(this.btnPre_Click);
     //
     // BtnMin
     //
     this.BtnMin.Location = new System.Drawing.Point(2, 7);
     this.BtnMin.Margin = new System.Windows.Forms.Padding(0);
     this.BtnMin.Name = "BtnMin";
     this.BtnMin.Size = new System.Drawing.Size(34, 25);
     this.BtnMin.TabIndex = 0;
     this.BtnMin.Text = "<<";
     this.BtnMin.UseVisualStyleBackColor = true;
     this.BtnMin.Click += new System.EventHandler(this.BtnMin_Click);
     //
     // btnSave
     //
     this.btnSave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnSave.FlatAppearance.BorderSize = 0;
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSave.ForeColor = System.Drawing.Color.White;
     this.btnSave.Image = global::PHMS.Properties.Resources.Save_26;
     this.btnSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(131, 14);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(144, 36);
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = "Save";
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.cmdSave_Click);
     //
     // btnClear
     //
     this.btnClear.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnClear.FlatAppearance.BorderSize = 0;
     this.btnClear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClear.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClear.ForeColor = System.Drawing.Color.White;
     this.btnClear.Location = new System.Drawing.Point(580, 14);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(145, 36);
     this.btnClear.TabIndex = 3;
     this.btnClear.Text = "Clear";
     this.btnClear.UseVisualStyleBackColor = false;
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // btnDelete
     //
     this.btnDelete.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnDelete.FlatAppearance.BorderSize = 0;
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDelete.ForeColor = System.Drawing.Color.White;
     this.btnDelete.Image = global::PHMS.Properties.Resources.del;
     this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(430, 14);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(145, 36);
     this.btnDelete.TabIndex = 9;
     this.btnDelete.Text = "Delete";
     this.btnDelete.UseVisualStyleBackColor = false;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnNext
     //
     this.btnNext.Location = new System.Drawing.Point(196, 7);
     this.btnNext.Margin = new System.Windows.Forms.Padding(0);
     this.btnNext.Name = "btnNext";
     this.btnNext.Size = new System.Drawing.Size(28, 25);
     this.btnNext.TabIndex = 0;
     this.btnNext.Text = ">";
     this.btnNext.UseVisualStyleBackColor = true;
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // xTotal
     //
     this.xTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xTotal.Location = new System.Drawing.Point(832, 19);
     this.xTotal.Name = "xTotal";
     this.xTotal.Size = new System.Drawing.Size(103, 24);
     this.xTotal.TabIndex = 19;
     this.xTotal.Text = "0";
     this.xTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Panel2
     //
     this.Panel2.Controls.Add(this.txtVocNo2);
     this.Panel2.Controls.Add(this.btnMax);
     this.Panel2.Controls.Add(this.btnPre);
     this.Panel2.Controls.Add(this.btnNext);
     this.Panel2.Controls.Add(this.BtnMin);
     this.Panel2.Location = new System.Drawing.Point(223, 69);
     this.Panel2.Name = "Panel2";
     this.Panel2.Size = new System.Drawing.Size(256, 32);
     this.Panel2.TabIndex = 64;
     //
     // txtVocNo2
     //
     this.txtVocNo2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtVocNo2.Location = new System.Drawing.Point(62, 8);
     this.txtVocNo2.MaxLength = 255;
     this.txtVocNo2.Name = "txtVocNo2";
     this.txtVocNo2.Size = new System.Drawing.Size(134, 24);
     this.txtVocNo2.TabIndex = 71;
     this.txtVocNo2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtVocNo2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
     this.txtVocNo2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtVocNo2_KeyPress);
     //
     // txtCashAcCode
     //
     this.txtCashAcCode.AutoCompleteCustomSource.AddRange(new string[] {
     "Muhammad"});
     this.txtCashAcCode.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.txtCashAcCode.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
     this.txtCashAcCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCashAcCode.Location = new System.Drawing.Point(830, 101);
     this.txtCashAcCode.MaxLength = 250;
     this.txtCashAcCode.Name = "txtCashAcCode";
     this.txtCashAcCode.ReadOnly = true;
     this.txtCashAcCode.Size = new System.Drawing.Size(232, 25);
     this.txtCashAcCode.TabIndex = 61;
     this.txtCashAcCode.TabStop = false;
     this.txtCashAcCode.Text = "1";
     this.txtCashAcCode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Panel3
     //
     this.Panel3.BackColor = System.Drawing.Color.White;
     this.Panel3.Controls.Add(this.btnUpdate);
     this.Panel3.Controls.Add(this.btnSave);
     this.Panel3.Controls.Add(this.btnClear);
     this.Panel3.Controls.Add(this.btnDelete);
     this.Panel3.Controls.Add(this.xTotal);
     this.Panel3.Location = new System.Drawing.Point(93, 536);
     this.Panel3.Name = "Panel3";
     this.Panel3.Size = new System.Drawing.Size(1019, 66);
     this.Panel3.TabIndex = 59;
     //
     // btnUpdate
     //
     this.btnUpdate.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnUpdate.FlatAppearance.BorderSize = 0;
     this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnUpdate.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnUpdate.ForeColor = System.Drawing.Color.White;
     this.btnUpdate.Image = global::PHMS.Properties.Resources.Edit_26;
     this.btnUpdate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnUpdate.Location = new System.Drawing.Point(280, 14);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(145, 36);
     this.btnUpdate.TabIndex = 20;
     this.btnUpdate.Text = "Update";
     this.btnUpdate.UseVisualStyleBackColor = false;
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click_1);
     //
     // dpVocDate
     //
     this.dpVocDate.CustomFormat = "dd/MM/yyyy dddd hh:mm:ss tt";
     this.dpVocDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dpVocDate.Location = new System.Drawing.Point(230, 129);
     this.dpVocDate.Name = "dpVocDate";
     this.dpVocDate.Size = new System.Drawing.Size(248, 25);
     this.dpVocDate.TabIndex = 40;
     //
     // txtVocNo
     //
     this.txtVocNo.AutoCompleteCustomSource.AddRange(new string[] {
     "Muhammad"});
     this.txtVocNo.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.txtVocNo.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
     this.txtVocNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtVocNo.Location = new System.Drawing.Point(231, 102);
     this.txtVocNo.MaxLength = 250;
     this.txtVocNo.Name = "txtVocNo";
     this.txtVocNo.ReadOnly = true;
     this.txtVocNo.Size = new System.Drawing.Size(248, 25);
     this.txtVocNo.TabIndex = 60;
     this.txtVocNo.TabStop = false;
     this.txtVocNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // xPriHead
     //
     this.xPriHead.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xPriHead.Location = new System.Drawing.Point(93, 179);
     this.xPriHead.Name = "xPriHead";
     this.xPriHead.Size = new System.Drawing.Size(47, 24);
     this.xPriHead.TabIndex = 41;
     this.xPriHead.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // xSecHead
     //
     this.xSecHead.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xSecHead.Location = new System.Drawing.Point(139, 179);
     this.xSecHead.Name = "xSecHead";
     this.xSecHead.Size = new System.Drawing.Size(47, 24);
     this.xSecHead.TabIndex = 42;
     this.xSecHead.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Flex
     //
     this.Flex.AllowUserToAddRows = false;
     this.Flex.AllowUserToDeleteRows = false;
     this.Flex.BackgroundColor = System.Drawing.Color.LightGray;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.Flex.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.Flex.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.Flex.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3,
     this.Column4,
     this.Column5});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.Flex.DefaultCellStyle = dataGridViewCellStyle2;
     this.Flex.GridColor = System.Drawing.Color.LightGray;
     this.Flex.Location = new System.Drawing.Point(92, 207);
     this.Flex.Name = "Flex";
     this.Flex.Size = new System.Drawing.Size(1019, 315);
     this.Flex.TabIndex = 58;
     this.Flex.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Flex_CellContentClick);
     this.Flex.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.Flex_CellMouseClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "A/C Code";
     this.Column1.Name = "Column1";
     this.Column1.Width = 125;
     //
     // Column2
     //
     this.Column2.HeaderText = "A/C Title";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Width = 260;
     //
     // Column3
     //
     this.Column3.HeaderText = "Narration";
     this.Column3.Name = "Column3";
     this.Column3.Width = 400;
     //
     // Column4
     //
     this.Column4.HeaderText = "Amount";
     this.Column4.Name = "Column4";
     //
     // Column5
     //
     this.Column5.HeaderText = "Delete";
     this.Column5.Name = "Column5";
     this.Column5.Width = 75;
     //
     // txtAmount
     //
     this.txtAmount.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAmount.Location = new System.Drawing.Point(906, 178);
     this.txtAmount.Name = "txtAmount";
     this.txtAmount.Size = new System.Drawing.Size(103, 24);
     this.txtAmount.TabIndex = 2;
     this.txtAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtAmount.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAmount_KeyDown);
     this.txtAmount.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAmount_KeyPress);
     //
     // txtNarration
     //
     this.txtNarration.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNarration.Location = new System.Drawing.Point(550, 179);
     this.txtNarration.MaxLength = 255;
     this.txtNarration.Name = "txtNarration";
     this.txtNarration.Size = new System.Drawing.Size(358, 24);
     this.txtNarration.TabIndex = 1;
     this.txtNarration.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNarration_KeyDown);
     //
     // txtAcCode
     //
     this.txtAcCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAcCode.Location = new System.Drawing.Point(185, 179);
     this.txtAcCode.Name = "txtAcCode";
     this.txtAcCode.Size = new System.Drawing.Size(74, 24);
     this.txtAcCode.TabIndex = 43;
     this.txtAcCode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(903, 156);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(65, 18);
     this.Label7.TabIndex = 54;
     this.Label7.Text = "Amount";
     //
     // Label6
     //
     this.Label6.AutoSize = true;
     this.Label6.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label6.Location = new System.Drawing.Point(561, 157);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(80, 18);
     this.Label6.TabIndex = 52;
     this.Label6.Text = "Narration";
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.Location = new System.Drawing.Point(264, 156);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(153, 18);
     this.Label5.TabIndex = 51;
     this.Label5.Text = "Account Reciveable";
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(111, 157);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(109, 18);
     this.Label2.TabIndex = 50;
     this.Label2.Text = "Account Code";
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location = new System.Drawing.Point(111, 131);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(113, 18);
     this.Label3.TabIndex = 49;
     this.Label3.Text = "Voucher Date:";
     //
     // Label8
     //
     this.Label8.AutoSize = true;
     this.Label8.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label8.Location = new System.Drawing.Point(660, 100);
     this.Label8.Name = "Label8";
     this.Label8.Size = new System.Drawing.Size(85, 18);
     this.Label8.TabIndex = 56;
     this.Label8.Text = "Cash A/C:";
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label4.Location = new System.Drawing.Point(111, 103);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(88, 18);
     this.Label4.TabIndex = 55;
     this.Label4.Text = "Voucher #:";
     //
     // comboAcTitle
     //
     this.comboAcTitle.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboAcTitle.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboAcTitle.FormattingEnabled = true;
     this.comboAcTitle.Location = new System.Drawing.Point(258, 178);
     this.comboAcTitle.Name = "comboAcTitle";
     this.comboAcTitle.Size = new System.Drawing.Size(292, 25);
     this.comboAcTitle.TabIndex = 0;
     this.comboAcTitle.SelectedIndexChanged += new System.EventHandler(this.comboAcTitle_SelectedIndexChanged);
     this.comboAcTitle.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboAcTitle_KeyDown);
     //
     // comboCashAc
     //
     this.comboCashAc.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboCashAc.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboCashAc.FormattingEnabled = true;
     this.comboCashAc.Location = new System.Drawing.Point(830, 129);
     this.comboCashAc.Name = "comboCashAc";
     this.comboCashAc.Size = new System.Drawing.Size(233, 25);
     this.comboCashAc.TabIndex = 66;
     this.comboCashAc.SelectedIndexChanged += new System.EventHandler(this.comboCashAc_SelectedIndexChanged);
     //
     // panel4
     //
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.btnAdd);
     this.panel4.Controls.Add(this.Panel1);
     this.panel4.Controls.Add(this.dpVocDate);
     this.panel4.Controls.Add(this.Label3);
     this.panel4.Controls.Add(this.Label2);
     this.panel4.Controls.Add(this.Flex);
     this.panel4.Controls.Add(this.Label4);
     this.panel4.Controls.Add(this.label9);
     this.panel4.Controls.Add(this.Label5);
     this.panel4.Controls.Add(this.Label8);
     this.panel4.Controls.Add(this.Label6);
     this.panel4.Controls.Add(this.txtAmount);
     this.panel4.Controls.Add(this.Label7);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(1182, 628);
     this.panel4.TabIndex = 67;
     //
     // btnAdd
     //
     this.btnAdd.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnAdd.FlatAppearance.BorderSize = 0;
     this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnAdd.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAdd.ForeColor = System.Drawing.Color.White;
     this.btnAdd.Image = global::PHMS.Properties.Resources.Plus_26;
     this.btnAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(1016, 176);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(95, 25);
     this.btnAdd.TabIndex = 70;
     this.btnAdd.Text = "Add";
     this.btnAdd.UseVisualStyleBackColor = false;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // Panel1
     //
     this.Panel1.BackColor = System.Drawing.Color.LightSkyBlue;
     this.Panel1.Controls.Add(this.btnClose);
     this.Panel1.Controls.Add(this.Label1);
     this.Panel1.Location = new System.Drawing.Point(11, 8);
     this.Panel1.Name = "Panel1";
     this.Panel1.Size = new System.Drawing.Size(1158, 41);
     this.Panel1.TabIndex = 68;
     //
     // Label1
     //
     this.Label1.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.White;
     this.Label1.Location = new System.Drawing.Point(371, 0);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(310, 39);
     this.Label1.TabIndex = 3;
     this.Label1.Text = "Cash Payment Voucher";
     this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Rockwell", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(660, 131);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(130, 18);
     this.label9.TabIndex = 51;
     this.label9.Text = "Account Payable";
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.BackgroundImage = global::PHMS.Properties.Resources.close_2;
     this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnClose.FlatAppearance.BorderSize = 0;
     this.btnClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor = System.Drawing.Color.Black;
     this.btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(1119, 0);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(39, 41);
     this.btnClose.TabIndex = 174;
     this.btnClose.UseVisualStyleBackColor = false;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // frmCashPayment
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1182, 628);
     this.Controls.Add(this.comboCashAc);
     this.Controls.Add(this.comboAcTitle);
     this.Controls.Add(this.Panel2);
     this.Controls.Add(this.txtCashAcCode);
     this.Controls.Add(this.Panel3);
     this.Controls.Add(this.txtVocNo);
     this.Controls.Add(this.xPriHead);
     this.Controls.Add(this.xSecHead);
     this.Controls.Add(this.txtNarration);
     this.Controls.Add(this.txtAcCode);
     this.Controls.Add(this.panel4);
     this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "frmCashPayment";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmRateChange";
     this.Load += new System.EventHandler(this.frmCashPayment_Load);
     this.Panel2.ResumeLayout(false);
     this.Panel2.PerformLayout();
     this.Panel3.ResumeLayout(false);
     this.Panel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Flex)).EndInit();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.Panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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();
     this.lblSimConnectServer = new System.Windows.Forms.Label();
     this.txtSimConnectServer = new System.Windows.Forms.TextBox();
     this.lblSimConnectPort = new System.Windows.Forms.Label();
     this.txtSimConnectPort = new System.Windows.Forms.NumericUpDown();
     this.pbConnect = new System.Windows.Forms.Button();
     this.cbConnected = new System.Windows.Forms.CheckBox();
     this.gpConnect = new System.Windows.Forms.GroupBox();
     this.gpRequest = new System.Windows.Forms.GroupBox();
     this.cmbIndex = new System.Windows.Forms.ComboBox();
     this.lblIndex = new System.Windows.Forms.Label();
     this.cbDisableAI = new System.Windows.Forms.CheckBox();
     this.lblMilliseconds = new System.Windows.Forms.Label();
     this.txtMilliseconds = new System.Windows.Forms.NumericUpDown();
     this.cmbFrequency = new System.Windows.Forms.ComboBox();
     this.lblFrequency = new System.Windows.Forms.Label();
     this.txtDescription = new System.Windows.Forms.TextBox();
     this.lblDescription = new System.Windows.Forms.Label();
     this.cbReadOnly = new System.Windows.Forms.CheckBox();
     this.txtSimVarValue = new System.Windows.Forms.TextBox();
     this.lblSimVarValue = new System.Windows.Forms.Label();
     this.txtUnit = new System.Windows.Forms.TextBox();
     this.lblUnit = new System.Windows.Forms.Label();
     this.pbSendRequest = new System.Windows.Forms.Button();
     this.cmbVariable = new System.Windows.Forms.ComboBox();
     this.lblVariable = new System.Windows.Forms.Label();
     this.dgVariables = new System.Windows.Forms.DataGridView();
     this.ReqID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarUnit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarFreq = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.VarIsReadOnly = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.SimVarUpdate = new System.Windows.Forms.DataGridViewButtonColumn();
     this.SimVarDelete = new System.Windows.Forms.DataGridViewButtonColumn();
     this.txtErrors = new System.Windows.Forms.TextBox();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.txtSimConnectPort)).BeginInit();
     this.gpConnect.SuspendLayout();
     this.gpRequest.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMilliseconds)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgVariables)).BeginInit();
     this.SuspendLayout();
     //
     // lblSimConnectServer
     //
     this.lblSimConnectServer.AutoSize = true;
     this.lblSimConnectServer.Location = new System.Drawing.Point(9, 25);
     this.lblSimConnectServer.Name = "lblSimConnectServer";
     this.lblSimConnectServer.Size = new System.Drawing.Size(84, 15);
     this.lblSimConnectServer.TabIndex = 0;
     this.lblSimConnectServer.Text = "MSFS 2020 PC:";
     //
     // txtSimConnectServer
     //
     this.txtSimConnectServer.Location = new System.Drawing.Point(99, 22);
     this.txtSimConnectServer.Name = "txtSimConnectServer";
     this.txtSimConnectServer.Size = new System.Drawing.Size(120, 23);
     this.txtSimConnectServer.TabIndex = 1;
     this.txtSimConnectServer.Text = "localhost";
     //
     // lblSimConnectPort
     //
     this.lblSimConnectPort.AutoSize = true;
     this.lblSimConnectPort.Location = new System.Drawing.Point(61, 51);
     this.lblSimConnectPort.Name = "lblSimConnectPort";
     this.lblSimConnectPort.Size = new System.Drawing.Size(32, 15);
     this.lblSimConnectPort.TabIndex = 2;
     this.lblSimConnectPort.Text = "Port:";
     //
     // txtSimConnectPort
     //
     this.txtSimConnectPort.Location = new System.Drawing.Point(99, 51);
     this.txtSimConnectPort.Maximum = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.txtSimConnectPort.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.txtSimConnectPort.Name = "txtSimConnectPort";
     this.txtSimConnectPort.Size = new System.Drawing.Size(120, 23);
     this.txtSimConnectPort.TabIndex = 3;
     this.txtSimConnectPort.Value = new decimal(new int[] {
     500,
     0,
     0,
     0});
     //
     // pbConnect
     //
     this.pbConnect.Location = new System.Drawing.Point(144, 80);
     this.pbConnect.Name = "pbConnect";
     this.pbConnect.Size = new System.Drawing.Size(75, 23);
     this.pbConnect.TabIndex = 4;
     this.pbConnect.Text = "Connect";
     this.pbConnect.UseVisualStyleBackColor = true;
     this.pbConnect.Click += new System.EventHandler(this.pbConnect_Click);
     //
     // cbConnected
     //
     this.cbConnected.AutoSize = true;
     this.cbConnected.Enabled = false;
     this.cbConnected.Location = new System.Drawing.Point(253, 37);
     this.cbConnected.Name = "cbConnected";
     this.cbConnected.Size = new System.Drawing.Size(162, 19);
     this.cbConnected.TabIndex = 5;
     this.cbConnected.Text = "Connected to MSFS 2020?";
     this.cbConnected.UseVisualStyleBackColor = true;
     //
     // gpConnect
     //
     this.gpConnect.Controls.Add(this.txtSimConnectServer);
     this.gpConnect.Controls.Add(this.lblSimConnectServer);
     this.gpConnect.Controls.Add(this.pbConnect);
     this.gpConnect.Controls.Add(this.lblSimConnectPort);
     this.gpConnect.Controls.Add(this.txtSimConnectPort);
     this.gpConnect.Location = new System.Drawing.Point(12, 12);
     this.gpConnect.Name = "gpConnect";
     this.gpConnect.Size = new System.Drawing.Size(228, 117);
     this.gpConnect.TabIndex = 6;
     this.gpConnect.TabStop = false;
     this.gpConnect.Text = "Connect";
     //
     // gpRequest
     //
     this.gpRequest.Controls.Add(this.cmbIndex);
     this.gpRequest.Controls.Add(this.lblIndex);
     this.gpRequest.Controls.Add(this.cbDisableAI);
     this.gpRequest.Controls.Add(this.lblMilliseconds);
     this.gpRequest.Controls.Add(this.txtMilliseconds);
     this.gpRequest.Controls.Add(this.cmbFrequency);
     this.gpRequest.Controls.Add(this.lblFrequency);
     this.gpRequest.Controls.Add(this.txtDescription);
     this.gpRequest.Controls.Add(this.lblDescription);
     this.gpRequest.Controls.Add(this.cbReadOnly);
     this.gpRequest.Controls.Add(this.txtSimVarValue);
     this.gpRequest.Controls.Add(this.lblSimVarValue);
     this.gpRequest.Controls.Add(this.txtUnit);
     this.gpRequest.Controls.Add(this.lblUnit);
     this.gpRequest.Controls.Add(this.pbSendRequest);
     this.gpRequest.Controls.Add(this.cmbVariable);
     this.gpRequest.Controls.Add(this.lblVariable);
     this.gpRequest.Location = new System.Drawing.Point(13, 136);
     this.gpRequest.Name = "gpRequest";
     this.gpRequest.Size = new System.Drawing.Size(402, 178);
     this.gpRequest.TabIndex = 7;
     this.gpRequest.TabStop = false;
     this.gpRequest.Text = "Request";
     //
     // cmbIndex
     //
     this.cmbIndex.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbIndex.FormattingEnabled = true;
     this.cmbIndex.Items.AddRange(new object[] {
     "",
     "1",
     "2",
     "3",
     "4"});
     this.cmbIndex.Location = new System.Drawing.Point(313, 19);
     this.cmbIndex.Name = "cmbIndex";
     this.cmbIndex.Size = new System.Drawing.Size(62, 23);
     this.cmbIndex.TabIndex = 16;
     //
     // lblIndex
     //
     this.lblIndex.AutoSize = true;
     this.lblIndex.Location = new System.Drawing.Point(267, 19);
     this.lblIndex.Name = "lblIndex";
     this.lblIndex.Size = new System.Drawing.Size(39, 15);
     this.lblIndex.TabIndex = 15;
     this.lblIndex.Text = "Index:";
     //
     // cbDisableAI
     //
     this.cbDisableAI.AutoSize = true;
     this.cbDisableAI.Location = new System.Drawing.Point(179, 149);
     this.cbDisableAI.Name = "cbDisableAI";
     this.cbDisableAI.Size = new System.Drawing.Size(83, 19);
     this.cbDisableAI.TabIndex = 14;
     this.cbDisableAI.Text = "Disable AI?";
     this.cbDisableAI.UseVisualStyleBackColor = true;
     //
     // lblMilliseconds
     //
     this.lblMilliseconds.AutoSize = true;
     this.lblMilliseconds.Location = new System.Drawing.Point(273, 104);
     this.lblMilliseconds.Name = "lblMilliseconds";
     this.lblMilliseconds.Size = new System.Drawing.Size(73, 15);
     this.lblMilliseconds.TabIndex = 13;
     this.lblMilliseconds.Text = "milliseconds";
     //
     // txtMilliseconds
     //
     this.txtMilliseconds.Enabled = false;
     this.txtMilliseconds.Location = new System.Drawing.Point(192, 101);
     this.txtMilliseconds.Maximum = new decimal(new int[] {
     3000,
     0,
     0,
     0});
     this.txtMilliseconds.Minimum = new decimal(new int[] {
     20,
     0,
     0,
     0});
     this.txtMilliseconds.Name = "txtMilliseconds";
     this.txtMilliseconds.Size = new System.Drawing.Size(74, 23);
     this.txtMilliseconds.TabIndex = 12;
     this.txtMilliseconds.Value = new decimal(new int[] {
     20,
     0,
     0,
     0});
     //
     // cmbFrequency
     //
     this.cmbFrequency.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbFrequency.FormattingEnabled = true;
     this.cmbFrequency.Location = new System.Drawing.Point(65, 101);
     this.cmbFrequency.Name = "cmbFrequency";
     this.cmbFrequency.Size = new System.Drawing.Size(121, 23);
     this.cmbFrequency.TabIndex = 11;
     this.cmbFrequency.SelectedIndexChanged += new System.EventHandler(this.Frequency_Changed);
     //
     // lblFrequency
     //
     this.lblFrequency.AutoSize = true;
     this.lblFrequency.Location = new System.Drawing.Point(25, 104);
     this.lblFrequency.Name = "lblFrequency";
     this.lblFrequency.Size = new System.Drawing.Size(33, 15);
     this.lblFrequency.TabIndex = 10;
     this.lblFrequency.Text = "Freq:";
     //
     // txtDescription
     //
     this.txtDescription.Location = new System.Drawing.Point(65, 44);
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.ReadOnly = true;
     this.txtDescription.Size = new System.Drawing.Size(310, 23);
     this.txtDescription.TabIndex = 9;
     //
     // lblDescription
     //
     this.lblDescription.AutoSize = true;
     this.lblDescription.Location = new System.Drawing.Point(24, 49);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(35, 15);
     this.lblDescription.TabIndex = 8;
     this.lblDescription.Text = "Desc:";
     //
     // cbReadOnly
     //
     this.cbReadOnly.AutoSize = true;
     this.cbReadOnly.Enabled = false;
     this.cbReadOnly.Location = new System.Drawing.Point(179, 131);
     this.cbReadOnly.Name = "cbReadOnly";
     this.cbReadOnly.Size = new System.Drawing.Size(85, 19);
     this.cbReadOnly.TabIndex = 7;
     this.cbReadOnly.Text = "Read Only?";
     this.cbReadOnly.UseVisualStyleBackColor = true;
     //
     // txtSimVarValue
     //
     this.txtSimVarValue.Enabled = false;
     this.txtSimVarValue.Location = new System.Drawing.Point(65, 137);
     this.txtSimVarValue.Name = "txtSimVarValue";
     this.txtSimVarValue.Size = new System.Drawing.Size(107, 23);
     this.txtSimVarValue.TabIndex = 6;
     //
     // lblSimVarValue
     //
     this.lblSimVarValue.AutoSize = true;
     this.lblSimVarValue.Location = new System.Drawing.Point(21, 140);
     this.lblSimVarValue.Name = "lblSimVarValue";
     this.lblSimVarValue.Size = new System.Drawing.Size(38, 15);
     this.lblSimVarValue.TabIndex = 5;
     this.lblSimVarValue.Text = "Value:";
     //
     // txtUnit
     //
     this.txtUnit.Location = new System.Drawing.Point(65, 72);
     this.txtUnit.Name = "txtUnit";
     this.txtUnit.ReadOnly = true;
     this.txtUnit.Size = new System.Drawing.Size(310, 23);
     this.txtUnit.TabIndex = 4;
     //
     // lblUnit
     //
     this.lblUnit.AutoSize = true;
     this.lblUnit.Location = new System.Drawing.Point(27, 76);
     this.lblUnit.Name = "lblUnit";
     this.lblUnit.Size = new System.Drawing.Size(32, 15);
     this.lblUnit.TabIndex = 3;
     this.lblUnit.Text = "Unit:";
     //
     // pbSendRequest
     //
     this.pbSendRequest.Location = new System.Drawing.Point(267, 144);
     this.pbSendRequest.Name = "pbSendRequest";
     this.pbSendRequest.Size = new System.Drawing.Size(108, 23);
     this.pbSendRequest.TabIndex = 2;
     this.pbSendRequest.Text = "Send Request";
     this.pbSendRequest.UseVisualStyleBackColor = true;
     this.pbSendRequest.Click += new System.EventHandler(this.pbSendRequest_Click);
     //
     // cmbVariable
     //
     this.cmbVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbVariable.FormattingEnabled = true;
     this.cmbVariable.Location = new System.Drawing.Point(65, 16);
     this.cmbVariable.Name = "cmbVariable";
     this.cmbVariable.Size = new System.Drawing.Size(197, 23);
     this.cmbVariable.TabIndex = 1;
     this.cmbVariable.SelectedIndexChanged += new System.EventHandler(this.Variable_Changed);
     //
     // lblVariable
     //
     this.lblVariable.AutoSize = true;
     this.lblVariable.Location = new System.Drawing.Point(8, 19);
     this.lblVariable.Name = "lblVariable";
     this.lblVariable.Size = new System.Drawing.Size(51, 15);
     this.lblVariable.TabIndex = 0;
     this.lblVariable.Text = "Variable:";
     //
     // dgVariables
     //
     this.dgVariables.AllowUserToAddRows = false;
     this.dgVariables.AllowUserToDeleteRows = false;
     this.dgVariables.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dgVariables.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgVariables.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ReqID,
     this.SimVarName,
     this.SimVarUnit,
     this.SimVarFreq,
     this.SimVarValue,
     this.VarIsReadOnly,
     this.SimVarUpdate,
     this.SimVarDelete});
     this.dgVariables.Location = new System.Drawing.Point(427, 12);
     this.dgVariables.MultiSelect = false;
     this.dgVariables.Name = "dgVariables";
     this.dgVariables.ReadOnly = true;
     this.dgVariables.RowHeadersVisible = false;
     this.dgVariables.RowTemplate.Height = 25;
     this.dgVariables.Size = new System.Drawing.Size(593, 486);
     this.dgVariables.TabIndex = 8;
     this.dgVariables.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvButton_Click);
     //
     // ReqID
     //
     this.ReqID.HeaderText = "ReqID";
     this.ReqID.Name = "ReqID";
     this.ReqID.ReadOnly = true;
     this.ReqID.Visible = false;
     this.ReqID.Width = 80;
     //
     // SimVarName
     //
     this.SimVarName.HeaderText = "SimVar";
     this.SimVarName.Name = "SimVarName";
     this.SimVarName.ReadOnly = true;
     this.SimVarName.Width = 200;
     //
     // SimVarUnit
     //
     this.SimVarUnit.HeaderText = "Unit";
     this.SimVarUnit.Name = "SimVarUnit";
     this.SimVarUnit.ReadOnly = true;
     this.SimVarUnit.Visible = false;
     this.SimVarUnit.Width = 150;
     //
     // SimVarFreq
     //
     this.SimVarFreq.HeaderText = "Frequency";
     this.SimVarFreq.Name = "SimVarFreq";
     this.SimVarFreq.ReadOnly = true;
     this.SimVarFreq.Width = 80;
     //
     // SimVarValue
     //
     this.SimVarValue.HeaderText = "Value";
     this.SimVarValue.Name = "SimVarValue";
     this.SimVarValue.ReadOnly = true;
     //
     // VarIsReadOnly
     //
     this.VarIsReadOnly.HeaderText = "Read Only";
     this.VarIsReadOnly.Name = "VarIsReadOnly";
     this.VarIsReadOnly.ReadOnly = true;
     this.VarIsReadOnly.Width = 60;
     //
     // SimVarUpdate
     //
     this.SimVarUpdate.HeaderText = "Update";
     this.SimVarUpdate.Name = "SimVarUpdate";
     this.SimVarUpdate.ReadOnly = true;
     this.SimVarUpdate.Text = "Update";
     this.SimVarUpdate.ToolTipText = "Update";
     this.SimVarUpdate.UseColumnTextForButtonValue = true;
     this.SimVarUpdate.Width = 50;
     //
     // SimVarDelete
     //
     this.SimVarDelete.HeaderText = "Delete";
     this.SimVarDelete.Name = "SimVarDelete";
     this.SimVarDelete.ReadOnly = true;
     this.SimVarDelete.Text = "Delete";
     this.SimVarDelete.ToolTipText = "Delete";
     this.SimVarDelete.UseColumnTextForButtonValue = true;
     this.SimVarDelete.Width = 50;
     //
     // txtErrors
     //
     this.txtErrors.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
     this.txtErrors.ForeColor = System.Drawing.Color.Red;
     this.txtErrors.Location = new System.Drawing.Point(12, 320);
     this.txtErrors.Multiline = true;
     this.txtErrors.Name = "txtErrors";
     this.txtErrors.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtErrors.Size = new System.Drawing.Size(403, 178);
     this.txtErrors.TabIndex = 9;
     this.txtErrors.WordWrap = false;
     //
     // SimConnectHandler_DemoForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1032, 510);
     this.Controls.Add(this.txtErrors);
     this.Controls.Add(this.dgVariables);
     this.Controls.Add(this.gpRequest);
     this.Controls.Add(this.gpConnect);
     this.Controls.Add(this.cbConnected);
     this.Name = "SimConnectHandler_DemoForm";
     this.Text = "SimConnect Test";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormClose_Click);
     ((System.ComponentModel.ISupportInitialize)(this.txtSimConnectPort)).EndInit();
     this.gpConnect.ResumeLayout(false);
     this.gpConnect.PerformLayout();
     this.gpRequest.ResumeLayout(false);
     this.gpRequest.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMilliseconds)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgVariables)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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();
     this.dgvCompany = new System.Windows.Forms.DataGridView();
     this.cmsDgvCompany = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gBoxCompanyACtion = new System.Windows.Forms.GroupBox();
     this.btCancel = new System.Windows.Forms.Button();
     this.btSubmit = new System.Windows.Forms.Button();
     this.txtCompanyName = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.errProviders = new System.Windows.Forms.ErrorProvider(this.components);
     this.ActionEdit = new System.Windows.Forms.DataGridViewButtonColumn();
     this.ActionDelete = new System.Windows.Forms.DataGridViewButtonColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.CompanyID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CompName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NoOfDepartments = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NoOfEmployees = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCompany)).BeginInit();
     this.cmsDgvCompany.SuspendLayout();
     this.gBoxCompanyACtion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errProviders)).BeginInit();
     this.SuspendLayout();
     //
     // dgvCompany
     //
     this.dgvCompany.AllowUserToAddRows = false;
     this.dgvCompany.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvCompany.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvCompany.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.CompanyID,
     this.CompName,
     this.NoOfDepartments,
     this.NoOfEmployees});
     this.dgvCompany.Location = new System.Drawing.Point(36, 71);
     this.dgvCompany.MultiSelect = false;
     this.dgvCompany.Name = "dgvCompany";
     this.dgvCompany.ReadOnly = true;
     this.dgvCompany.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvCompany.Size = new System.Drawing.Size(772, 418);
     this.dgvCompany.TabIndex = 0;
     this.dgvCompany.CellMouseEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvCompany_CellMouseEnter);
     //
     // cmsDgvCompany
     //
     this.cmsDgvCompany.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.editToolStripMenuItem,
     this.deleteToolStripMenuItem});
     this.cmsDgvCompany.Name = "cmsDgvCompany";
     this.cmsDgvCompany.Size = new System.Drawing.Size(106, 48);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
     this.editToolStripMenuItem.Text = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // gBoxCompanyACtion
     //
     this.gBoxCompanyACtion.Controls.Add(this.btCancel);
     this.gBoxCompanyACtion.Controls.Add(this.btSubmit);
     this.gBoxCompanyACtion.Controls.Add(this.txtCompanyName);
     this.gBoxCompanyACtion.Controls.Add(this.label1);
     this.gBoxCompanyACtion.Location = new System.Drawing.Point(36, 518);
     this.gBoxCompanyACtion.Name = "gBoxCompanyACtion";
     this.gBoxCompanyACtion.Size = new System.Drawing.Size(772, 115);
     this.gBoxCompanyACtion.TabIndex = 1;
     this.gBoxCompanyACtion.TabStop = false;
     this.gBoxCompanyACtion.Text = "Add a new Company";
     //
     // btCancel
     //
     this.btCancel.Location = new System.Drawing.Point(175, 73);
     this.btCancel.Name = "btCancel";
     this.btCancel.Size = new System.Drawing.Size(75, 23);
     this.btCancel.TabIndex = 4;
     this.btCancel.Text = "Cancel";
     this.btCancel.UseVisualStyleBackColor = true;
     this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
     //
     // btSubmit
     //
     this.btSubmit.Location = new System.Drawing.Point(94, 73);
     this.btSubmit.Name = "btSubmit";
     this.btSubmit.Size = new System.Drawing.Size(75, 23);
     this.btSubmit.TabIndex = 2;
     this.btSubmit.Text = "Add";
     this.btSubmit.UseVisualStyleBackColor = true;
     this.btSubmit.Click += new System.EventHandler(this.btSubmit_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.Location = new System.Drawing.Point(107, 32);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Size = new System.Drawing.Size(208, 20);
     this.txtCompanyName.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(19, 35);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(82, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Company Name";
     //
     // errProviders
     //
     this.errProviders.ContainerControl = this;
     //
     // ActionEdit
     //
     this.ActionEdit.Name = "ActionEdit";
     //
     // ActionDelete
     //
     this.ActionDelete.Name = "ActionDelete";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(364, 29);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(116, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Company Management";
     //
     // CompanyID
     //
     this.CompanyID.ContextMenuStrip = this.cmsDgvCompany;
     this.CompanyID.DataPropertyName = "CompanyID";
     this.CompanyID.HeaderText = "Company ID";
     this.CompanyID.Name = "CompanyID";
     this.CompanyID.ReadOnly = true;
     this.CompanyID.Visible = false;
     //
     // CompName
     //
     this.CompName.ContextMenuStrip = this.cmsDgvCompany;
     this.CompName.DataPropertyName = "CompanyName";
     this.CompName.HeaderText = "Company Name";
     this.CompName.Name = "CompanyName";
     this.CompName.ReadOnly = true;
     //
     // NoOfDepartments
     //
     this.NoOfDepartments.ContextMenuStrip = this.cmsDgvCompany;
     this.NoOfDepartments.DataPropertyName = "NoOfDepartments";
     this.NoOfDepartments.HeaderText = "Number of Departments";
     this.NoOfDepartments.Name = "NoOfDepartments";
     this.NoOfDepartments.ReadOnly = true;
     //
     // NoOfEmployees
     //
     this.NoOfEmployees.ContextMenuStrip = this.cmsDgvCompany;
     this.NoOfEmployees.DataPropertyName = "NoOfEmployees";
     this.NoOfEmployees.HeaderText = "Number of Employees";
     this.NoOfEmployees.Name = "NoOfEmployees";
     this.NoOfEmployees.ReadOnly = true;
     //
     // ucCompanyForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.label2);
     this.Controls.Add(this.dgvCompany);
     this.Controls.Add(this.gBoxCompanyACtion);
     this.Name = "ucCompanyForm";
     this.Size = new System.Drawing.Size(845, 662);
     ((System.ComponentModel.ISupportInitialize)(this.dgvCompany)).EndInit();
     this.cmsDgvCompany.ResumeLayout(false);
     this.gBoxCompanyACtion.ResumeLayout(false);
     this.gBoxCompanyACtion.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errProviders)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.label1 = new System.Windows.Forms.Label();
     this.dataGridViewRujukanRS = new System.Windows.Forms.DataGridView();
     this.Aksi           = new System.Windows.Forms.DataGridViewButtonColumn();
     this.buttonKembali2 = new System.Windows.Forms.Button();
     this.labelWarning   = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewRujukanRS)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 13F, System.Drawing.FontStyle.Italic);
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label1.Location  = new System.Drawing.Point(13, 13);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(837, 36);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Silahkan pilih rujukan dari rumah sakit yang masih berlaku sesuai poli yang anda " +
                             "tuju !";
     //
     // dataGridViewRujukanRS
     //
     this.dataGridViewRujukanRS.AllowUserToAddRows       = false;
     this.dataGridViewRujukanRS.AllowUserToDeleteRows    = false;
     this.dataGridViewRujukanRS.AllowUserToResizeColumns = false;
     this.dataGridViewRujukanRS.AllowUserToResizeRows    = false;
     this.dataGridViewRujukanRS.BackgroundColor          = System.Drawing.SystemColors.ControlLightLight;
     this.dataGridViewRujukanRS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridViewRujukanRS.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewRujukanRS.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Aksi
     });
     this.dataGridViewRujukanRS.Location           = new System.Drawing.Point(12, 55);
     this.dataGridViewRujukanRS.Name               = "dataGridViewRujukanRS";
     this.dataGridViewRujukanRS.RowHeadersWidth    = 4;
     this.dataGridViewRujukanRS.RowTemplate.Height = 35;
     this.dataGridViewRujukanRS.Size               = new System.Drawing.Size(1035, 273);
     this.dataGridViewRujukanRS.TabIndex           = 1;
     this.dataGridViewRujukanRS.MouseClick        += new System.Windows.Forms.MouseEventHandler(this.DataGridViewRujukanRSClick);
     //
     // Aksi
     //
     this.Aksi.AutoSizeMode                    = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     dataGridViewCellStyle1.Alignment          = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor          = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.Font               = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
     dataGridViewCellStyle1.ForeColor          = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.CadetBlue;
     this.Aksi.DefaultCellStyle                = dataGridViewCellStyle1;
     this.Aksi.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.Aksi.HeaderText = "Aksi";
     this.Aksi.Name       = "Aksi";
     this.Aksi.Resizable  = System.Windows.Forms.DataGridViewTriState.False;
     this.Aksi.Text       = "Pilih";
     this.Aksi.UseColumnTextForButtonValue = true;
     this.Aksi.Width = 70;
     //
     // buttonKembali2
     //
     this.buttonKembali2.Anchor    = System.Windows.Forms.AnchorStyles.None;
     this.buttonKembali2.BackColor = System.Drawing.SystemColors.Highlight;
     this.buttonKembali2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonKembali2.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
     this.buttonKembali2.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.buttonKembali2.Location  = new System.Drawing.Point(908, 348);
     this.buttonKembali2.Name      = "buttonKembali2";
     this.buttonKembali2.Size      = new System.Drawing.Size(139, 50);
     this.buttonKembali2.TabIndex  = 2;
     this.buttonKembali2.Text      = "Kembali";
     this.buttonKembali2.UseVisualStyleBackColor = false;
     this.buttonKembali2.Click += new System.EventHandler(this.ButtonKembali2Click);
     //
     // labelWarning
     //
     this.labelWarning.Font      = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Italic);
     this.labelWarning.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.labelWarning.Location  = new System.Drawing.Point(13, 348);
     this.labelWarning.Name      = "labelWarning";
     this.labelWarning.Size      = new System.Drawing.Size(342, 29);
     this.labelWarning.TabIndex  = 3;
     this.labelWarning.Text      = "*) Maaf data Rujukan tidak ditemukan !";
     this.labelWarning.Visible   = false;
     //
     // RujukanRSForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.GradientInactiveCaption;
     this.ClientSize          = new System.Drawing.Size(1059, 410);
     this.ControlBox          = false;
     this.Controls.Add(this.labelWarning);
     this.Controls.Add(this.buttonKembali2);
     this.Controls.Add(this.dataGridViewRujukanRS);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "RujukanRSForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "RUJUKAN RUMAH SAKIT";
     this.Load           += new System.EventHandler(this.RujukanFormLod);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewRujukanRS)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.Label3 = new System.Windows.Forms.Label();
     this.Panel3 = new System.Windows.Forms.Panel();
     this.bSave = new System.Windows.Forms.Button();
     this.bClear = new System.Windows.Forms.Button();
     this.bEdit = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.xDelete = new System.Windows.Forms.Button();
     this.Panel1 = new System.Windows.Forms.Panel();
     this.button1 = new System.Windows.Forms.Button();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.txtCity = new System.Windows.Forms.TextBox();
     this.txtPhoneNo = new System.Windows.Forms.TextBox();
     this.txtAddress = new System.Windows.Forms.TextBox();
     this.dpInvoice = new System.Windows.Forms.DateTimePicker();
     this.label1 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.Label2 = new System.Windows.Forms.Label();
     this.cmbAcType = new System.Windows.Forms.ComboBox();
     this.txtCredit = new System.Windows.Forms.TextBox();
     this.txtDebit = new System.Windows.Forms.TextBox();
     this.txtAcTitle = new System.Windows.Forms.TextBox();
     this.txtAcSerial = new System.Windows.Forms.TextBox();
     this.cc = new System.Windows.Forms.TabControl();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.GetData = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.txtSerch = new System.Windows.Forms.TextBox();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.panel2 = new System.Windows.Forms.Panel();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Panel3.SuspendLayout();
     this.Panel1.SuspendLayout();
     this.TabPage1.SuspendLayout();
     this.cc.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.ForeColor = System.Drawing.Color.White;
     this.Label3.Location = new System.Drawing.Point(368, 3);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(199, 32);
     this.Label3.TabIndex = 3;
     this.Label3.Text = "Chart Of Account";
     this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Panel3
     //
     this.Panel3.BackColor = System.Drawing.Color.White;
     this.Panel3.Controls.Add(this.bSave);
     this.Panel3.Controls.Add(this.bClear);
     this.Panel3.Controls.Add(this.bEdit);
     this.Panel3.Controls.Add(this.btnDelete);
     this.Panel3.Controls.Add(this.xDelete);
     this.Panel3.Location = new System.Drawing.Point(11, 466);
     this.Panel3.Name = "Panel3";
     this.Panel3.Size = new System.Drawing.Size(864, 42);
     this.Panel3.TabIndex = 14;
     //
     // bSave
     //
     this.bSave.BackColor = System.Drawing.Color.LightSkyBlue;
     this.bSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.bSave.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bSave.ForeColor = System.Drawing.Color.White;
     this.bSave.Image = global::PHMS.Properties.Resources.Save_26;
     this.bSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bSave.Location = new System.Drawing.Point(293, 3);
     this.bSave.Name = "bSave";
     this.bSave.Size = new System.Drawing.Size(104, 36);
     this.bSave.TabIndex = 5;
     this.bSave.Text = "Save";
     this.bSave.UseVisualStyleBackColor = false;
     this.bSave.Click += new System.EventHandler(this.bSave_Click);
     //
     // bClear
     //
     this.bClear.BackColor = System.Drawing.Color.LightSkyBlue;
     this.bClear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.bClear.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bClear.ForeColor = System.Drawing.Color.White;
     this.bClear.Location = new System.Drawing.Point(183, 3);
     this.bClear.Name = "bClear";
     this.bClear.Size = new System.Drawing.Size(104, 36);
     this.bClear.TabIndex = 6;
     this.bClear.Text = "New";
     this.bClear.UseVisualStyleBackColor = false;
     this.bClear.Click += new System.EventHandler(this.bClear_Click);
     //
     // bEdit
     //
     this.bEdit.BackColor = System.Drawing.Color.LightSkyBlue;
     this.bEdit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.bEdit.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bEdit.ForeColor = System.Drawing.Color.White;
     this.bEdit.Image = global::PHMS.Properties.Resources.Edit_26;
     this.bEdit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bEdit.Location = new System.Drawing.Point(403, 3);
     this.bEdit.Name = "bEdit";
     this.bEdit.Size = new System.Drawing.Size(104, 36);
     this.bEdit.TabIndex = 7;
     this.bEdit.Text = "Update";
     this.bEdit.UseVisualStyleBackColor = false;
     this.bEdit.Click += new System.EventHandler(this.bEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.BackColor = System.Drawing.Color.LightSkyBlue;
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnDelete.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDelete.ForeColor = System.Drawing.Color.White;
     this.btnDelete.Image = global::PHMS.Properties.Resources.del;
     this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(623, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(104, 36);
     this.btnDelete.TabIndex = 8;
     this.btnDelete.Text = "Delete";
     this.btnDelete.UseVisualStyleBackColor = false;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // xDelete
     //
     this.xDelete.BackColor = System.Drawing.Color.LightSkyBlue;
     this.xDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.xDelete.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xDelete.ForeColor = System.Drawing.Color.White;
     this.xDelete.Location = new System.Drawing.Point(513, 3);
     this.xDelete.Name = "xDelete";
     this.xDelete.Size = new System.Drawing.Size(104, 36);
     this.xDelete.TabIndex = 8;
     this.xDelete.Text = "Disable";
     this.xDelete.UseVisualStyleBackColor = false;
     this.xDelete.Click += new System.EventHandler(this.xDelete_Click);
     //
     // Panel1
     //
     this.Panel1.BackColor = System.Drawing.Color.LightSkyBlue;
     this.Panel1.Controls.Add(this.button1);
     this.Panel1.Controls.Add(this.Label3);
     this.Panel1.Location = new System.Drawing.Point(11, 8);
     this.Panel1.Name = "Panel1";
     this.Panel1.Size = new System.Drawing.Size(935, 41);
     this.Panel1.TabIndex = 13;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Transparent;
     this.button1.BackgroundImage = global::PHMS.Properties.Resources.close_2;
     this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.button1.FlatAppearance.BorderSize = 0;
     this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor = System.Drawing.Color.Black;
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.button1.Location = new System.Drawing.Point(896, 0);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(39, 41);
     this.button1.TabIndex = 174;
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // TabPage1
     //
     this.TabPage1.BackColor = System.Drawing.Color.White;
     this.TabPage1.Controls.Add(this.label7);
     this.TabPage1.Controls.Add(this.label6);
     this.TabPage1.Controls.Add(this.label5);
     this.TabPage1.Controls.Add(this.label12);
     this.TabPage1.Controls.Add(this.label13);
     this.TabPage1.Controls.Add(this.label14);
     this.TabPage1.Controls.Add(this.txtEmail);
     this.TabPage1.Controls.Add(this.txtCity);
     this.TabPage1.Controls.Add(this.txtPhoneNo);
     this.TabPage1.Controls.Add(this.txtAddress);
     this.TabPage1.Controls.Add(this.dpInvoice);
     this.TabPage1.Controls.Add(this.label1);
     this.TabPage1.Controls.Add(this.label11);
     this.TabPage1.Controls.Add(this.label8);
     this.TabPage1.Controls.Add(this.label10);
     this.TabPage1.Controls.Add(this.label18);
     this.TabPage1.Controls.Add(this.Label2);
     this.TabPage1.Controls.Add(this.cmbAcType);
     this.TabPage1.Controls.Add(this.txtCredit);
     this.TabPage1.Controls.Add(this.txtDebit);
     this.TabPage1.Controls.Add(this.txtAcTitle);
     this.TabPage1.Controls.Add(this.txtAcSerial);
     this.TabPage1.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.TabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TabPage1.Location = new System.Drawing.Point(4, 22);
     this.TabPage1.Name = "TabPage1";
     this.TabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage1.Size = new System.Drawing.Size(935, 379);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = "Account Details";
     this.TabPage1.UseVisualStyleBackColor = true;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(586, 357);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(56, 15);
     this.label7.TabIndex = 171;
     this.label7.Text = "(Recived)";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(286, 357);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(38, 15);
     this.label6.TabIndex = 171;
     this.label6.Text = "(Paid)";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label5.Location = new System.Drawing.Point(76, 232);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(103, 20);
     this.label5.TabIndex = 169;
     this.label5.Text = "Email Address";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label12.Location = new System.Drawing.Point(76, 202);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 20);
     this.label12.TabIndex = 169;
     this.label12.Text = "City";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label13.Location = new System.Drawing.Point(76, 171);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(74, 20);
     this.label13.TabIndex = 170;
     this.label13.Text = "Phone No";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label14.Location = new System.Drawing.Point(76, 263);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(62, 20);
     this.label14.TabIndex = 168;
     this.label14.Text = "Address";
     //
     // txtEmail
     //
     this.txtEmail.BackColor = System.Drawing.Color.White;
     this.txtEmail.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmail.Location = new System.Drawing.Point(216, 229);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(507, 25);
     this.txtEmail.TabIndex = 165;
     //
     // txtCity
     //
     this.txtCity.BackColor = System.Drawing.Color.White;
     this.txtCity.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCity.Location = new System.Drawing.Point(216, 199);
     this.txtCity.Name = "txtCity";
     this.txtCity.Size = new System.Drawing.Size(507, 25);
     this.txtCity.TabIndex = 165;
     //
     // txtPhoneNo
     //
     this.txtPhoneNo.BackColor = System.Drawing.Color.White;
     this.txtPhoneNo.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhoneNo.Location = new System.Drawing.Point(216, 168);
     this.txtPhoneNo.Name = "txtPhoneNo";
     this.txtPhoneNo.Size = new System.Drawing.Size(507, 25);
     this.txtPhoneNo.TabIndex = 166;
     //
     // txtAddress
     //
     this.txtAddress.BackColor = System.Drawing.Color.White;
     this.txtAddress.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAddress.Location = new System.Drawing.Point(216, 260);
     this.txtAddress.Multiline = true;
     this.txtAddress.Name = "txtAddress";
     this.txtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtAddress.Size = new System.Drawing.Size(507, 63);
     this.txtAddress.TabIndex = 167;
     //
     // dpInvoice
     //
     this.dpInvoice.CalendarFont = new System.Drawing.Font("Segoe UI Semibold", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dpInvoice.CustomFormat = "dd/MM/yyyy";
     this.dpInvoice.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dpInvoice.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dpInvoice.Location = new System.Drawing.Point(219, 11);
     this.dpInvoice.Name = "dpInvoice";
     this.dpInvoice.Size = new System.Drawing.Size(504, 25);
     this.dpInvoice.TabIndex = 164;
     this.dpInvoice.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label1.Location = new System.Drawing.Point(75, 94);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 20);
     this.label1.TabIndex = 93;
     this.label1.Text = "A/C Type :";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label11.Location = new System.Drawing.Point(446, 330);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 20);
     this.label11.TabIndex = 93;
     this.label11.Text = "Credit :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label8.Location = new System.Drawing.Point(75, 329);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(53, 20);
     this.label8.TabIndex = 93;
     this.label8.Text = "Debit :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label10.Location = new System.Drawing.Point(75, 139);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(99, 20);
     this.label10.TabIndex = 93;
     this.label10.Text = "Account Title:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.label18.Location = new System.Drawing.Point(75, 11);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(105, 20);
     this.label18.TabIndex = 93;
     this.label18.Text = "Opening Date:";
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.Label2.Location = new System.Drawing.Point(75, 51);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(107, 20);
     this.Label2.TabIndex = 93;
     this.Label2.Text = "Account Serial:";
     //
     // cmbAcType
     //
     this.cmbAcType.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cmbAcType.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cmbAcType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.cmbAcType.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.cmbAcType.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbAcType.FormattingEnabled = true;
     this.cmbAcType.Location = new System.Drawing.Point(216, 91);
     this.cmbAcType.Name = "cmbAcType";
     this.cmbAcType.Size = new System.Drawing.Size(507, 29);
     this.cmbAcType.TabIndex = 0;
     this.cmbAcType.SelectedIndexChanged += new System.EventHandler(this.cmbAcType_SelectedIndexChanged);
     //
     // txtCredit
     //
     this.txtCredit.BackColor = System.Drawing.Color.White;
     this.txtCredit.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCredit.Location = new System.Drawing.Point(518, 329);
     this.txtCredit.Name = "txtCredit";
     this.txtCredit.Size = new System.Drawing.Size(205, 25);
     this.txtCredit.TabIndex = 4;
     this.txtCredit.Text = "0";
     this.txtCredit.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCredit_KeyDown);
     //
     // txtDebit
     //
     this.txtDebit.BackColor = System.Drawing.Color.White;
     this.txtDebit.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDebit.Location = new System.Drawing.Point(216, 329);
     this.txtDebit.Name = "txtDebit";
     this.txtDebit.Size = new System.Drawing.Size(213, 25);
     this.txtDebit.TabIndex = 3;
     this.txtDebit.Text = "0";
     this.txtDebit.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDebit_KeyDown);
     //
     // txtAcTitle
     //
     this.txtAcTitle.BackColor = System.Drawing.Color.White;
     this.txtAcTitle.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAcTitle.Location = new System.Drawing.Point(216, 135);
     this.txtAcTitle.Name = "txtAcTitle";
     this.txtAcTitle.Size = new System.Drawing.Size(507, 25);
     this.txtAcTitle.TabIndex = 1;
     this.txtAcTitle.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAcTitle_KeyDown);
     //
     // txtAcSerial
     //
     this.txtAcSerial.BackColor = System.Drawing.Color.White;
     this.txtAcSerial.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAcSerial.Location = new System.Drawing.Point(216, 51);
     this.txtAcSerial.Name = "txtAcSerial";
     this.txtAcSerial.Size = new System.Drawing.Size(507, 25);
     this.txtAcSerial.TabIndex = 38;
     //
     // cc
     //
     this.cc.AccessibleDescription = "";
     this.cc.AccessibleName = "";
     this.cc.Controls.Add(this.TabPage1);
     this.cc.Controls.Add(this.tabPage2);
     this.cc.Location = new System.Drawing.Point(11, 55);
     this.cc.Name = "cc";
     this.cc.SelectedIndex = 0;
     this.cc.Size = new System.Drawing.Size(943, 405);
     this.cc.TabIndex = 12;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.GetData);
     this.tabPage2.Controls.Add(this.label4);
     this.tabPage2.Controls.Add(this.txtSerch);
     this.tabPage2.Controls.Add(this.dataGridView1);
     this.tabPage2.ForeColor = System.Drawing.Color.Black;
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Size = new System.Drawing.Size(935, 379);
     this.tabPage2.TabIndex = 4;
     this.tabPage2.Text = "View Account Details";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // GetData
     //
     this.GetData.BackColor = System.Drawing.Color.LightSkyBlue;
     this.GetData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.GetData.ForeColor = System.Drawing.Color.White;
     this.GetData.Location = new System.Drawing.Point(191, 32);
     this.GetData.Name = "GetData";
     this.GetData.Size = new System.Drawing.Size(80, 25);
     this.GetData.TabIndex = 105;
     this.GetData.Text = "Get All Data";
     this.GetData.UseVisualStyleBackColor = false;
     this.GetData.Click += new System.EventHandler(this.GetData_Click_1);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(4, 15);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(111, 15);
     this.label4.TabIndex = 104;
     this.label4.Text = "Enter Account Title:";
     //
     // txtSerch
     //
     this.txtSerch.BackColor = System.Drawing.Color.White;
     this.txtSerch.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSerch.Location = new System.Drawing.Point(4, 32);
     this.txtSerch.Name = "txtSerch";
     this.txtSerch.Size = new System.Drawing.Size(181, 25);
     this.txtSerch.TabIndex = 103;
     this.txtSerch.TextChanged += new System.EventHandler(this.txtSerch_TextChanged);
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3,
     this.Column6,
     this.Column7,
     this.Column8,
     this.Column5,
     this.Column10,
     this.Column11,
     this.Column4,
     this.Column9});
     this.dataGridView1.Location = new System.Drawing.Point(4, 63);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(927, 268);
     this.dataGridView1.TabIndex = 102;
     this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick_1);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(958, 517);
     this.panel2.TabIndex = 15;
     //
     // Column1
     //
     this.Column1.HeaderText = "Account Code";
     this.Column1.Name = "Column1";
     this.Column1.Width = 70;
     //
     // Column2
     //
     this.Column2.HeaderText = "Account Type";
     this.Column2.Name = "Column2";
     this.Column2.Width = 70;
     //
     // Column3
     //
     this.Column3.HeaderText = "Account Title";
     this.Column3.Name = "Column3";
     this.Column3.Width = 250;
     //
     // Column6
     //
     this.Column6.HeaderText = "Phone No";
     this.Column6.Name = "Column6";
     //
     // Column7
     //
     this.Column7.HeaderText = "City";
     this.Column7.Name = "Column7";
     //
     // Column8
     //
     this.Column8.HeaderText = "Address";
     this.Column8.Name = "Column8";
     this.Column8.Visible = false;
     this.Column8.Width = 180;
     //
     // Column5
     //
     this.Column5.HeaderText = "Status";
     this.Column5.Name = "Column5";
     this.Column5.Width = 50;
     //
     // Column10
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.Column10.DefaultCellStyle = dataGridViewCellStyle1;
     this.Column10.HeaderText = "Debit";
     this.Column10.Name = "Column10";
     this.Column10.Width = 90;
     //
     // Column11
     //
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.Column11.DefaultCellStyle = dataGridViewCellStyle2;
     this.Column11.HeaderText = "Credit";
     this.Column11.Name = "Column11";
     this.Column11.Width = 90;
     //
     // Column4
     //
     this.Column4.HeaderText = "Edit";
     this.Column4.Name = "Column4";
     this.Column4.Width = 60;
     //
     // Column9
     //
     this.Column9.HeaderText = "Name";
     this.Column9.Name = "Column9";
     this.Column9.Visible = false;
     //
     // frmAccountNew
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(958, 517);
     this.Controls.Add(this.Panel3);
     this.Controls.Add(this.Panel1);
     this.Controls.Add(this.cc);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmAccountNew";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmAccountNew";
     this.Load += new System.EventHandler(this.frmAccountNew_Load);
     this.Panel3.ResumeLayout(false);
     this.Panel1.ResumeLayout(false);
     this.Panel1.PerformLayout();
     this.TabPage1.ResumeLayout(false);
     this.TabPage1.PerformLayout();
     this.cc.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.Label descripcionLbl;
     System.Windows.Forms.Label lugarLbl;
     System.Windows.Forms.Label TipoDisenoLbl;
     System.Windows.Forms.Label objetivoInvTxt;
     System.Windows.Forms.Label intensidadMuestreLbl;
     System.Windows.Forms.Label expresionLbl;
     System.Windows.Forms.Label formulaLbl;
     System.Windows.Forms.Label label4;
     System.Windows.Forms.Label areaMuestreadaLbl;
     System.Windows.Forms.Label valorMinimoDAPLbl;
     System.Windows.Forms.Label numeroEtapasLbl;
     System.Windows.Forms.Label facFormaLbl;
     System.Windows.Forms.Label areaFustalesLbl;
     System.Windows.Forms.Label tamanioParLbl;
     System.Windows.Forms.Label label5;
     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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Actualizar_Proyectos_Form));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
     this.actualizarProyectoTab = new System.Windows.Forms.TabControl();
     this.proyectoTabP = new System.Windows.Forms.TabPage();
     this.DatosProyectoGbx = new System.Windows.Forms.GroupBox();
     this.otrosDatosGbx = new System.Windows.Forms.GroupBox();
     this.expresionTxt = new System.Windows.Forms.TextBox();
     this.formulaBS = new System.Windows.Forms.BindingSource(this.components);
     this.formularComboBox = new System.Windows.Forms.ComboBox();
     this.intMuestreoTxt = new System.Windows.Forms.TextBox();
     this.factorFormaTxt = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.numeroParcelasTxt = new System.Windows.Forms.TextBox();
     this.confianzaTxt = new System.Windows.Forms.TextBox();
     this.tamParcelaTxt = new System.Windows.Forms.TextBox();
     this.numeroParcelasMuestraTxt = new System.Windows.Forms.TextBox();
     this.areaMuestrearTxt = new System.Windows.Forms.TextBox();
     this.numeroEtapasTxt = new System.Windows.Forms.TextBox();
     this.areaFustalesTxt = new System.Windows.Forms.TextBox();
     this.limiteInfTxt = new System.Windows.Forms.TextBox();
     this.AreaTotalTxt = new System.Windows.Forms.TextBox();
     this.TipoProyectoCbx = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.DescripcionTxt = new System.Windows.Forms.TextBox();
     this.proyectoBS = new System.Windows.Forms.BindingSource(this.components);
     this.tipoDisenoCbx = new System.Windows.Forms.ComboBox();
     this.tipoDisenoBS = new System.Windows.Forms.BindingSource(this.components);
     this.tipoObjetivoCbx = new System.Windows.Forms.ComboBox();
     this.objetivoInventarioBS = new System.Windows.Forms.BindingSource(this.components);
     this.lugarTxt = new System.Windows.Forms.TextBox();
     this.especiesTabP = new System.Windows.Forms.TabPage();
     this.registrarSpecieBtn = new System.Windows.Forms.Button();
     this.busquedaTxt = new System.Windows.Forms.TextBox();
     this.criterioCbx = new System.Windows.Forms.ComboBox();
     this.lblBuscar = new System.Windows.Forms.Label();
     this.especiesDGW = new System.Windows.Forms.DataGridView();
     this.Especie = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.NOMCOMUN = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NOMCIENTIFICO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FAMILIA = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.especieBS = new System.Windows.Forms.BindingSource(this.components);
     this.seleccEspecieBtn = new System.Windows.Forms.Button();
     this.RemoverEspciesBtn = new System.Windows.Forms.Button();
     this.estratosTabP = new System.Windows.Forms.TabPage();
     this.crearEstratoBtn = new System.Windows.Forms.Button();
     this.errorLbl = new System.Windows.Forms.Label();
     this.actualizarPesosEstratosBtn = new System.Windows.Forms.Button();
     this.SeleccEstratosBtn = new System.Windows.Forms.Button();
     this.removerEstratosBtn = new System.Windows.Forms.Button();
     this.estratoDGW = new System.Windows.Forms.DataGridView();
     this.Estratos = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.DESCRIPESTRATO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Tamanio = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Peso = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.estratoBS = new System.Windows.Forms.BindingSource(this.components);
     this.formulariosTap = new System.Windows.Forms.TabPage();
     this.crearFormBtn = new System.Windows.Forms.Button();
     this.formulariosDGW = new System.Windows.Forms.DataGridView();
     this.FECHACREACION = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NROFORMULARIO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Usuario = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NombreResponsable = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CODEST = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.PARCELA = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LINEA = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ListarDatos = new System.Windows.Forms.DataGridViewButtonColumn();
     this.formulariosBS = new System.Windows.Forms.BindingSource(this.components);
     this.proyectosContTabP = new System.Windows.Forms.TabPage();
     this.arbolEtapasBtn = new System.Windows.Forms.Button();
     this.proyectoDGW = new System.Windows.Forms.DataGridView();
     this.Proyectos = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Codigo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LUGAR = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FECHA = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NOMBRETIPOINV = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.NOMTIPODISEMUEST = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.PesoProyecto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ETAPA = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.proyectosBS = new System.Windows.Forms.BindingSource(this.components);
     this.seleccionarProyectosBtn = new System.Windows.Forms.Button();
     this.removerProyectosBtn = new System.Windows.Forms.Button();
     this.costosTabP = new System.Windows.Forms.TabPage();
     this.costoDGW = new System.Windows.Forms.DataGridView();
     this.Costos = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.NROCOSTO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NOMBRE = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DESCRIPCION = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TIPO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lISTADODECOSTOSDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoBS = new System.Windows.Forms.BindingSource(this.components);
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.usuarioBS = new System.Windows.Forms.BindingSource(this.components);
     this.cancelarBtn = new System.Windows.Forms.Button();
     this.ActualizarBtn = new System.Windows.Forms.Button();
     this.controladorErrores = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorCostoLbl = new System.Windows.Forms.Label();
     descripcionLbl = new System.Windows.Forms.Label();
     lugarLbl = new System.Windows.Forms.Label();
     TipoDisenoLbl = new System.Windows.Forms.Label();
     objetivoInvTxt = new System.Windows.Forms.Label();
     intensidadMuestreLbl = new System.Windows.Forms.Label();
     expresionLbl = new System.Windows.Forms.Label();
     formulaLbl = new System.Windows.Forms.Label();
     label4 = new System.Windows.Forms.Label();
     areaMuestreadaLbl = new System.Windows.Forms.Label();
     valorMinimoDAPLbl = new System.Windows.Forms.Label();
     numeroEtapasLbl = new System.Windows.Forms.Label();
     facFormaLbl = new System.Windows.Forms.Label();
     areaFustalesLbl = new System.Windows.Forms.Label();
     tamanioParLbl = new System.Windows.Forms.Label();
     label5 = new System.Windows.Forms.Label();
     this.actualizarProyectoTab.SuspendLayout();
     this.proyectoTabP.SuspendLayout();
     this.DatosProyectoGbx.SuspendLayout();
     this.otrosDatosGbx.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.formulaBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.proyectoBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipoDisenoBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objetivoInventarioBS)).BeginInit();
     this.especiesTabP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.especiesDGW)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.especieBS)).BeginInit();
     this.estratosTabP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.estratoDGW)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.estratoBS)).BeginInit();
     this.formulariosTap.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.formulariosDGW)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.formulariosBS)).BeginInit();
     this.proyectosContTabP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.proyectoDGW)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.proyectosBS)).BeginInit();
     this.costosTabP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.costoDGW)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.costoBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.controladorErrores)).BeginInit();
     this.SuspendLayout();
     //
     // descripcionLbl
     //
     descripcionLbl.AutoSize = true;
     descripcionLbl.Location = new System.Drawing.Point(11, 54);
     descripcionLbl.Name = "descripcionLbl";
     descripcionLbl.Size = new System.Drawing.Size(66, 13);
     descripcionLbl.TabIndex = 25;
     descripcionLbl.Text = "Descripcion:";
     //
     // lugarLbl
     //
     lugarLbl.AutoSize = true;
     lugarLbl.Location = new System.Drawing.Point(10, 26);
     lugarLbl.Name = "lugarLbl";
     lugarLbl.Size = new System.Drawing.Size(37, 13);
     lugarLbl.TabIndex = 4;
     lugarLbl.Text = "Lugar:";
     //
     // TipoDisenoLbl
     //
     TipoDisenoLbl.AutoSize = true;
     TipoDisenoLbl.Location = new System.Drawing.Point(9, 149);
     TipoDisenoLbl.Name = "TipoDisenoLbl";
     TipoDisenoLbl.Size = new System.Drawing.Size(128, 13);
     TipoDisenoLbl.TabIndex = 6;
     TipoDisenoLbl.Text = "Tipo de Diseño Muestral: ";
     //
     // objetivoInvTxt
     //
     objetivoInvTxt.AutoSize = true;
     objetivoInvTxt.Location = new System.Drawing.Point(10, 121);
     objetivoInvTxt.Name = "objetivoInvTxt";
     objetivoInvTxt.Size = new System.Drawing.Size(115, 13);
     objetivoInvTxt.TabIndex = 8;
     objetivoInvTxt.Text = "Objetivo del inventario:";
     //
     // intensidadMuestreLbl
     //
     intensidadMuestreLbl.AutoSize = true;
     intensidadMuestreLbl.Location = new System.Drawing.Point(251, 94);
     intensidadMuestreLbl.Name = "intensidadMuestreLbl";
     intensidadMuestreLbl.Size = new System.Drawing.Size(148, 13);
     intensidadMuestreLbl.TabIndex = 42;
     intensidadMuestreLbl.Text = "Número parcelas a muestrear:";
     //
     // expresionLbl
     //
     expresionLbl.AutoSize = true;
     expresionLbl.Location = new System.Drawing.Point(10, 247);
     expresionLbl.Name = "expresionLbl";
     expresionLbl.Size = new System.Drawing.Size(119, 13);
     expresionLbl.TabIndex = 66;
     expresionLbl.Text = "Expresión de la formula:";
     //
     // formulaLbl
     //
     formulaLbl.AutoSize = true;
     formulaLbl.Location = new System.Drawing.Point(10, 222);
     formulaLbl.Name = "formulaLbl";
     formulaLbl.Size = new System.Drawing.Size(105, 13);
     formulaLbl.TabIndex = 65;
     formulaLbl.Text = "Formula de volumen:";
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Location = new System.Drawing.Point(9, 91);
     label4.Name = "label4";
     label4.Size = new System.Drawing.Size(131, 13);
     label4.TabIndex = 64;
     label4.Text = "Numero total de parcelas :";
     //
     // areaMuestreadaLbl
     //
     areaMuestreadaLbl.AutoSize = true;
     areaMuestreadaLbl.Location = new System.Drawing.Point(9, 68);
     areaMuestreadaLbl.Name = "areaMuestreadaLbl";
     areaMuestreadaLbl.Size = new System.Drawing.Size(90, 13);
     areaMuestreadaLbl.TabIndex = 61;
     areaMuestreadaLbl.Text = "Area Total (Htas):";
     //
     // valorMinimoDAPLbl
     //
     valorMinimoDAPLbl.AutoSize = true;
     valorMinimoDAPLbl.Location = new System.Drawing.Point(10, 143);
     valorMinimoDAPLbl.Name = "valorMinimoDAPLbl";
     valorMinimoDAPLbl.Size = new System.Drawing.Size(117, 13);
     valorMinimoDAPLbl.TabIndex = 60;
     valorMinimoDAPLbl.Text = "Valor minimo DAP(Mts):";
     //
     // numeroEtapasLbl
     //
     numeroEtapasLbl.AutoSize = true;
     numeroEtapasLbl.Location = new System.Drawing.Point(13, 275);
     numeroEtapasLbl.Name = "numeroEtapasLbl";
     numeroEtapasLbl.Size = new System.Drawing.Size(38, 13);
     numeroEtapasLbl.TabIndex = 59;
     numeroEtapasLbl.Text = "Etapa:";
     //
     // facFormaLbl
     //
     facFormaLbl.AutoSize = true;
     facFormaLbl.Location = new System.Drawing.Point(10, 198);
     facFormaLbl.Name = "facFormaLbl";
     facFormaLbl.Size = new System.Drawing.Size(84, 13);
     facFormaLbl.TabIndex = 58;
     facFormaLbl.Text = "Factor de forma:";
     //
     // areaFustalesLbl
     //
     areaFustalesLbl.AutoSize = true;
     areaFustalesLbl.Location = new System.Drawing.Point(10, 166);
     areaFustalesLbl.Name = "areaFustalesLbl";
     areaFustalesLbl.Size = new System.Drawing.Size(103, 26);
     areaFustalesLbl.TabIndex = 57;
     areaFustalesLbl.Text = "Area Parcela de \r\nregeneración (Htas):";
     //
     // tamanioParLbl
     //
     tamanioParLbl.AutoSize = true;
     tamanioParLbl.Location = new System.Drawing.Point(9, 39);
     tamanioParLbl.Name = "tamanioParLbl";
     tamanioParLbl.Size = new System.Drawing.Size(119, 13);
     tamanioParLbl.TabIndex = 56;
     tamanioParLbl.Text = "Tamaño Parcela (Htas):";
     //
     // label5
     //
     label5.AutoSize = true;
     label5.Location = new System.Drawing.Point(251, 119);
     label5.Name = "label5";
     label5.Size = new System.Drawing.Size(164, 13);
     label5.TabIndex = 70;
     label5.Text = "Intensidad de muestreo (0-100)%:";
     //
     // actualizarProyectoTab
     //
     this.actualizarProyectoTab.Alignment = System.Windows.Forms.TabAlignment.Left;
     this.actualizarProyectoTab.Controls.Add(this.proyectoTabP);
     this.actualizarProyectoTab.Controls.Add(this.especiesTabP);
     this.actualizarProyectoTab.Controls.Add(this.estratosTabP);
     this.actualizarProyectoTab.Controls.Add(this.formulariosTap);
     this.actualizarProyectoTab.Controls.Add(this.proyectosContTabP);
     this.actualizarProyectoTab.Controls.Add(this.costosTabP);
     this.actualizarProyectoTab.Dock = System.Windows.Forms.DockStyle.Top;
     this.actualizarProyectoTab.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
     this.actualizarProyectoTab.ItemSize = new System.Drawing.Size(40, 120);
     this.actualizarProyectoTab.Location = new System.Drawing.Point(0, 0);
     this.actualizarProyectoTab.Multiline = true;
     this.actualizarProyectoTab.Name = "actualizarProyectoTab";
     this.actualizarProyectoTab.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.actualizarProyectoTab.SelectedIndex = 0;
     this.actualizarProyectoTab.Size = new System.Drawing.Size(659, 542);
     this.actualizarProyectoTab.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
     this.actualizarProyectoTab.TabIndex = 0;
     this.actualizarProyectoTab.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.crearProyectoTab_DrawItem);
     //
     // proyectoTabP
     //
     this.proyectoTabP.Controls.Add(this.DatosProyectoGbx);
     this.proyectoTabP.Location = new System.Drawing.Point(124, 4);
     this.proyectoTabP.Name = "proyectoTabP";
     this.proyectoTabP.Padding = new System.Windows.Forms.Padding(3);
     this.proyectoTabP.Size = new System.Drawing.Size(531, 534);
     this.proyectoTabP.TabIndex = 1;
     this.proyectoTabP.Text = "Datos del proyecto";
     this.proyectoTabP.UseVisualStyleBackColor = true;
     //
     // DatosProyectoGbx
     //
     this.DatosProyectoGbx.Controls.Add(this.otrosDatosGbx);
     this.DatosProyectoGbx.Controls.Add(this.TipoProyectoCbx);
     this.DatosProyectoGbx.Controls.Add(this.label1);
     this.DatosProyectoGbx.Controls.Add(this.DescripcionTxt);
     this.DatosProyectoGbx.Controls.Add(descripcionLbl);
     this.DatosProyectoGbx.Controls.Add(this.tipoDisenoCbx);
     this.DatosProyectoGbx.Controls.Add(this.tipoObjetivoCbx);
     this.DatosProyectoGbx.Controls.Add(lugarLbl);
     this.DatosProyectoGbx.Controls.Add(this.lugarTxt);
     this.DatosProyectoGbx.Controls.Add(TipoDisenoLbl);
     this.DatosProyectoGbx.Controls.Add(objetivoInvTxt);
     this.DatosProyectoGbx.Dock = System.Windows.Forms.DockStyle.Fill;
     this.DatosProyectoGbx.Location = new System.Drawing.Point(3, 3);
     this.DatosProyectoGbx.Name = "DatosProyectoGbx";
     this.DatosProyectoGbx.Size = new System.Drawing.Size(525, 528);
     this.DatosProyectoGbx.TabIndex = 4;
     this.DatosProyectoGbx.TabStop = false;
     this.DatosProyectoGbx.Text = "Definicion del proyecto";
     //
     // otrosDatosGbx
     //
     this.otrosDatosGbx.Controls.Add(this.expresionTxt);
     this.otrosDatosGbx.Controls.Add(this.formularComboBox);
     this.otrosDatosGbx.Controls.Add(this.intMuestreoTxt);
     this.otrosDatosGbx.Controls.Add(label5);
     this.otrosDatosGbx.Controls.Add(this.factorFormaTxt);
     this.otrosDatosGbx.Controls.Add(expresionLbl);
     this.otrosDatosGbx.Controls.Add(formulaLbl);
     this.otrosDatosGbx.Controls.Add(label4);
     this.otrosDatosGbx.Controls.Add(this.label3);
     this.otrosDatosGbx.Controls.Add(this.label2);
     this.otrosDatosGbx.Controls.Add(areaMuestreadaLbl);
     this.otrosDatosGbx.Controls.Add(valorMinimoDAPLbl);
     this.otrosDatosGbx.Controls.Add(numeroEtapasLbl);
     this.otrosDatosGbx.Controls.Add(facFormaLbl);
     this.otrosDatosGbx.Controls.Add(areaFustalesLbl);
     this.otrosDatosGbx.Controls.Add(tamanioParLbl);
     this.otrosDatosGbx.Controls.Add(this.numeroParcelasTxt);
     this.otrosDatosGbx.Controls.Add(this.confianzaTxt);
     this.otrosDatosGbx.Controls.Add(this.tamParcelaTxt);
     this.otrosDatosGbx.Controls.Add(intensidadMuestreLbl);
     this.otrosDatosGbx.Controls.Add(this.numeroParcelasMuestraTxt);
     this.otrosDatosGbx.Controls.Add(this.areaMuestrearTxt);
     this.otrosDatosGbx.Controls.Add(this.numeroEtapasTxt);
     this.otrosDatosGbx.Controls.Add(this.areaFustalesTxt);
     this.otrosDatosGbx.Controls.Add(this.limiteInfTxt);
     this.otrosDatosGbx.Controls.Add(this.AreaTotalTxt);
     this.otrosDatosGbx.Location = new System.Drawing.Point(11, 213);
     this.otrosDatosGbx.Name = "otrosDatosGbx";
     this.otrosDatosGbx.Size = new System.Drawing.Size(502, 301);
     this.otrosDatosGbx.TabIndex = 28;
     this.otrosDatosGbx.TabStop = false;
     //
     // expresionTxt
     //
     this.expresionTxt.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.formulaBS, "EXPRESION", true));
     this.expresionTxt.Location = new System.Drawing.Point(153, 244);
     this.expresionTxt.MaxLength = 18;
     this.expresionTxt.Name = "expresionTxt";
     this.expresionTxt.ReadOnly = true;
     this.expresionTxt.Size = new System.Drawing.Size(327, 20);
     this.expresionTxt.TabIndex = 73;
     //
     // formulaBS
     //
     this.formulaBS.DataSource = typeof(SIFCA_DAL.FORMULA);
     //
     // formularComboBox
     //
     this.formularComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.formulaBS, "NOMBRE", true));
     this.formularComboBox.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.formulaBS, "NROFORMULA", true));
     this.formularComboBox.DisplayMember = "NOMBRE";
     this.formularComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.formularComboBox.FormattingEnabled = true;
     this.formularComboBox.Location = new System.Drawing.Point(154, 217);
     this.formularComboBox.Name = "formularComboBox";
     this.formularComboBox.Size = new System.Drawing.Size(326, 21);
     this.formularComboBox.TabIndex = 72;
     this.formularComboBox.ValueMember = "NROFORMULA";
     this.formularComboBox.SelectedIndexChanged += new System.EventHandler(this.formularComboBox_SelectedIndexChanged);
     //
     // intMuestreoTxt
     //
     this.intMuestreoTxt.Location = new System.Drawing.Point(417, 116);
     this.intMuestreoTxt.MaxLength = 25;
     this.intMuestreoTxt.Name = "intMuestreoTxt";
     this.intMuestreoTxt.ReadOnly = true;
     this.intMuestreoTxt.Size = new System.Drawing.Size(63, 20);
     this.intMuestreoTxt.TabIndex = 71;
     this.intMuestreoTxt.Text = "0";
     //
     // factorFormaTxt
     //
     this.factorFormaTxt.Location = new System.Drawing.Point(154, 192);
     this.factorFormaTxt.Name = "factorFormaTxt";
     this.factorFormaTxt.ReadOnly = true;
     this.factorFormaTxt.Size = new System.Drawing.Size(326, 20);
     this.factorFormaTxt.TabIndex = 67;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(10, 119);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(122, 13);
     this.label3.TabIndex = 63;
     this.label3.Text = "Area a Muestrear (Htas):";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 17);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(68, 13);
     this.label2.TabIndex = 62;
     this.label2.Text = "% Confianza:";
     //
     // numeroParcelasTxt
     //
     this.numeroParcelasTxt.Location = new System.Drawing.Point(154, 91);
     this.numeroParcelasTxt.Name = "numeroParcelasTxt";
     this.numeroParcelasTxt.ReadOnly = true;
     this.numeroParcelasTxt.Size = new System.Drawing.Size(91, 20);
     this.numeroParcelasTxt.TabIndex = 47;
     //
     // confianzaTxt
     //
     this.confianzaTxt.Location = new System.Drawing.Point(154, 13);
     this.confianzaTxt.Name = "confianzaTxt";
     this.confianzaTxt.Size = new System.Drawing.Size(326, 20);
     this.confianzaTxt.TabIndex = 45;
     this.confianzaTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.validatedNumericValues);
     //
     // tamParcelaTxt
     //
     this.tamParcelaTxt.Location = new System.Drawing.Point(154, 39);
     this.tamParcelaTxt.Name = "tamParcelaTxt";
     this.tamParcelaTxt.Size = new System.Drawing.Size(326, 20);
     this.tamParcelaTxt.TabIndex = 35;
     this.tamParcelaTxt.TextChanged += new System.EventHandler(this.tamParcelaTxt_TextChanged);
     this.tamParcelaTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.validatedNumericValues);
     //
     // numeroParcelasMuestraTxt
     //
     this.numeroParcelasMuestraTxt.Location = new System.Drawing.Point(417, 90);
     this.numeroParcelasMuestraTxt.Name = "numeroParcelasMuestraTxt";
     this.numeroParcelasMuestraTxt.Size = new System.Drawing.Size(63, 20);
     this.numeroParcelasMuestraTxt.TabIndex = 33;
     this.numeroParcelasMuestraTxt.TextChanged += new System.EventHandler(this.numeroParcelasMuestraTxt_TextChanged);
     this.numeroParcelasMuestraTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.validatedNumericValues);
     //
     // areaMuestrearTxt
     //
     this.areaMuestrearTxt.Location = new System.Drawing.Point(154, 116);
     this.areaMuestrearTxt.Name = "areaMuestrearTxt";
     this.areaMuestrearTxt.ReadOnly = true;
     this.areaMuestrearTxt.Size = new System.Drawing.Size(91, 20);
     this.areaMuestrearTxt.TabIndex = 30;
     this.areaMuestrearTxt.Text = "0";
     //
     // numeroEtapasTxt
     //
     this.numeroEtapasTxt.Enabled = false;
     this.numeroEtapasTxt.Location = new System.Drawing.Point(154, 270);
     this.numeroEtapasTxt.Name = "numeroEtapasTxt";
     this.numeroEtapasTxt.ReadOnly = true;
     this.numeroEtapasTxt.Size = new System.Drawing.Size(326, 20);
     this.numeroEtapasTxt.TabIndex = 39;
     this.numeroEtapasTxt.Text = "0";
     //
     // areaFustalesTxt
     //
     this.areaFustalesTxt.Location = new System.Drawing.Point(154, 167);
     this.areaFustalesTxt.Name = "areaFustalesTxt";
     this.areaFustalesTxt.Size = new System.Drawing.Size(326, 20);
     this.areaFustalesTxt.TabIndex = 38;
     this.areaFustalesTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.validatedNumericValues);
     //
     // limiteInfTxt
     //
     this.limiteInfTxt.Location = new System.Drawing.Point(154, 141);
     this.limiteInfTxt.Name = "limiteInfTxt";
     this.limiteInfTxt.Size = new System.Drawing.Size(326, 20);
     this.limiteInfTxt.TabIndex = 37;
     this.limiteInfTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.validatedNumericValues);
     //
     // AreaTotalTxt
     //
     this.AreaTotalTxt.Location = new System.Drawing.Point(154, 65);
     this.AreaTotalTxt.Name = "AreaTotalTxt";
     this.AreaTotalTxt.Size = new System.Drawing.Size(326, 20);
     this.AreaTotalTxt.TabIndex = 36;
     this.AreaTotalTxt.Text = "0";
     this.AreaTotalTxt.TextChanged += new System.EventHandler(this.AreaTotalTxt_TextChanged);
     this.AreaTotalTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.validatedNumericValues);
     //
     // TipoProyectoCbx
     //
     this.TipoProyectoCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.TipoProyectoCbx.FormattingEnabled = true;
     this.TipoProyectoCbx.Items.AddRange(new object[] {
     "Independiente",
     "Contenedor"});
     this.TipoProyectoCbx.Location = new System.Drawing.Point(145, 176);
     this.TipoProyectoCbx.Name = "TipoProyectoCbx";
     this.TipoProyectoCbx.Size = new System.Drawing.Size(363, 21);
     this.TipoProyectoCbx.TabIndex = 5;
     this.TipoProyectoCbx.SelectedIndexChanged += new System.EventHandler(this.TipoProyectoCbx_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(10, 179);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(94, 13);
     this.label1.TabIndex = 27;
     this.label1.Text = "Tipo de Proyecto: ";
     //
     // DescripcionTxt
     //
     this.DescripcionTxt.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proyectoBS, "DESCRIPCION", true));
     this.DescripcionTxt.Location = new System.Drawing.Point(145, 50);
     this.DescripcionTxt.Multiline = true;
     this.DescripcionTxt.Name = "DescripcionTxt";
     this.DescripcionTxt.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.DescripcionTxt.Size = new System.Drawing.Size(363, 62);
     this.DescripcionTxt.TabIndex = 2;
     //
     // proyectoBS
     //
     this.proyectoBS.DataSource = typeof(SIFCA_DAL.PROYECTO);
     //
     // tipoDisenoCbx
     //
     this.tipoDisenoCbx.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.proyectoBS, "NOMTIPODISEMUEST", true));
     this.tipoDisenoCbx.DataSource = this.tipoDisenoBS;
     this.tipoDisenoCbx.DisplayMember = "DESCRIPTIPODISEMUEST";
     this.tipoDisenoCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipoDisenoCbx.FormattingEnabled = true;
     this.tipoDisenoCbx.Location = new System.Drawing.Point(145, 146);
     this.tipoDisenoCbx.Name = "tipoDisenoCbx";
     this.tipoDisenoCbx.Size = new System.Drawing.Size(363, 21);
     this.tipoDisenoCbx.TabIndex = 4;
     this.tipoDisenoCbx.ValueMember = "NOMTIPODISEMUEST";
     this.tipoDisenoCbx.SelectedIndexChanged += new System.EventHandler(this.tipoDisenoCbx_SelectedIndexChanged);
     //
     // tipoDisenoBS
     //
     this.tipoDisenoBS.DataSource = typeof(SIFCA_DAL.TIPODISENOMUESTRAL);
     //
     // tipoObjetivoCbx
     //
     this.tipoObjetivoCbx.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.proyectoBS, "NOMBRETIPOINV", true));
     this.tipoObjetivoCbx.DataSource = this.objetivoInventarioBS;
     this.tipoObjetivoCbx.DisplayMember = "DESCRIPOBJETINV";
     this.tipoObjetivoCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipoObjetivoCbx.FormattingEnabled = true;
     this.tipoObjetivoCbx.Location = new System.Drawing.Point(145, 118);
     this.tipoObjetivoCbx.Name = "tipoObjetivoCbx";
     this.tipoObjetivoCbx.Size = new System.Drawing.Size(363, 21);
     this.tipoObjetivoCbx.TabIndex = 3;
     this.tipoObjetivoCbx.ValueMember = "NOMBRETIPOINV";
     //
     // objetivoInventarioBS
     //
     this.objetivoInventarioBS.DataSource = typeof(SIFCA_DAL.OBJETIVOINVENTARIO);
     //
     // lugarTxt
     //
     this.lugarTxt.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.proyectoBS, "LUGAR", true));
     this.lugarTxt.Location = new System.Drawing.Point(145, 23);
     this.lugarTxt.Name = "lugarTxt";
     this.lugarTxt.Size = new System.Drawing.Size(363, 20);
     this.lugarTxt.TabIndex = 1;
     //
     // especiesTabP
     //
     this.especiesTabP.AutoScroll = true;
     this.especiesTabP.Controls.Add(this.registrarSpecieBtn);
     this.especiesTabP.Controls.Add(this.busquedaTxt);
     this.especiesTabP.Controls.Add(this.criterioCbx);
     this.especiesTabP.Controls.Add(this.lblBuscar);
     this.especiesTabP.Controls.Add(this.especiesDGW);
     this.especiesTabP.Controls.Add(this.seleccEspecieBtn);
     this.especiesTabP.Controls.Add(this.RemoverEspciesBtn);
     this.especiesTabP.Location = new System.Drawing.Point(124, 4);
     this.especiesTabP.Name = "especiesTabP";
     this.especiesTabP.Padding = new System.Windows.Forms.Padding(3);
     this.especiesTabP.Size = new System.Drawing.Size(531, 534);
     this.especiesTabP.TabIndex = 2;
     this.especiesTabP.Text = "Listado de Especies";
     this.especiesTabP.UseVisualStyleBackColor = true;
     //
     // registrarSpecieBtn
     //
     this.registrarSpecieBtn.Image = global::SIFCA.Properties.Resources._1395994350_tree;
     this.registrarSpecieBtn.Location = new System.Drawing.Point(284, 10);
     this.registrarSpecieBtn.Name = "registrarSpecieBtn";
     this.registrarSpecieBtn.Size = new System.Drawing.Size(26, 23);
     this.registrarSpecieBtn.TabIndex = 27;
     this.registrarSpecieBtn.UseVisualStyleBackColor = true;
     this.registrarSpecieBtn.Click += new System.EventHandler(this.registrarSpecieBtn_Click);
     //
     // busquedaTxt
     //
     this.busquedaTxt.Location = new System.Drawing.Point(46, 12);
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(131, 20);
     this.busquedaTxt.TabIndex = 26;
     //
     // criterioCbx
     //
     this.criterioCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.criterioCbx.FormattingEnabled = true;
     this.criterioCbx.Items.AddRange(new object[] {
     "Nombre Comun",
     "Nombre Cientifico"});
     this.criterioCbx.Location = new System.Drawing.Point(181, 11);
     this.criterioCbx.Name = "criterioCbx";
     this.criterioCbx.Size = new System.Drawing.Size(101, 21);
     this.criterioCbx.TabIndex = 25;
     //
     // lblBuscar
     //
     this.lblBuscar.AutoSize = true;
     this.lblBuscar.Location = new System.Drawing.Point(2, 15);
     this.lblBuscar.Name = "lblBuscar";
     this.lblBuscar.Size = new System.Drawing.Size(43, 13);
     this.lblBuscar.TabIndex = 24;
     this.lblBuscar.Text = "Buscar:";
     //
     // especiesDGW
     //
     this.especiesDGW.AllowUserToAddRows = false;
     this.especiesDGW.AllowUserToDeleteRows = false;
     this.especiesDGW.AutoGenerateColumns = false;
     this.especiesDGW.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.especiesDGW.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.especiesDGW.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.especiesDGW.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Especie,
     this.NOMCOMUN,
     this.NOMCIENTIFICO,
     this.FAMILIA});
     this.especiesDGW.DataSource = this.especieBS;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.especiesDGW.DefaultCellStyle = dataGridViewCellStyle2;
     this.especiesDGW.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.especiesDGW.Location = new System.Drawing.Point(3, 56);
     this.especiesDGW.Name = "especiesDGW";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.especiesDGW.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.especiesDGW.Size = new System.Drawing.Size(525, 475);
     this.especiesDGW.TabIndex = 19;
     this.especiesDGW.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.especiesDGW_CellValueChanged);
     this.especiesDGW.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.especiesDGW_DataBindingComplete);
     //
     // Especie
     //
     this.Especie.HeaderText = "Seleccion";
     this.Especie.Name = "Especie";
     //
     // NOMCOMUN
     //
     this.NOMCOMUN.DataPropertyName = "NOMCOMUN";
     this.NOMCOMUN.HeaderText = "Nombre Comun";
     this.NOMCOMUN.Name = "NOMCOMUN";
     this.NOMCOMUN.ReadOnly = true;
     //
     // NOMCIENTIFICO
     //
     this.NOMCIENTIFICO.DataPropertyName = "NOMCIENTIFICO";
     this.NOMCIENTIFICO.HeaderText = "Nombre Cientifico";
     this.NOMCIENTIFICO.Name = "NOMCIENTIFICO";
     this.NOMCIENTIFICO.ReadOnly = true;
     //
     // FAMILIA
     //
     this.FAMILIA.DataPropertyName = "FAMILIA";
     this.FAMILIA.HeaderText = "Familia";
     this.FAMILIA.Name = "FAMILIA";
     this.FAMILIA.ReadOnly = true;
     //
     // especieBS
     //
     this.especieBS.DataSource = typeof(SIFCA_DAL.ESPECIE);
     //
     // seleccEspecieBtn
     //
     this.seleccEspecieBtn.Location = new System.Drawing.Point(314, 10);
     this.seleccEspecieBtn.Name = "seleccEspecieBtn";
     this.seleccEspecieBtn.Size = new System.Drawing.Size(112, 23);
     this.seleccEspecieBtn.TabIndex = 17;
     this.seleccEspecieBtn.Text = "Seleccionar Todos";
     this.seleccEspecieBtn.UseVisualStyleBackColor = true;
     this.seleccEspecieBtn.Click += new System.EventHandler(this.seleccEspecieBtn_Click);
     //
     // RemoverEspciesBtn
     //
     this.RemoverEspciesBtn.Location = new System.Drawing.Point(430, 10);
     this.RemoverEspciesBtn.Name = "RemoverEspciesBtn";
     this.RemoverEspciesBtn.Size = new System.Drawing.Size(95, 23);
     this.RemoverEspciesBtn.TabIndex = 18;
     this.RemoverEspciesBtn.Text = "Remover Todos";
     this.RemoverEspciesBtn.UseVisualStyleBackColor = true;
     this.RemoverEspciesBtn.Click += new System.EventHandler(this.RemoverEspciesBtn_Click);
     //
     // estratosTabP
     //
     this.estratosTabP.Controls.Add(this.crearEstratoBtn);
     this.estratosTabP.Controls.Add(this.errorLbl);
     this.estratosTabP.Controls.Add(this.actualizarPesosEstratosBtn);
     this.estratosTabP.Controls.Add(this.SeleccEstratosBtn);
     this.estratosTabP.Controls.Add(this.removerEstratosBtn);
     this.estratosTabP.Controls.Add(this.estratoDGW);
     this.estratosTabP.Location = new System.Drawing.Point(124, 4);
     this.estratosTabP.Name = "estratosTabP";
     this.estratosTabP.Padding = new System.Windows.Forms.Padding(3);
     this.estratosTabP.Size = new System.Drawing.Size(531, 534);
     this.estratosTabP.TabIndex = 3;
     this.estratosTabP.Text = "Listado de Estratos";
     this.estratosTabP.UseVisualStyleBackColor = true;
     //
     // crearEstratoBtn
     //
     this.crearEstratoBtn.Enabled = false;
     this.crearEstratoBtn.Location = new System.Drawing.Point(163, 9);
     this.crearEstratoBtn.Name = "crearEstratoBtn";
     this.crearEstratoBtn.Size = new System.Drawing.Size(104, 23);
     this.crearEstratoBtn.TabIndex = 25;
     this.crearEstratoBtn.Text = "Crear estrato";
     this.crearEstratoBtn.UseVisualStyleBackColor = true;
     //
     // errorLbl
     //
     this.errorLbl.AutoSize = true;
     this.errorLbl.Location = new System.Drawing.Point(11, 40);
     this.errorLbl.Name = "errorLbl";
     this.errorLbl.Size = new System.Drawing.Size(0, 13);
     this.errorLbl.TabIndex = 22;
     //
     // actualizarPesosEstratosBtn
     //
     this.actualizarPesosEstratosBtn.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("actualizarPesosEstratosBtn.BackgroundImage")));
     this.actualizarPesosEstratosBtn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.actualizarPesosEstratosBtn.Enabled = false;
     this.actualizarPesosEstratosBtn.Location = new System.Drawing.Point(502, 9);
     this.actualizarPesosEstratosBtn.Name = "actualizarPesosEstratosBtn";
     this.actualizarPesosEstratosBtn.Size = new System.Drawing.Size(23, 23);
     this.actualizarPesosEstratosBtn.TabIndex = 22;
     this.actualizarPesosEstratosBtn.UseVisualStyleBackColor = true;
     this.actualizarPesosEstratosBtn.Click += new System.EventHandler(this.actualizarBtn_Click);
     //
     // SeleccEstratosBtn
     //
     this.SeleccEstratosBtn.Enabled = false;
     this.SeleccEstratosBtn.Location = new System.Drawing.Point(273, 9);
     this.SeleccEstratosBtn.Name = "SeleccEstratosBtn";
     this.SeleccEstratosBtn.Size = new System.Drawing.Size(112, 23);
     this.SeleccEstratosBtn.TabIndex = 20;
     this.SeleccEstratosBtn.Text = "Seleccionar Todos";
     this.SeleccEstratosBtn.UseVisualStyleBackColor = true;
     this.SeleccEstratosBtn.Click += new System.EventHandler(this.SeleccEstratosBtn_Click);
     //
     // removerEstratosBtn
     //
     this.removerEstratosBtn.Enabled = false;
     this.removerEstratosBtn.Location = new System.Drawing.Point(391, 9);
     this.removerEstratosBtn.Name = "removerEstratosBtn";
     this.removerEstratosBtn.Size = new System.Drawing.Size(104, 23);
     this.removerEstratosBtn.TabIndex = 21;
     this.removerEstratosBtn.Text = "Remover Todos";
     this.removerEstratosBtn.UseVisualStyleBackColor = true;
     this.removerEstratosBtn.Click += new System.EventHandler(this.removerEstratosBtn_Click);
     //
     // estratoDGW
     //
     this.estratoDGW.AllowUserToAddRows = false;
     this.estratoDGW.AllowUserToDeleteRows = false;
     this.estratoDGW.AllowUserToOrderColumns = true;
     this.estratoDGW.AutoGenerateColumns = false;
     this.estratoDGW.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.estratoDGW.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.estratoDGW.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.estratoDGW.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Estratos,
     this.DESCRIPESTRATO,
     this.Tamanio,
     this.Peso});
     this.estratoDGW.DataSource = this.estratoBS;
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.estratoDGW.DefaultCellStyle = dataGridViewCellStyle5;
     this.estratoDGW.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.estratoDGW.Enabled = false;
     this.estratoDGW.Location = new System.Drawing.Point(3, 64);
     this.estratoDGW.Name = "estratoDGW";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.estratoDGW.RowHeadersDefaultCellStyle = dataGridViewCellStyle6;
     this.estratoDGW.Size = new System.Drawing.Size(525, 467);
     this.estratoDGW.TabIndex = 23;
     this.estratoDGW.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.estratoDGW_CellValueChanged);
     this.estratoDGW.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.estratosDGW_DataBindingComplete);
     //
     // Estratos
     //
     this.Estratos.HeaderText = "Estratos";
     this.Estratos.Name = "Estratos";
     //
     // DESCRIPESTRATO
     //
     this.DESCRIPESTRATO.DataPropertyName = "DESCRIPESTRATO";
     this.DESCRIPESTRATO.HeaderText = "Descripcion";
     this.DESCRIPESTRATO.Name = "DESCRIPESTRATO";
     this.DESCRIPESTRATO.ReadOnly = true;
     //
     // Tamanio
     //
     this.Tamanio.HeaderText = "Tamaño";
     this.Tamanio.Name = "Tamanio";
     //
     // Peso
     //
     this.Peso.HeaderText = "Peso";
     this.Peso.Name = "Peso";
     this.Peso.ReadOnly = true;
     //
     // estratoBS
     //
     this.estratoBS.DataSource = typeof(SIFCA_DAL.ESTRATO);
     //
     // formulariosTap
     //
     this.formulariosTap.AutoScroll = true;
     this.formulariosTap.Controls.Add(this.crearFormBtn);
     this.formulariosTap.Controls.Add(this.formulariosDGW);
     this.formulariosTap.Location = new System.Drawing.Point(124, 4);
     this.formulariosTap.Name = "formulariosTap";
     this.formulariosTap.Size = new System.Drawing.Size(531, 534);
     this.formulariosTap.TabIndex = 5;
     this.formulariosTap.Text = "Formularios";
     this.formulariosTap.UseVisualStyleBackColor = true;
     //
     // crearFormBtn
     //
     this.crearFormBtn.Location = new System.Drawing.Point(414, 10);
     this.crearFormBtn.Name = "crearFormBtn";
     this.crearFormBtn.Size = new System.Drawing.Size(109, 23);
     this.crearFormBtn.TabIndex = 24;
     this.crearFormBtn.Text = "Crear Formulario";
     this.crearFormBtn.UseVisualStyleBackColor = true;
     this.crearFormBtn.Click += new System.EventHandler(this.crearFormBtn_Click);
     //
     // formulariosDGW
     //
     this.formulariosDGW.AllowUserToAddRows = false;
     this.formulariosDGW.AllowUserToDeleteRows = false;
     this.formulariosDGW.AutoGenerateColumns = false;
     this.formulariosDGW.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.formulariosDGW.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
     this.formulariosDGW.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.formulariosDGW.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.FECHACREACION,
     this.NROFORMULARIO,
     this.Usuario,
     this.NombreResponsable,
     this.CODEST,
     this.PARCELA,
     this.LINEA,
     this.ListarDatos});
     this.formulariosDGW.DataSource = this.formulariosBS;
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.formulariosDGW.DefaultCellStyle = dataGridViewCellStyle8;
     this.formulariosDGW.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.formulariosDGW.Location = new System.Drawing.Point(0, 39);
     this.formulariosDGW.Name = "formulariosDGW";
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.formulariosDGW.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
     this.formulariosDGW.Size = new System.Drawing.Size(531, 495);
     this.formulariosDGW.TabIndex = 25;
     this.formulariosDGW.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.formulariosDGW_CellClick);
     this.formulariosDGW.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.formulariosDGW_DataBindingComplete);
     //
     // FECHACREACION
     //
     this.FECHACREACION.DataPropertyName = "FECHACREACION";
     this.FECHACREACION.HeaderText = "Fecha";
     this.FECHACREACION.Name = "FECHACREACION";
     //
     // NROFORMULARIO
     //
     this.NROFORMULARIO.DataPropertyName = "NROFORMULARIO";
     this.NROFORMULARIO.HeaderText = "NROFORMULARIO";
     this.NROFORMULARIO.Name = "NROFORMULARIO";
     this.NROFORMULARIO.Visible = false;
     //
     // Usuario
     //
     this.Usuario.DataPropertyName = "NROUSUARIO";
     this.Usuario.HeaderText = "Responsable";
     this.Usuario.Name = "Usuario";
     this.Usuario.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Usuario.Visible = false;
     //
     // NombreResponsable
     //
     this.NombreResponsable.HeaderText = "Responsable";
     this.NombreResponsable.Name = "NombreResponsable";
     //
     // CODEST
     //
     this.CODEST.DataPropertyName = "CODEST";
     this.CODEST.DataSource = this.estratoBS;
     this.CODEST.DisplayMember = "DESCRIPESTRATO";
     this.CODEST.HeaderText = "Estrato";
     this.CODEST.Name = "CODEST";
     this.CODEST.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.CODEST.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.CODEST.ValueMember = "CODEST";
     //
     // PARCELA
     //
     this.PARCELA.DataPropertyName = "PARCELA";
     this.PARCELA.HeaderText = "Parcela";
     this.PARCELA.Name = "PARCELA";
     //
     // LINEA
     //
     this.LINEA.DataPropertyName = "LINEA";
     this.LINEA.HeaderText = "Linea";
     this.LINEA.Name = "LINEA";
     //
     // ListarDatos
     //
     this.ListarDatos.HeaderText = "";
     this.ListarDatos.Name = "ListarDatos";
     this.ListarDatos.Text = "Ver";
     this.ListarDatos.UseColumnTextForButtonValue = true;
     //
     // formulariosBS
     //
     this.formulariosBS.DataSource = typeof(SIFCA_DAL.FORMULARIO);
     //
     // proyectosContTabP
     //
     this.proyectosContTabP.AutoScroll = true;
     this.proyectosContTabP.Controls.Add(this.arbolEtapasBtn);
     this.proyectosContTabP.Controls.Add(this.proyectoDGW);
     this.proyectosContTabP.Controls.Add(this.seleccionarProyectosBtn);
     this.proyectosContTabP.Controls.Add(this.removerProyectosBtn);
     this.proyectosContTabP.Location = new System.Drawing.Point(124, 4);
     this.proyectosContTabP.Name = "proyectosContTabP";
     this.proyectosContTabP.Size = new System.Drawing.Size(531, 534);
     this.proyectosContTabP.TabIndex = 4;
     this.proyectosContTabP.Text = "Proyectos contenidos";
     this.proyectosContTabP.UseVisualStyleBackColor = true;
     //
     // arbolEtapasBtn
     //
     this.arbolEtapasBtn.Image = global::SIFCA.Properties.Resources._1395994362_chart_organisation_add;
     this.arbolEtapasBtn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.arbolEtapasBtn.Location = new System.Drawing.Point(200, 15);
     this.arbolEtapasBtn.Name = "arbolEtapasBtn";
     this.arbolEtapasBtn.Size = new System.Drawing.Size(104, 23);
     this.arbolEtapasBtn.TabIndex = 29;
     this.arbolEtapasBtn.Text = "Ver árbol";
     this.arbolEtapasBtn.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.arbolEtapasBtn.UseVisualStyleBackColor = true;
     this.arbolEtapasBtn.Click += new System.EventHandler(this.arbolEtapasBtn_Click);
     //
     // proyectoDGW
     //
     this.proyectoDGW.AllowUserToAddRows = false;
     this.proyectoDGW.AllowUserToDeleteRows = false;
     this.proyectoDGW.AllowUserToOrderColumns = true;
     this.proyectoDGW.AutoGenerateColumns = false;
     this.proyectoDGW.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.proyectoDGW.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle10;
     this.proyectoDGW.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.proyectoDGW.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Proyectos,
     this.Codigo,
     this.LUGAR,
     this.FECHA,
     this.NOMBRETIPOINV,
     this.NOMTIPODISEMUEST,
     this.PesoProyecto,
     this.ETAPA});
     this.proyectoDGW.DataSource = this.proyectosBS;
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.proyectoDGW.DefaultCellStyle = dataGridViewCellStyle11;
     this.proyectoDGW.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.proyectoDGW.Enabled = false;
     this.proyectoDGW.Location = new System.Drawing.Point(0, 44);
     this.proyectoDGW.Name = "proyectoDGW";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.proyectoDGW.RowHeadersDefaultCellStyle = dataGridViewCellStyle12;
     this.proyectoDGW.Size = new System.Drawing.Size(531, 490);
     this.proyectoDGW.TabIndex = 28;
     this.proyectoDGW.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.proyectoDGW_CellValueChanged);
     this.proyectoDGW.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.proyectoDGW_DataBindingComplete);
     //
     // Proyectos
     //
     this.Proyectos.HeaderText = "Seleccion";
     this.Proyectos.Name = "Proyectos";
     //
     // Codigo
     //
     this.Codigo.DataPropertyName = "NROPROY";
     this.Codigo.HeaderText = "Codigo";
     this.Codigo.Name = "Codigo";
     this.Codigo.ReadOnly = true;
     this.Codigo.Visible = false;
     //
     // LUGAR
     //
     this.LUGAR.DataPropertyName = "LUGAR";
     this.LUGAR.HeaderText = "Lugar";
     this.LUGAR.Name = "LUGAR";
     this.LUGAR.ReadOnly = true;
     //
     // FECHA
     //
     this.FECHA.DataPropertyName = "FECHA";
     this.FECHA.HeaderText = "Fecha";
     this.FECHA.Name = "FECHA";
     this.FECHA.ReadOnly = true;
     //
     // NOMBRETIPOINV
     //
     this.NOMBRETIPOINV.DataPropertyName = "NOMBRETIPOINV";
     this.NOMBRETIPOINV.DataSource = this.objetivoInventarioBS;
     this.NOMBRETIPOINV.DisplayMember = "DESCRIPOBJETINV";
     this.NOMBRETIPOINV.HeaderText = "Objetivo";
     this.NOMBRETIPOINV.Name = "NOMBRETIPOINV";
     this.NOMBRETIPOINV.ReadOnly = true;
     this.NOMBRETIPOINV.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.NOMBRETIPOINV.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.NOMBRETIPOINV.ValueMember = "NOMBRETIPOINV";
     //
     // NOMTIPODISEMUEST
     //
     this.NOMTIPODISEMUEST.DataPropertyName = "NOMTIPODISEMUEST";
     this.NOMTIPODISEMUEST.DataSource = this.tipoDisenoBS;
     this.NOMTIPODISEMUEST.DisplayMember = "DESCRIPTIPODISEMUEST";
     this.NOMTIPODISEMUEST.HeaderText = "Tipo Diseño";
     this.NOMTIPODISEMUEST.Name = "NOMTIPODISEMUEST";
     this.NOMTIPODISEMUEST.ReadOnly = true;
     this.NOMTIPODISEMUEST.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.NOMTIPODISEMUEST.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.NOMTIPODISEMUEST.ValueMember = "NOMTIPODISEMUEST";
     //
     // PesoProyecto
     //
     this.PesoProyecto.HeaderText = "Peso";
     this.PesoProyecto.Name = "PesoProyecto";
     //
     // ETAPA
     //
     this.ETAPA.DataPropertyName = "ETAPA";
     this.ETAPA.HeaderText = "Etapa";
     this.ETAPA.Name = "ETAPA";
     this.ETAPA.ReadOnly = true;
     //
     // proyectosBS
     //
     this.proyectosBS.DataSource = typeof(SIFCA_DAL.PROYECTO);
     //
     // seleccionarProyectosBtn
     //
     this.seleccionarProyectosBtn.Enabled = false;
     this.seleccionarProyectosBtn.Location = new System.Drawing.Point(306, 15);
     this.seleccionarProyectosBtn.Name = "seleccionarProyectosBtn";
     this.seleccionarProyectosBtn.Size = new System.Drawing.Size(112, 23);
     this.seleccionarProyectosBtn.TabIndex = 26;
     this.seleccionarProyectosBtn.Text = "Seleccionar Todos";
     this.seleccionarProyectosBtn.UseVisualStyleBackColor = true;
     this.seleccionarProyectosBtn.Click += new System.EventHandler(this.seleccionarProyectosBtn_Click);
     //
     // removerProyectosBtn
     //
     this.removerProyectosBtn.Enabled = false;
     this.removerProyectosBtn.Location = new System.Drawing.Point(424, 15);
     this.removerProyectosBtn.Name = "removerProyectosBtn";
     this.removerProyectosBtn.Size = new System.Drawing.Size(104, 23);
     this.removerProyectosBtn.TabIndex = 27;
     this.removerProyectosBtn.Text = "Remover Todos";
     this.removerProyectosBtn.UseVisualStyleBackColor = true;
     this.removerProyectosBtn.Click += new System.EventHandler(this.removerProyectosBtn_Click);
     //
     // costosTabP
     //
     this.costosTabP.Controls.Add(this.errorCostoLbl);
     this.costosTabP.Controls.Add(this.costoDGW);
     this.costosTabP.Controls.Add(this.button1);
     this.costosTabP.Controls.Add(this.button2);
     this.costosTabP.Location = new System.Drawing.Point(124, 4);
     this.costosTabP.Name = "costosTabP";
     this.costosTabP.Padding = new System.Windows.Forms.Padding(3);
     this.costosTabP.Size = new System.Drawing.Size(531, 534);
     this.costosTabP.TabIndex = 6;
     this.costosTabP.Text = "Listado de costos";
     this.costosTabP.UseVisualStyleBackColor = true;
     //
     // costoDGW
     //
     this.costoDGW.AllowUserToAddRows = false;
     this.costoDGW.AllowUserToDeleteRows = false;
     this.costoDGW.AutoGenerateColumns = false;
     this.costoDGW.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle13.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.costoDGW.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle13;
     this.costoDGW.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.costoDGW.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Costos,
     this.NROCOSTO,
     this.NOMBRE,
     this.DESCRIPCION,
     this.TIPO,
     this.Valor,
     this.lISTADODECOSTOSDataGridViewTextBoxColumn});
     this.costoDGW.DataSource = this.costoBS;
     dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle14.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle14.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.costoDGW.DefaultCellStyle = dataGridViewCellStyle14;
     this.costoDGW.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.costoDGW.Location = new System.Drawing.Point(3, 63);
     this.costoDGW.Name = "costoDGW";
     dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.costoDGW.RowHeadersDefaultCellStyle = dataGridViewCellStyle15;
     this.costoDGW.Size = new System.Drawing.Size(525, 468);
     this.costoDGW.TabIndex = 22;
     this.costoDGW.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.costoDGW_CellFormatting);
     this.costoDGW.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.costoDGW_CellValueChanged);
     this.costoDGW.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.costoDGW_DataBindingComplete);
     //
     // Costos
     //
     this.Costos.HeaderText = "Seleccion";
     this.Costos.Name = "Costos";
     //
     // NROCOSTO
     //
     this.NROCOSTO.DataPropertyName = "NROCOSTO";
     this.NROCOSTO.HeaderText = "NROCOSTO";
     this.NROCOSTO.Name = "NROCOSTO";
     this.NROCOSTO.Visible = false;
     //
     // NOMBRE
     //
     this.NOMBRE.DataPropertyName = "NOMBRE";
     this.NOMBRE.HeaderText = "Nombre";
     this.NOMBRE.Name = "NOMBRE";
     //
     // DESCRIPCION
     //
     this.DESCRIPCION.DataPropertyName = "DESCRIPCION";
     this.DESCRIPCION.HeaderText = "Descripción";
     this.DESCRIPCION.Name = "DESCRIPCION";
     this.DESCRIPCION.Visible = false;
     //
     // TIPO
     //
     this.TIPO.DataPropertyName = "TIPO";
     this.TIPO.HeaderText = "Tipo";
     this.TIPO.Name = "TIPO";
     //
     // Valor
     //
     this.Valor.HeaderText = "Valor";
     this.Valor.Name = "Valor";
     //
     // lISTADODECOSTOSDataGridViewTextBoxColumn
     //
     this.lISTADODECOSTOSDataGridViewTextBoxColumn.DataPropertyName = "LISTADODECOSTOS";
     this.lISTADODECOSTOSDataGridViewTextBoxColumn.HeaderText = "LISTADODECOSTOS";
     this.lISTADODECOSTOSDataGridViewTextBoxColumn.Name = "lISTADODECOSTOSDataGridViewTextBoxColumn";
     this.lISTADODECOSTOSDataGridViewTextBoxColumn.Visible = false;
     //
     // costoBS
     //
     this.costoBS.DataSource = typeof(SIFCA_DAL.COSTO);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(314, 7);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(112, 23);
     this.button1.TabIndex = 20;
     this.button1.Text = "Seleccionar Todos";
     this.button1.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(430, 7);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(95, 23);
     this.button2.TabIndex = 21;
     this.button2.Text = "Remover Todos";
     this.button2.UseVisualStyleBackColor = true;
     //
     // usuarioBS
     //
     this.usuarioBS.DataSource = typeof(SIFCA_DAL.USUARIO);
     //
     // cancelarBtn
     //
     this.cancelarBtn.Location = new System.Drawing.Point(572, 556);
     this.cancelarBtn.Name = "cancelarBtn";
     this.cancelarBtn.Size = new System.Drawing.Size(75, 23);
     this.cancelarBtn.TabIndex = 30;
     this.cancelarBtn.Text = "Cancelar";
     this.cancelarBtn.UseVisualStyleBackColor = true;
     this.cancelarBtn.Click += new System.EventHandler(this.CancelarBtn_Click);
     //
     // ActualizarBtn
     //
     this.ActualizarBtn.Location = new System.Drawing.Point(490, 556);
     this.ActualizarBtn.Name = "ActualizarBtn";
     this.ActualizarBtn.Size = new System.Drawing.Size(75, 23);
     this.ActualizarBtn.TabIndex = 29;
     this.ActualizarBtn.Text = "Actualizar";
     this.ActualizarBtn.UseVisualStyleBackColor = true;
     this.ActualizarBtn.Click += new System.EventHandler(this.ActualizarProyectoBtn_Click);
     //
     // controladorErrores
     //
     this.controladorErrores.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.controladorErrores.ContainerControl = this;
     //
     // errorCostoLbl
     //
     this.errorCostoLbl.AutoSize = true;
     this.errorCostoLbl.Location = new System.Drawing.Point(4, 37);
     this.errorCostoLbl.Name = "errorCostoLbl";
     this.errorCostoLbl.Size = new System.Drawing.Size(414, 13);
     this.errorCostoLbl.TabIndex = 30;
     this.errorCostoLbl.Text = "Se debe especificar un valor total al costo que asocie al proyecto, sin puntos ni" +
     " comas";
     //
     // Actualizar_Proyectos_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::SIFCA.Properties.Resources.fondo_tab;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(659, 591);
     this.Controls.Add(this.cancelarBtn);
     this.Controls.Add(this.ActualizarBtn);
     this.Controls.Add(this.actualizarProyectoTab);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Actualizar_Proyectos_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Actualizar proyecto";
     this.actualizarProyectoTab.ResumeLayout(false);
     this.proyectoTabP.ResumeLayout(false);
     this.DatosProyectoGbx.ResumeLayout(false);
     this.DatosProyectoGbx.PerformLayout();
     this.otrosDatosGbx.ResumeLayout(false);
     this.otrosDatosGbx.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.formulaBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.proyectoBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipoDisenoBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objetivoInventarioBS)).EndInit();
     this.especiesTabP.ResumeLayout(false);
     this.especiesTabP.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.especiesDGW)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.especieBS)).EndInit();
     this.estratosTabP.ResumeLayout(false);
     this.estratosTabP.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.estratoDGW)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.estratoBS)).EndInit();
     this.formulariosTap.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.formulariosDGW)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.formulariosBS)).EndInit();
     this.proyectosContTabP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.proyectoDGW)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.proyectosBS)).EndInit();
     this.costosTabP.ResumeLayout(false);
     this.costosTabP.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.costoDGW)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.costoBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.controladorErrores)).EndInit();
     this.ResumeLayout(false);
 }
Example #15
0
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     this.pnInfo = new System.Windows.Forms.Panel();
     this.dgvThongTin = new System.Windows.Forms.DataGridView();
     this.lvThongTin = new System.Windows.Forms.ListView();
     this.chCheckBox = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.chId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.chSTT = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.chSanPham = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.chGia = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.gbInfo = new System.Windows.Forms.GroupBox();
     this.tbGhiChu = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbNgayGio = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.panel12 = new System.Windows.Forms.Panel();
     this.label47 = new System.Windows.Forms.Label();
     this.pbHoanTat = new System.Windows.Forms.PictureBox();
     this.pnTitle = new System.Windows.Forms.Panel();
     this.lbSelect = new System.Windows.Forms.Label();
     this.lbTitle = new System.Windows.Forms.Label();
     this.pbTitle = new System.Windows.Forms.PictureBox();
     this.pnDetail = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tbMa = new System.Windows.Forms.TextBox();
     this.panel8 = new System.Windows.Forms.Panel();
     this.label39 = new System.Windows.Forms.Label();
     this.pbHuy = new System.Windows.Forms.PictureBox();
     this.label14 = new System.Windows.Forms.Label();
     this.tbTong = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.ttDetail = new System.Windows.Forms.ToolTip(this.components);
     this.dtpFilter = new System.Windows.Forms.DateTimePicker();
     this.colId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colIdSanPham = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSanPham = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colGia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSoLuong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colThanhTien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRemove = new System.Windows.Forms.DataGridViewButtonColumn();
     this.pnInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvThongTin)).BeginInit();
     this.gbInfo.SuspendLayout();
     this.panel12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbHoanTat)).BeginInit();
     this.pnTitle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbTitle)).BeginInit();
     this.pnDetail.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbHuy)).BeginInit();
     this.SuspendLayout();
     //
     // pnInfo
     //
     this.pnInfo.Controls.Add(this.dgvThongTin);
     this.pnInfo.ForeColor = System.Drawing.Color.Black;
     this.pnInfo.Location = new System.Drawing.Point(20, 40);
     this.pnInfo.Name = "pnInfo";
     this.pnInfo.Size = new System.Drawing.Size(950, 170);
     this.pnInfo.TabIndex = 56;
     //
     // dgvThongTin
     //
     this.dgvThongTin.AllowUserToAddRows = false;
     this.dgvThongTin.AllowUserToDeleteRows = false;
     this.dgvThongTin.AllowUserToResizeRows = false;
     this.dgvThongTin.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvThongTin.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colId,
     this.colIdSanPham,
     this.colSanPham,
     this.colGia,
     this.colSoLuong,
     this.colThanhTien,
     this.colRemove});
     this.dgvThongTin.Location = new System.Drawing.Point(3, 3);
     this.dgvThongTin.MultiSelect = false;
     this.dgvThongTin.Name = "dgvThongTin";
     this.dgvThongTin.RowHeadersVisible = false;
     this.dgvThongTin.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvThongTin.ShowCellToolTips = false;
     this.dgvThongTin.Size = new System.Drawing.Size(944, 163);
     this.dgvThongTin.TabIndex = 1;
     this.dgvThongTin.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvThongTin_CellContentClick);
     this.dgvThongTin.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvThongTin_CellEndEdit);
     //
     // lvThongTin
     //
     this.lvThongTin.CheckBoxes = true;
     this.lvThongTin.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.chCheckBox,
     this.chId,
     this.chSTT,
     this.chSanPham,
     this.chGia});
     this.lvThongTin.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvThongTin.FullRowSelect = true;
     this.lvThongTin.GridLines = true;
     this.lvThongTin.Location = new System.Drawing.Point(6, 22);
     this.lvThongTin.MultiSelect = false;
     this.lvThongTin.Name = "lvThongTin";
     this.lvThongTin.Size = new System.Drawing.Size(635, 302);
     this.lvThongTin.TabIndex = 87;
     this.lvThongTin.UseCompatibleStateImageBehavior = false;
     this.lvThongTin.View = System.Windows.Forms.View.Details;
     this.lvThongTin.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvThongTin_ColumnClick);
     this.lvThongTin.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.lvThongTin_ColumnWidthChanging);
     this.lvThongTin.SelectedIndexChanged += new System.EventHandler(this.lvThongTin_SelectedIndexChanged);
     this.lvThongTin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.lvThongTin_KeyPress);
     this.lvThongTin.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvThongTin_MouseDoubleClick);
     //
     // chCheckBox
     //
     this.chCheckBox.Text = "All";
     this.chCheckBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.chCheckBox.Width = 0;
     //
     // chId
     //
     this.chId.Text = "Id";
     this.chId.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.chId.Width = 0;
     //
     // chSTT
     //
     this.chSTT.Text = "STT";
     this.chSTT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.chSTT.Width = 45;
     //
     // chSanPham
     //
     this.chSanPham.Text = "Sản phẩm";
     this.chSanPham.Width = 450;
     //
     // chGia
     //
     this.chGia.Text = "Giá";
     this.chGia.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.chGia.Width = 100;
     //
     // gbInfo
     //
     this.gbInfo.Controls.Add(this.lvThongTin);
     this.gbInfo.ForeColor = System.Drawing.Color.Orange;
     this.gbInfo.Location = new System.Drawing.Point(298, 3);
     this.gbInfo.Name = "gbInfo";
     this.gbInfo.Size = new System.Drawing.Size(647, 330);
     this.gbInfo.TabIndex = 20;
     this.gbInfo.TabStop = false;
     this.gbInfo.Text = "Danh sách sản phẩm";
     //
     // tbGhiChu
     //
     this.tbGhiChu.Location = new System.Drawing.Point(88, 110);
     this.tbGhiChu.MaxLength = 200;
     this.tbGhiChu.Multiline = true;
     this.tbGhiChu.Name = "tbGhiChu";
     this.tbGhiChu.Size = new System.Drawing.Size(169, 148);
     this.tbGhiChu.TabIndex = 8;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(21, 113);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(61, 16);
     this.label4.TabIndex = 97;
     this.label4.Text = "Ghi chú:";
     //
     // lbNgayGio
     //
     this.lbNgayGio.AutoSize = true;
     this.lbNgayGio.ForeColor = System.Drawing.Color.Black;
     this.lbNgayGio.Location = new System.Drawing.Point(102, 18);
     this.lbNgayGio.Name = "lbNgayGio";
     this.lbNgayGio.Size = new System.Drawing.Size(137, 16);
     this.lbNgayGio.TabIndex = 140;
     this.lbNgayGio.Text = "dd/MM/yyyy - hh:mm";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(36, 18);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(68, 16);
     this.label1.TabIndex = 122;
     this.label1.Text = "Ngày giờ:";
     //
     // panel12
     //
     this.panel12.Controls.Add(this.label47);
     this.panel12.Controls.Add(this.pbHoanTat);
     this.panel12.Location = new System.Drawing.Point(209, 264);
     this.panel12.Name = "panel12";
     this.panel12.Size = new System.Drawing.Size(70, 60);
     this.panel12.TabIndex = 128;
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(7, 68);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(0, 16);
     this.label47.TabIndex = 2;
     //
     // pbHoanTat
     //
     this.pbHoanTat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbHoanTat.Enabled = false;
     this.pbHoanTat.Location = new System.Drawing.Point(10, 10);
     this.pbHoanTat.Name = "pbHoanTat";
     this.pbHoanTat.Size = new System.Drawing.Size(50, 39);
     this.pbHoanTat.TabIndex = 1;
     this.pbHoanTat.TabStop = false;
     this.pbHoanTat.Click += new System.EventHandler(this.pbHoanTat_Click);
     this.pbHoanTat.MouseEnter += new System.EventHandler(this.pbHoanTat_MouseEnter);
     this.pbHoanTat.MouseLeave += new System.EventHandler(this.pbHoanTat_MouseLeave);
     //
     // pnTitle
     //
     this.pnTitle.Controls.Add(this.lbSelect);
     this.pnTitle.Controls.Add(this.lbTitle);
     this.pnTitle.Controls.Add(this.pbTitle);
     this.pnTitle.Location = new System.Drawing.Point(381, 3);
     this.pnTitle.Name = "pnTitle";
     this.pnTitle.Size = new System.Drawing.Size(249, 38);
     this.pnTitle.TabIndex = 55;
     //
     // lbSelect
     //
     this.lbSelect.AutoSize = true;
     this.lbSelect.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbSelect.ForeColor = System.Drawing.Color.Orange;
     this.lbSelect.Location = new System.Drawing.Point(50, 8);
     this.lbSelect.Name = "lbSelect";
     this.lbSelect.Size = new System.Drawing.Size(122, 22);
     this.lbSelect.TabIndex = 1;
     this.lbSelect.Text = "NHẬP HÀNG";
     //
     // lbTitle
     //
     this.lbTitle.AutoSize = true;
     this.lbTitle.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTitle.ForeColor = System.Drawing.Color.Gray;
     this.lbTitle.Location = new System.Drawing.Point(118, 8);
     this.lbTitle.Name = "lbTitle";
     this.lbTitle.Size = new System.Drawing.Size(112, 22);
     this.lbTitle.TabIndex = 2;
     this.lbTitle.Text = "KHO HÀNG";
     this.lbTitle.TextAlign = System.Drawing.ContentAlignment.TopRight;
     this.lbTitle.Visible = false;
     //
     // pbTitle
     //
     this.pbTitle.Cursor = System.Windows.Forms.Cursors.Default;
     this.pbTitle.Location = new System.Drawing.Point(10, 0);
     this.pbTitle.Name = "pbTitle";
     this.pbTitle.Size = new System.Drawing.Size(36, 36);
     this.pbTitle.TabIndex = 1;
     this.pbTitle.TabStop = false;
     //
     // pnDetail
     //
     this.pnDetail.Controls.Add(this.gbInfo);
     this.pnDetail.Controls.Add(this.groupBox1);
     this.pnDetail.ForeColor = System.Drawing.Color.Black;
     this.pnDetail.Location = new System.Drawing.Point(20, 209);
     this.pnDetail.Name = "pnDetail";
     this.pnDetail.Size = new System.Drawing.Size(950, 350);
     this.pnDetail.TabIndex = 57;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tbMa);
     this.groupBox1.Controls.Add(this.panel8);
     this.groupBox1.Controls.Add(this.label14);
     this.groupBox1.Controls.Add(this.tbTong);
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.tbGhiChu);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.panel12);
     this.groupBox1.ForeColor = System.Drawing.Color.Orange;
     this.groupBox1.Location = new System.Drawing.Point(7, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(285, 330);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Chi tiết";
     //
     // tbMa
     //
     this.tbMa.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbMa.Location = new System.Drawing.Point(87, 30);
     this.tbMa.MaxLength = 10;
     this.tbMa.Name = "tbMa";
     this.tbMa.ReadOnly = true;
     this.tbMa.Size = new System.Drawing.Size(73, 26);
     this.tbMa.TabIndex = 4;
     this.tbMa.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // panel8
     //
     this.panel8.Controls.Add(this.label39);
     this.panel8.Controls.Add(this.pbHuy);
     this.panel8.Location = new System.Drawing.Point(6, 264);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(70, 60);
     this.panel8.TabIndex = 141;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(7, 68);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(0, 16);
     this.label39.TabIndex = 2;
     //
     // pbHuy
     //
     this.pbHuy.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbHuy.Location = new System.Drawing.Point(10, 10);
     this.pbHuy.Name = "pbHuy";
     this.pbHuy.Size = new System.Drawing.Size(50, 39);
     this.pbHuy.TabIndex = 1;
     this.pbHuy.TabStop = false;
     this.pbHuy.Click += new System.EventHandler(this.pbHuy_Click);
     this.pbHuy.MouseEnter += new System.EventHandler(this.pbHuy_MouseEnter);
     this.pbHuy.MouseLeave += new System.EventHandler(this.pbHuy_MouseLeave);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(50, 35);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(31, 16);
     this.label14.TabIndex = 4;
     this.label14.Text = "Mã:";
     //
     // tbTong
     //
     this.tbTong.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbTong.Location = new System.Drawing.Point(87, 70);
     this.tbTong.MaxLength = 11;
     this.tbTong.Name = "tbTong";
     this.tbTong.ReadOnly = true;
     this.tbTong.Size = new System.Drawing.Size(127, 26);
     this.tbTong.TabIndex = 6;
     this.tbTong.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.ForeColor = System.Drawing.Color.Black;
     this.label10.Location = new System.Drawing.Point(37, 75);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(45, 16);
     this.label10.TabIndex = 106;
     this.label10.Text = "Tổng:";
     //
     // ttDetail
     //
     this.ttDetail.AutoPopDelay = 10000;
     this.ttDetail.InitialDelay = 500;
     this.ttDetail.ReshowDelay = 100;
     //
     // dtpFilter
     //
     this.dtpFilter.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFilter.Location = new System.Drawing.Point(236, 13);
     this.dtpFilter.Name = "dtpFilter";
     this.dtpFilter.Size = new System.Drawing.Size(150, 23);
     this.dtpFilter.TabIndex = 141;
     this.dtpFilter.Visible = false;
     //
     // colId
     //
     this.colId.Frozen = true;
     this.colId.HeaderText = "Id";
     this.colId.Name = "colId";
     this.colId.ReadOnly = true;
     this.colId.Visible = false;
     this.colId.Width = 5;
     //
     // colIdSanPham
     //
     this.colIdSanPham.Frozen = true;
     this.colIdSanPham.HeaderText = "IdSanPham";
     this.colIdSanPham.Name = "colIdSanPham";
     this.colIdSanPham.ReadOnly = true;
     this.colIdSanPham.Visible = false;
     this.colIdSanPham.Width = 5;
     //
     // colSanPham
     //
     this.colSanPham.Frozen = true;
     this.colSanPham.HeaderText = "Sản phẩm";
     this.colSanPham.MaxInputLength = 50;
     this.colSanPham.MinimumWidth = 300;
     this.colSanPham.Name = "colSanPham";
     this.colSanPham.ReadOnly = true;
     this.colSanPham.Width = 300;
     //
     // colGia
     //
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.Format = "N0";
     dataGridViewCellStyle4.NullValue = "0";
     this.colGia.DefaultCellStyle = dataGridViewCellStyle4;
     this.colGia.HeaderText = "Giá";
     this.colGia.MaxInputLength = 11;
     this.colGia.MinimumWidth = 120;
     this.colGia.Name = "colGia";
     this.colGia.ReadOnly = true;
     this.colGia.Width = 120;
     //
     // colSoLuong
     //
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle5.Format = "N0";
     dataGridViewCellStyle5.NullValue = "0";
     this.colSoLuong.DefaultCellStyle = dataGridViewCellStyle5;
     this.colSoLuong.HeaderText = "Số lượng";
     this.colSoLuong.MaxInputLength = 3;
     this.colSoLuong.MinimumWidth = 100;
     this.colSoLuong.Name = "colSoLuong";
     //
     // colThanhTien
     //
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N0";
     dataGridViewCellStyle6.NullValue = "0";
     this.colThanhTien.DefaultCellStyle = dataGridViewCellStyle6;
     this.colThanhTien.HeaderText = "Thành tiền";
     this.colThanhTien.MaxInputLength = 11;
     this.colThanhTien.MinimumWidth = 120;
     this.colThanhTien.Name = "colThanhTien";
     this.colThanhTien.ReadOnly = true;
     this.colThanhTien.Width = 120;
     //
     // colRemove
     //
     this.colRemove.HeaderText = "";
     this.colRemove.MinimumWidth = 30;
     this.colRemove.Name = "colRemove";
     this.colRemove.Text = "X";
     this.colRemove.UseColumnTextForButtonValue = true;
     this.colRemove.Width = 30;
     //
     // UcInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.dtpFilter);
     this.Controls.Add(this.pnTitle);
     this.Controls.Add(this.lbNgayGio);
     this.Controls.Add(this.pnInfo);
     this.Controls.Add(this.pnDetail);
     this.Controls.Add(this.label1);
     this.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "UcInfo";
     this.Size = new System.Drawing.Size(1000, 600);
     this.Load += new System.EventHandler(this.UcInfo_Load);
     this.pnInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvThongTin)).EndInit();
     this.gbInfo.ResumeLayout(false);
     this.panel12.ResumeLayout(false);
     this.panel12.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbHoanTat)).EndInit();
     this.pnTitle.ResumeLayout(false);
     this.pnTitle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbTitle)).EndInit();
     this.pnDetail.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel8.ResumeLayout(false);
     this.panel8.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbHuy)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPurchases));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.panel3 = new System.Windows.Forms.Panel();
     this.comboSupName = new System.Windows.Forms.ComboBox();
     this.txtCusID = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.dpInvoice = new System.Windows.Forms.DateTimePicker();
     this.txtInvoiceId = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.txtPrice = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.txtTotalAmount = new System.Windows.Forms.TextBox();
     this.comboItem = new System.Windows.Forms.ComboBox();
     this.btnAdd = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.txtQty = new System.Windows.Forms.TextBox();
     this.lbQty = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.txtPurchaseTax = new System.Windows.Forms.TextBox();
     this.txtCartAmount = new System.Windows.Forms.TextBox();
     this.txtDiscount = new System.Windows.Forms.TextBox();
     this.txtAmount = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label59 = new System.Windows.Forms.Label();
     this.txtCartQty = new System.Windows.Forms.TextBox();
     this.txtTotalDuePayment = new System.Windows.Forms.TextBox();
     this.txtTotalDueQty = new System.Windows.Forms.TextBox();
     this.btnInvoiceSave = new System.Windows.Forms.Button();
     this.dataGridViewShopingCart = new System.Windows.Forms.DataGridView();
     this.Column19 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column28 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.txtComments = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.btnInvoiceUpdate = new System.Windows.Forms.Button();
     this.btnInvoice = new System.Windows.Forms.Button();
     this.btnNewRecord = new System.Windows.Forms.Button();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.GridSaleDetails = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column1 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.label40 = new System.Windows.Forms.Label();
     this.label55 = new System.Windows.Forms.Label();
     this.EndDate = new System.Windows.Forms.DateTimePicker();
     this.StartDate = new System.Windows.Forms.DateTimePicker();
     this.btnSearch = new System.Windows.Forms.Button();
     this.btnPrint = new System.Windows.Forms.Button();
     this.label6 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.ddItems = new System.Windows.Forms.ComboBox();
     this.ddSupplier = new System.Windows.Forms.ComboBox();
     this.txtCusTotalAmount = new System.Windows.Forms.TextBox();
     this.lbCusId = new System.Windows.Forms.Label();
     this.InvPrintDocument = new System.Drawing.Printing.PrintDocument();
     this.InvPrintDialog = new System.Windows.Forms.PrintDialog();
     this.InvPrintPreviewDialog = new System.Windows.Forms.PrintPreviewDialog();
     this.pnlMain = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.btnClose = new System.Windows.Forms.Button();
     this.label18 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.button7 = new System.Windows.Forms.Button();
     this.button5 = new System.Windows.Forms.Button();
     this.comboGetItem = new System.Windows.Forms.ComboBox();
     this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewShopingCart)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridSaleDetails)).BeginInit();
     this.pnlMain.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl1.Location = new System.Drawing.Point(0, 51);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(1178, 577);
     this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.White;
     this.tabPage1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPage1.Controls.Add(this.panel3);
     this.tabPage1.Controls.Add(this.panel1);
     this.tabPage1.Controls.Add(this.label9);
     this.tabPage1.Controls.Add(this.label16);
     this.tabPage1.Controls.Add(this.label8);
     this.tabPage1.Controls.Add(this.label26);
     this.tabPage1.Controls.Add(this.txtPurchaseTax);
     this.tabPage1.Controls.Add(this.txtCartAmount);
     this.tabPage1.Controls.Add(this.txtDiscount);
     this.tabPage1.Controls.Add(this.txtAmount);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.label59);
     this.tabPage1.Controls.Add(this.txtCartQty);
     this.tabPage1.Controls.Add(this.txtTotalDuePayment);
     this.tabPage1.Controls.Add(this.txtTotalDueQty);
     this.tabPage1.Controls.Add(this.btnInvoiceSave);
     this.tabPage1.Controls.Add(this.dataGridViewShopingCart);
     this.tabPage1.Controls.Add(this.txtComments);
     this.tabPage1.Controls.Add(this.label15);
     this.tabPage1.Controls.Add(this.btnInvoiceUpdate);
     this.tabPage1.Controls.Add(this.btnInvoice);
     this.tabPage1.Controls.Add(this.btnNewRecord);
     this.tabPage1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage1.Location = new System.Drawing.Point(4, 34);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(1170, 539);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Shopping Cart";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Transparent;
     this.panel3.Controls.Add(this.comboSupName);
     this.panel3.Controls.Add(this.txtCusID);
     this.panel3.Controls.Add(this.label1);
     this.panel3.Controls.Add(this.label14);
     this.panel3.Controls.Add(this.dpInvoice);
     this.panel3.Controls.Add(this.txtInvoiceId);
     this.panel3.Controls.Add(this.label5);
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1164, 53);
     this.panel3.TabIndex = 167;
     //
     // comboSupName
     //
     this.comboSupName.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboSupName.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboSupName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.comboSupName.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.comboSupName.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboSupName.FormattingEnabled = true;
     this.comboSupName.Location = new System.Drawing.Point(375, 9);
     this.comboSupName.Name = "comboSupName";
     this.comboSupName.Size = new System.Drawing.Size(253, 29);
     this.comboSupName.TabIndex = 0;
     //
     // txtCusID
     //
     this.txtCusID.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.txtCusID.BackColor = System.Drawing.Color.White;
     this.txtCusID.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCusID.ForeColor = System.Drawing.Color.Black;
     this.txtCusID.Location = new System.Drawing.Point(945, 9);
     this.txtCusID.Name = "txtCusID";
     this.txtCusID.Size = new System.Drawing.Size(100, 25);
     this.txtCusID.TabIndex = 160;
     this.txtCusID.TabStop = false;
     this.txtCusID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Segoe UI", 24F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(263, 45);
     this.label1.TabIndex = 0;
     this.label1.Text = "Prchase Vouchers";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.White;
     this.label14.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(634, 15);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(122, 17);
     this.label14.TabIndex = 164;
     this.label14.Text = "Sale Voucher Date :";
     //
     // dpInvoice
     //
     this.dpInvoice.CalendarFont = new System.Drawing.Font("Segoe UI Semibold", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dpInvoice.CustomFormat = "dd/MM/yyyy";
     this.dpInvoice.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dpInvoice.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dpInvoice.Location = new System.Drawing.Point(777, 9);
     this.dpInvoice.Name = "dpInvoice";
     this.dpInvoice.Size = new System.Drawing.Size(152, 25);
     this.dpInvoice.TabIndex = 163;
     this.dpInvoice.TabStop = false;
     //
     // txtInvoiceId
     //
     this.txtInvoiceId.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtInvoiceId.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInvoiceId.Location = new System.Drawing.Point(1051, 9);
     this.txtInvoiceId.Name = "txtInvoiceId";
     this.txtInvoiceId.Size = new System.Drawing.Size(97, 25);
     this.txtInvoiceId.TabIndex = 165;
     this.txtInvoiceId.TabStop = false;
     this.txtInvoiceId.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.White;
     this.label5.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(270, 15);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(109, 17);
     this.label5.TabIndex = 162;
     this.label5.Text = "Supplier Account:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.panel1.Controls.Add(this.txtPrice);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label10);
     this.panel1.Controls.Add(this.txtTotalAmount);
     this.panel1.Controls.Add(this.comboItem);
     this.panel1.Controls.Add(this.btnAdd);
     this.panel1.Controls.Add(this.label12);
     this.panel1.Controls.Add(this.txtQty);
     this.panel1.Controls.Add(this.lbQty);
     this.panel1.Location = new System.Drawing.Point(0, 48);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1178, 67);
     this.panel1.TabIndex = 208;
     //
     // txtPrice
     //
     this.txtPrice.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtPrice.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPrice.Location = new System.Drawing.Point(606, 31);
     this.txtPrice.Name = "txtPrice";
     this.txtPrice.Size = new System.Drawing.Size(217, 25);
     this.txtPrice.TabIndex = 181;
     this.txtPrice.TextChanged += new System.EventHandler(this.txtPrice_TextChanged);
     this.txtPrice.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPrice_KeyDown);
     this.txtPrice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPrice_KeyPress);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(603, 5);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(71, 17);
     this.label3.TabIndex = 189;
     this.label3.Text = "Sale Price :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(815, 5);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(119, 17);
     this.label10.TabIndex = 187;
     this.label10.Text = "Sub Total Amount :";
     //
     // txtTotalAmount
     //
     this.txtTotalAmount.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtTotalAmount.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotalAmount.Location = new System.Drawing.Point(818, 31);
     this.txtTotalAmount.Name = "txtTotalAmount";
     this.txtTotalAmount.ReadOnly = true;
     this.txtTotalAmount.Size = new System.Drawing.Size(237, 25);
     this.txtTotalAmount.TabIndex = 188;
     this.txtTotalAmount.TabStop = false;
     this.txtTotalAmount.Text = "0";
     this.txtTotalAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // comboItem
     //
     this.comboItem.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.comboItem.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboItem.BackColor = System.Drawing.Color.White;
     this.comboItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.comboItem.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboItem.FormattingEnabled = true;
     this.comboItem.Location = new System.Drawing.Point(38, 31);
     this.comboItem.Name = "comboItem";
     this.comboItem.Size = new System.Drawing.Size(326, 25);
     this.comboItem.TabIndex = 179;
     this.comboItem.SelectedIndexChanged += new System.EventHandler(this.comboItem_SelectedIndexChanged_1);
     this.comboItem.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboItem_KeyDown);
     //
     // btnAdd
     //
     this.btnAdd.BackColor = System.Drawing.Color.Transparent;
     this.btnAdd.FlatAppearance.BorderSize = 0;
     this.btnAdd.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Silver;
     this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnAdd.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAdd.ForeColor = System.Drawing.Color.White;
     this.btnAdd.Image = global::PHMS.Properties.Resources.Plus_26;
     this.btnAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(1074, 31);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(90, 29);
     this.btnAdd.TabIndex = 182;
     this.btnAdd.TabStop = false;
     this.btnAdd.Text = "Add";
     this.btnAdd.UseVisualStyleBackColor = false;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.White;
     this.label12.Location = new System.Drawing.Point(35, 5);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(78, 17);
     this.label12.TabIndex = 186;
     this.label12.Text = "Select Item :";
     //
     // txtQty
     //
     this.txtQty.BackColor = System.Drawing.Color.White;
     this.txtQty.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQty.Location = new System.Drawing.Point(385, 31);
     this.txtQty.Name = "txtQty";
     this.txtQty.Size = new System.Drawing.Size(224, 25);
     this.txtQty.TabIndex = 180;
     this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtQty.TextChanged += new System.EventHandler(this.txtQty_TextChanged_1);
     this.txtQty.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtQty_KeyDown);
     this.txtQty.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtQty_KeyPress);
     //
     // lbQty
     //
     this.lbQty.AutoSize = true;
     this.lbQty.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbQty.ForeColor = System.Drawing.Color.White;
     this.lbQty.Location = new System.Drawing.Point(378, 5);
     this.lbQty.Name = "lbQty";
     this.lbQty.Size = new System.Drawing.Size(63, 17);
     this.lbQty.TabIndex = 185;
     this.lbQty.Text = "Quantity :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location = new System.Drawing.Point(788, 459);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(65, 17);
     this.label9.TabIndex = 204;
     this.label9.Text = "Discount :";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.Black;
     this.label16.Location = new System.Drawing.Point(788, 387);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(90, 17);
     this.label16.TabIndex = 205;
     this.label16.Text = "Sub Amount  :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(788, 424);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(95, 17);
     this.label8.TabIndex = 205;
     this.label8.Text = "Purchase Tex  :";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.ForeColor = System.Drawing.Color.Black;
     this.label26.Location = new System.Drawing.Point(786, 492);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(93, 17);
     this.label26.TabIndex = 206;
     this.label26.Text = "Total Amount :";
     //
     // txtPurchaseTax
     //
     this.txtPurchaseTax.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtPurchaseTax.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPurchaseTax.ForeColor = System.Drawing.Color.Black;
     this.txtPurchaseTax.Location = new System.Drawing.Point(891, 418);
     this.txtPurchaseTax.Name = "txtPurchaseTax";
     this.txtPurchaseTax.Size = new System.Drawing.Size(226, 29);
     this.txtPurchaseTax.TabIndex = 201;
     this.txtPurchaseTax.Text = "0";
     this.txtPurchaseTax.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtPurchaseTax.TextChanged += new System.EventHandler(this.txtSaleTax_TextChanged);
     //
     // txtCartAmount
     //
     this.txtCartAmount.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtCartAmount.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCartAmount.ForeColor = System.Drawing.Color.Black;
     this.txtCartAmount.Location = new System.Drawing.Point(891, 381);
     this.txtCartAmount.Name = "txtCartAmount";
     this.txtCartAmount.Size = new System.Drawing.Size(226, 29);
     this.txtCartAmount.TabIndex = 201;
     this.txtCartAmount.Text = "0";
     this.txtCartAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtDiscount
     //
     this.txtDiscount.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtDiscount.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDiscount.ForeColor = System.Drawing.Color.Black;
     this.txtDiscount.Location = new System.Drawing.Point(891, 453);
     this.txtDiscount.Name = "txtDiscount";
     this.txtDiscount.Size = new System.Drawing.Size(226, 29);
     this.txtDiscount.TabIndex = 203;
     this.txtDiscount.TabStop = false;
     this.txtDiscount.Text = "0";
     this.txtDiscount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtDiscount.TextChanged += new System.EventHandler(this.txtDiscount_TextChanged);
     //
     // txtAmount
     //
     this.txtAmount.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtAmount.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAmount.ForeColor = System.Drawing.Color.LimeGreen;
     this.txtAmount.Location = new System.Drawing.Point(891, 488);
     this.txtAmount.Multiline = true;
     this.txtAmount.Name = "txtAmount";
     this.txtAmount.Size = new System.Drawing.Size(226, 29);
     this.txtAmount.TabIndex = 200;
     this.txtAmount.Text = "0";
     this.txtAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtAmount.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPayment_KeyPress);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Black;
     this.label11.Location = new System.Drawing.Point(252, 380);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(184, 17);
     this.label11.TabIndex = 197;
     this.label11.Text = "Customer Total Due Payment :";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(442, 380);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(84, 17);
     this.label4.TabIndex = 198;
     this.label4.Text = "Cart Quanty :";
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label59.ForeColor = System.Drawing.Color.Black;
     this.label59.Location = new System.Drawing.Point(15, 380);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(126, 17);
     this.label59.TabIndex = 195;
     this.label59.Text = "Available Qty Stock :";
     //
     // txtCartQty
     //
     this.txtCartQty.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtCartQty.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCartQty.ForeColor = System.Drawing.Color.Black;
     this.txtCartQty.Location = new System.Drawing.Point(436, 400);
     this.txtCartQty.Multiline = true;
     this.txtCartQty.Name = "txtCartQty";
     this.txtCartQty.Size = new System.Drawing.Size(238, 30);
     this.txtCartQty.TabIndex = 194;
     this.txtCartQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtTotalDuePayment
     //
     this.txtTotalDuePayment.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtTotalDuePayment.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotalDuePayment.ForeColor = System.Drawing.Color.Red;
     this.txtTotalDuePayment.Location = new System.Drawing.Point(226, 400);
     this.txtTotalDuePayment.Multiline = true;
     this.txtTotalDuePayment.Name = "txtTotalDuePayment";
     this.txtTotalDuePayment.Size = new System.Drawing.Size(215, 30);
     this.txtTotalDuePayment.TabIndex = 193;
     this.txtTotalDuePayment.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtTotalDueQty
     //
     this.txtTotalDueQty.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtTotalDueQty.Font = new System.Drawing.Font("Segoe UI Semibold", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotalDueQty.ForeColor = System.Drawing.Color.Red;
     this.txtTotalDueQty.Location = new System.Drawing.Point(18, 400);
     this.txtTotalDueQty.Multiline = true;
     this.txtTotalDueQty.Name = "txtTotalDueQty";
     this.txtTotalDueQty.Size = new System.Drawing.Size(211, 30);
     this.txtTotalDueQty.TabIndex = 191;
     this.txtTotalDueQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // btnInvoiceSave
     //
     this.btnInvoiceSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnInvoiceSave.FlatAppearance.BorderSize = 0;
     this.btnInvoiceSave.FlatAppearance.MouseOverBackColor = System.Drawing.Color.MediumAquamarine;
     this.btnInvoiceSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnInvoiceSave.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnInvoiceSave.ForeColor = System.Drawing.Color.White;
     this.btnInvoiceSave.Image = ((System.Drawing.Image)(resources.GetObject("btnInvoiceSave.Image")));
     this.btnInvoiceSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnInvoiceSave.Location = new System.Drawing.Point(273, 492);
     this.btnInvoiceSave.Name = "btnInvoiceSave";
     this.btnInvoiceSave.Size = new System.Drawing.Size(106, 36);
     this.btnInvoiceSave.TabIndex = 184;
     this.btnInvoiceSave.TabStop = false;
     this.btnInvoiceSave.Text = "Save";
     this.btnInvoiceSave.UseVisualStyleBackColor = false;
     this.btnInvoiceSave.Click += new System.EventHandler(this.btnInvoiceSave_Click);
     //
     // dataGridViewShopingCart
     //
     this.dataGridViewShopingCart.AllowUserToAddRows = false;
     this.dataGridViewShopingCart.AllowUserToDeleteRows = false;
     this.dataGridViewShopingCart.BackgroundColor = System.Drawing.Color.White;
     this.dataGridViewShopingCart.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewShopingCart.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column19,
     this.Column20,
     this.Column15,
     this.Column17,
     this.Column16,
     this.Column25,
     this.Column28});
     this.dataGridViewShopingCart.Location = new System.Drawing.Point(0, 115);
     this.dataGridViewShopingCart.Name = "dataGridViewShopingCart";
     this.dataGridViewShopingCart.Size = new System.Drawing.Size(1164, 259);
     this.dataGridViewShopingCart.TabIndex = 183;
     this.dataGridViewShopingCart.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewShopingCart_CellContentClick);
     //
     // Column19
     //
     this.Column19.HeaderText = "Return";
     this.Column19.Name = "Column19";
     this.Column19.Width = 50;
     //
     // Column20
     //
     this.Column20.HeaderText = "ItemID";
     this.Column20.Name = "Column20";
     this.Column20.Visible = false;
     this.Column20.Width = 50;
     //
     // Column15
     //
     this.Column15.HeaderText = "Item Description";
     this.Column15.Name = "Column15";
     this.Column15.Width = 500;
     //
     // Column17
     //
     dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.Column17.DefaultCellStyle = dataGridViewCellStyle41;
     this.Column17.HeaderText = "Quantity";
     this.Column17.Name = "Column17";
     this.Column17.Width = 150;
     //
     // Column16
     //
     this.Column16.HeaderText = "Sale Price";
     this.Column16.Name = "Column16";
     this.Column16.Width = 150;
     //
     // Column25
     //
     dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.Column25.DefaultCellStyle = dataGridViewCellStyle42;
     this.Column25.HeaderText = "Sub Total Amount";
     this.Column25.Name = "Column25";
     this.Column25.Width = 200;
     //
     // Column28
     //
     this.Column28.HeaderText = "Edit";
     this.Column28.Name = "Column28";
     this.Column28.Width = 50;
     //
     // txtComments
     //
     this.txtComments.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtComments.Location = new System.Drawing.Point(91, 432);
     this.txtComments.Multiline = true;
     this.txtComments.Name = "txtComments";
     this.txtComments.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtComments.Size = new System.Drawing.Size(584, 51);
     this.txtComments.TabIndex = 190;
     this.txtComments.TabStop = false;
     this.txtComments.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.Black;
     this.label15.Location = new System.Drawing.Point(15, 438);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(70, 17);
     this.label15.TabIndex = 189;
     this.label15.Text = "Comments";
     //
     // btnInvoiceUpdate
     //
     this.btnInvoiceUpdate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnInvoiceUpdate.FlatAppearance.BorderSize = 0;
     this.btnInvoiceUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.MediumAquamarine;
     this.btnInvoiceUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnInvoiceUpdate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnInvoiceUpdate.ForeColor = System.Drawing.Color.White;
     this.btnInvoiceUpdate.Image = ((System.Drawing.Image)(resources.GetObject("btnInvoiceUpdate.Image")));
     this.btnInvoiceUpdate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnInvoiceUpdate.Location = new System.Drawing.Point(385, 492);
     this.btnInvoiceUpdate.Name = "btnInvoiceUpdate";
     this.btnInvoiceUpdate.Size = new System.Drawing.Size(106, 36);
     this.btnInvoiceUpdate.TabIndex = 188;
     this.btnInvoiceUpdate.TabStop = false;
     this.btnInvoiceUpdate.Text = "Update";
     this.btnInvoiceUpdate.UseVisualStyleBackColor = false;
     this.btnInvoiceUpdate.Click += new System.EventHandler(this.btnInvoiceUpdate_Click);
     //
     // btnInvoice
     //
     this.btnInvoice.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnInvoice.FlatAppearance.BorderSize = 0;
     this.btnInvoice.FlatAppearance.MouseOverBackColor = System.Drawing.Color.MediumAquamarine;
     this.btnInvoice.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnInvoice.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnInvoice.ForeColor = System.Drawing.Color.White;
     this.btnInvoice.Image = ((System.Drawing.Image)(resources.GetObject("btnInvoice.Image")));
     this.btnInvoice.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnInvoice.Location = new System.Drawing.Point(497, 492);
     this.btnInvoice.Name = "btnInvoice";
     this.btnInvoice.Size = new System.Drawing.Size(131, 36);
     this.btnInvoice.TabIndex = 186;
     this.btnInvoice.Text = "Print Invoice";
     this.btnInvoice.UseVisualStyleBackColor = false;
     this.btnInvoice.Click += new System.EventHandler(this.btnInvoice_Click);
     //
     // btnNewRecord
     //
     this.btnNewRecord.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnNewRecord.FlatAppearance.BorderSize = 0;
     this.btnNewRecord.FlatAppearance.MouseOverBackColor = System.Drawing.Color.MediumAquamarine;
     this.btnNewRecord.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnNewRecord.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNewRecord.ForeColor = System.Drawing.Color.White;
     this.btnNewRecord.Image = ((System.Drawing.Image)(resources.GetObject("btnNewRecord.Image")));
     this.btnNewRecord.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnNewRecord.Location = new System.Drawing.Point(161, 492);
     this.btnNewRecord.Name = "btnNewRecord";
     this.btnNewRecord.Size = new System.Drawing.Size(106, 36);
     this.btnNewRecord.TabIndex = 187;
     this.btnNewRecord.TabStop = false;
     this.btnNewRecord.Text = "New";
     this.btnNewRecord.UseVisualStyleBackColor = false;
     this.btnNewRecord.Click += new System.EventHandler(this.btnNewRecord_Click);
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.Color.White;
     this.tabPage2.Controls.Add(this.GridSaleDetails);
     this.tabPage2.Controls.Add(this.label40);
     this.tabPage2.Controls.Add(this.label55);
     this.tabPage2.Controls.Add(this.EndDate);
     this.tabPage2.Controls.Add(this.StartDate);
     this.tabPage2.Controls.Add(this.btnSearch);
     this.tabPage2.Controls.Add(this.btnPrint);
     this.tabPage2.Controls.Add(this.label6);
     this.tabPage2.Controls.Add(this.label33);
     this.tabPage2.Controls.Add(this.ddItems);
     this.tabPage2.Controls.Add(this.ddSupplier);
     this.tabPage2.Controls.Add(this.txtCusTotalAmount);
     this.tabPage2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage2.Location = new System.Drawing.Point(4, 34);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Size = new System.Drawing.Size(1170, 539);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "View Purchases";
     //
     // GridSaleDetails
     //
     this.GridSaleDetails.AllowUserToAddRows = false;
     this.GridSaleDetails.AllowUserToDeleteRows = false;
     this.GridSaleDetails.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle43.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle43.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle43.ForeColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle43.SelectionBackColor = System.Drawing.Color.OrangeRed;
     dataGridViewCellStyle43.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle43.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.GridSaleDetails.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle43;
     this.GridSaleDetails.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.GridSaleDetails.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2,
     this.dataGridViewTextBoxColumn5,
     this.dataGridViewTextBoxColumn6,
     this.dataGridViewTextBoxColumn7,
     this.dataGridViewTextBoxColumn8,
     this.dataGridViewTextBoxColumn23,
     this.Column1,
     this.Column2});
     this.GridSaleDetails.Location = new System.Drawing.Point(9, 68);
     this.GridSaleDetails.Name = "GridSaleDetails";
     this.GridSaleDetails.Size = new System.Drawing.Size(1153, 433);
     this.GridSaleDetails.TabIndex = 160;
     this.GridSaleDetails.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridSaleDetails_CellContentClick);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "Invoice ID";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.Width = 70;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.HeaderText = "Date";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.Width = 130;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.HeaderText = "Supplier Name";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.Width = 200;
     //
     // dataGridViewTextBoxColumn6
     //
     dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle44;
     this.dataGridViewTextBoxColumn6.HeaderText = "Item Name";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.Width = 250;
     //
     // dataGridViewTextBoxColumn7
     //
     dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle45;
     this.dataGridViewTextBoxColumn7.HeaderText = "Quantity";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.Width = 90;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.HeaderText = "Rate";
     this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.Width = 90;
     //
     // dataGridViewTextBoxColumn23
     //
     dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle46.ForeColor = System.Drawing.Color.Black;
     this.dataGridViewTextBoxColumn23.DefaultCellStyle = dataGridViewCellStyle46;
     this.dataGridViewTextBoxColumn23.HeaderText = "SubTotal Amount";
     this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
     this.dataGridViewTextBoxColumn23.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn23.Width = 150;
     //
     // Column1
     //
     this.Column1.HeaderText = "Edit";
     this.Column1.Name = "Column1";
     this.Column1.Width = 60;
     //
     // Column2
     //
     this.Column2.HeaderText = "Delete";
     this.Column2.Name = "Column2";
     this.Column2.Width = 60;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.Black;
     this.label40.Location = new System.Drawing.Point(171, 8);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(72, 21);
     this.label40.TabIndex = 147;
     this.label40.Text = "End Date";
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label55.ForeColor = System.Drawing.Color.Black;
     this.label55.Location = new System.Drawing.Point(12, 8);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(78, 21);
     this.label55.TabIndex = 146;
     this.label55.Text = "Start Date";
     //
     // EndDate
     //
     this.EndDate.CalendarFont = new System.Drawing.Font("Segoe UI Semibold", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EndDate.CustomFormat = "dd/MM/yyyy";
     this.EndDate.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EndDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.EndDate.Location = new System.Drawing.Point(146, 34);
     this.EndDate.Name = "EndDate";
     this.EndDate.Size = new System.Drawing.Size(128, 29);
     this.EndDate.TabIndex = 145;
     //
     // StartDate
     //
     this.StartDate.CalendarFont = new System.Drawing.Font("Segoe UI Semibold", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StartDate.CustomFormat = "dd/MM/yyyy";
     this.StartDate.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StartDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.StartDate.Location = new System.Drawing.Point(16, 34);
     this.StartDate.Name = "StartDate";
     this.StartDate.Size = new System.Drawing.Size(124, 29);
     this.StartDate.TabIndex = 144;
     //
     // btnSearch
     //
     this.btnSearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(188)))), ((int)(((byte)(155)))));
     this.btnSearch.FlatAppearance.BorderColor = System.Drawing.Color.DarkGray;
     this.btnSearch.FlatAppearance.MouseOverBackColor = System.Drawing.Color.SeaGreen;
     this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSearch.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearch.ForeColor = System.Drawing.Color.White;
     this.btnSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSearch.Location = new System.Drawing.Point(651, 36);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(70, 29);
     this.btnSearch.TabIndex = 143;
     this.btnSearch.Text = "Search";
     this.btnSearch.UseVisualStyleBackColor = false;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // btnPrint
     //
     this.btnPrint.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(188)))), ((int)(((byte)(155)))));
     this.btnPrint.FlatAppearance.BorderColor = System.Drawing.Color.DarkGray;
     this.btnPrint.FlatAppearance.MouseOverBackColor = System.Drawing.Color.SeaGreen;
     this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnPrint.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrint.ForeColor = System.Drawing.Color.White;
     this.btnPrint.Image = global::PHMS.Properties.Resources.print;
     this.btnPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnPrint.Location = new System.Drawing.Point(727, 37);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(78, 28);
     this.btnPrint.TabIndex = 141;
     this.btnPrint.Text = "Print";
     this.btnPrint.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnPrint.UseVisualStyleBackColor = false;
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click_1);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(459, 7);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(89, 21);
     this.label6.TabIndex = 140;
     this.label6.Text = "Select Items";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.ForeColor = System.Drawing.Color.Black;
     this.label33.Location = new System.Drawing.Point(276, 7);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(107, 21);
     this.label33.TabIndex = 140;
     this.label33.Text = "Select Supplier";
     //
     // ddItems
     //
     this.ddItems.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.ddItems.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ddItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.ddItems.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ddItems.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ddItems.FormattingEnabled = true;
     this.ddItems.Location = new System.Drawing.Point(463, 35);
     this.ddItems.Name = "ddItems";
     this.ddItems.Size = new System.Drawing.Size(177, 29);
     this.ddItems.TabIndex = 139;
     //
     // ddSupplier
     //
     this.ddSupplier.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.ddSupplier.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ddSupplier.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.ddSupplier.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ddSupplier.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ddSupplier.FormattingEnabled = true;
     this.ddSupplier.Location = new System.Drawing.Point(280, 34);
     this.ddSupplier.Name = "ddSupplier";
     this.ddSupplier.Size = new System.Drawing.Size(177, 29);
     this.ddSupplier.TabIndex = 139;
     //
     // txtCusTotalAmount
     //
     this.txtCusTotalAmount.BackColor = System.Drawing.Color.White;
     this.txtCusTotalAmount.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCusTotalAmount.Location = new System.Drawing.Point(959, 507);
     this.txtCusTotalAmount.Name = "txtCusTotalAmount";
     this.txtCusTotalAmount.Size = new System.Drawing.Size(207, 29);
     this.txtCusTotalAmount.TabIndex = 107;
     this.txtCusTotalAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // lbCusId
     //
     this.lbCusId.AutoSize = true;
     this.lbCusId.BackColor = System.Drawing.Color.Transparent;
     this.lbCusId.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCusId.ForeColor = System.Drawing.Color.Transparent;
     this.lbCusId.Location = new System.Drawing.Point(7, 751);
     this.lbCusId.Name = "lbCusId";
     this.lbCusId.Size = new System.Drawing.Size(44, 15);
     this.lbCusId.TabIndex = 132;
     this.lbCusId.Text = "label15";
     //
     // InvPrintDialog
     //
     this.InvPrintDialog.UseEXDialog = true;
     //
     // InvPrintPreviewDialog
     //
     this.InvPrintPreviewDialog.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.InvPrintPreviewDialog.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.InvPrintPreviewDialog.ClientSize = new System.Drawing.Size(400, 300);
     this.InvPrintPreviewDialog.Enabled = true;
     this.InvPrintPreviewDialog.Icon = ((System.Drawing.Icon)(resources.GetObject("InvPrintPreviewDialog.Icon")));
     this.InvPrintPreviewDialog.Name = "InvPrintPreviewDialog";
     this.InvPrintPreviewDialog.Visible = false;
     //
     // pnlMain
     //
     this.pnlMain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlMain.Controls.Add(this.panel2);
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.Location = new System.Drawing.Point(0, 0);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(1182, 628);
     this.pnlMain.TabIndex = 175;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.LightSkyBlue;
     this.panel2.Controls.Add(this.btnClose);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Location = new System.Drawing.Point(11, 7);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1162, 41);
     this.panel2.TabIndex = 177;
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.BackgroundImage = global::PHMS.Properties.Resources.close_2;
     this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnClose.FlatAppearance.BorderSize = 0;
     this.btnClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor = System.Drawing.Color.Black;
     this.btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(1123, 0);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(39, 41);
     this.btnClose.TabIndex = 174;
     this.btnClose.UseVisualStyleBackColor = false;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click_1);
     //
     // label18
     //
     this.label18.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(371, 0);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(310, 39);
     this.label18.TabIndex = 3;
     this.label18.Text = "Purchase Form";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label47.ForeColor = System.Drawing.Color.Black;
     this.label47.Location = new System.Drawing.Point(23, 20);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(0, 21);
     this.label47.TabIndex = 93;
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(0, 0);
     this.button7.Name = "button7";
     this.button7.Size = new System.Drawing.Size(75, 23);
     this.button7.TabIndex = 0;
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(0, 0);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(75, 23);
     this.button5.TabIndex = 0;
     //
     // comboGetItem
     //
     this.comboGetItem.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.comboGetItem.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboGetItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.comboGetItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.comboGetItem.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboGetItem.FormattingEnabled = true;
     this.comboGetItem.Items.AddRange(new object[] {
     "Cotton Cake",
     "Cotton Oil",
     "Cotton Dirty",
     "Cotton Seed"});
     this.comboGetItem.Location = new System.Drawing.Point(19, 49);
     this.comboGetItem.Name = "comboGetItem";
     this.comboGetItem.Size = new System.Drawing.Size(254, 29);
     this.comboGetItem.TabIndex = 141;
     //
     // dataGridViewTextBoxColumn16
     //
     dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle47.ForeColor = System.Drawing.Color.Black;
     this.dataGridViewTextBoxColumn16.DefaultCellStyle = dataGridViewCellStyle47;
     this.dataGridViewTextBoxColumn16.HeaderText = "SubTotal Amount";
     this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
     this.dataGridViewTextBoxColumn16.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn16.Width = 130;
     //
     // dataGridViewTextBoxColumn15
     //
     dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn15.DefaultCellStyle = dataGridViewCellStyle48;
     this.dataGridViewTextBoxColumn15.HeaderText = "Weight";
     this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
     this.dataGridViewTextBoxColumn15.Width = 110;
     //
     // dataGridViewTextBoxColumn14
     //
     this.dataGridViewTextBoxColumn14.HeaderText = "Rate";
     this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
     this.dataGridViewTextBoxColumn14.Width = 110;
     //
     // dataGridViewTextBoxColumn13
     //
     dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn13.DefaultCellStyle = dataGridViewCellStyle49;
     this.dataGridViewTextBoxColumn13.HeaderText = "Quantity";
     this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
     this.dataGridViewTextBoxColumn13.Width = 110;
     //
     // dataGridViewTextBoxColumn12
     //
     dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle50;
     this.dataGridViewTextBoxColumn12.HeaderText = "Item Name";
     this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
     this.dataGridViewTextBoxColumn12.Width = 370;
     //
     // Column13
     //
     this.Column13.HeaderText = "Item Code";
     this.Column13.Name = "Column13";
     //
     // dataGridViewTextBoxColumn11
     //
     this.dataGridViewTextBoxColumn11.HeaderText = "Customer Name";
     this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
     this.dataGridViewTextBoxColumn11.Width = 180;
     //
     // dataGridViewTextBoxColumn10
     //
     this.dataGridViewTextBoxColumn10.HeaderText = "Date";
     this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
     this.dataGridViewTextBoxColumn10.Width = 120;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.HeaderText = "Invoice ID";
     this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
     this.dataGridViewTextBoxColumn9.Width = 70;
     //
     // frmPurchases
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1182, 628);
     this.Controls.Add(this.lbCusId);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.pnlMain);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPurchases";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmCottonCake";
     this.Load += new System.EventHandler(this.frmCottonCake_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewShopingCart)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridSaleDetails)).EndInit();
     this.pnlMain.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(SLX_UserControl));
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.panelAccounts = new System.Windows.Forms.Panel();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnAcctMinimize = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtAccountName = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.txtAccountEmployees = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.txtAccountIndustry = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.txtAccountMainPhone = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.txtAccountRegion = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.txtAccountRevenue = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.txtAccountStatus = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtAccountType = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.txtAccountSubType = new System.Windows.Forms.TextBox();
     this.panelContacts = new System.Windows.Forms.Panel();
     this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnContMinimize = new System.Windows.Forms.Button();
     this.label11 = new System.Windows.Forms.Label();
     this.btnUpdateContact = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.txtContactFirstName = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtContactLastName = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.txtContactTitle = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtContactWorkPhone = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtContactMobilePhone = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtContactType = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.txtContactStatus = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txtContactMgr = new System.Windows.Forms.TextBox();
     this.panelLeads = new System.Windows.Forms.Panel();
     this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnLeadMinimize = new System.Windows.Forms.Button();
     this.label7 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.txtLeadFirstName = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtLeadLastName = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.txtLeadCompany = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.txtLeadWorkPhone = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.txtLeadTitle = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txtLeadIndustry = new System.Windows.Forms.TextBox();
     this.panelAddressMap = new System.Windows.Forms.Panel();
     this.label30 = new System.Windows.Forms.Label();
     this.btnGoogleMapMinimize = new System.Windows.Forms.Button();
     this.webBrowserAddress = new System.Windows.Forms.WebBrowser();
     this.panelOppoList = new System.Windows.Forms.Panel();
     this.btnOppoListMinimize = new System.Windows.Forms.Button();
     this.dgvOpportunities = new System.Windows.Forms.DataGridView();
     this.grdCmdOpen = new System.Windows.Forms.DataGridViewButtonColumn();
     this.label27 = new System.Windows.Forms.Label();
     this.panelTicketList = new System.Windows.Forms.Panel();
     this.btnTicketListMinimize = new System.Windows.Forms.Button();
     this.dgvTickets = new System.Windows.Forms.DataGridView();
     this.Goto = new System.Windows.Forms.DataGridViewButtonColumn();
     this.label28 = new System.Windows.Forms.Label();
     this.panelControls = new System.Windows.Forms.Panel();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.panelOpportunityChart = new System.Windows.Forms.Panel();
     this.btnOppoChartMinimize = new System.Windows.Forms.Button();
     this.picBoxOpportunity = new System.Windows.Forms.PictureBox();
     this.label29 = new System.Windows.Forms.Label();
     this.panelERP = new System.Windows.Forms.Panel();
     this.picBoxERP = new System.Windows.Forms.PictureBox();
     this.label31 = new System.Windows.Forms.Label();
     this.btnERPMinimized = new System.Windows.Forms.Button();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.flowLayoutPanel1.SuspendLayout();
     this.panelAccounts.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.panelContacts.SuspendLayout();
     this.flowLayoutPanel3.SuspendLayout();
     this.panelLeads.SuspendLayout();
     this.flowLayoutPanel4.SuspendLayout();
     this.panelAddressMap.SuspendLayout();
     this.panelOppoList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvOpportunities)).BeginInit();
     this.panelTicketList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTickets)).BeginInit();
     this.panelControls.SuspendLayout();
     this.panelOpportunityChart.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picBoxOpportunity)).BeginInit();
     this.panelERP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picBoxERP)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AllowDrop = true;
     this.flowLayoutPanel1.AutoScroll = true;
     this.flowLayoutPanel1.Controls.Add(this.panelAccounts);
     this.flowLayoutPanel1.Controls.Add(this.panelContacts);
     this.flowLayoutPanel1.Controls.Add(this.panelLeads);
     this.flowLayoutPanel1.Controls.Add(this.panelAddressMap);
     this.flowLayoutPanel1.Controls.Add(this.panelOppoList);
     this.flowLayoutPanel1.Controls.Add(this.panelTicketList);
     this.flowLayoutPanel1.Controls.Add(this.panelControls);
     this.flowLayoutPanel1.Controls.Add(this.panelOpportunityChart);
     this.flowLayoutPanel1.Controls.Add(this.panelERP);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(264, 1505);
     this.flowLayoutPanel1.TabIndex = 0;
     this.flowLayoutPanel1.DragDrop += new System.Windows.Forms.DragEventHandler(this.flowLayoutPanel1_DragDrop);
     this.flowLayoutPanel1.DragEnter += new System.Windows.Forms.DragEventHandler(this.flowLayoutPanel1_DragEnter);
     //
     // panelAccounts
     //
     this.panelAccounts.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelAccounts.Controls.Add(this.flowLayoutPanel2);
     this.panelAccounts.Location = new System.Drawing.Point(3, 3);
     this.panelAccounts.Name = "panelAccounts";
     this.panelAccounts.Size = new System.Drawing.Size(258, 216);
     this.panelAccounts.TabIndex = 3;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.AutoScroll = true;
     this.flowLayoutPanel2.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.flowLayoutPanel2.Controls.Add(this.btnAcctMinimize);
     this.flowLayoutPanel2.Controls.Add(this.label1);
     this.flowLayoutPanel2.Controls.Add(this.label6);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountName);
     this.flowLayoutPanel2.Controls.Add(this.label16);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountEmployees);
     this.flowLayoutPanel2.Controls.Add(this.label17);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountIndustry);
     this.flowLayoutPanel2.Controls.Add(this.label18);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountMainPhone);
     this.flowLayoutPanel2.Controls.Add(this.label20);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountRegion);
     this.flowLayoutPanel2.Controls.Add(this.label21);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountRevenue);
     this.flowLayoutPanel2.Controls.Add(this.label15);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountStatus);
     this.flowLayoutPanel2.Controls.Add(this.label23);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountType);
     this.flowLayoutPanel2.Controls.Add(this.label22);
     this.flowLayoutPanel2.Controls.Add(this.txtAccountSubType);
     this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel2.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(256, 214);
     this.flowLayoutPanel2.TabIndex = 0;
     //
     // btnAcctMinimize
     //
     this.btnAcctMinimize.Location = new System.Drawing.Point(3, 3);
     this.btnAcctMinimize.Name = "btnAcctMinimize";
     this.btnAcctMinimize.Size = new System.Drawing.Size(22, 23);
     this.btnAcctMinimize.TabIndex = 27;
     this.btnAcctMinimize.Text = "--";
     this.btnAcctMinimize.UseVisualStyleBackColor = true;
     this.btnAcctMinimize.Click += new System.EventHandler(this.btnAcctMinimize_Click);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(31, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(175, 20);
     this.label1.TabIndex = 3;
     this.label1.Text = "Account Information:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(3, 29);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(60, 13);
     this.label6.TabIndex = 4;
     this.label6.Text = "Account:";
     //
     // txtAccountName
     //
     this.txtAccountName.Location = new System.Drawing.Point(69, 32);
     this.txtAccountName.Name = "txtAccountName";
     this.txtAccountName.Size = new System.Drawing.Size(161, 20);
     this.txtAccountName.TabIndex = 5;
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(3, 55);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(60, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "Employees:";
     //
     // txtAccountEmployees
     //
     this.txtAccountEmployees.Location = new System.Drawing.Point(69, 58);
     this.txtAccountEmployees.Name = "txtAccountEmployees";
     this.txtAccountEmployees.Size = new System.Drawing.Size(161, 20);
     this.txtAccountEmployees.TabIndex = 9;
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(3, 81);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(60, 13);
     this.label17.TabIndex = 10;
     this.label17.Text = "Industry:";
     //
     // txtAccountIndustry
     //
     this.txtAccountIndustry.Location = new System.Drawing.Point(69, 84);
     this.txtAccountIndustry.Name = "txtAccountIndustry";
     this.txtAccountIndustry.Size = new System.Drawing.Size(161, 20);
     this.txtAccountIndustry.TabIndex = 11;
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(3, 107);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(60, 13);
     this.label18.TabIndex = 12;
     this.label18.Text = "Phone:";
     //
     // txtAccountMainPhone
     //
     this.txtAccountMainPhone.Location = new System.Drawing.Point(69, 110);
     this.txtAccountMainPhone.Name = "txtAccountMainPhone";
     this.txtAccountMainPhone.Size = new System.Drawing.Size(161, 20);
     this.txtAccountMainPhone.TabIndex = 13;
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(3, 133);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(60, 13);
     this.label20.TabIndex = 16;
     this.label20.Text = "Region:";
     //
     // txtAccountRegion
     //
     this.txtAccountRegion.Location = new System.Drawing.Point(69, 136);
     this.txtAccountRegion.Name = "txtAccountRegion";
     this.txtAccountRegion.Size = new System.Drawing.Size(161, 20);
     this.txtAccountRegion.TabIndex = 17;
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(3, 159);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(60, 13);
     this.label21.TabIndex = 18;
     this.label21.Text = "Revenue:";
     //
     // txtAccountRevenue
     //
     this.txtAccountRevenue.Location = new System.Drawing.Point(69, 162);
     this.txtAccountRevenue.Name = "txtAccountRevenue";
     this.txtAccountRevenue.Size = new System.Drawing.Size(161, 20);
     this.txtAccountRevenue.TabIndex = 19;
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(3, 185);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 25;
     this.label15.Text = "Status:";
     //
     // txtAccountStatus
     //
     this.txtAccountStatus.Location = new System.Drawing.Point(69, 188);
     this.txtAccountStatus.Name = "txtAccountStatus";
     this.txtAccountStatus.Size = new System.Drawing.Size(161, 20);
     this.txtAccountStatus.TabIndex = 26;
     //
     // label23
     //
     this.label23.Location = new System.Drawing.Point(3, 211);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(60, 13);
     this.label23.TabIndex = 22;
     this.label23.Text = "Type:";
     //
     // txtAccountType
     //
     this.txtAccountType.Location = new System.Drawing.Point(69, 214);
     this.txtAccountType.Name = "txtAccountType";
     this.txtAccountType.Size = new System.Drawing.Size(161, 20);
     this.txtAccountType.TabIndex = 23;
     //
     // label22
     //
     this.label22.Location = new System.Drawing.Point(3, 237);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(60, 13);
     this.label22.TabIndex = 20;
     this.label22.Text = "SubType:";
     //
     // txtAccountSubType
     //
     this.txtAccountSubType.Location = new System.Drawing.Point(69, 240);
     this.txtAccountSubType.Name = "txtAccountSubType";
     this.txtAccountSubType.Size = new System.Drawing.Size(161, 20);
     this.txtAccountSubType.TabIndex = 21;
     //
     // panelContacts
     //
     this.panelContacts.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelContacts.Controls.Add(this.flowLayoutPanel3);
     this.panelContacts.Location = new System.Drawing.Point(3, 225);
     this.panelContacts.Name = "panelContacts";
     this.panelContacts.Size = new System.Drawing.Size(258, 216);
     this.panelContacts.TabIndex = 4;
     //
     // flowLayoutPanel3
     //
     this.flowLayoutPanel3.AutoScroll = true;
     this.flowLayoutPanel3.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.flowLayoutPanel3.Controls.Add(this.btnContMinimize);
     this.flowLayoutPanel3.Controls.Add(this.label11);
     this.flowLayoutPanel3.Controls.Add(this.btnUpdateContact);
     this.flowLayoutPanel3.Controls.Add(this.label2);
     this.flowLayoutPanel3.Controls.Add(this.txtContactFirstName);
     this.flowLayoutPanel3.Controls.Add(this.label5);
     this.flowLayoutPanel3.Controls.Add(this.txtContactLastName);
     this.flowLayoutPanel3.Controls.Add(this.label13);
     this.flowLayoutPanel3.Controls.Add(this.txtContactTitle);
     this.flowLayoutPanel3.Controls.Add(this.label10);
     this.flowLayoutPanel3.Controls.Add(this.txtContactWorkPhone);
     this.flowLayoutPanel3.Controls.Add(this.label4);
     this.flowLayoutPanel3.Controls.Add(this.txtContactMobilePhone);
     this.flowLayoutPanel3.Controls.Add(this.label3);
     this.flowLayoutPanel3.Controls.Add(this.txtContactType);
     this.flowLayoutPanel3.Controls.Add(this.label12);
     this.flowLayoutPanel3.Controls.Add(this.txtContactStatus);
     this.flowLayoutPanel3.Controls.Add(this.label14);
     this.flowLayoutPanel3.Controls.Add(this.txtContactMgr);
     this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel3.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel3.Name = "flowLayoutPanel3";
     this.flowLayoutPanel3.Size = new System.Drawing.Size(256, 214);
     this.flowLayoutPanel3.TabIndex = 0;
     //
     // btnContMinimize
     //
     this.btnContMinimize.Location = new System.Drawing.Point(3, 3);
     this.btnContMinimize.Name = "btnContMinimize";
     this.btnContMinimize.Size = new System.Drawing.Size(22, 23);
     this.btnContMinimize.TabIndex = 28;
     this.btnContMinimize.Text = "--";
     this.btnContMinimize.UseVisualStyleBackColor = true;
     this.btnContMinimize.Click += new System.EventHandler(this.btnContMinimize_Click);
     //
     // label11
     //
     this.label11.Dock = System.Windows.Forms.DockStyle.Top;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(31, 0);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(145, 20);
     this.label11.TabIndex = 22;
     this.label11.Text = "Contact Information:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // btnUpdateContact
     //
     this.btnUpdateContact.Location = new System.Drawing.Point(182, 3);
     this.btnUpdateContact.Name = "btnUpdateContact";
     this.btnUpdateContact.Size = new System.Drawing.Size(50, 23);
     this.btnUpdateContact.TabIndex = 27;
     this.btnUpdateContact.Text = "Update";
     this.btnUpdateContact.UseVisualStyleBackColor = true;
     this.btnUpdateContact.Click += new System.EventHandler(this.btnUpdateContact_Click);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(3, 29);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 13);
     this.label2.TabIndex = 20;
     this.label2.Text = "First Name:";
     //
     // txtContactFirstName
     //
     this.txtContactFirstName.Location = new System.Drawing.Point(69, 32);
     this.txtContactFirstName.Name = "txtContactFirstName";
     this.txtContactFirstName.Size = new System.Drawing.Size(161, 20);
     this.txtContactFirstName.TabIndex = 14;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(3, 55);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(60, 13);
     this.label5.TabIndex = 12;
     this.label5.Text = "Last Name:";
     //
     // txtContactLastName
     //
     this.txtContactLastName.Location = new System.Drawing.Point(69, 58);
     this.txtContactLastName.Name = "txtContactLastName";
     this.txtContactLastName.Size = new System.Drawing.Size(161, 20);
     this.txtContactLastName.TabIndex = 15;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(3, 81);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(60, 13);
     this.label13.TabIndex = 23;
     this.label13.Text = "Title:";
     //
     // txtContactTitle
     //
     this.txtContactTitle.Location = new System.Drawing.Point(69, 84);
     this.txtContactTitle.Name = "txtContactTitle";
     this.txtContactTitle.Size = new System.Drawing.Size(161, 20);
     this.txtContactTitle.TabIndex = 24;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(3, 107);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(60, 13);
     this.label10.TabIndex = 21;
     this.label10.Text = "Work:";
     //
     // txtContactWorkPhone
     //
     this.txtContactWorkPhone.Location = new System.Drawing.Point(69, 110);
     this.txtContactWorkPhone.Name = "txtContactWorkPhone";
     this.txtContactWorkPhone.Size = new System.Drawing.Size(161, 20);
     this.txtContactWorkPhone.TabIndex = 19;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(3, 133);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(60, 13);
     this.label4.TabIndex = 11;
     this.label4.Text = "Mobile:";
     //
     // txtContactMobilePhone
     //
     this.txtContactMobilePhone.Location = new System.Drawing.Point(69, 136);
     this.txtContactMobilePhone.Name = "txtContactMobilePhone";
     this.txtContactMobilePhone.Size = new System.Drawing.Size(161, 20);
     this.txtContactMobilePhone.TabIndex = 18;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 159);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(60, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Type:";
     //
     // txtContactType
     //
     this.txtContactType.Location = new System.Drawing.Point(69, 162);
     this.txtContactType.Name = "txtContactType";
     this.txtContactType.Size = new System.Drawing.Size(161, 20);
     this.txtContactType.TabIndex = 3;
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(3, 185);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(60, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "Status:";
     //
     // txtContactStatus
     //
     this.txtContactStatus.Location = new System.Drawing.Point(69, 188);
     this.txtContactStatus.Name = "txtContactStatus";
     this.txtContactStatus.Size = new System.Drawing.Size(161, 20);
     this.txtContactStatus.TabIndex = 2;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(3, 211);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(60, 13);
     this.label14.TabIndex = 25;
     this.label14.Text = "Acct. Mgr:";
     //
     // txtContactMgr
     //
     this.txtContactMgr.Location = new System.Drawing.Point(69, 214);
     this.txtContactMgr.Name = "txtContactMgr";
     this.txtContactMgr.Size = new System.Drawing.Size(161, 20);
     this.txtContactMgr.TabIndex = 26;
     //
     // panelLeads
     //
     this.panelLeads.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelLeads.Controls.Add(this.flowLayoutPanel4);
     this.panelLeads.Location = new System.Drawing.Point(3, 447);
     this.panelLeads.Name = "panelLeads";
     this.panelLeads.Size = new System.Drawing.Size(258, 216);
     this.panelLeads.TabIndex = 6;
     //
     // flowLayoutPanel4
     //
     this.flowLayoutPanel4.AutoScroll = true;
     this.flowLayoutPanel4.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.flowLayoutPanel4.Controls.Add(this.btnLeadMinimize);
     this.flowLayoutPanel4.Controls.Add(this.label7);
     this.flowLayoutPanel4.Controls.Add(this.label9);
     this.flowLayoutPanel4.Controls.Add(this.txtLeadFirstName);
     this.flowLayoutPanel4.Controls.Add(this.label8);
     this.flowLayoutPanel4.Controls.Add(this.txtLeadLastName);
     this.flowLayoutPanel4.Controls.Add(this.label24);
     this.flowLayoutPanel4.Controls.Add(this.txtLeadCompany);
     this.flowLayoutPanel4.Controls.Add(this.label26);
     this.flowLayoutPanel4.Controls.Add(this.txtLeadWorkPhone);
     this.flowLayoutPanel4.Controls.Add(this.label19);
     this.flowLayoutPanel4.Controls.Add(this.txtLeadTitle);
     this.flowLayoutPanel4.Controls.Add(this.label25);
     this.flowLayoutPanel4.Controls.Add(this.txtLeadIndustry);
     this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel4.Name = "flowLayoutPanel4";
     this.flowLayoutPanel4.Size = new System.Drawing.Size(256, 214);
     this.flowLayoutPanel4.TabIndex = 0;
     //
     // btnLeadMinimize
     //
     this.btnLeadMinimize.Location = new System.Drawing.Point(3, 3);
     this.btnLeadMinimize.Name = "btnLeadMinimize";
     this.btnLeadMinimize.Size = new System.Drawing.Size(22, 23);
     this.btnLeadMinimize.TabIndex = 29;
     this.btnLeadMinimize.Text = "--";
     this.btnLeadMinimize.UseVisualStyleBackColor = true;
     this.btnLeadMinimize.Click += new System.EventHandler(this.btnLeadMinimize_Click);
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(31, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(200, 20);
     this.label7.TabIndex = 10;
     this.label7.Text = "Lead Information:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(3, 29);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(60, 13);
     this.label9.TabIndex = 11;
     this.label9.Text = "First Name:";
     //
     // txtLeadFirstName
     //
     this.txtLeadFirstName.Location = new System.Drawing.Point(69, 32);
     this.txtLeadFirstName.Name = "txtLeadFirstName";
     this.txtLeadFirstName.Size = new System.Drawing.Size(161, 20);
     this.txtLeadFirstName.TabIndex = 13;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(3, 55);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 13);
     this.label8.TabIndex = 12;
     this.label8.Text = "Last Name:";
     //
     // txtLeadLastName
     //
     this.txtLeadLastName.Location = new System.Drawing.Point(70, 58);
     this.txtLeadLastName.Name = "txtLeadLastName";
     this.txtLeadLastName.Size = new System.Drawing.Size(161, 20);
     this.txtLeadLastName.TabIndex = 14;
     //
     // label24
     //
     this.label24.Location = new System.Drawing.Point(3, 81);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(61, 13);
     this.label24.TabIndex = 17;
     this.label24.Text = "Company:";
     //
     // txtLeadCompany
     //
     this.txtLeadCompany.Location = new System.Drawing.Point(70, 84);
     this.txtLeadCompany.Name = "txtLeadCompany";
     this.txtLeadCompany.Size = new System.Drawing.Size(161, 20);
     this.txtLeadCompany.TabIndex = 18;
     //
     // label26
     //
     this.label26.Location = new System.Drawing.Point(3, 107);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(61, 13);
     this.label26.TabIndex = 21;
     this.label26.Text = "Phone:";
     //
     // txtLeadWorkPhone
     //
     this.txtLeadWorkPhone.Location = new System.Drawing.Point(70, 110);
     this.txtLeadWorkPhone.Name = "txtLeadWorkPhone";
     this.txtLeadWorkPhone.Size = new System.Drawing.Size(161, 20);
     this.txtLeadWorkPhone.TabIndex = 22;
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(3, 133);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(61, 13);
     this.label19.TabIndex = 15;
     this.label19.Text = "Title:";
     //
     // txtLeadTitle
     //
     this.txtLeadTitle.Location = new System.Drawing.Point(70, 136);
     this.txtLeadTitle.Name = "txtLeadTitle";
     this.txtLeadTitle.Size = new System.Drawing.Size(161, 20);
     this.txtLeadTitle.TabIndex = 16;
     //
     // label25
     //
     this.label25.Location = new System.Drawing.Point(3, 159);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(61, 13);
     this.label25.TabIndex = 19;
     this.label25.Text = "Industry:";
     //
     // txtLeadIndustry
     //
     this.txtLeadIndustry.Location = new System.Drawing.Point(70, 162);
     this.txtLeadIndustry.Name = "txtLeadIndustry";
     this.txtLeadIndustry.Size = new System.Drawing.Size(161, 20);
     this.txtLeadIndustry.TabIndex = 20;
     //
     // panelAddressMap
     //
     this.panelAddressMap.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.panelAddressMap.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelAddressMap.Controls.Add(this.label30);
     this.panelAddressMap.Controls.Add(this.btnGoogleMapMinimize);
     this.panelAddressMap.Controls.Add(this.webBrowserAddress);
     this.panelAddressMap.Location = new System.Drawing.Point(3, 669);
     this.panelAddressMap.Name = "panelAddressMap";
     this.panelAddressMap.Size = new System.Drawing.Size(258, 216);
     this.panelAddressMap.TabIndex = 5;
     //
     // label30
     //
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(30, 4);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(200, 20);
     this.label30.TabIndex = 31;
     this.label30.Text = "Google Map:";
     this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnGoogleMapMinimize
     //
     this.btnGoogleMapMinimize.Location = new System.Drawing.Point(3, 3);
     this.btnGoogleMapMinimize.Name = "btnGoogleMapMinimize";
     this.btnGoogleMapMinimize.Size = new System.Drawing.Size(22, 23);
     this.btnGoogleMapMinimize.TabIndex = 30;
     this.btnGoogleMapMinimize.Text = "--";
     this.btnGoogleMapMinimize.UseVisualStyleBackColor = true;
     this.btnGoogleMapMinimize.Click += new System.EventHandler(this.btnGoogleMapMinimize_Click);
     //
     // webBrowserAddress
     //
     this.webBrowserAddress.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.webBrowserAddress.Location = new System.Drawing.Point(0, 35);
     this.webBrowserAddress.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserAddress.Name = "webBrowserAddress";
     this.webBrowserAddress.Size = new System.Drawing.Size(256, 179);
     this.webBrowserAddress.TabIndex = 2;
     //
     // panelOppoList
     //
     this.panelOppoList.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.panelOppoList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelOppoList.Controls.Add(this.btnOppoListMinimize);
     this.panelOppoList.Controls.Add(this.dgvOpportunities);
     this.panelOppoList.Controls.Add(this.label27);
     this.panelOppoList.Location = new System.Drawing.Point(3, 891);
     this.panelOppoList.Name = "panelOppoList";
     this.panelOppoList.Size = new System.Drawing.Size(258, 216);
     this.panelOppoList.TabIndex = 7;
     //
     // btnOppoListMinimize
     //
     this.btnOppoListMinimize.Location = new System.Drawing.Point(3, 3);
     this.btnOppoListMinimize.Name = "btnOppoListMinimize";
     this.btnOppoListMinimize.Size = new System.Drawing.Size(22, 23);
     this.btnOppoListMinimize.TabIndex = 29;
     this.btnOppoListMinimize.Text = "--";
     this.btnOppoListMinimize.UseVisualStyleBackColor = true;
     this.btnOppoListMinimize.Click += new System.EventHandler(this.btnOppoListMinimize_Click);
     //
     // dgvOpportunities
     //
     this.dgvOpportunities.AllowUserToAddRows = false;
     this.dgvOpportunities.AllowUserToDeleteRows = false;
     this.dgvOpportunities.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvOpportunities.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.grdCmdOpen});
     this.dgvOpportunities.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dgvOpportunities.Location = new System.Drawing.Point(0, 32);
     this.dgvOpportunities.MultiSelect = false;
     this.dgvOpportunities.Name = "dgvOpportunities";
     this.dgvOpportunities.ReadOnly = true;
     this.dgvOpportunities.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.dgvOpportunities.RowHeadersVisible = false;
     this.dgvOpportunities.Size = new System.Drawing.Size(256, 182);
     this.dgvOpportunities.TabIndex = 0;
     this.dgvOpportunities.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvOpportunities_CellContentClick);
     //
     // grdCmdOpen
     //
     this.grdCmdOpen.FillWeight = 90F;
     this.grdCmdOpen.HeaderText = "";
     this.grdCmdOpen.Name = "grdCmdOpen";
     this.grdCmdOpen.ReadOnly = true;
     this.grdCmdOpen.Text = "Goto";
     this.grdCmdOpen.UseColumnTextForButtonValue = true;
     this.grdCmdOpen.Width = 35;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(31, 8);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(100, 13);
     this.label27.TabIndex = 1;
     this.label27.Text = "Opportunity List:";
     this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelTicketList
     //
     this.panelTicketList.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.panelTicketList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelTicketList.Controls.Add(this.btnTicketListMinimize);
     this.panelTicketList.Controls.Add(this.dgvTickets);
     this.panelTicketList.Controls.Add(this.label28);
     this.panelTicketList.Location = new System.Drawing.Point(3, 1113);
     this.panelTicketList.Name = "panelTicketList";
     this.panelTicketList.Size = new System.Drawing.Size(258, 216);
     this.panelTicketList.TabIndex = 8;
     //
     // btnTicketListMinimize
     //
     this.btnTicketListMinimize.Location = new System.Drawing.Point(3, 3);
     this.btnTicketListMinimize.Name = "btnTicketListMinimize";
     this.btnTicketListMinimize.Size = new System.Drawing.Size(22, 23);
     this.btnTicketListMinimize.TabIndex = 30;
     this.btnTicketListMinimize.Text = "--";
     this.btnTicketListMinimize.UseVisualStyleBackColor = true;
     this.btnTicketListMinimize.Click += new System.EventHandler(this.btnTicketListMinimize_Click);
     //
     // dgvTickets
     //
     this.dgvTickets.AllowUserToAddRows = false;
     this.dgvTickets.AllowUserToDeleteRows = false;
     this.dgvTickets.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvTickets.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Goto});
     this.dgvTickets.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dgvTickets.Location = new System.Drawing.Point(0, 32);
     this.dgvTickets.Name = "dgvTickets";
     this.dgvTickets.ReadOnly = true;
     this.dgvTickets.RowHeadersVisible = false;
     this.dgvTickets.Size = new System.Drawing.Size(256, 182);
     this.dgvTickets.TabIndex = 0;
     this.dgvTickets.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTickets_CellContentClick);
     //
     // Goto
     //
     this.Goto.HeaderText = "";
     this.Goto.Name = "Goto";
     this.Goto.ReadOnly = true;
     this.Goto.Text = "Goto";
     this.Goto.UseColumnTextForButtonValue = true;
     this.Goto.Width = 35;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(31, 8);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(71, 13);
     this.label28.TabIndex = 2;
     this.label28.Text = "Ticket List:";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelControls
     //
     this.panelControls.Controls.Add(this.button3);
     this.panelControls.Controls.Add(this.button2);
     this.panelControls.Controls.Add(this.button1);
     this.panelControls.Location = new System.Drawing.Point(3, 1335);
     this.panelControls.Name = "panelControls";
     this.panelControls.Size = new System.Drawing.Size(256, 35);
     this.panelControls.TabIndex = 9;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(169, 3);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 2;
     this.button3.Text = "button3";
     this.button3.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(88, 3);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 1;
     this.button2.Text = "button2";
     this.button2.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(7, 3);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 0;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     //
     // panelOpportunityChart
     //
     this.panelOpportunityChart.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.panelOpportunityChart.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelOpportunityChart.Controls.Add(this.btnOppoChartMinimize);
     this.panelOpportunityChart.Controls.Add(this.picBoxOpportunity);
     this.panelOpportunityChart.Controls.Add(this.label29);
     this.panelOpportunityChart.Location = new System.Drawing.Point(3, 1376);
     this.panelOpportunityChart.Name = "panelOpportunityChart";
     this.panelOpportunityChart.Size = new System.Drawing.Size(258, 216);
     this.panelOpportunityChart.TabIndex = 10;
     //
     // btnOppoChartMinimize
     //
     this.btnOppoChartMinimize.Location = new System.Drawing.Point(3, 3);
     this.btnOppoChartMinimize.Name = "btnOppoChartMinimize";
     this.btnOppoChartMinimize.Size = new System.Drawing.Size(22, 23);
     this.btnOppoChartMinimize.TabIndex = 31;
     this.btnOppoChartMinimize.Text = "--";
     this.btnOppoChartMinimize.UseVisualStyleBackColor = true;
     this.btnOppoChartMinimize.Click += new System.EventHandler(this.btnOppoChartMinimize_Click);
     //
     // picBoxOpportunity
     //
     this.picBoxOpportunity.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.picBoxOpportunity.Location = new System.Drawing.Point(0, 32);
     this.picBoxOpportunity.Name = "picBoxOpportunity";
     this.picBoxOpportunity.Size = new System.Drawing.Size(256, 182);
     this.picBoxOpportunity.TabIndex = 3;
     this.picBoxOpportunity.TabStop = false;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(31, 8);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(86, 13);
     this.label29.TabIndex = 2;
     this.label29.Text = "Opportunities:";
     this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelERP
     //
     this.panelERP.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.panelERP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelERP.Controls.Add(this.picBoxERP);
     this.panelERP.Controls.Add(this.label31);
     this.panelERP.Controls.Add(this.btnERPMinimized);
     this.panelERP.Location = new System.Drawing.Point(3, 1598);
     this.panelERP.Name = "panelERP";
     this.panelERP.Size = new System.Drawing.Size(258, 216);
     this.panelERP.TabIndex = 11;
     //
     // picBoxERP
     //
     this.picBoxERP.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.picBoxERP.Image = ((System.Drawing.Image)(resources.GetObject("picBoxERP.Image")));
     this.picBoxERP.InitialImage = ((System.Drawing.Image)(resources.GetObject("picBoxERP.InitialImage")));
     this.picBoxERP.Location = new System.Drawing.Point(0, 32);
     this.picBoxERP.Name = "picBoxERP";
     this.picBoxERP.Size = new System.Drawing.Size(256, 182);
     this.picBoxERP.TabIndex = 32;
     this.picBoxERP.TabStop = false;
     //
     // label31
     //
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(30, 4);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(200, 20);
     this.label31.TabIndex = 31;
     this.label31.Text = "ERP Orders:";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnERPMinimized
     //
     this.btnERPMinimized.Location = new System.Drawing.Point(3, 3);
     this.btnERPMinimized.Name = "btnERPMinimized";
     this.btnERPMinimized.Size = new System.Drawing.Size(22, 23);
     this.btnERPMinimized.TabIndex = 30;
     this.btnERPMinimized.Text = "--";
     this.btnERPMinimized.UseVisualStyleBackColor = true;
     this.btnERPMinimized.Click += new System.EventHandler(this.btnERPMinimized_Click);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.settingsToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(117, 26);
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
     this.settingsToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
     this.settingsToolStripMenuItem.Text = "Settings";
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     //
     // SLX_UserControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.BackColor = System.Drawing.Color.DarkGreen;
     this.Controls.Add(this.flowLayoutPanel1);
     this.Name = "SLX_UserControl";
     this.Size = new System.Drawing.Size(264, 1505);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.panelAccounts.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     this.flowLayoutPanel2.PerformLayout();
     this.panelContacts.ResumeLayout(false);
     this.flowLayoutPanel3.ResumeLayout(false);
     this.flowLayoutPanel3.PerformLayout();
     this.panelLeads.ResumeLayout(false);
     this.flowLayoutPanel4.ResumeLayout(false);
     this.flowLayoutPanel4.PerformLayout();
     this.panelAddressMap.ResumeLayout(false);
     this.panelOppoList.ResumeLayout(false);
     this.panelOppoList.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvOpportunities)).EndInit();
     this.panelTicketList.ResumeLayout(false);
     this.panelTicketList.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTickets)).EndInit();
     this.panelControls.ResumeLayout(false);
     this.panelOpportunityChart.ResumeLayout(false);
     this.panelOpportunityChart.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picBoxOpportunity)).EndInit();
     this.panelERP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picBoxERP)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #18
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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();
     this.panel1 = new System.Windows.Forms.Panel();
     this.lnkNew = new System.Windows.Forms.LinkLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.cMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mItemRefresh = new System.Windows.Forms.ToolStripMenuItem();
     this.dgrdv = new JCommon.MyDataGridView();
     this.ColumnbtnEdit = new System.Windows.Forms.DataGridViewButtonColumn();
     this.ColumnYear = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnMonth = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnDateBegin = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnDateEnd = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnMakerPsn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel1.SuspendLayout();
     this.cMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgrdv)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lnkNew);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(658, 38);
     this.panel1.TabIndex = 1;
     //
     // lnkNew
     //
     this.lnkNew.AutoSize = true;
     this.lnkNew.Location = new System.Drawing.Point(3, 23);
     this.lnkNew.Name = "lnkNew";
     this.lnkNew.Size = new System.Drawing.Size(53, 12);
     this.lnkNew.TabIndex = 1;
     this.lnkNew.TabStop = true;
     this.lnkNew.Text = "新增单据";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(300, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(82, 14);
     this.label1.TabIndex = 0;
     this.label1.Text = "工资单管理";
     //
     // cMenu
     //
     this.cMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mItemRefresh});
     this.cMenu.Name = "cMenu";
     this.cMenu.Size = new System.Drawing.Size(99, 26);
     //
     // mItemRefresh
     //
     this.mItemRefresh.Name = "mItemRefresh";
     this.mItemRefresh.Size = new System.Drawing.Size(98, 22);
     this.mItemRefresh.Text = "刷新";
     //
     // dgrdv
     //
     this.dgrdv.AllowUserToAddRows = false;
     this.dgrdv.AllowUserToDeleteRows = false;
     this.dgrdv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgrdv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ColumnbtnEdit,
     this.ColumnYear,
     this.ColumnMonth,
     this.ColumnDateBegin,
     this.ColumnDateEnd,
     this.ColumnMakerPsn});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.Red;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgrdv.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgrdv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgrdv.Location = new System.Drawing.Point(0, 38);
     this.dgrdv.Name = "dgrdv";
     this.dgrdv.ReadOnly = true;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgrdv.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.Red;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.White;
     this.dgrdv.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dgrdv.RowTemplate.Height = 23;
     this.dgrdv.Size = new System.Drawing.Size(658, 473);
     this.dgrdv.TabIndex = 9;
     //
     // ColumnbtnEdit
     //
     this.ColumnbtnEdit.HeaderText = "变更";
     this.ColumnbtnEdit.Name = "ColumnbtnEdit";
     this.ColumnbtnEdit.ReadOnly = true;
     this.ColumnbtnEdit.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ColumnbtnEdit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.ColumnbtnEdit.Text = "变更";
     this.ColumnbtnEdit.UseColumnTextForButtonValue = true;
     this.ColumnbtnEdit.Width = 60;
     //
     // ColumnYear
     //
     this.ColumnYear.DataPropertyName = "Year";
     this.ColumnYear.HeaderText = "年";
     this.ColumnYear.Name = "ColumnYear";
     this.ColumnYear.ReadOnly = true;
     this.ColumnYear.Width = 66;
     //
     // ColumnMonth
     //
     this.ColumnMonth.DataPropertyName = "Month";
     this.ColumnMonth.HeaderText = "月";
     this.ColumnMonth.Name = "ColumnMonth";
     this.ColumnMonth.ReadOnly = true;
     this.ColumnMonth.Width = 54;
     //
     // ColumnDateBegin
     //
     this.ColumnDateBegin.DataPropertyName = "DateBegin";
     this.ColumnDateBegin.HeaderText = "起止日期";
     this.ColumnDateBegin.Name = "ColumnDateBegin";
     this.ColumnDateBegin.ReadOnly = true;
     this.ColumnDateBegin.Width = 80;
     //
     // ColumnDateEnd
     //
     this.ColumnDateEnd.DataPropertyName = "DateEnd";
     this.ColumnDateEnd.HeaderText = "截止日期";
     this.ColumnDateEnd.Name = "ColumnDateEnd";
     this.ColumnDateEnd.ReadOnly = true;
     //
     // ColumnMakerPsn
     //
     this.ColumnMakerPsn.DataPropertyName = "MakerPsn";
     this.ColumnMakerPsn.HeaderText = "制单";
     this.ColumnMakerPsn.Name = "ColumnMakerPsn";
     this.ColumnMakerPsn.ReadOnly = true;
     this.ColumnMakerPsn.Width = 78;
     //
     // FrmWageNote
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(658, 511);
     this.Controls.Add(this.dgrdv);
     this.Controls.Add(this.panel1);
     this.Name = "FrmWageNote";
     this.Text = "FrmWageNote";
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.cMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgrdv)).EndInit();
     this.ResumeLayout(false);
 }
Example #19
0
 /// <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.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea ();
       System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend ();
       System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series ();
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (1500, 0);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (17000, 5);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (5000, 15);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (1800, 20);
       System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series ();
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (1.265, 0.123);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (1.776, 0.976);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (1.01, 3.672);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (0.256, 10);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (-0.765, 15);
       System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series ();
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (7, 0.66);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (1.8, 3.54);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (3.75, 3.8);
       System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint13 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (7.56, 12);
       System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title ();
       this.ClassesToPlot = new System.Windows.Forms.DataGridView ();
       this.Class = new System.Windows.Forms.DataGridViewTextBoxColumn ();
       this.BrowseClasses = new System.Windows.Forms.DataGridViewButtonColumn ();
       this.Remove = new System.Windows.Forms.DataGridViewButtonColumn ();
       this.ColorToUse = new System.Windows.Forms.DataGridViewButtonColumn ();
       this.IncludeSubClasses = new System.Windows.Forms.CheckBox ();
       this.AddClassButton = new System.Windows.Forms.Button ();
       this.WeightByVolume = new System.Windows.Forms.CheckBox ();
       this.Inst1ToPlotLabel = new System.Windows.Forms.Label ();
       this.SelectionCriteriaPanel = new System.Windows.Forms.Panel ();
       this.ProbRange = new System.Windows.Forms.TextBox ();
       this.ProbRangeLabel = new System.Windows.Forms.Label ();
       this.DepthRange = new System.Windows.Forms.TextBox ();
       this.DepthRangeLabel = new System.Windows.Forms.Label ();
       this.SizeRange = new System.Windows.Forms.TextBox ();
       this.SizePrametersLabel = new System.Windows.Forms.Label ();
       this.Deployment = new System.Windows.Forms.TextBox ();
       this.DeploymentLabel = new System.Windows.Forms.Label ();
       this.CruiseLabel = new System.Windows.Forms.Label ();
       this.Station = new System.Windows.Forms.TextBox ();
       this.Cruise = new System.Windows.Forms.TextBox ();
       this.StationLabel = new System.Windows.Forms.Label ();
       this.Inst1ToPlot = new System.Windows.Forms.ComboBox ();
       this.PlotButton = new System.Windows.Forms.Button ();
       this.CancelPlotButton = new System.Windows.Forms.Button ();
       this.ProfileChart = new System.Windows.Forms.DataVisualization.Charting.Chart ();
       this.DepthIncr = new System.Windows.Forms.NumericUpDown ();
       this.timer1 = new System.Windows.Forms.Timer (this.components);
       this.DepthIncrLabel = new System.Windows.Forms.Label ();
       this.Inst1ColorButton = new System.Windows.Forms.Button ();
       this.Status = new System.Windows.Forms.TextBox ();
       this.DepthAxisMin = new System.Windows.Forms.NumericUpDown ();
       this.DepthAxisAuto = new System.Windows.Forms.CheckBox ();
       this.MinDepthLabel = new System.Windows.Forms.Label ();
       this.MaxDepthLabel = new System.Windows.Forms.Label ();
       this.DepthAxisMax = new System.Windows.Forms.NumericUpDown ();
       this.DepthIncrementLabel = new System.Windows.Forms.Label ();
       this.DepthAxisInterval = new System.Windows.Forms.NumericUpDown ();
       this.RePlotButton = new System.Windows.Forms.Button ();
       ((System.ComponentModel.ISupportInitialize)(this.ClassesToPlot)).BeginInit ();
       this.SelectionCriteriaPanel.SuspendLayout ();
       ((System.ComponentModel.ISupportInitialize)(this.ProfileChart)).BeginInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthIncr)).BeginInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthAxisMin)).BeginInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthAxisMax)).BeginInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthAxisInterval)).BeginInit ();
       this.SuspendLayout ();
       //
       // ClassesToPlot
       //
       this.ClassesToPlot.AllowUserToAddRows = false;
       this.ClassesToPlot.AllowUserToDeleteRows = false;
       this.ClassesToPlot.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
       this.ClassesToPlot.Columns.AddRange (new System.Windows.Forms.DataGridViewColumn[] {
     this.Class,
     this.BrowseClasses,
     this.Remove,
     this.ColorToUse});
       this.ClassesToPlot.Location = new System.Drawing.Point (12, 136);
       this.ClassesToPlot.Name = "ClassesToPlot";
       this.ClassesToPlot.RowHeadersVisible = false;
       this.ClassesToPlot.Size = new System.Drawing.Size (469, 242);
       this.ClassesToPlot.TabIndex = 6;
       this.ClassesToPlot.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler (this.ClassesToPlot_CellFormatting);
       this.ClassesToPlot.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler (this.ClassesToPlot_RowsAdded);
       this.ClassesToPlot.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler (this.ClassesToPlot_CellClick);
       //
       // Class
       //
       this.Class.HeaderText = "Class";
       this.Class.Name = "Class";
       this.Class.Width = 280;
       //
       // BrowseClasses
       //
       this.BrowseClasses.HeaderText = "Browse";
       this.BrowseClasses.Name = "BrowseClasses";
       this.BrowseClasses.Text = "Browse";
       this.BrowseClasses.UseColumnTextForButtonValue = true;
       this.BrowseClasses.Width = 60;
       //
       // Remove
       //
       this.Remove.HeaderText = "Remove";
       this.Remove.Name = "Remove";
       this.Remove.Text = "Remove";
       this.Remove.UseColumnTextForButtonValue = true;
       this.Remove.Width = 60;
       //
       // ColorToUse
       //
       this.ColorToUse.HeaderText = "Color";
       this.ColorToUse.Name = "ColorToUse";
       this.ColorToUse.Text = "Color";
       this.ColorToUse.Width = 60;
       //
       // IncludeSubClasses
       //
       this.IncludeSubClasses.AutoSize = true;
       this.IncludeSubClasses.Checked = true;
       this.IncludeSubClasses.CheckState = System.Windows.Forms.CheckState.Checked;
       this.IncludeSubClasses.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.IncludeSubClasses.Location = new System.Drawing.Point (93, 398);
       this.IncludeSubClasses.Name = "IncludeSubClasses";
       this.IncludeSubClasses.Size = new System.Drawing.Size (155, 21);
       this.IncludeSubClasses.TabIndex = 7;
       this.IncludeSubClasses.Text = "Include Sub-Classes";
       this.IncludeSubClasses.UseVisualStyleBackColor = true;
       //
       // AddClassButton
       //
       this.AddClassButton.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.AddClassButton.Location = new System.Drawing.Point (12, 394);
       this.AddClassButton.Name = "AddClassButton";
       this.AddClassButton.Size = new System.Drawing.Size (75, 27);
       this.AddClassButton.TabIndex = 8;
       this.AddClassButton.Text = "Add Class";
       this.AddClassButton.UseVisualStyleBackColor = true;
       this.AddClassButton.Click += new System.EventHandler (this.AddClassButton_Click);
       //
       // WeightByVolume
       //
       this.WeightByVolume.AutoSize = true;
       this.WeightByVolume.Checked = true;
       this.WeightByVolume.CheckState = System.Windows.Forms.CheckState.Checked;
       this.WeightByVolume.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.WeightByVolume.Location = new System.Drawing.Point (259, 398);
       this.WeightByVolume.Name = "WeightByVolume";
       this.WeightByVolume.Size = new System.Drawing.Size (141, 21);
       this.WeightByVolume.TabIndex = 9;
       this.WeightByVolume.Text = "Weight by Volume";
       this.WeightByVolume.UseVisualStyleBackColor = true;
       //
       // Inst1ToPlotLabel
       //
       this.Inst1ToPlotLabel.AutoSize = true;
       this.Inst1ToPlotLabel.Location = new System.Drawing.Point (15, 438);
       this.Inst1ToPlotLabel.Name = "Inst1ToPlotLabel";
       this.Inst1ToPlotLabel.Size = new System.Drawing.Size (57, 13);
       this.Inst1ToPlotLabel.TabIndex = 11;
       this.Inst1ToPlotLabel.Text = "Inst to Plot";
       //
       // SelectionCriteriaPanel
       //
       this.SelectionCriteriaPanel.BackColor = System.Drawing.Color.FromArgb (((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
       this.SelectionCriteriaPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.SelectionCriteriaPanel.Controls.Add (this.ProbRange);
       this.SelectionCriteriaPanel.Controls.Add (this.ProbRangeLabel);
       this.SelectionCriteriaPanel.Controls.Add (this.DepthRange);
       this.SelectionCriteriaPanel.Controls.Add (this.DepthRangeLabel);
       this.SelectionCriteriaPanel.Controls.Add (this.SizeRange);
       this.SelectionCriteriaPanel.Controls.Add (this.SizePrametersLabel);
       this.SelectionCriteriaPanel.Controls.Add (this.Deployment);
       this.SelectionCriteriaPanel.Controls.Add (this.DeploymentLabel);
       this.SelectionCriteriaPanel.Controls.Add (this.CruiseLabel);
       this.SelectionCriteriaPanel.Controls.Add (this.Station);
       this.SelectionCriteriaPanel.Controls.Add (this.Cruise);
       this.SelectionCriteriaPanel.Controls.Add (this.StationLabel);
       this.SelectionCriteriaPanel.Location = new System.Drawing.Point (12, 12);
       this.SelectionCriteriaPanel.Name = "SelectionCriteriaPanel";
       this.SelectionCriteriaPanel.Size = new System.Drawing.Size (470, 104);
       this.SelectionCriteriaPanel.TabIndex = 24;
       //
       // ProbRange
       //
       this.ProbRange.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.ProbRange.Location = new System.Drawing.Point (325, 69);
       this.ProbRange.Name = "ProbRange";
       this.ProbRange.ReadOnly = true;
       this.ProbRange.Size = new System.Drawing.Size (130, 23);
       this.ProbRange.TabIndex = 30;
       this.ProbRange.TabStop = false;
       //
       // ProbRangeLabel
       //
       this.ProbRangeLabel.AutoSize = true;
       this.ProbRangeLabel.Location = new System.Drawing.Point (254, 74);
       this.ProbRangeLabel.Name = "ProbRangeLabel";
       this.ProbRangeLabel.Size = new System.Drawing.Size (64, 13);
       this.ProbRangeLabel.TabIndex = 29;
       this.ProbRangeLabel.Text = "Prob Range";
       //
       // DepthRange
       //
       this.DepthRange.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.DepthRange.Location = new System.Drawing.Point (325, 39);
       this.DepthRange.Name = "DepthRange";
       this.DepthRange.ReadOnly = true;
       this.DepthRange.Size = new System.Drawing.Size (130, 23);
       this.DepthRange.TabIndex = 28;
       this.DepthRange.TabStop = false;
       //
       // DepthRangeLabel
       //
       this.DepthRangeLabel.AutoSize = true;
       this.DepthRangeLabel.Location = new System.Drawing.Point (254, 44);
       this.DepthRangeLabel.Name = "DepthRangeLabel";
       this.DepthRangeLabel.Size = new System.Drawing.Size (71, 13);
       this.DepthRangeLabel.TabIndex = 27;
       this.DepthRangeLabel.Text = "Depth Range";
       //
       // SizeRange
       //
       this.SizeRange.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.SizeRange.Location = new System.Drawing.Point (325, 9);
       this.SizeRange.Name = "SizeRange";
       this.SizeRange.ReadOnly = true;
       this.SizeRange.Size = new System.Drawing.Size (130, 23);
       this.SizeRange.TabIndex = 26;
       this.SizeRange.TabStop = false;
       //
       // SizePrametersLabel
       //
       this.SizePrametersLabel.AutoSize = true;
       this.SizePrametersLabel.Location = new System.Drawing.Point (254, 14);
       this.SizePrametersLabel.Name = "SizePrametersLabel";
       this.SizePrametersLabel.Size = new System.Drawing.Size (62, 13);
       this.SizePrametersLabel.TabIndex = 25;
       this.SizePrametersLabel.Text = "Size Range";
       //
       // Deployment
       //
       this.Deployment.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.Deployment.Location = new System.Drawing.Point (85, 69);
       this.Deployment.Name = "Deployment";
       this.Deployment.ReadOnly = true;
       this.Deployment.Size = new System.Drawing.Size (150, 23);
       this.Deployment.TabIndex = 8;
       this.Deployment.TabStop = false;
       //
       // DeploymentLabel
       //
       this.DeploymentLabel.AutoSize = true;
       this.DeploymentLabel.Location = new System.Drawing.Point (14, 74);
       this.DeploymentLabel.Name = "DeploymentLabel";
       this.DeploymentLabel.Size = new System.Drawing.Size (63, 13);
       this.DeploymentLabel.TabIndex = 7;
       this.DeploymentLabel.Text = "Deployment";
       //
       // CruiseLabel
       //
       this.CruiseLabel.AutoSize = true;
       this.CruiseLabel.Location = new System.Drawing.Point (14, 14);
       this.CruiseLabel.Name = "CruiseLabel";
       this.CruiseLabel.Size = new System.Drawing.Size (36, 13);
       this.CruiseLabel.TabIndex = 3;
       this.CruiseLabel.Text = "Cruise";
       //
       // Station
       //
       this.Station.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.Station.Location = new System.Drawing.Point (85, 39);
       this.Station.Name = "Station";
       this.Station.ReadOnly = true;
       this.Station.Size = new System.Drawing.Size (150, 23);
       this.Station.TabIndex = 6;
       this.Station.TabStop = false;
       //
       // Cruise
       //
       this.Cruise.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.Cruise.Location = new System.Drawing.Point (85, 9);
       this.Cruise.Name = "Cruise";
       this.Cruise.ReadOnly = true;
       this.Cruise.Size = new System.Drawing.Size (150, 23);
       this.Cruise.TabIndex = 4;
       this.Cruise.TabStop = false;
       //
       // StationLabel
       //
       this.StationLabel.AutoSize = true;
       this.StationLabel.Location = new System.Drawing.Point (14, 44);
       this.StationLabel.Name = "StationLabel";
       this.StationLabel.Size = new System.Drawing.Size (40, 13);
       this.StationLabel.TabIndex = 5;
       this.StationLabel.Text = "Station";
       //
       // Inst1ToPlot
       //
       this.Inst1ToPlot.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.Inst1ToPlot.FormattingEnabled = true;
       this.Inst1ToPlot.Location = new System.Drawing.Point (12, 452);
       this.Inst1ToPlot.Name = "Inst1ToPlot";
       this.Inst1ToPlot.Size = new System.Drawing.Size (414, 24);
       this.Inst1ToPlot.TabIndex = 25;
       this.Inst1ToPlot.Enter += new System.EventHandler (this.Inst1ToPlot_Enter);
       //
       // PlotButton
       //
       this.PlotButton.Font = new System.Drawing.Font ("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.PlotButton.Location = new System.Drawing.Point (12, 606);
       this.PlotButton.Name = "PlotButton";
       this.PlotButton.Size = new System.Drawing.Size (75, 23);
       this.PlotButton.TabIndex = 28;
       this.PlotButton.Text = "Plot";
       this.PlotButton.UseVisualStyleBackColor = true;
       this.PlotButton.Click += new System.EventHandler (this.PlotButton_Click);
       //
       // CancelPlotButton
       //
       this.CancelPlotButton.Font = new System.Drawing.Font ("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.CancelPlotButton.Location = new System.Drawing.Point (407, 606);
       this.CancelPlotButton.Name = "CancelPlotButton";
       this.CancelPlotButton.Size = new System.Drawing.Size (75, 23);
       this.CancelPlotButton.TabIndex = 29;
       this.CancelPlotButton.Text = "Cancel";
       this.CancelPlotButton.UseVisualStyleBackColor = true;
       this.CancelPlotButton.Click += new System.EventHandler (this.CancelPlotButton_Click);
       //
       // ProfileChart
       //
       this.ProfileChart.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
       this.ProfileChart.CausesValidation = false;
       chartArea1.AlignmentOrientation = ((System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations)((System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.Vertical | System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.Horizontal)));
       chartArea1.AlignmentStyle = System.Windows.Forms.DataVisualization.Charting.AreaAlignmentStyles.None;
       chartArea1.AlignWithChartArea = "ChartArea1";
       chartArea1.AxisX.LabelAutoFitMinFontSize = 10;
       chartArea1.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
           | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
           | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
       chartArea1.AxisX.MajorGrid.Enabled = false;
       chartArea1.AxisX.Minimum = 0;
       chartArea1.AxisX.Title = "Count/m-3";
       chartArea1.AxisX2.LabelAutoFitMinFontSize = 10;
       chartArea1.AxisX2.MajorGrid.Enabled = false;
       chartArea1.AxisY.IsReversed = true;
       chartArea1.AxisY.LabelAutoFitMinFontSize = 10;
       chartArea1.AxisY.MajorGrid.Enabled = false;
       chartArea1.AxisY.MajorTickMark.Interval = 0;
       chartArea1.AxisY.MajorTickMark.IntervalOffset = 10;
       chartArea1.AxisY.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
       chartArea1.AxisY.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
       chartArea1.AxisY.Maximum = 25;
       chartArea1.AxisY.Minimum = 0;
       chartArea1.AxisY.MinorTickMark.Enabled = true;
       chartArea1.AxisY.Title = "Depth (m)";
       chartArea1.AxisY2.MajorGrid.Enabled = false;
       chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
       chartArea1.Name = "ChartArea1";
       this.ProfileChart.ChartAreas.Add (chartArea1);
       legend1.Alignment = System.Drawing.StringAlignment.Far;
       legend1.DockedToChartArea = "ChartArea1";
       legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
       legend1.Name = "Legend1";
       this.ProfileChart.Legends.Add (legend1);
       this.ProfileChart.Location = new System.Drawing.Point (492, 12);
       this.ProfileChart.Name = "ProfileChart";
       series1.BorderWidth = 2;
       series1.ChartArea = "ChartArea1";
       series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
       series1.Legend = "Legend1";
       series1.Name = "Copepods";
       series1.Points.Add (dataPoint1);
       series1.Points.Add (dataPoint2);
       series1.Points.Add (dataPoint3);
       series1.Points.Add (dataPoint4);
       series2.ChartArea = "ChartArea1";
       series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
       series2.Legend = "Legend1";
       series2.Name = "Oxygen";
       series2.Points.Add (dataPoint5);
       series2.Points.Add (dataPoint6);
       series2.Points.Add (dataPoint7);
       series2.Points.Add (dataPoint8);
       series2.Points.Add (dataPoint9);
       series3.ChartArea = "ChartArea1";
       series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
       series3.Legend = "Legend1";
       series3.Name = "Florenses";
       series3.Points.Add (dataPoint10);
       series3.Points.Add (dataPoint11);
       series3.Points.Add (dataPoint12);
       series3.Points.Add (dataPoint13);
       series3.XAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
       this.ProfileChart.Series.Add (series1);
       this.ProfileChart.Series.Add (series2);
       this.ProfileChart.Series.Add (series3);
       this.ProfileChart.Size = new System.Drawing.Size (463, 621);
       this.ProfileChart.TabIndex = 30;
       this.ProfileChart.Text = "Depth Profile";
       title1.Font = new System.Drawing.Font ("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       title1.Name = "Title1";
       title1.Text = "Verticle Profile";
       this.ProfileChart.Titles.Add (title1);
       //
       // DepthIncr
       //
       this.DepthIncr.DecimalPlaces = 1;
       this.DepthIncr.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.DepthIncr.Increment = new decimal (new int[] {
     5,
     0,
     0,
     65536});
       this.DepthIncr.Location = new System.Drawing.Point (406, 398);
       this.DepthIncr.Minimum = new decimal (new int[] {
     5,
     0,
     0,
     65536});
       this.DepthIncr.Name = "DepthIncr";
       this.DepthIncr.Size = new System.Drawing.Size (76, 23);
       this.DepthIncr.TabIndex = 31;
       this.DepthIncr.Value = new decimal (new int[] {
     10,
     0,
     0,
     65536});
       //
       // timer1
       //
       this.timer1.Interval = 50;
       this.timer1.Tick += new System.EventHandler (this.timer1_Tick);
       //
       // DepthIncrLabel
       //
       this.DepthIncrLabel.AutoSize = true;
       this.DepthIncrLabel.Location = new System.Drawing.Point (403, 382);
       this.DepthIncrLabel.Name = "DepthIncrLabel";
       this.DepthIncrLabel.Size = new System.Drawing.Size (86, 13);
       this.DepthIncrLabel.TabIndex = 32;
       this.DepthIncrLabel.Text = "Depth Increment";
       //
       // Inst1ColorButton
       //
       this.Inst1ColorButton.Location = new System.Drawing.Point (432, 452);
       this.Inst1ColorButton.Name = "Inst1ColorButton";
       this.Inst1ColorButton.Size = new System.Drawing.Size (49, 23);
       this.Inst1ColorButton.TabIndex = 33;
       this.Inst1ColorButton.Text = "Color";
       this.Inst1ColorButton.UseVisualStyleBackColor = true;
       this.Inst1ColorButton.Click += new System.EventHandler (this.Inst1ColorButton_Click);
       //
       // Status
       //
       this.Status.Font = new System.Drawing.Font ("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.Status.Location = new System.Drawing.Point (12, 559);
       this.Status.Name = "Status";
       this.Status.ReadOnly = true;
       this.Status.Size = new System.Drawing.Size (470, 23);
       this.Status.TabIndex = 35;
       this.Status.TabStop = false;
       //
       // DepthAxisMin
       //
       this.DepthAxisMin.Location = new System.Drawing.Point (134, 511);
       this.DepthAxisMin.Maximum = new decimal (new int[] {
     300,
     0,
     0,
     0});
       this.DepthAxisMin.Name = "DepthAxisMin";
       this.DepthAxisMin.Size = new System.Drawing.Size (63, 20);
       this.DepthAxisMin.TabIndex = 36;
       //
       // DepthAxisAuto
       //
       this.DepthAxisAuto.AutoSize = true;
       this.DepthAxisAuto.Checked = true;
       this.DepthAxisAuto.CheckState = System.Windows.Forms.CheckState.Checked;
       this.DepthAxisAuto.Location = new System.Drawing.Point (12, 512);
       this.DepthAxisAuto.Name = "DepthAxisAuto";
       this.DepthAxisAuto.Size = new System.Drawing.Size (102, 17);
       this.DepthAxisAuto.TabIndex = 37;
       this.DepthAxisAuto.Text = "Auto Depth Axis";
       this.DepthAxisAuto.UseVisualStyleBackColor = true;
       this.DepthAxisAuto.CheckedChanged += new System.EventHandler (this.DepthAxisAuto_CheckedChanged);
       //
       // MinDepthLabel
       //
       this.MinDepthLabel.AutoSize = true;
       this.MinDepthLabel.Location = new System.Drawing.Point (133, 495);
       this.MinDepthLabel.Name = "MinDepthLabel";
       this.MinDepthLabel.Size = new System.Drawing.Size (56, 13);
       this.MinDepthLabel.TabIndex = 38;
       this.MinDepthLabel.Text = "Min Depth";
       //
       // MaxDepthLabel
       //
       this.MaxDepthLabel.AutoSize = true;
       this.MaxDepthLabel.Location = new System.Drawing.Point (213, 495);
       this.MaxDepthLabel.Name = "MaxDepthLabel";
       this.MaxDepthLabel.Size = new System.Drawing.Size (59, 13);
       this.MaxDepthLabel.TabIndex = 40;
       this.MaxDepthLabel.Text = "Max Depth";
       //
       // DepthAxisMax
       //
       this.DepthAxisMax.Location = new System.Drawing.Point (214, 511);
       this.DepthAxisMax.Maximum = new decimal (new int[] {
     500,
     0,
     0,
     0});
       this.DepthAxisMax.Name = "DepthAxisMax";
       this.DepthAxisMax.Size = new System.Drawing.Size (63, 20);
       this.DepthAxisMax.TabIndex = 39;
       this.DepthAxisMax.Value = new decimal (new int[] {
     100,
     0,
     0,
     0});
       //
       // DepthIncrementLabel
       //
       this.DepthIncrementLabel.AutoSize = true;
       this.DepthIncrementLabel.Location = new System.Drawing.Point (293, 495);
       this.DepthIncrementLabel.Name = "DepthIncrementLabel";
       this.DepthIncrementLabel.Size = new System.Drawing.Size (42, 13);
       this.DepthIncrementLabel.TabIndex = 42;
       this.DepthIncrementLabel.Text = "Interval";
       //
       // DepthAxisInterval
       //
       this.DepthAxisInterval.DecimalPlaces = 1;
       this.DepthAxisInterval.Increment = new decimal (new int[] {
     5,
     0,
     0,
     65536});
       this.DepthAxisInterval.Location = new System.Drawing.Point (294, 511);
       this.DepthAxisInterval.Name = "DepthAxisInterval";
       this.DepthAxisInterval.Size = new System.Drawing.Size (63, 20);
       this.DepthAxisInterval.TabIndex = 41;
       this.DepthAxisInterval.Value = new decimal (new int[] {
     5,
     0,
     0,
     0});
       //
       // RePlotButton
       //
       this.RePlotButton.Font = new System.Drawing.Font ("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.RePlotButton.Location = new System.Drawing.Point (199, 606);
       this.RePlotButton.Name = "RePlotButton";
       this.RePlotButton.Size = new System.Drawing.Size (75, 23);
       this.RePlotButton.TabIndex = 43;
       this.RePlotButton.Text = "Re-Plot";
       this.RePlotButton.UseVisualStyleBackColor = true;
       this.RePlotButton.Click += new System.EventHandler (this.RePlotButton_Click);
       //
       // ClassDepthProfileChart
       //
       this.AutoScaleDimensions = new System.Drawing.SizeF (6F, 13F);
       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       this.ClientSize = new System.Drawing.Size (967, 645);
       this.Controls.Add (this.RePlotButton);
       this.Controls.Add (this.DepthIncrementLabel);
       this.Controls.Add (this.DepthAxisInterval);
       this.Controls.Add (this.MaxDepthLabel);
       this.Controls.Add (this.DepthAxisMax);
       this.Controls.Add (this.MinDepthLabel);
       this.Controls.Add (this.DepthAxisAuto);
       this.Controls.Add (this.DepthAxisMin);
       this.Controls.Add (this.Status);
       this.Controls.Add (this.Inst1ColorButton);
       this.Controls.Add (this.DepthIncrLabel);
       this.Controls.Add (this.DepthIncr);
       this.Controls.Add (this.ProfileChart);
       this.Controls.Add (this.CancelPlotButton);
       this.Controls.Add (this.PlotButton);
       this.Controls.Add (this.Inst1ToPlot);
       this.Controls.Add (this.SelectionCriteriaPanel);
       this.Controls.Add (this.Inst1ToPlotLabel);
       this.Controls.Add (this.WeightByVolume);
       this.Controls.Add (this.AddClassButton);
       this.Controls.Add (this.IncludeSubClasses);
       this.Controls.Add (this.ClassesToPlot);
       this.MinimumSize = new System.Drawing.Size (983, 635);
       this.Name = "ClassDepthProfileChart";
       this.Text = "Depth Profile Chart";
       this.Load += new System.EventHandler (this.ClassDepthProfileChart_Load);
       this.SizeChanged += new System.EventHandler (this.ClassDepthProfileChart_SizeChanged);
       this.FormClosing += new System.Windows.Forms.FormClosingEventHandler (this.ClassDepthProfileChart_FormClosing);
       this.Resize += new System.EventHandler (this.ClassDepthProfileChart_Resize);
       ((System.ComponentModel.ISupportInitialize)(this.ClassesToPlot)).EndInit ();
       this.SelectionCriteriaPanel.ResumeLayout (false);
       this.SelectionCriteriaPanel.PerformLayout ();
       ((System.ComponentModel.ISupportInitialize)(this.ProfileChart)).EndInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthIncr)).EndInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthAxisMin)).EndInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthAxisMax)).EndInit ();
       ((System.ComponentModel.ISupportInitialize)(this.DepthAxisInterval)).EndInit ();
       this.ResumeLayout (false);
       this.PerformLayout ();
 }
 /// <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._dataGridView = new System.Windows.Forms.DataGridView();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this._aggiungiPiantaButton = new System.Windows.Forms.Button();
     this._homeButton = new System.Windows.Forms.Button();
     this._idPianta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._nomeComune = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._nomeBotanico = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._fabbisognoAcqua = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._mostraGestoriButton = new System.Windows.Forms.DataGridViewButtonColumn();
     this._gestioneFabbisognoButton = new System.Windows.Forms.DataGridViewButtonColumn();
     this._rimuoviPiantaButton = new System.Windows.Forms.DataGridViewButtonColumn();
     ((System.ComponentModel.ISupportInitialize)(this._dataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // _dataGridView
     //
     this._dataGridView.AllowUserToAddRows = false;
     this._dataGridView.AllowUserToDeleteRows = false;
     this._dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this._dataGridView.BackgroundColor = System.Drawing.Color.Silver;
     this._dataGridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this._dataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this._dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this._dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._idPianta,
     this._nomeComune,
     this._nomeBotanico,
     this._fabbisognoAcqua,
     this._mostraGestoriButton,
     this._gestioneFabbisognoButton,
     this._rimuoviPiantaButton});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this._dataGridView.DefaultCellStyle = dataGridViewCellStyle2;
     this._dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this._dataGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this._dataGridView.Location = new System.Drawing.Point(0, 24);
     this._dataGridView.Name = "_dataGridView";
     this._dataGridView.RowHeadersVisible = false;
     this._dataGridView.Size = new System.Drawing.Size(979, 487);
     this._dataGridView.TabIndex = 1;
     //
     // menuStrip1
     //
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(979, 24);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text = "menuStrip1";
     //
     // _aggiungiPiantaButton
     //
     this._aggiungiPiantaButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this._aggiungiPiantaButton.Location = new System.Drawing.Point(3, 0);
     this._aggiungiPiantaButton.Name = "_aggiungiPiantaButton";
     this._aggiungiPiantaButton.Size = new System.Drawing.Size(137, 23);
     this._aggiungiPiantaButton.TabIndex = 3;
     this._aggiungiPiantaButton.Text = "Aggiungi pianta";
     this._aggiungiPiantaButton.UseVisualStyleBackColor = true;
     this._aggiungiPiantaButton.Click += new System.EventHandler(this._aggiungiPiantaButton_Click);
     //
     // _homeButton
     //
     this._homeButton.Enabled = false;
     this._homeButton.Location = new System.Drawing.Point(159, 0);
     this._homeButton.Name = "_homeButton";
     this._homeButton.Size = new System.Drawing.Size(57, 23);
     this._homeButton.TabIndex = 4;
     this._homeButton.Text = "HOME";
     this._homeButton.UseVisualStyleBackColor = true;
     this._homeButton.Visible = false;
     this._homeButton.Click += new System.EventHandler(this._homeButton_Click);
     //
     // _idPianta
     //
     this._idPianta.HeaderText = "Id";
     this._idPianta.Name = "_idPianta";
     this._idPianta.ReadOnly = true;
     //
     // _nomeComune
     //
     this._nomeComune.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this._nomeComune.HeaderText = "Nome comune";
     this._nomeComune.Name = "_nomeComune";
     this._nomeComune.ReadOnly = true;
     //
     // _nomeBotanico
     //
     this._nomeBotanico.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this._nomeBotanico.HeaderText = "Nome Botanico";
     this._nomeBotanico.Name = "_nomeBotanico";
     this._nomeBotanico.ReadOnly = true;
     //
     // _fabbisognoAcqua
     //
     this._fabbisognoAcqua.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this._fabbisognoAcqua.HeaderText = "Fabbisogno acqua";
     this._fabbisognoAcqua.Name = "_fabbisognoAcqua";
     this._fabbisognoAcqua.Width = 132;
     //
     // _mostraGestoriButton
     //
     this._mostraGestoriButton.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this._mostraGestoriButton.HeaderText = "";
     this._mostraGestoriButton.Name = "_mostraGestoriButton";
     this._mostraGestoriButton.Width = 5;
     //
     // _gestioneFabbisognoButton
     //
     this._gestioneFabbisognoButton.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this._gestioneFabbisognoButton.HeaderText = "";
     this._gestioneFabbisognoButton.Name = "_gestioneFabbisognoButton";
     this._gestioneFabbisognoButton.Width = 5;
     //
     // _rimuoviPiantaButton
     //
     this._rimuoviPiantaButton.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this._rimuoviPiantaButton.HeaderText = "";
     this._rimuoviPiantaButton.Name = "_rimuoviPiantaButton";
     this._rimuoviPiantaButton.ReadOnly = true;
     this._rimuoviPiantaButton.Width = 5;
     //
     // PianteView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.BackColor = System.Drawing.Color.Silver;
     this.Controls.Add(this._homeButton);
     this.Controls.Add(this._aggiungiPiantaButton);
     this.Controls.Add(this._dataGridView);
     this.Controls.Add(this.menuStrip1);
     this.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "PianteView";
     this.Size = new System.Drawing.Size(979, 511);
     ((System.ComponentModel.ISupportInitialize)(this._dataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UsersForm));
     this.RightOption = new System.Windows.Forms.Timer(this.components);
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.gbUsersDetails = new System.Windows.Forms.GroupBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtUserSearch = new System.Windows.Forms.TextBox();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column7 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Column8 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.btnUsersDetail = new System.Windows.Forms.Button();
     this.btnAddUsers = new System.Windows.Forms.Button();
     this.pbExit = new System.Windows.Forms.PictureBox();
     this.pbHome = new System.Windows.Forms.PictureBox();
     this.pbLogout = new System.Windows.Forms.PictureBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.comboRole = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtUserMail = new System.Windows.Forms.TextBox();
     this.txtUserContect = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.txtUserPass = new System.Windows.Forms.TextBox();
     this.txtConfirmPass = new System.Windows.Forms.TextBox();
     this.txtFirstName = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.registerUser = new System.Windows.Forms.Button();
     this.deleteUser = new System.Windows.Forms.Button();
     this.updateUser = new System.Windows.Forms.Button();
     this.gbuserRegister = new System.Windows.Forms.GroupBox();
     this.txtLastName = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.newUser = new System.Windows.Forms.Button();
     this.txtUserID = new System.Windows.Forms.TextBox();
     this.btnGetData = new System.Windows.Forms.Button();
     this.userPrintPreviewDialog = new System.Windows.Forms.PrintPreviewDialog();
     this.userPrintDocument = new System.Drawing.Printing.PrintDocument();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.button1 = new System.Windows.Forms.Button();
     this.label8 = new System.Windows.Forms.Label();
     this.btnClose = new System.Windows.Forms.Button();
     this.gbUsersDetails.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbExit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbHome)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbLogout)).BeginInit();
     this.gbuserRegister.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // gbUsersDetails
     //
     this.gbUsersDetails.Controls.Add(this.groupBox1);
     this.gbUsersDetails.Controls.Add(this.dataGridView1);
     this.gbUsersDetails.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbUsersDetails.Location = new System.Drawing.Point(12, 116);
     this.gbUsersDetails.Name = "gbUsersDetails";
     this.gbUsersDetails.Size = new System.Drawing.Size(1009, 518);
     this.gbUsersDetails.TabIndex = 45;
     this.gbUsersDetails.TabStop = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtUserSearch);
     this.groupBox1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(15, 28);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(353, 74);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Search By Name";
     //
     // txtUserSearch
     //
     this.txtUserSearch.BackColor = System.Drawing.Color.Gainsboro;
     this.txtUserSearch.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtUserSearch.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUserSearch.Location = new System.Drawing.Point(31, 31);
     this.txtUserSearch.Name = "txtUserSearch";
     this.txtUserSearch.Size = new System.Drawing.Size(269, 26);
     this.txtUserSearch.TabIndex = 13;
     this.txtUserSearch.TextChanged += new System.EventHandler(this.txtUserSearch_TextChanged);
     //
     // dataGridView1
     //
     this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.OrangeRed;
     dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column6,
     this.Column9,
     this.Column10,
     this.Column2,
     this.Column3,
     this.Column4,
     this.Column5,
     this.Column7,
     this.Column8});
     this.dataGridView1.Location = new System.Drawing.Point(15, 126);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(988, 382);
     this.dataGridView1.TabIndex = 1;
     this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
     this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
     this.dataGridView1.Paint += new System.Windows.Forms.PaintEventHandler(this.dataGridView1_Paint);
     //
     // Column1
     //
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.Column1.DefaultCellStyle = dataGridViewCellStyle8;
     this.Column1.HeaderText = "User ID";
     this.Column1.Name = "Column1";
     this.Column1.Width = 50;
     //
     // Column6
     //
     this.Column6.HeaderText = "User Role";
     this.Column6.Name = "Column6";
     this.Column6.Width = 90;
     //
     // Column9
     //
     this.Column9.HeaderText = "First Name";
     this.Column9.Name = "Column9";
     this.Column9.Width = 90;
     //
     // Column10
     //
     this.Column10.HeaderText = "Last Name";
     this.Column10.Name = "Column10";
     this.Column10.Width = 90;
     //
     // Column2
     //
     this.Column2.HeaderText = "Full Name";
     this.Column2.Name = "Column2";
     //
     // Column3
     //
     this.Column3.HeaderText = "User Password";
     this.Column3.Name = "Column3";
     this.Column3.Width = 120;
     //
     // Column4
     //
     this.Column4.HeaderText = "User Contect Number";
     this.Column4.Name = "Column4";
     this.Column4.Width = 140;
     //
     // Column5
     //
     this.Column5.HeaderText = "User Email";
     this.Column5.Name = "Column5";
     this.Column5.Width = 150;
     //
     // Column7
     //
     this.Column7.HeaderText = "Edit";
     this.Column7.Name = "Column7";
     this.Column7.Width = 60;
     //
     // Column8
     //
     this.Column8.HeaderText = "Delete";
     this.Column8.Name = "Column8";
     this.Column8.Width = 60;
     //
     // btnUsersDetail
     //
     this.btnUsersDetail.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnUsersDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnUsersDetail.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnUsersDetail.FlatAppearance.BorderSize = 0;
     this.btnUsersDetail.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(119)))), ((int)(((byte)(0)))));
     this.btnUsersDetail.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnUsersDetail.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnUsersDetail.ForeColor = System.Drawing.Color.White;
     this.btnUsersDetail.Location = new System.Drawing.Point(116, 63);
     this.btnUsersDetail.Name = "btnUsersDetail";
     this.btnUsersDetail.Size = new System.Drawing.Size(130, 36);
     this.btnUsersDetail.TabIndex = 0;
     this.btnUsersDetail.Text = "Users Details";
     this.btnUsersDetail.UseVisualStyleBackColor = false;
     this.btnUsersDetail.Click += new System.EventHandler(this.btnUsersDetail_Click);
     //
     // btnAddUsers
     //
     this.btnAddUsers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnAddUsers.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnAddUsers.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnAddUsers.FlatAppearance.BorderSize = 0;
     this.btnAddUsers.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(119)))), ((int)(((byte)(0)))));
     this.btnAddUsers.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnAddUsers.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddUsers.ForeColor = System.Drawing.Color.White;
     this.btnAddUsers.ImageAlign = System.Drawing.ContentAlignment.TopRight;
     this.btnAddUsers.Location = new System.Drawing.Point(12, 63);
     this.btnAddUsers.Name = "btnAddUsers";
     this.btnAddUsers.Size = new System.Drawing.Size(98, 36);
     this.btnAddUsers.TabIndex = 0;
     this.btnAddUsers.Text = "Add User";
     this.btnAddUsers.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnAddUsers.UseVisualStyleBackColor = false;
     this.btnAddUsers.Click += new System.EventHandler(this.btnAddUsers_Click);
     //
     // pbExit
     //
     this.pbExit.BackColor = System.Drawing.Color.Black;
     this.pbExit.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.pbExit.Location = new System.Drawing.Point(2, 402);
     this.pbExit.Name = "pbExit";
     this.pbExit.Size = new System.Drawing.Size(73, 76);
     this.pbExit.TabIndex = 5;
     this.pbExit.TabStop = false;
     //
     // pbHome
     //
     this.pbHome.BackColor = System.Drawing.Color.Black;
     this.pbHome.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.pbHome.Location = new System.Drawing.Point(3, 196);
     this.pbHome.Name = "pbHome";
     this.pbHome.Size = new System.Drawing.Size(74, 76);
     this.pbHome.TabIndex = 4;
     this.pbHome.TabStop = false;
     //
     // pbLogout
     //
     this.pbLogout.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.pbLogout.Location = new System.Drawing.Point(3, 0);
     this.pbLogout.Name = "pbLogout";
     this.pbLogout.Size = new System.Drawing.Size(74, 76);
     this.pbLogout.TabIndex = 3;
     this.pbLogout.TabStop = false;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(107, 94);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(86, 21);
     this.label2.TabIndex = 25;
     this.label2.Text = "First Name";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(107, 195);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(113, 21);
     this.label3.TabIndex = 25;
     this.label3.Text = "User Password";
     //
     // comboRole
     //
     this.comboRole.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboRole.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboRole.BackColor = System.Drawing.Color.Gainsboro;
     this.comboRole.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.comboRole.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboRole.FormattingEnabled = true;
     this.comboRole.Items.AddRange(new object[] {
     "Admin",
     "Employee",
     "Manager"});
     this.comboRole.Location = new System.Drawing.Point(260, 39);
     this.comboRole.Name = "comboRole";
     this.comboRole.Size = new System.Drawing.Size(338, 28);
     this.comboRole.Sorted = true;
     this.comboRole.TabIndex = 0;
     this.comboRole.SelectedIndexChanged += new System.EventHandler(this.comboRole_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(107, 253);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(138, 21);
     this.label4.TabIndex = 25;
     this.label4.Text = "Confirm Password";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(107, 312);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(125, 21);
     this.label5.TabIndex = 25;
     this.label5.Text = "Contact Number";
     //
     // txtUserMail
     //
     this.txtUserMail.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.txtUserMail.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUserMail.Location = new System.Drawing.Point(260, 369);
     this.txtUserMail.Name = "txtUserMail";
     this.txtUserMail.Size = new System.Drawing.Size(338, 29);
     this.txtUserMail.TabIndex = 6;
     this.txtUserMail.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUserMail_KeyDown);
     this.txtUserMail.Validating += new System.ComponentModel.CancelEventHandler(this.txtUserMail_Validating_1);
     //
     // txtUserContect
     //
     this.txtUserContect.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.txtUserContect.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUserContect.Location = new System.Drawing.Point(260, 309);
     this.txtUserContect.Name = "txtUserContect";
     this.txtUserContect.Size = new System.Drawing.Size(338, 29);
     this.txtUserContect.TabIndex = 5;
     this.txtUserContect.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUserContect_KeyDown);
     this.txtUserContect.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtUserContect_KeyPress);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.Black;
     this.label7.Location = new System.Drawing.Point(107, 372);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(117, 21);
     this.label7.TabIndex = 25;
     this.label7.Text = "Email Adddress";
     //
     // txtUserPass
     //
     this.txtUserPass.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.txtUserPass.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUserPass.Location = new System.Drawing.Point(260, 192);
     this.txtUserPass.Name = "txtUserPass";
     this.txtUserPass.Size = new System.Drawing.Size(338, 29);
     this.txtUserPass.TabIndex = 3;
     this.txtUserPass.UseSystemPasswordChar = true;
     this.txtUserPass.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUserPass_KeyDown);
     //
     // txtConfirmPass
     //
     this.txtConfirmPass.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.txtConfirmPass.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtConfirmPass.Location = new System.Drawing.Point(260, 250);
     this.txtConfirmPass.Name = "txtConfirmPass";
     this.txtConfirmPass.Size = new System.Drawing.Size(338, 29);
     this.txtConfirmPass.TabIndex = 4;
     this.txtConfirmPass.UseSystemPasswordChar = true;
     this.txtConfirmPass.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtConfirmPass_KeyDown);
     //
     // txtFirstName
     //
     this.txtFirstName.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.txtFirstName.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFirstName.Location = new System.Drawing.Point(260, 91);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Size = new System.Drawing.Size(338, 29);
     this.txtFirstName.TabIndex = 1;
     this.txtFirstName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUserName_KeyDown);
     this.txtFirstName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtUserName_KeyPress);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(107, 44);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 21);
     this.label1.TabIndex = 25;
     this.label1.Text = "User Role";
     //
     // registerUser
     //
     this.registerUser.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.registerUser.Cursor = System.Windows.Forms.Cursors.Hand;
     this.registerUser.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.registerUser.FlatAppearance.CheckedBackColor = System.Drawing.Color.Gainsboro;
     this.registerUser.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Gainsboro;
     this.registerUser.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gainsboro;
     this.registerUser.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.registerUser.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.registerUser.ForeColor = System.Drawing.Color.Black;
     this.registerUser.Location = new System.Drawing.Point(284, 450);
     this.registerUser.Name = "registerUser";
     this.registerUser.Size = new System.Drawing.Size(119, 31);
     this.registerUser.TabIndex = 7;
     this.registerUser.Text = "Register";
     this.registerUser.UseVisualStyleBackColor = false;
     this.registerUser.Click += new System.EventHandler(this.registerUser_Click);
     //
     // deleteUser
     //
     this.deleteUser.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.deleteUser.Cursor = System.Windows.Forms.Cursors.Hand;
     this.deleteUser.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.deleteUser.FlatAppearance.CheckedBackColor = System.Drawing.Color.Gainsboro;
     this.deleteUser.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Gainsboro;
     this.deleteUser.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gainsboro;
     this.deleteUser.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.deleteUser.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.deleteUser.ForeColor = System.Drawing.Color.Black;
     this.deleteUser.Location = new System.Drawing.Point(409, 450);
     this.deleteUser.Name = "deleteUser";
     this.deleteUser.Size = new System.Drawing.Size(119, 31);
     this.deleteUser.TabIndex = 8;
     this.deleteUser.Text = "Delete";
     this.deleteUser.UseVisualStyleBackColor = false;
     this.deleteUser.Click += new System.EventHandler(this.deleteUser_Click);
     //
     // updateUser
     //
     this.updateUser.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.updateUser.Cursor = System.Windows.Forms.Cursors.Hand;
     this.updateUser.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.updateUser.FlatAppearance.CheckedBackColor = System.Drawing.Color.Gainsboro;
     this.updateUser.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Gainsboro;
     this.updateUser.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gainsboro;
     this.updateUser.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.updateUser.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.updateUser.ForeColor = System.Drawing.Color.Black;
     this.updateUser.Location = new System.Drawing.Point(534, 450);
     this.updateUser.Name = "updateUser";
     this.updateUser.Size = new System.Drawing.Size(119, 31);
     this.updateUser.TabIndex = 9;
     this.updateUser.Text = "Update";
     this.updateUser.UseVisualStyleBackColor = false;
     this.updateUser.Click += new System.EventHandler(this.updateUser_Click);
     //
     // gbuserRegister
     //
     this.gbuserRegister.Controls.Add(this.txtLastName);
     this.gbuserRegister.Controls.Add(this.label6);
     this.gbuserRegister.Controls.Add(this.newUser);
     this.gbuserRegister.Controls.Add(this.txtUserID);
     this.gbuserRegister.Controls.Add(this.btnGetData);
     this.gbuserRegister.Controls.Add(this.updateUser);
     this.gbuserRegister.Controls.Add(this.deleteUser);
     this.gbuserRegister.Controls.Add(this.registerUser);
     this.gbuserRegister.Controls.Add(this.label1);
     this.gbuserRegister.Controls.Add(this.txtFirstName);
     this.gbuserRegister.Controls.Add(this.txtConfirmPass);
     this.gbuserRegister.Controls.Add(this.txtUserPass);
     this.gbuserRegister.Controls.Add(this.label7);
     this.gbuserRegister.Controls.Add(this.txtUserContect);
     this.gbuserRegister.Controls.Add(this.txtUserMail);
     this.gbuserRegister.Controls.Add(this.label5);
     this.gbuserRegister.Controls.Add(this.label4);
     this.gbuserRegister.Controls.Add(this.comboRole);
     this.gbuserRegister.Controls.Add(this.label3);
     this.gbuserRegister.Controls.Add(this.label2);
     this.gbuserRegister.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbuserRegister.Location = new System.Drawing.Point(12, 116);
     this.gbuserRegister.Name = "gbuserRegister";
     this.gbuserRegister.Size = new System.Drawing.Size(1009, 518);
     this.gbuserRegister.TabIndex = 35;
     this.gbuserRegister.TabStop = false;
     //
     // txtLastName
     //
     this.txtLastName.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.txtLastName.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLastName.Location = new System.Drawing.Point(260, 138);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Size = new System.Drawing.Size(338, 29);
     this.txtLastName.TabIndex = 2;
     this.txtLastName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtLastName_KeyDown);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(107, 141);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(84, 21);
     this.label6.TabIndex = 39;
     this.label6.Text = "Last Name";
     //
     // newUser
     //
     this.newUser.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.newUser.Cursor = System.Windows.Forms.Cursors.Hand;
     this.newUser.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.newUser.FlatAppearance.CheckedBackColor = System.Drawing.Color.Gainsboro;
     this.newUser.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Gainsboro;
     this.newUser.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gainsboro;
     this.newUser.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.newUser.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.newUser.ForeColor = System.Drawing.Color.Black;
     this.newUser.Location = new System.Drawing.Point(159, 450);
     this.newUser.Name = "newUser";
     this.newUser.Size = new System.Drawing.Size(119, 31);
     this.newUser.TabIndex = 37;
     this.newUser.Text = "New";
     this.newUser.UseVisualStyleBackColor = false;
     this.newUser.Click += new System.EventHandler(this.newUser_Click);
     //
     // txtUserID
     //
     this.txtUserID.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtUserID.ForeColor = System.Drawing.SystemColors.Window;
     this.txtUserID.Location = new System.Drawing.Point(604, 41);
     this.txtUserID.Name = "txtUserID";
     this.txtUserID.Size = new System.Drawing.Size(100, 22);
     this.txtUserID.TabIndex = 47;
     //
     // btnGetData
     //
     this.btnGetData.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnGetData.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnGetData.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.btnGetData.FlatAppearance.CheckedBackColor = System.Drawing.Color.Gainsboro;
     this.btnGetData.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Gainsboro;
     this.btnGetData.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gainsboro;
     this.btnGetData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnGetData.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGetData.ForeColor = System.Drawing.Color.Black;
     this.btnGetData.Location = new System.Drawing.Point(659, 450);
     this.btnGetData.Name = "btnGetData";
     this.btnGetData.Size = new System.Drawing.Size(119, 31);
     this.btnGetData.TabIndex = 10;
     this.btnGetData.Text = "Get Data";
     this.btnGetData.UseVisualStyleBackColor = false;
     this.btnGetData.Click += new System.EventHandler(this.btnGetData_Click);
     //
     // userPrintPreviewDialog
     //
     this.userPrintPreviewDialog.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.userPrintPreviewDialog.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.userPrintPreviewDialog.ClientSize = new System.Drawing.Size(400, 300);
     this.userPrintPreviewDialog.Enabled = true;
     this.userPrintPreviewDialog.Icon = ((System.Drawing.Icon)(resources.GetObject("userPrintPreviewDialog.Icon")));
     this.userPrintPreviewDialog.Name = "userPrintPreviewDialog";
     this.userPrintPreviewDialog.Visible = false;
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1025, 642);
     this.panel1.TabIndex = 167;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.LightSkyBlue;
     this.panel3.Controls.Add(this.btnClose);
     this.panel3.Controls.Add(this.button1);
     this.panel3.Controls.Add(this.label8);
     this.panel3.Location = new System.Drawing.Point(11, 3);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1009, 41);
     this.panel3.TabIndex = 189;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Transparent;
     this.button1.BackgroundImage = global::OMMS.Properties.Resources.close_2;
     this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.button1.FlatAppearance.BorderSize = 0;
     this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor = System.Drawing.Color.Black;
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.button1.Location = new System.Drawing.Point(1127, 0);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(39, 41);
     this.button1.TabIndex = 141;
     this.button1.UseVisualStyleBackColor = false;
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(371, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(310, 39);
     this.label8.TabIndex = 3;
     this.label8.Text = "User Form";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.BackgroundImage = global::OMMS.Properties.Resources.close_2;
     this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnClose.FlatAppearance.BorderSize = 0;
     this.btnClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor = System.Drawing.Color.Black;
     this.btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(970, 0);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(39, 41);
     this.btnClose.TabIndex = 142;
     this.btnClose.UseVisualStyleBackColor = false;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click_1);
     //
     // UsersForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1025, 642);
     this.Controls.Add(this.btnUsersDetail);
     this.Controls.Add(this.btnAddUsers);
     this.Controls.Add(this.gbuserRegister);
     this.Controls.Add(this.gbUsersDetails);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "UsersForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "UsersForm";
     this.Load += new System.EventHandler(this.UsersForm_Load);
     this.gbUsersDetails.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbExit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbHome)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbLogout)).EndInit();
     this.gbuserRegister.ResumeLayout(false);
     this.gbuserRegister.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CReviewTransactionForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = 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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panel1 = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.lblServiceVoucher = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.lblServiceAcc = new System.Windows.Forms.Label();
     this.lblChequeService = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.lblCashService = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.lblEftService = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lblServiceCharge = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.DiscountLabel = new System.Windows.Forms.Label();
     this.VoucherLabel = new System.Windows.Forms.Label();
     this.grpGrossBreakDown = new System.Windows.Forms.GroupBox();
     this.label19 = new System.Windows.Forms.Label();
     this.AccLabel = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.CashLabel = new System.Windows.Forms.Label();
     this.EFTLabel = new System.Windows.Forms.Label();
     this.ChequeLabel = new System.Windows.Forms.Label();
     this.grpGross = new System.Windows.Forms.GroupBox();
     this.lblGross = new System.Windows.Forms.Label();
     this.lblGrossValue = new System.Windows.Forms.Label();
     this.lblNetSale = new System.Windows.Forms.Label();
     this.lblNetSaleValue = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.DepositLabel = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.TableNoTextBox = new System.Windows.Forms.TextBox();
     this.PriceTextBox = new System.Windows.Forms.TextBox();
     this.ReferenceTextBox = new System.Windows.Forms.TextBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.PriceCheckBox = new System.Windows.Forms.CheckBox();
     this.ReferenceCheckBox = new System.Windows.Forms.CheckBox();
     this.SearchButton = new RMSUI.FunctionalButton();
     this.label8 = new System.Windows.Forms.Label();
     this.ViewReportDataGridView = new System.Windows.Forms.DataGridView();
     this.OrderIDColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SLColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.OrderTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TableNumberColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PaymentTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TotalPaymentColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ActionButtonColumn = new System.Windows.Forms.DataGridViewButtonColumn();
     this.TabsRadioButton = new System.Windows.Forms.RadioButton();
     this.label7 = new System.Windows.Forms.Label();
     this.TakeAwayRadioButton = new System.Windows.Forms.RadioButton();
     this.TableRadioButton = new System.Windows.Forms.RadioButton();
     this.AllRedioButton = new System.Windows.Forms.RadioButton();
     this.TotalPayLabel = new System.Windows.Forms.Label();
     this.myCalendar = new System.Windows.Forms.MonthCalendar();
     this.DateLabel = new System.Windows.Forms.Label();
     this.ViewButton = new RMSUI.FunctionalButton();
     this.MonthPlusButton = new RMSUI.FunctionalButton();
     this.MonthMinusButton = new RMSUI.FunctionalButton();
     this.YearPlusButton = new RMSUI.FunctionalButton();
     this.YearMinusButton = new RMSUI.FunctionalButton();
     this.BackButton = new RMSUI.FunctionalButton();
     this.panel3 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.grpGrossBreakDown.SuspendLayout();
     this.grpGross.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ViewReportDataGridView)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.grpGrossBreakDown);
     this.panel1.Controls.Add(this.grpGross);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Controls.Add(this.DepositLabel);
     this.panel1.Controls.Add(this.label10);
     this.panel1.Controls.Add(this.TableNoTextBox);
     this.panel1.Controls.Add(this.PriceTextBox);
     this.panel1.Controls.Add(this.ReferenceTextBox);
     this.panel1.Controls.Add(this.checkBox2);
     this.panel1.Controls.Add(this.PriceCheckBox);
     this.panel1.Controls.Add(this.ReferenceCheckBox);
     this.panel1.Controls.Add(this.SearchButton);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.ViewReportDataGridView);
     this.panel1.Controls.Add(this.TabsRadioButton);
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.TakeAwayRadioButton);
     this.panel1.Controls.Add(this.TableRadioButton);
     this.panel1.Controls.Add(this.AllRedioButton);
     this.panel1.Controls.Add(this.TotalPayLabel);
     this.panel1.Controls.Add(this.myCalendar);
     this.panel1.Controls.Add(this.DateLabel);
     this.panel1.Controls.Add(this.ViewButton);
     this.panel1.Controls.Add(this.MonthPlusButton);
     this.panel1.Controls.Add(this.MonthMinusButton);
     this.panel1.Controls.Add(this.YearPlusButton);
     this.panel1.Controls.Add(this.YearMinusButton);
     this.panel1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.panel1.Location = new System.Drawing.Point(3, 47);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(800, 564);
     this.panel1.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.lblServiceVoucher);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.lblServiceAcc);
     this.groupBox2.Controls.Add(this.lblChequeService);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.lblCashService);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.lblEftService);
     this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.ForeColor = System.Drawing.Color.White;
     this.groupBox2.Location = new System.Drawing.Point(36, 430);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(318, 77);
     this.groupBox2.TabIndex = 78;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Service Charge Breakdown";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(153, 16);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(64, 15);
     this.label5.TabIndex = 73;
     this.label5.Text = "Voucher:   ";
     //
     // lblServiceVoucher
     //
     this.lblServiceVoucher.AutoSize = true;
     this.lblServiceVoucher.BackColor = System.Drawing.Color.Transparent;
     this.lblServiceVoucher.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblServiceVoucher.ForeColor = System.Drawing.Color.White;
     this.lblServiceVoucher.Location = new System.Drawing.Point(220, 16);
     this.lblServiceVoucher.Name = "lblServiceVoucher";
     this.lblServiceVoucher.Size = new System.Drawing.Size(38, 15);
     this.lblServiceVoucher.TabIndex = 74;
     this.lblServiceVoucher.Text = "0.000";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(152, 34);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(65, 15);
     this.label17.TabIndex = 71;
     this.label17.Text = "Accounts:  ";
     //
     // lblServiceAcc
     //
     this.lblServiceAcc.AutoSize = true;
     this.lblServiceAcc.BackColor = System.Drawing.Color.Transparent;
     this.lblServiceAcc.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblServiceAcc.ForeColor = System.Drawing.Color.White;
     this.lblServiceAcc.Location = new System.Drawing.Point(220, 34);
     this.lblServiceAcc.Name = "lblServiceAcc";
     this.lblServiceAcc.Size = new System.Drawing.Size(38, 15);
     this.lblServiceAcc.TabIndex = 72;
     this.lblServiceAcc.Text = "0.000";
     //
     // lblChequeService
     //
     this.lblChequeService.AutoSize = true;
     this.lblChequeService.BackColor = System.Drawing.Color.Transparent;
     this.lblChequeService.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblChequeService.ForeColor = System.Drawing.Color.White;
     this.lblChequeService.Location = new System.Drawing.Point(79, 53);
     this.lblChequeService.Name = "lblChequeService";
     this.lblChequeService.Size = new System.Drawing.Size(38, 15);
     this.lblChequeService.TabIndex = 70;
     this.lblChequeService.Text = "0.000";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(14, 54);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(59, 15);
     this.label6.TabIndex = 69;
     this.label6.Text = "Cheque:  ";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(28, 16);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(47, 15);
     this.label16.TabIndex = 67;
     this.label16.Text = "Cash:   ";
     //
     // lblCashService
     //
     this.lblCashService.AutoSize = true;
     this.lblCashService.BackColor = System.Drawing.Color.Transparent;
     this.lblCashService.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCashService.ForeColor = System.Drawing.Color.White;
     this.lblCashService.Location = new System.Drawing.Point(79, 16);
     this.lblCashService.Name = "lblCashService";
     this.lblCashService.Size = new System.Drawing.Size(38, 15);
     this.lblCashService.TabIndex = 68;
     this.lblCashService.Text = "0.000";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(35, 34);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(38, 15);
     this.label18.TabIndex = 27;
     this.label18.Text = "EFT:  ";
     //
     // lblEftService
     //
     this.lblEftService.AutoSize = true;
     this.lblEftService.BackColor = System.Drawing.Color.Transparent;
     this.lblEftService.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblEftService.ForeColor = System.Drawing.Color.White;
     this.lblEftService.Location = new System.Drawing.Point(79, 34);
     this.lblEftService.Name = "lblEftService";
     this.lblEftService.Size = new System.Drawing.Size(38, 15);
     this.lblEftService.TabIndex = 32;
     this.lblEftService.Text = "0.000";
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.lblServiceCharge);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label15);
     this.groupBox1.Controls.Add(this.DiscountLabel);
     this.groupBox1.Controls.Add(this.VoucherLabel);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.Color.White;
     this.groupBox1.Location = new System.Drawing.Point(191, 342);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(163, 85);
     this.groupBox1.TabIndex = 77;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Promotions and Discounts";
     //
     // lblServiceCharge
     //
     this.lblServiceCharge.AutoSize = true;
     this.lblServiceCharge.BackColor = System.Drawing.Color.Transparent;
     this.lblServiceCharge.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblServiceCharge.ForeColor = System.Drawing.Color.White;
     this.lblServiceCharge.Location = new System.Drawing.Point(80, 53);
     this.lblServiceCharge.Name = "lblServiceCharge";
     this.lblServiceCharge.Size = new System.Drawing.Size(38, 15);
     this.lblServiceCharge.TabIndex = 70;
     this.lblServiceCharge.Text = "0.000";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(3, 54);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(71, 15);
     this.label2.TabIndex = 69;
     this.label2.Text = "Service Ch: ";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(10, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(64, 15);
     this.label4.TabIndex = 67;
     this.label4.Text = "Discount : ";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(16, 34);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(58, 15);
     this.label15.TabIndex = 27;
     this.label15.Text = "Voucher: ";
     //
     // DiscountLabel
     //
     this.DiscountLabel.AutoSize = true;
     this.DiscountLabel.BackColor = System.Drawing.Color.Transparent;
     this.DiscountLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DiscountLabel.ForeColor = System.Drawing.Color.White;
     this.DiscountLabel.Location = new System.Drawing.Point(80, 16);
     this.DiscountLabel.Name = "DiscountLabel";
     this.DiscountLabel.Size = new System.Drawing.Size(38, 15);
     this.DiscountLabel.TabIndex = 66;
     this.DiscountLabel.Text = "0.000";
     //
     // VoucherLabel
     //
     this.VoucherLabel.AutoSize = true;
     this.VoucherLabel.BackColor = System.Drawing.Color.Transparent;
     this.VoucherLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.VoucherLabel.ForeColor = System.Drawing.Color.White;
     this.VoucherLabel.Location = new System.Drawing.Point(80, 34);
     this.VoucherLabel.Name = "VoucherLabel";
     this.VoucherLabel.Size = new System.Drawing.Size(38, 15);
     this.VoucherLabel.TabIndex = 32;
     this.VoucherLabel.Text = "0.000";
     //
     // grpGrossBreakDown
     //
     this.grpGrossBreakDown.BackColor = System.Drawing.Color.Transparent;
     this.grpGrossBreakDown.Controls.Add(this.label19);
     this.grpGrossBreakDown.Controls.Add(this.AccLabel);
     this.grpGrossBreakDown.Controls.Add(this.label12);
     this.grpGrossBreakDown.Controls.Add(this.label13);
     this.grpGrossBreakDown.Controls.Add(this.label14);
     this.grpGrossBreakDown.Controls.Add(this.CashLabel);
     this.grpGrossBreakDown.Controls.Add(this.EFTLabel);
     this.grpGrossBreakDown.Controls.Add(this.ChequeLabel);
     this.grpGrossBreakDown.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpGrossBreakDown.ForeColor = System.Drawing.Color.White;
     this.grpGrossBreakDown.Location = new System.Drawing.Point(36, 342);
     this.grpGrossBreakDown.Name = "grpGrossBreakDown";
     this.grpGrossBreakDown.Size = new System.Drawing.Size(151, 85);
     this.grpGrossBreakDown.TabIndex = 76;
     this.grpGrossBreakDown.TabStop = false;
     this.grpGrossBreakDown.Text = "Net Sales Breakdown";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(21, 67);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(56, 15);
     this.label19.TabIndex = 32;
     this.label19.Text = "Account: ";
     //
     // AccLabel
     //
     this.AccLabel.AutoSize = true;
     this.AccLabel.BackColor = System.Drawing.Color.Transparent;
     this.AccLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AccLabel.ForeColor = System.Drawing.Color.White;
     this.AccLabel.Location = new System.Drawing.Point(81, 67);
     this.AccLabel.Name = "AccLabel";
     this.AccLabel.Size = new System.Drawing.Size(38, 15);
     this.AccLabel.TabIndex = 33;
     this.AccLabel.Text = "0.000";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.White;
     this.label12.Location = new System.Drawing.Point(8, 16);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(71, 15);
     this.label12.TabIndex = 24;
     this.label12.Text = "Total Cash: ";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(41, 32);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(38, 15);
     this.label13.TabIndex = 25;
     this.label13.Text = "EFT : ";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(23, 49);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(56, 15);
     this.label14.TabIndex = 26;
     this.label14.Text = "Cheque: ";
     //
     // CashLabel
     //
     this.CashLabel.AutoSize = true;
     this.CashLabel.BackColor = System.Drawing.Color.Transparent;
     this.CashLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CashLabel.ForeColor = System.Drawing.Color.White;
     this.CashLabel.Location = new System.Drawing.Point(83, 16);
     this.CashLabel.Name = "CashLabel";
     this.CashLabel.Size = new System.Drawing.Size(38, 15);
     this.CashLabel.TabIndex = 29;
     this.CashLabel.Text = "0.000";
     //
     // EFTLabel
     //
     this.EFTLabel.AutoSize = true;
     this.EFTLabel.BackColor = System.Drawing.Color.Transparent;
     this.EFTLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EFTLabel.ForeColor = System.Drawing.Color.White;
     this.EFTLabel.Location = new System.Drawing.Point(83, 33);
     this.EFTLabel.Name = "EFTLabel";
     this.EFTLabel.Size = new System.Drawing.Size(38, 15);
     this.EFTLabel.TabIndex = 30;
     this.EFTLabel.Text = "0.000";
     //
     // ChequeLabel
     //
     this.ChequeLabel.AutoSize = true;
     this.ChequeLabel.BackColor = System.Drawing.Color.Transparent;
     this.ChequeLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ChequeLabel.ForeColor = System.Drawing.Color.White;
     this.ChequeLabel.Location = new System.Drawing.Point(83, 51);
     this.ChequeLabel.Name = "ChequeLabel";
     this.ChequeLabel.Size = new System.Drawing.Size(38, 15);
     this.ChequeLabel.TabIndex = 31;
     this.ChequeLabel.Text = "0.000";
     //
     // grpGross
     //
     this.grpGross.BackColor = System.Drawing.Color.Transparent;
     this.grpGross.Controls.Add(this.lblGross);
     this.grpGross.Controls.Add(this.lblGrossValue);
     this.grpGross.Controls.Add(this.lblNetSale);
     this.grpGross.Controls.Add(this.lblNetSaleValue);
     this.grpGross.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpGross.ForeColor = System.Drawing.Color.White;
     this.grpGross.Location = new System.Drawing.Point(36, 288);
     this.grpGross.Name = "grpGross";
     this.grpGross.Size = new System.Drawing.Size(318, 54);
     this.grpGross.TabIndex = 75;
     this.grpGross.TabStop = false;
     this.grpGross.Text = "Payment Summary";
     //
     // lblGross
     //
     this.lblGross.AutoSize = true;
     this.lblGross.BackColor = System.Drawing.Color.Transparent;
     this.lblGross.ForeColor = System.Drawing.Color.White;
     this.lblGross.Location = new System.Drawing.Point(6, 16);
     this.lblGross.Name = "lblGross";
     this.lblGross.Size = new System.Drawing.Size(61, 13);
     this.lblGross.TabIndex = 70;
     this.lblGross.Text = "Gross Sale:";
     //
     // lblGrossValue
     //
     this.lblGrossValue.AutoSize = true;
     this.lblGrossValue.BackColor = System.Drawing.Color.Transparent;
     this.lblGrossValue.ForeColor = System.Drawing.Color.White;
     this.lblGrossValue.Location = new System.Drawing.Point(84, 16);
     this.lblGrossValue.Name = "lblGrossValue";
     this.lblGrossValue.Size = new System.Drawing.Size(34, 13);
     this.lblGrossValue.TabIndex = 71;
     this.lblGrossValue.Text = "0.000";
     //
     // lblNetSale
     //
     this.lblNetSale.AutoSize = true;
     this.lblNetSale.BackColor = System.Drawing.Color.Transparent;
     this.lblNetSale.ForeColor = System.Drawing.Color.White;
     this.lblNetSale.Location = new System.Drawing.Point(17, 35);
     this.lblNetSale.Name = "lblNetSale";
     this.lblNetSale.Size = new System.Drawing.Size(51, 13);
     this.lblNetSale.TabIndex = 72;
     this.lblNetSale.Text = "Net Sale:";
     //
     // lblNetSaleValue
     //
     this.lblNetSaleValue.AutoSize = true;
     this.lblNetSaleValue.BackColor = System.Drawing.Color.Transparent;
     this.lblNetSaleValue.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNetSaleValue.ForeColor = System.Drawing.Color.White;
     this.lblNetSaleValue.Location = new System.Drawing.Point(84, 33);
     this.lblNetSaleValue.Name = "lblNetSaleValue";
     this.lblNetSaleValue.Size = new System.Drawing.Size(38, 15);
     this.lblNetSaleValue.TabIndex = 33;
     this.lblNetSaleValue.Text = "0.000";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(53, 518);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(90, 15);
     this.label11.TabIndex = 62;
     this.label11.Text = "Deposit Used : ";
     //
     // DepositLabel
     //
     this.DepositLabel.AutoSize = true;
     this.DepositLabel.BackColor = System.Drawing.Color.Transparent;
     this.DepositLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DepositLabel.ForeColor = System.Drawing.Color.White;
     this.DepositLabel.Location = new System.Drawing.Point(164, 518);
     this.DepositLabel.Name = "DepositLabel";
     this.DepositLabel.Size = new System.Drawing.Size(38, 15);
     this.DepositLabel.TabIndex = 63;
     this.DepositLabel.Text = "0.000";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(331, 4);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(120, 13);
     this.label10.TabIndex = 59;
     this.label10.Text = "Review Transaction";
     //
     // TableNoTextBox
     //
     this.TableNoTextBox.Location = new System.Drawing.Point(481, 132);
     this.TableNoTextBox.Name = "TableNoTextBox";
     this.TableNoTextBox.Size = new System.Drawing.Size(150, 20);
     this.TableNoTextBox.TabIndex = 58;
     this.TableNoTextBox.Click += new System.EventHandler(this.TableNoTextBox_Click);
     //
     // PriceTextBox
     //
     this.PriceTextBox.Location = new System.Drawing.Point(481, 95);
     this.PriceTextBox.Name = "PriceTextBox";
     this.PriceTextBox.Size = new System.Drawing.Size(150, 20);
     this.PriceTextBox.TabIndex = 57;
     this.PriceTextBox.Click += new System.EventHandler(this.PriceTextBox_Click);
     //
     // ReferenceTextBox
     //
     this.ReferenceTextBox.Location = new System.Drawing.Point(481, 61);
     this.ReferenceTextBox.Name = "ReferenceTextBox";
     this.ReferenceTextBox.Size = new System.Drawing.Size(150, 20);
     this.ReferenceTextBox.TabIndex = 56;
     this.ReferenceTextBox.Click += new System.EventHandler(this.ReferenceTextBox_Click);
     this.ReferenceTextBox.TextChanged += new System.EventHandler(this.ReferenceTextBox_TextChanged);
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.BackColor = System.Drawing.Color.Transparent;
     this.checkBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox2.ForeColor = System.Drawing.Color.White;
     this.checkBox2.Location = new System.Drawing.Point(369, 132);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(82, 17);
     this.checkBox2.TabIndex = 55;
     this.checkBox2.Text = "Table No ";
     this.checkBox2.UseVisualStyleBackColor = false;
     //
     // PriceCheckBox
     //
     this.PriceCheckBox.AutoSize = true;
     this.PriceCheckBox.BackColor = System.Drawing.Color.Transparent;
     this.PriceCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PriceCheckBox.ForeColor = System.Drawing.Color.White;
     this.PriceCheckBox.Location = new System.Drawing.Point(369, 95);
     this.PriceCheckBox.Name = "PriceCheckBox";
     this.PriceCheckBox.Size = new System.Drawing.Size(59, 17);
     this.PriceCheckBox.TabIndex = 54;
     this.PriceCheckBox.Text = "Price ";
     this.PriceCheckBox.UseVisualStyleBackColor = false;
     //
     // ReferenceCheckBox
     //
     this.ReferenceCheckBox.AutoSize = true;
     this.ReferenceCheckBox.BackColor = System.Drawing.Color.Transparent;
     this.ReferenceCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReferenceCheckBox.ForeColor = System.Drawing.Color.White;
     this.ReferenceCheckBox.Location = new System.Drawing.Point(369, 61);
     this.ReferenceCheckBox.Name = "ReferenceCheckBox";
     this.ReferenceCheckBox.Size = new System.Drawing.Size(109, 17);
     this.ReferenceCheckBox.TabIndex = 53;
     this.ReferenceCheckBox.Text = "Reference No ";
     this.ReferenceCheckBox.UseVisualStyleBackColor = false;
     //
     // SearchButton
     //
     this.SearchButton.BackColor = System.Drawing.Color.Transparent;
     this.SearchButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SearchButton.BackgroundImage")));
     this.SearchButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("SearchButton.BgImageOnMouseDown")));
     this.SearchButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("SearchButton.BgImageOnMouseUp")));
     this.SearchButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.SearchButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.SearchButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.SearchButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.SearchButton.Font = new System.Drawing.Font("Arial", 10F);
     this.SearchButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.SearchButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.SearchButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.SearchButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.SearchButton.Location = new System.Drawing.Point(642, 115);
     this.SearchButton.Name = "SearchButton";
     this.SearchButton.Size = new System.Drawing.Size(120, 40);
     this.SearchButton.TabIndex = 51;
     this.SearchButton.Text = "Search";
     this.SearchButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.SearchButton.UseVisualStyleBackColor = false;
     this.SearchButton.Click += new System.EventHandler(this.SearchButton_Click);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(337, 27);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(71, 15);
     this.label8.TabIndex = 50;
     this.label8.Text = "Search By";
     //
     // ViewReportDataGridView
     //
     this.ViewReportDataGridView.AllowUserToAddRows = false;
     this.ViewReportDataGridView.AllowUserToDeleteRows = false;
     this.ViewReportDataGridView.AllowUserToResizeColumns = false;
     this.ViewReportDataGridView.AllowUserToResizeRows = false;
     this.ViewReportDataGridView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders;
     this.ViewReportDataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
     this.ViewReportDataGridView.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.ViewReportDataGridView.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.Silver;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.ViewReportDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.ViewReportDataGridView.ColumnHeadersHeight = 32;
     this.ViewReportDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.OrderIDColumn,
     this.SLColumn,
     this.OrderTypeColumn,
     this.TableNumberColumn,
     this.PaymentTypeColumn,
     this.TotalPaymentColumn,
     this.ActionButtonColumn});
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle7.BackColor = System.Drawing.Color.WhiteSmoke;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.ViewReportDataGridView.DefaultCellStyle = dataGridViewCellStyle7;
     this.ViewReportDataGridView.GridColor = System.Drawing.SystemColors.ControlText;
     this.ViewReportDataGridView.Location = new System.Drawing.Point(381, 221);
     this.ViewReportDataGridView.Name = "ViewReportDataGridView";
     this.ViewReportDataGridView.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.ViewReportDataGridView.RowHeadersVisible = false;
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.Color.PaleTurquoise;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.Color.Black;
     this.ViewReportDataGridView.RowsDefaultCellStyle = dataGridViewCellStyle8;
     this.ViewReportDataGridView.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.ViewReportDataGridView.RowTemplate.DefaultCellStyle.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ViewReportDataGridView.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ViewReportDataGridView.RowTemplate.DefaultCellStyle.ForeColor = System.Drawing.Color.Black;
     this.ViewReportDataGridView.RowTemplate.DefaultCellStyle.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.ViewReportDataGridView.RowTemplate.Height = 20;
     this.ViewReportDataGridView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.ViewReportDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.ViewReportDataGridView.Size = new System.Drawing.Size(387, 290);
     this.ViewReportDataGridView.TabIndex = 41;
     //
     // OrderIDColumn
     //
     this.OrderIDColumn.HeaderText = "OrderID";
     this.OrderIDColumn.Name = "OrderIDColumn";
     this.OrderIDColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.OrderIDColumn.Visible = false;
     //
     // SLColumn
     //
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.SLColumn.DefaultCellStyle = dataGridViewCellStyle2;
     this.SLColumn.HeaderText = "SL";
     this.SLColumn.Name = "SLColumn";
     this.SLColumn.ReadOnly = true;
     this.SLColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.SLColumn.Width = 30;
     //
     // OrderTypeColumn
     //
     this.OrderTypeColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.OrderTypeColumn.DefaultCellStyle = dataGridViewCellStyle3;
     this.OrderTypeColumn.HeaderText = "Order Type";
     this.OrderTypeColumn.Name = "OrderTypeColumn";
     this.OrderTypeColumn.ReadOnly = true;
     this.OrderTypeColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // TableNumberColumn
     //
     this.TableNumberColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.TableNumberColumn.DefaultCellStyle = dataGridViewCellStyle4;
     this.TableNumberColumn.HeaderText = "Table Number";
     this.TableNumberColumn.Name = "TableNumberColumn";
     this.TableNumberColumn.ReadOnly = true;
     this.TableNumberColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // PaymentTypeColumn
     //
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.PaymentTypeColumn.DefaultCellStyle = dataGridViewCellStyle5;
     this.PaymentTypeColumn.HeaderText = "Payment Type";
     this.PaymentTypeColumn.Name = "PaymentTypeColumn";
     this.PaymentTypeColumn.ReadOnly = true;
     this.PaymentTypeColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.PaymentTypeColumn.Width = 130;
     //
     // TotalPaymentColumn
     //
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.TotalPaymentColumn.DefaultCellStyle = dataGridViewCellStyle6;
     this.TotalPaymentColumn.HeaderText = "Total";
     this.TotalPaymentColumn.Name = "TotalPaymentColumn";
     this.TotalPaymentColumn.ReadOnly = true;
     this.TotalPaymentColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.TotalPaymentColumn.Width = 60;
     //
     // ActionButtonColumn
     //
     this.ActionButtonColumn.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.ActionButtonColumn.HeaderText = "Action";
     this.ActionButtonColumn.Name = "ActionButtonColumn";
     this.ActionButtonColumn.Width = 80;
     //
     // TabsRadioButton
     //
     this.TabsRadioButton.AutoSize = true;
     this.TabsRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.TabsRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TabsRadioButton.ForeColor = System.Drawing.Color.White;
     this.TabsRadioButton.Location = new System.Drawing.Point(688, 181);
     this.TabsRadioButton.Name = "TabsRadioButton";
     this.TabsRadioButton.Size = new System.Drawing.Size(53, 17);
     this.TabsRadioButton.TabIndex = 40;
     this.TabsRadioButton.Text = "Tabs";
     this.TabsRadioButton.UseVisualStyleBackColor = false;
     this.TabsRadioButton.CheckedChanged += new System.EventHandler(this.TabsRadioButton_CheckedChanged);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(629, 559);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(78, 15);
     this.label7.TabIndex = 28;
     this.label7.Text = "Total Pay : ";
     this.label7.Visible = false;
     //
     // TakeAwayRadioButton
     //
     this.TakeAwayRadioButton.AutoSize = true;
     this.TakeAwayRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.TakeAwayRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TakeAwayRadioButton.ForeColor = System.Drawing.Color.White;
     this.TakeAwayRadioButton.Location = new System.Drawing.Point(556, 181);
     this.TakeAwayRadioButton.Name = "TakeAwayRadioButton";
     this.TakeAwayRadioButton.Size = new System.Drawing.Size(88, 17);
     this.TakeAwayRadioButton.TabIndex = 39;
     this.TakeAwayRadioButton.Text = "Take Away";
     this.TakeAwayRadioButton.UseVisualStyleBackColor = false;
     this.TakeAwayRadioButton.CheckedChanged += new System.EventHandler(this.TakeAwayRadioButton_CheckedChanged);
     //
     // TableRadioButton
     //
     this.TableRadioButton.AutoSize = true;
     this.TableRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.TableRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TableRadioButton.ForeColor = System.Drawing.Color.White;
     this.TableRadioButton.Location = new System.Drawing.Point(448, 181);
     this.TableRadioButton.Name = "TableRadioButton";
     this.TableRadioButton.Size = new System.Drawing.Size(57, 17);
     this.TableRadioButton.TabIndex = 38;
     this.TableRadioButton.Text = "Table";
     this.TableRadioButton.UseVisualStyleBackColor = false;
     this.TableRadioButton.CheckedChanged += new System.EventHandler(this.TableRadioButton_CheckedChanged);
     //
     // AllRedioButton
     //
     this.AllRedioButton.AutoSize = true;
     this.AllRedioButton.BackColor = System.Drawing.Color.Transparent;
     this.AllRedioButton.Checked = true;
     this.AllRedioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AllRedioButton.ForeColor = System.Drawing.Color.White;
     this.AllRedioButton.Location = new System.Drawing.Point(335, 182);
     this.AllRedioButton.Name = "AllRedioButton";
     this.AllRedioButton.Size = new System.Drawing.Size(47, 17);
     this.AllRedioButton.TabIndex = 37;
     this.AllRedioButton.TabStop = true;
     this.AllRedioButton.Text = "ALL";
     this.AllRedioButton.UseVisualStyleBackColor = false;
     this.AllRedioButton.CheckedChanged += new System.EventHandler(this.AllRedioButton_CheckedChanged);
     //
     // TotalPayLabel
     //
     this.TotalPayLabel.AutoSize = true;
     this.TotalPayLabel.BackColor = System.Drawing.Color.Transparent;
     this.TotalPayLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TotalPayLabel.ForeColor = System.Drawing.Color.White;
     this.TotalPayLabel.Location = new System.Drawing.Point(714, 559);
     this.TotalPayLabel.Name = "TotalPayLabel";
     this.TotalPayLabel.Size = new System.Drawing.Size(43, 15);
     this.TotalPayLabel.TabIndex = 33;
     this.TotalPayLabel.Text = "0.000";
     this.TotalPayLabel.Visible = false;
     //
     // myCalendar
     //
     this.myCalendar.FirstDayOfWeek = System.Windows.Forms.Day.Monday;
     this.myCalendar.Location = new System.Drawing.Point(56, 29);
     this.myCalendar.Name = "myCalendar";
     this.myCalendar.TabIndex = 36;
     this.myCalendar.TitleBackColor = System.Drawing.Color.Gray;
     this.myCalendar.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.myCalendar_DateChanged);
     this.myCalendar.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.myCalendar_DateSelected);
     //
     // DateLabel
     //
     this.DateLabel.AutoSize = true;
     this.DateLabel.BackColor = System.Drawing.Color.Transparent;
     this.DateLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DateLabel.ForeColor = System.Drawing.Color.White;
     this.DateLabel.Location = new System.Drawing.Point(103, 5);
     this.DateLabel.Name = "DateLabel";
     this.DateLabel.Size = new System.Drawing.Size(101, 20);
     this.DateLabel.TabIndex = 22;
     this.DateLabel.Text = "05-01-2008";
     //
     // ViewButton
     //
     this.ViewButton.BackColor = System.Drawing.Color.Transparent;
     this.ViewButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ViewButton.BackgroundImage")));
     this.ViewButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("ViewButton.BgImageOnMouseDown")));
     this.ViewButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("ViewButton.BgImageOnMouseUp")));
     this.ViewButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.ViewButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.ViewButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.ViewButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewButton.Font = new System.Drawing.Font("Arial", 10F);
     this.ViewButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.ViewButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.ViewButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.ViewButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.ViewButton.Location = new System.Drawing.Point(96, 244);
     this.ViewButton.Name = "ViewButton";
     this.ViewButton.Size = new System.Drawing.Size(122, 40);
     this.ViewButton.TabIndex = 5;
     this.ViewButton.Text = "View";
     this.ViewButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.ViewButton.UseVisualStyleBackColor = false;
     this.ViewButton.Click += new System.EventHandler(this.ViewButton_Click);
     //
     // MonthPlusButton
     //
     this.MonthPlusButton.BackColor = System.Drawing.Color.Transparent;
     this.MonthPlusButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MonthPlusButton.BackgroundImage")));
     this.MonthPlusButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("MonthPlusButton.BgImageOnMouseDown")));
     this.MonthPlusButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("MonthPlusButton.BgImageOnMouseUp")));
     this.MonthPlusButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.MonthPlusButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.MonthPlusButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.MonthPlusButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.MonthPlusButton.Font = new System.Drawing.Font("Arial", 10F);
     this.MonthPlusButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.MonthPlusButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.MonthPlusButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.MonthPlusButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.MonthPlusButton.Location = new System.Drawing.Point(153, 197);
     this.MonthPlusButton.Name = "MonthPlusButton";
     this.MonthPlusButton.Size = new System.Drawing.Size(75, 40);
     this.MonthPlusButton.TabIndex = 4;
     this.MonthPlusButton.Text = "Month(+)";
     this.MonthPlusButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.MonthPlusButton.UseVisualStyleBackColor = false;
     this.MonthPlusButton.Click += new System.EventHandler(this.MonthPlusButton_Click);
     //
     // MonthMinusButton
     //
     this.MonthMinusButton.BackColor = System.Drawing.Color.Transparent;
     this.MonthMinusButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MonthMinusButton.BackgroundImage")));
     this.MonthMinusButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("MonthMinusButton.BgImageOnMouseDown")));
     this.MonthMinusButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("MonthMinusButton.BgImageOnMouseUp")));
     this.MonthMinusButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.MonthMinusButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.MonthMinusButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.MonthMinusButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.MonthMinusButton.Font = new System.Drawing.Font("Arial", 10F);
     this.MonthMinusButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.MonthMinusButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.MonthMinusButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.MonthMinusButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.MonthMinusButton.Location = new System.Drawing.Point(75, 197);
     this.MonthMinusButton.Name = "MonthMinusButton";
     this.MonthMinusButton.Size = new System.Drawing.Size(76, 40);
     this.MonthMinusButton.TabIndex = 3;
     this.MonthMinusButton.Text = "Month (-)";
     this.MonthMinusButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.MonthMinusButton.UseVisualStyleBackColor = false;
     this.MonthMinusButton.Click += new System.EventHandler(this.MonthMinusButton_Click);
     //
     // YearPlusButton
     //
     this.YearPlusButton.BackColor = System.Drawing.Color.Transparent;
     this.YearPlusButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("YearPlusButton.BackgroundImage")));
     this.YearPlusButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("YearPlusButton.BgImageOnMouseDown")));
     this.YearPlusButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("YearPlusButton.BgImageOnMouseUp")));
     this.YearPlusButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.YearPlusButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.YearPlusButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.YearPlusButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.YearPlusButton.Font = new System.Drawing.Font("Arial", 10F);
     this.YearPlusButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.YearPlusButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.YearPlusButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.YearPlusButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.YearPlusButton.Location = new System.Drawing.Point(230, 197);
     this.YearPlusButton.Name = "YearPlusButton";
     this.YearPlusButton.Size = new System.Drawing.Size(69, 40);
     this.YearPlusButton.TabIndex = 2;
     this.YearPlusButton.Text = "Year( +)";
     this.YearPlusButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.YearPlusButton.UseVisualStyleBackColor = false;
     this.YearPlusButton.Click += new System.EventHandler(this.YearPlusButton_Click);
     //
     // YearMinusButton
     //
     this.YearMinusButton.BackColor = System.Drawing.Color.Transparent;
     this.YearMinusButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("YearMinusButton.BackgroundImage")));
     this.YearMinusButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("YearMinusButton.BgImageOnMouseDown")));
     this.YearMinusButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("YearMinusButton.BgImageOnMouseUp")));
     this.YearMinusButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.YearMinusButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.YearMinusButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.YearMinusButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.YearMinusButton.Font = new System.Drawing.Font("Arial", 10F);
     this.YearMinusButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.YearMinusButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.YearMinusButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.YearMinusButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.YearMinusButton.Location = new System.Drawing.Point(3, 197);
     this.YearMinusButton.Name = "YearMinusButton";
     this.YearMinusButton.Size = new System.Drawing.Size(70, 40);
     this.YearMinusButton.TabIndex = 1;
     this.YearMinusButton.Text = "Year( - )";
     this.YearMinusButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.YearMinusButton.UseVisualStyleBackColor = false;
     this.YearMinusButton.Click += new System.EventHandler(this.YearMinusButton_Click);
     //
     // BackButton
     //
     this.BackButton.BackColor = System.Drawing.Color.Transparent;
     this.BackButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BackButton.BackgroundImage")));
     this.BackButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("BackButton.BgImageOnMouseDown")));
     this.BackButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("BackButton.BgImageOnMouseUp")));
     this.BackButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.BackButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.BackButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.BackButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BackButton.Font = new System.Drawing.Font("Arial", 10F);
     this.BackButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.BackButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.BackButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Back;
     this.BackButton.Image = ((System.Drawing.Image)(resources.GetObject("BackButton.Image")));
     this.BackButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.BackButton.Location = new System.Drawing.Point(41, 640);
     this.BackButton.Name = "BackButton";
     this.BackButton.Size = new System.Drawing.Size(145, 52);
     this.BackButton.TabIndex = 20;
     this.BackButton.Text = "Back";
     this.BackButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.BackButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.BackButton.UseVisualStyleBackColor = false;
     this.BackButton.Click += new System.EventHandler(this.BackButton_Click);
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Transparent;
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.label1);
     this.panel3.Location = new System.Drawing.Point(381, 210);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(387, 22);
     this.panel3.TabIndex = 21;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.SteelBlue;
     this.label1.Location = new System.Drawing.Point(165, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(98, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Transactions";
     //
     // CReviewTransactionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ControlText;
     this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize = new System.Drawing.Size(800, 697);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.BackButton);
     this.Name = "CReviewTransactionForm";
     this.ScreenTitle = "Customer Review Transaction";
     this.Text = "CViewReportForm";
     this.Load += new System.EventHandler(this.CViewReportForm_Load);
     this.Controls.SetChildIndex(this.BackButton, 0);
     this.Controls.SetChildIndex(this.panel1, 0);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.grpGrossBreakDown.ResumeLayout(false);
     this.grpGrossBreakDown.PerformLayout();
     this.grpGross.ResumeLayout(false);
     this.grpGross.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ViewReportDataGridView)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <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._dataGridView = new System.Windows.Forms.DataGridView();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this._aggiungiSettoreButton = new System.Windows.Forms.Button();
     this._settoreName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._numPiante = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._fabbisognoTotaleSettore = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._pianteButton = new System.Windows.Forms.DataGridViewButtonColumn();
     this._eliminaSettoreButton = new System.Windows.Forms.DataGridViewButtonColumn();
     ((System.ComponentModel.ISupportInitialize)(this._dataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // _dataGridView
     //
     this._dataGridView.AllowUserToAddRows = false;
     this._dataGridView.AllowUserToDeleteRows = false;
     this._dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this._dataGridView.BackgroundColor = System.Drawing.Color.Silver;
     this._dataGridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this._dataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this._dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this._dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._settoreName,
     this._numPiante,
     this._fabbisognoTotaleSettore,
     this._pianteButton,
     this._eliminaSettoreButton});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this._dataGridView.DefaultCellStyle = dataGridViewCellStyle2;
     this._dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this._dataGridView.Location = new System.Drawing.Point(0, 24);
     this._dataGridView.Name = "_dataGridView";
     this._dataGridView.RowHeadersVisible = false;
     this._dataGridView.Size = new System.Drawing.Size(587, 376);
     this._dataGridView.TabIndex = 0;
     //
     // menuStrip1
     //
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(587, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text = "menuStrip1";
     //
     // _aggiungiSettoreButton
     //
     this._aggiungiSettoreButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this._aggiungiSettoreButton.Location = new System.Drawing.Point(3, 0);
     this._aggiungiSettoreButton.Name = "_aggiungiSettoreButton";
     this._aggiungiSettoreButton.Size = new System.Drawing.Size(111, 23);
     this._aggiungiSettoreButton.TabIndex = 2;
     this._aggiungiSettoreButton.Text = "Aggiungi settore";
     this._aggiungiSettoreButton.UseVisualStyleBackColor = true;
     this._aggiungiSettoreButton.Click += new System.EventHandler(this._aggiungiSettoreButton_Click);
     //
     // _settoreName
     //
     this._settoreName.HeaderText = "Settore";
     this._settoreName.Name = "_settoreName";
     this._settoreName.ReadOnly = true;
     //
     // _numPiante
     //
     this._numPiante.HeaderText = "N° piante";
     this._numPiante.Name = "_numPiante";
     this._numPiante.ReadOnly = true;
     //
     // _fabbisognoTotaleSettore
     //
     this._fabbisognoTotaleSettore.HeaderText = "Fabbisogno totale";
     this._fabbisognoTotaleSettore.Name = "_fabbisognoTotaleSettore";
     this._fabbisognoTotaleSettore.ReadOnly = true;
     //
     // _pianteButton
     //
     this._pianteButton.HeaderText = "";
     this._pianteButton.Name = "_pianteButton";
     this._pianteButton.ReadOnly = true;
     //
     // _eliminaSettoreButton
     //
     this._eliminaSettoreButton.HeaderText = "";
     this._eliminaSettoreButton.Name = "_eliminaSettoreButton";
     //
     // SettoriView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Silver;
     this.Controls.Add(this._aggiungiSettoreButton);
     this.Controls.Add(this._dataGridView);
     this.Controls.Add(this.menuStrip1);
     this.Name = "SettoriView";
     ((System.ComponentModel.ISupportInitialize)(this._dataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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 dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.label7 = new System.Windows.Forms.Label();
     this.comboExpenceAccount = new System.Windows.Forms.ComboBox();
     this.txtCashAcCode = new System.Windows.Forms.TextBox();
     this.btnUpdate = new System.Windows.Forms.Button();
     this.btnNew = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.txtVocNo = new System.Windows.Forms.TextBox();
     this.comboExpenceType = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.dpExpence = new System.Windows.Forms.DateTimePicker();
     this.Label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtNotes = new System.Windows.Forms.TextBox();
     this.txtExpenceDis = new System.Windows.Forms.TextBox();
     this.txtExpenceAmount = new System.Windows.Forms.TextBox();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.lbExpence = new System.Windows.Forms.Label();
     this.txtTotalExpenceAmount = new System.Windows.Forms.TextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.comboExpenceSerch = new System.Windows.Forms.ComboBox();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ExpenceDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Column7 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.btnClose = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl1.Location = new System.Drawing.Point(14, 94);
     this.tabControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(930, 399);
     this.tabControl1.TabIndex = 65;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.label7);
     this.tabPage1.Controls.Add(this.comboExpenceAccount);
     this.tabPage1.Controls.Add(this.txtCashAcCode);
     this.tabPage1.Controls.Add(this.btnUpdate);
     this.tabPage1.Controls.Add(this.btnNew);
     this.tabPage1.Controls.Add(this.btnSave);
     this.tabPage1.Controls.Add(this.txtVocNo);
     this.tabPage1.Controls.Add(this.comboExpenceType);
     this.tabPage1.Controls.Add(this.label8);
     this.tabPage1.Controls.Add(this.dpExpence);
     this.tabPage1.Controls.Add(this.Label4);
     this.tabPage1.Controls.Add(this.label5);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.label6);
     this.tabPage1.Controls.Add(this.txtNotes);
     this.tabPage1.Controls.Add(this.txtExpenceDis);
     this.tabPage1.Controls.Add(this.txtExpenceAmount);
     this.tabPage1.Location = new System.Drawing.Point(4, 30);
     this.tabPage1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabPage1.Size = new System.Drawing.Size(922, 365);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Add Expence";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.Black;
     this.label7.Location = new System.Drawing.Point(442, 175);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(65, 21);
     this.label7.TabIndex = 119;
     this.label7.Text = "Amount";
     //
     // comboExpenceAccount
     //
     this.comboExpenceAccount.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboExpenceAccount.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboExpenceAccount.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboExpenceAccount.FormattingEnabled = true;
     this.comboExpenceAccount.Location = new System.Drawing.Point(536, 175);
     this.comboExpenceAccount.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.comboExpenceAccount.Name = "comboExpenceAccount";
     this.comboExpenceAccount.Size = new System.Drawing.Size(236, 25);
     this.comboExpenceAccount.TabIndex = 117;
     this.comboExpenceAccount.SelectedIndexChanged += new System.EventHandler(this.comboExpenceAccount_SelectedIndexChanged);
     //
     // txtCashAcCode
     //
     this.txtCashAcCode.AutoCompleteCustomSource.AddRange(new string[] {
     "Muhammad"});
     this.txtCashAcCode.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.txtCashAcCode.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
     this.txtCashAcCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCashAcCode.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCashAcCode.Location = new System.Drawing.Point(780, 172);
     this.txtCashAcCode.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtCashAcCode.MaxLength = 250;
     this.txtCashAcCode.Name = "txtCashAcCode";
     this.txtCashAcCode.ReadOnly = true;
     this.txtCashAcCode.Size = new System.Drawing.Size(49, 25);
     this.txtCashAcCode.TabIndex = 116;
     this.txtCashAcCode.TabStop = false;
     this.txtCashAcCode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // btnUpdate
     //
     this.btnUpdate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnUpdate.FlatAppearance.BorderSize = 0;
     this.btnUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Silver;
     this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnUpdate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnUpdate.ForeColor = System.Drawing.Color.White;
     this.btnUpdate.Image = global::OMMS.Properties.Resources.Edit_26;
     this.btnUpdate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnUpdate.Location = new System.Drawing.Point(536, 302);
     this.btnUpdate.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(139, 42);
     this.btnUpdate.TabIndex = 112;
     this.btnUpdate.Text = "Update";
     this.btnUpdate.UseVisualStyleBackColor = false;
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // btnNew
     //
     this.btnNew.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnNew.FlatAppearance.BorderSize = 0;
     this.btnNew.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Silver;
     this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnNew.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNew.ForeColor = System.Drawing.Color.White;
     this.btnNew.Image = global::OMMS.Properties.Resources.Plus_26;
     this.btnNew.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnNew.Location = new System.Drawing.Point(245, 302);
     this.btnNew.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(139, 42);
     this.btnNew.TabIndex = 106;
     this.btnNew.Text = "New";
     this.btnNew.UseVisualStyleBackColor = false;
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // btnSave
     //
     this.btnSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.btnSave.FlatAppearance.BorderSize = 0;
     this.btnSave.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Silver;
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSave.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSave.ForeColor = System.Drawing.Color.White;
     this.btnSave.Image = global::OMMS.Properties.Resources.Save_26;
     this.btnSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(390, 302);
     this.btnSave.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(139, 42);
     this.btnSave.TabIndex = 105;
     this.btnSave.Text = "Save";
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // txtVocNo
     //
     this.txtVocNo.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtVocNo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtVocNo.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtVocNo.Location = new System.Drawing.Point(273, 31);
     this.txtVocNo.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtVocNo.Name = "txtVocNo";
     this.txtVocNo.ReadOnly = true;
     this.txtVocNo.Size = new System.Drawing.Size(165, 25);
     this.txtVocNo.TabIndex = 115;
     this.txtVocNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // comboExpenceType
     //
     this.comboExpenceType.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboExpenceType.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboExpenceType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.comboExpenceType.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.comboExpenceType.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboExpenceType.FormattingEnabled = true;
     this.comboExpenceType.Location = new System.Drawing.Point(273, 75);
     this.comboExpenceType.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.comboExpenceType.Name = "comboExpenceType";
     this.comboExpenceType.Size = new System.Drawing.Size(502, 29);
     this.comboExpenceType.TabIndex = 100;
     this.comboExpenceType.SelectedIndexChanged += new System.EventHandler(this.comboExpenceType_SelectedIndexChanged);
     this.comboExpenceType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboExpenceType_KeyDown);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(91, 33);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(85, 21);
     this.label8.TabIndex = 114;
     this.label8.Text = "Expence ID";
     //
     // dpExpence
     //
     this.dpExpence.CalendarFont = new System.Drawing.Font("Segoe UI Semibold", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dpExpence.CustomFormat = "dd/MM/yyyy";
     this.dpExpence.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dpExpence.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dpExpence.Location = new System.Drawing.Point(567, 29);
     this.dpExpence.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.dpExpence.Name = "dpExpence";
     this.dpExpence.Size = new System.Drawing.Size(207, 25);
     this.dpExpence.TabIndex = 113;
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label4.ForeColor = System.Drawing.Color.Black;
     this.Label4.Location = new System.Drawing.Point(446, 32);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(97, 21);
     this.Label4.TabIndex = 108;
     this.Label4.Text = "Choose Date";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(91, 78);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(101, 21);
     this.label5.TabIndex = 109;
     this.label5.Text = "Expence Type";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(88, 220);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(114, 21);
     this.label2.TabIndex = 110;
     this.label2.Text = "Expance Details";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(91, 130);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(145, 21);
     this.label3.TabIndex = 110;
     this.label3.Text = "Expance Description";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Segoe UI Light", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(88, 175);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(125, 21);
     this.label6.TabIndex = 110;
     this.label6.Text = "Expance Amount";
     //
     // txtNotes
     //
     this.txtNotes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNotes.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNotes.Location = new System.Drawing.Point(270, 220);
     this.txtNotes.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtNotes.Multiline = true;
     this.txtNotes.Name = "txtNotes";
     this.txtNotes.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtNotes.Size = new System.Drawing.Size(502, 58);
     this.txtNotes.TabIndex = 104;
     this.txtNotes.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNotes_KeyDown);
     //
     // txtExpenceDis
     //
     this.txtExpenceDis.BackColor = System.Drawing.Color.White;
     this.txtExpenceDis.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExpenceDis.Location = new System.Drawing.Point(270, 125);
     this.txtExpenceDis.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtExpenceDis.Name = "txtExpenceDis";
     this.txtExpenceDis.Size = new System.Drawing.Size(504, 25);
     this.txtExpenceDis.TabIndex = 101;
     this.txtExpenceDis.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtExpenceDis_KeyDown);
     //
     // txtExpenceAmount
     //
     this.txtExpenceAmount.BackColor = System.Drawing.Color.White;
     this.txtExpenceAmount.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExpenceAmount.Location = new System.Drawing.Point(270, 171);
     this.txtExpenceAmount.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtExpenceAmount.Name = "txtExpenceAmount";
     this.txtExpenceAmount.Size = new System.Drawing.Size(165, 25);
     this.txtExpenceAmount.TabIndex = 101;
     this.txtExpenceAmount.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtExpenceAmount_KeyDown);
     this.txtExpenceAmount.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtExpenceAmount_KeyPress);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.lbExpence);
     this.tabPage2.Controls.Add(this.txtTotalExpenceAmount);
     this.tabPage2.Controls.Add(this.button1);
     this.tabPage2.Controls.Add(this.comboExpenceSerch);
     this.tabPage2.Controls.Add(this.dataGridView1);
     this.tabPage2.Location = new System.Drawing.Point(4, 30);
     this.tabPage2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabPage2.Size = new System.Drawing.Size(922, 547);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "View Expence";
     this.tabPage2.UseVisualStyleBackColor = true;
     this.tabPage2.Click += new System.EventHandler(this.tabPage2_Click);
     //
     // lbExpence
     //
     this.lbExpence.AutoSize = true;
     this.lbExpence.Location = new System.Drawing.Point(437, 29);
     this.lbExpence.Name = "lbExpence";
     this.lbExpence.Size = new System.Drawing.Size(108, 21);
     this.lbExpence.TabIndex = 109;
     this.lbExpence.Text = "Total Amount ";
     //
     // txtTotalExpenceAmount
     //
     this.txtTotalExpenceAmount.Location = new System.Drawing.Point(676, 26);
     this.txtTotalExpenceAmount.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtTotalExpenceAmount.Name = "txtTotalExpenceAmount";
     this.txtTotalExpenceAmount.Size = new System.Drawing.Size(230, 29);
     this.txtTotalExpenceAmount.TabIndex = 108;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.button1.FlatAppearance.BorderSize = 0;
     this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Silver;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor = System.Drawing.Color.White;
     this.button1.Location = new System.Drawing.Point(285, 22);
     this.button1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(128, 42);
     this.button1.TabIndex = 107;
     this.button1.Text = "Get All Expence";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // comboExpenceSerch
     //
     this.comboExpenceSerch.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboExpenceSerch.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboExpenceSerch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.comboExpenceSerch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.comboExpenceSerch.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboExpenceSerch.FormattingEnabled = true;
     this.comboExpenceSerch.Location = new System.Drawing.Point(7, 26);
     this.comboExpenceSerch.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.comboExpenceSerch.Name = "comboExpenceSerch";
     this.comboExpenceSerch.Size = new System.Drawing.Size(251, 29);
     this.comboExpenceSerch.TabIndex = 101;
     this.comboExpenceSerch.SelectedIndexChanged += new System.EventHandler(this.comboExpenceSerch_SelectedIndexChanged);
     //
     // dataGridView1
     //
     this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.ExpenceDate,
     this.Column2,
     this.Column3,
     this.Column4,
     this.Column5,
     this.Column7,
     this.Column6});
     this.dataGridView1.Location = new System.Drawing.Point(3, 76);
     this.dataGridView1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(903, 456);
     this.dataGridView1.TabIndex = 0;
     this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
     this.dataGridView1.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_CellMouseClick);
     this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
     //
     // Column1
     //
     this.Column1.HeaderText = "Expence ID";
     this.Column1.Name = "Column1";
     this.Column1.Width = 70;
     //
     // ExpenceDate
     //
     this.ExpenceDate.HeaderText = "ExpenceDate";
     this.ExpenceDate.Name = "ExpenceDate";
     this.ExpenceDate.Width = 120;
     //
     // Column2
     //
     this.Column2.HeaderText = "Expence Type";
     this.Column2.Name = "Column2";
     this.Column2.Width = 200;
     //
     // Column3
     //
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.Column3.DefaultCellStyle = dataGridViewCellStyle4;
     this.Column3.HeaderText = "Expence Amount";
     this.Column3.Name = "Column3";
     this.Column3.Width = 150;
     //
     // Column4
     //
     this.Column4.HeaderText = "Expence Discription";
     this.Column4.Name = "Column4";
     this.Column4.Width = 200;
     //
     // Column5
     //
     this.Column5.HeaderText = "Edit";
     this.Column5.Name = "Column5";
     this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Column5.Width = 60;
     //
     // Column7
     //
     this.Column7.HeaderText = "Delete";
     this.Column7.Name = "Column7";
     this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Column7.Width = 60;
     //
     // Column6
     //
     this.Column6.HeaderText = "Notes";
     this.Column6.Name = "Column6";
     this.Column6.Visible = false;
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(968, 503);
     this.panel1.TabIndex = 66;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.panel2.Controls.Add(this.btnClose);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Location = new System.Drawing.Point(-1, 11);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(958, 41);
     this.panel2.TabIndex = 14;
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.BackgroundImage = global::OMMS.Properties.Resources.close_2;
     this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnClose.FlatAppearance.BorderSize = 0;
     this.btnClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor = System.Drawing.Color.Black;
     this.btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(919, 0);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(39, 41);
     this.btnClose.TabIndex = 142;
     this.btnClose.UseVisualStyleBackColor = false;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(397, 3);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(164, 32);
     this.label1.TabIndex = 3;
     this.label1.Text = "Expance Form";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // frmExpance
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(968, 503);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.panel1);
     this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "frmExpance";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Expence Form";
     this.Load += new System.EventHandler(this.frmExpance_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.ResumeLayout(false);
 }
Example #25
0
 /// <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(Formula_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.Listado = new System.Windows.Forms.DataGridView();
     this.TipoFormulaBS = new System.Windows.Forms.BindingSource(this.components);
     this.FormulateBS = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionFormula = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.Btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.criterioCbx = new System.Windows.Forms.ToolStripComboBox();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.crearGbx = new System.Windows.Forms.GroupBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.Btn_Cancelar = new System.Windows.Forms.Button();
     this.Btn_Crear = new System.Windows.Forms.Button();
     this.txt_Descripcion = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.editarGbx = new System.Windows.Forms.GroupBox();
     this.button1 = new System.Windows.Forms.Button();
     this.updateDescripcionTxt = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.updateNombreTxt = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.Btn_Guardar = new System.Windows.Forms.Button();
     this.eP_errors = new System.Windows.Forms.ErrorProvider(this.components);
     this.nROFORMULADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nROTIPOFORMULADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nOMBREDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NROTIPOFORMULA = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.eXPRESIONDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dESCRIPCIONDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.pn_listado.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Listado)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TipoFormulaBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.FormulateBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionFormula)).BeginInit();
     this.paginacionFormula.SuspendLayout();
     this.pn_crear.SuspendLayout();
     this.crearGbx.SuspendLayout();
     this.pn_editar.SuspendLayout();
     this.editarGbx.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).BeginInit();
     this.SuspendLayout();
     //
     // pn_listado
     //
     this.pn_listado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_listado.Controls.Add(this.Listado);
     this.pn_listado.Controls.Add(this.paginacionFormula);
     this.pn_listado.Location = new System.Drawing.Point(0, 0);
     this.pn_listado.Name = "pn_listado";
     this.pn_listado.Size = new System.Drawing.Size(702, 323);
     this.pn_listado.TabIndex = 0;
     //
     // Listado
     //
     this.Listado.AllowUserToAddRows = false;
     this.Listado.AllowUserToDeleteRows = false;
     this.Listado.AutoGenerateColumns = false;
     this.Listado.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.Listado.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.Listado.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nROFORMULADataGridViewTextBoxColumn,
     this.nROTIPOFORMULADataGridViewTextBoxColumn,
     this.nOMBREDataGridViewTextBoxColumn,
     this.NROTIPOFORMULA,
     this.eXPRESIONDataGridViewTextBoxColumn,
     this.dESCRIPCIONDataGridViewTextBoxColumn,
     this.Editar,
     this.Eliminar});
     this.Listado.DataSource = this.FormulateBS;
     this.Listado.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Listado.Location = new System.Drawing.Point(0, 25);
     this.Listado.Name = "Listado";
     this.Listado.ReadOnly = true;
     this.Listado.Size = new System.Drawing.Size(698, 294);
     this.Listado.TabIndex = 0;
     this.Listado.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Listado_CellValueChanged);
     //
     // TipoFormulaBS
     //
     this.TipoFormulaBS.DataSource = typeof(SIFCA_DAL.TIPOFORMULA);
     //
     // FormulateBS
     //
     this.FormulateBS.DataSource = typeof(SIFCA_DAL.FORMULA);
     //
     // paginacionFormula
     //
     this.paginacionFormula.AddNewItem = null;
     this.paginacionFormula.BindingSource = this.FormulateBS;
     this.paginacionFormula.CountItem = this.bindingNavigatorCountItem;
     this.paginacionFormula.DeleteItem = null;
     this.paginacionFormula.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Btn_nuevo,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.buscarLbl,
     this.busquedaTxt,
     this.criterioCbx});
     this.paginacionFormula.Location = new System.Drawing.Point(0, 0);
     this.paginacionFormula.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.paginacionFormula.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.paginacionFormula.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.paginacionFormula.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.paginacionFormula.Name = "paginacionFormula";
     this.paginacionFormula.PositionItem = this.bindingNavigatorPositionItem;
     this.paginacionFormula.Size = new System.Drawing.Size(698, 25);
     this.paginacionFormula.TabIndex = 4;
     this.paginacionFormula.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // Btn_nuevo
     //
     this.Btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("Btn_nuevo.Image")));
     this.Btn_nuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_nuevo.Name = "Btn_nuevo";
     this.Btn_nuevo.Size = new System.Drawing.Size(46, 22);
     this.Btn_nuevo.Text = "Nuevo";
     this.Btn_nuevo.Click += new System.EventHandler(this.Btn_nuevo_Click);
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // buscarLbl
     //
     this.buscarLbl.Name = "buscarLbl";
     this.buscarLbl.Size = new System.Drawing.Size(45, 22);
     this.buscarLbl.Text = "Buscar:";
     //
     // busquedaTxt
     //
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(150, 25);
     this.busquedaTxt.TextChanged += new System.EventHandler(this.busquedaTxt_TextChanged);
     //
     // criterioCbx
     //
     this.criterioCbx.Items.AddRange(new object[] {
     "Nombre",
     "Descripción"});
     this.criterioCbx.Name = "criterioCbx";
     this.criterioCbx.Size = new System.Drawing.Size(121, 25);
     //
     // pn_crear
     //
     this.pn_crear.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_crear.Controls.Add(this.crearGbx);
     this.pn_crear.Location = new System.Drawing.Point(0, 0);
     this.pn_crear.Name = "pn_crear";
     this.pn_crear.Size = new System.Drawing.Size(339, 269);
     this.pn_crear.TabIndex = 1;
     //
     // crearGbx
     //
     this.crearGbx.Controls.Add(this.textBox1);
     this.crearGbx.Controls.Add(this.label3);
     this.crearGbx.Controls.Add(this.Btn_Cancelar);
     this.crearGbx.Controls.Add(this.Btn_Crear);
     this.crearGbx.Controls.Add(this.txt_Descripcion);
     this.crearGbx.Controls.Add(this.label2);
     this.crearGbx.Location = new System.Drawing.Point(12, 9);
     this.crearGbx.Name = "crearGbx";
     this.crearGbx.Size = new System.Drawing.Size(306, 242);
     this.crearGbx.TabIndex = 2;
     this.crearGbx.TabStop = false;
     this.crearGbx.Text = "Crear Formula";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(105, 19);
     this.textBox1.MaxLength = 150;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(179, 20);
     this.textBox1.TabIndex = 7;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(9, 22);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 6;
     this.label3.Text = "Nombre";
     //
     // Btn_Cancelar
     //
     this.Btn_Cancelar.Location = new System.Drawing.Point(171, 206);
     this.Btn_Cancelar.Name = "Btn_Cancelar";
     this.Btn_Cancelar.Size = new System.Drawing.Size(113, 23);
     this.Btn_Cancelar.TabIndex = 5;
     this.Btn_Cancelar.Text = "Cancelar";
     this.Btn_Cancelar.UseVisualStyleBackColor = true;
     this.Btn_Cancelar.Click += new System.EventHandler(this.btn_Cancelar_Click);
     //
     // Btn_Crear
     //
     this.Btn_Crear.Location = new System.Drawing.Point(12, 206);
     this.Btn_Crear.Name = "Btn_Crear";
     this.Btn_Crear.Size = new System.Drawing.Size(101, 23);
     this.Btn_Crear.TabIndex = 1;
     this.Btn_Crear.Text = "Crear";
     this.Btn_Crear.UseVisualStyleBackColor = true;
     this.Btn_Crear.Click += new System.EventHandler(this.Btn_Crear_Click);
     //
     // txt_Descripcion
     //
     this.txt_Descripcion.Location = new System.Drawing.Point(105, 101);
     this.txt_Descripcion.MaxLength = 500;
     this.txt_Descripcion.Multiline = true;
     this.txt_Descripcion.Name = "txt_Descripcion";
     this.txt_Descripcion.Size = new System.Drawing.Size(179, 76);
     this.txt_Descripcion.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(9, 101);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(63, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Descripcion";
     //
     // pn_editar
     //
     this.pn_editar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_editar.Controls.Add(this.editarGbx);
     this.pn_editar.Location = new System.Drawing.Point(0, 0);
     this.pn_editar.Name = "pn_editar";
     this.pn_editar.Size = new System.Drawing.Size(318, 185);
     this.pn_editar.TabIndex = 2;
     //
     // editarGbx
     //
     this.editarGbx.Controls.Add(this.button1);
     this.editarGbx.Controls.Add(this.updateDescripcionTxt);
     this.editarGbx.Controls.Add(this.label6);
     this.editarGbx.Controls.Add(this.updateNombreTxt);
     this.editarGbx.Controls.Add(this.label1);
     this.editarGbx.Controls.Add(this.Btn_Guardar);
     this.editarGbx.Location = new System.Drawing.Point(12, 0);
     this.editarGbx.Name = "editarGbx";
     this.editarGbx.Size = new System.Drawing.Size(285, 160);
     this.editarGbx.TabIndex = 0;
     this.editarGbx.TabStop = false;
     this.editarGbx.Text = "Editar Calidad";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(190, 125);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 28;
     this.button1.Text = "Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Btn_CancelarUpdate_Click);
     //
     // updateDescripcionTxt
     //
     this.updateDescripcionTxt.Location = new System.Drawing.Point(86, 47);
     this.updateDescripcionTxt.MaxLength = 500;
     this.updateDescripcionTxt.Multiline = true;
     this.updateDescripcionTxt.Name = "updateDescripcionTxt";
     this.updateDescripcionTxt.ShortcutsEnabled = false;
     this.updateDescripcionTxt.Size = new System.Drawing.Size(179, 72);
     this.updateDescripcionTxt.TabIndex = 1;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(16, 47);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(63, 13);
     this.label6.TabIndex = 6;
     this.label6.Text = "Descripción";
     //
     // updateNombreTxt
     //
     this.updateNombreTxt.Location = new System.Drawing.Point(87, 18);
     this.updateNombreTxt.Name = "updateNombreTxt";
     this.updateNombreTxt.ReadOnly = true;
     this.updateNombreTxt.Size = new System.Drawing.Size(178, 20);
     this.updateNombreTxt.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(15, 18);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(44, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Nombre";
     //
     // Btn_Guardar
     //
     this.Btn_Guardar.Location = new System.Drawing.Point(18, 125);
     this.Btn_Guardar.Name = "Btn_Guardar";
     this.Btn_Guardar.Size = new System.Drawing.Size(75, 23);
     this.Btn_Guardar.TabIndex = 2;
     this.Btn_Guardar.Text = "Guardar";
     this.Btn_Guardar.UseVisualStyleBackColor = true;
     this.Btn_Guardar.Click += new System.EventHandler(this.Btn_guardar_Click);
     //
     // eP_errors
     //
     this.eP_errors.ContainerControl = this;
     //
     // nROFORMULADataGridViewTextBoxColumn
     //
     this.nROFORMULADataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.nROFORMULADataGridViewTextBoxColumn.DataPropertyName = "NROFORMULA";
     this.nROFORMULADataGridViewTextBoxColumn.HeaderText = "NROFORMULA";
     this.nROFORMULADataGridViewTextBoxColumn.Name = "nROFORMULADataGridViewTextBoxColumn";
     this.nROFORMULADataGridViewTextBoxColumn.ReadOnly = true;
     this.nROFORMULADataGridViewTextBoxColumn.Visible = false;
     this.nROFORMULADataGridViewTextBoxColumn.Width = 108;
     //
     // nROTIPOFORMULADataGridViewTextBoxColumn
     //
     this.nROTIPOFORMULADataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.nROTIPOFORMULADataGridViewTextBoxColumn.DataPropertyName = "NROTIPOFORMULA";
     this.nROTIPOFORMULADataGridViewTextBoxColumn.HeaderText = "NROTIPOFORMULA";
     this.nROTIPOFORMULADataGridViewTextBoxColumn.Name = "nROTIPOFORMULADataGridViewTextBoxColumn";
     this.nROTIPOFORMULADataGridViewTextBoxColumn.ReadOnly = true;
     this.nROTIPOFORMULADataGridViewTextBoxColumn.Visible = false;
     this.nROTIPOFORMULADataGridViewTextBoxColumn.Width = 133;
     //
     // nOMBREDataGridViewTextBoxColumn
     //
     this.nOMBREDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.nOMBREDataGridViewTextBoxColumn.DataPropertyName = "NOMBRE";
     this.nOMBREDataGridViewTextBoxColumn.HeaderText = "Nombre";
     this.nOMBREDataGridViewTextBoxColumn.Name = "nOMBREDataGridViewTextBoxColumn";
     this.nOMBREDataGridViewTextBoxColumn.ReadOnly = true;
     this.nOMBREDataGridViewTextBoxColumn.Width = 69;
     //
     // NROTIPOFORMULA
     //
     this.NROTIPOFORMULA.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.NROTIPOFORMULA.DataPropertyName = "NROTIPOFORMULA";
     this.NROTIPOFORMULA.DataSource = this.TipoFormulaBS;
     this.NROTIPOFORMULA.DisplayMember = "NOMBRETIPO";
     this.NROTIPOFORMULA.HeaderText = "Tipo formula";
     this.NROTIPOFORMULA.Name = "NROTIPOFORMULA";
     this.NROTIPOFORMULA.ReadOnly = true;
     this.NROTIPOFORMULA.ValueMember = "NROTIPOFORMULA";
     this.NROTIPOFORMULA.Width = 71;
     //
     // eXPRESIONDataGridViewTextBoxColumn
     //
     this.eXPRESIONDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.eXPRESIONDataGridViewTextBoxColumn.DataPropertyName = "EXPRESION";
     this.eXPRESIONDataGridViewTextBoxColumn.HeaderText = "Expresión";
     this.eXPRESIONDataGridViewTextBoxColumn.Name = "eXPRESIONDataGridViewTextBoxColumn";
     this.eXPRESIONDataGridViewTextBoxColumn.ReadOnly = true;
     this.eXPRESIONDataGridViewTextBoxColumn.Width = 78;
     //
     // dESCRIPCIONDataGridViewTextBoxColumn
     //
     this.dESCRIPCIONDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dESCRIPCIONDataGridViewTextBoxColumn.DataPropertyName = "DESCRIPCION";
     this.dESCRIPCIONDataGridViewTextBoxColumn.HeaderText = "Descripción";
     this.dESCRIPCIONDataGridViewTextBoxColumn.Name = "dESCRIPCIONDataGridViewTextBoxColumn";
     this.dESCRIPCIONDataGridViewTextBoxColumn.ReadOnly = true;
     this.dESCRIPCIONDataGridViewTextBoxColumn.Width = 88;
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Editar.HeaderText = "";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "Editar";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 5;
     //
     // Eliminar
     //
     this.Eliminar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Eliminar.DataPropertyName = "CODCALIDAD";
     this.Eliminar.HeaderText = "";
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Text = "Eliminar";
     this.Eliminar.UseColumnTextForButtonValue = true;
     this.Eliminar.Width = 5;
     //
     // Formula_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(545, 314);
     this.Controls.Add(this.pn_listado);
     this.Controls.Add(this.pn_crear);
     this.Controls.Add(this.pn_editar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Formula_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Formulas";
     this.pn_listado.ResumeLayout(false);
     this.pn_listado.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Listado)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TipoFormulaBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.FormulateBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionFormula)).EndInit();
     this.paginacionFormula.ResumeLayout(false);
     this.paginacionFormula.PerformLayout();
     this.pn_crear.ResumeLayout(false);
     this.crearGbx.ResumeLayout(false);
     this.crearGbx.PerformLayout();
     this.pn_editar.ResumeLayout(false);
     this.editarGbx.ResumeLayout(false);
     this.editarGbx.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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(EstadosSanitarios_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.ListadoEstados = new System.Windows.Forms.DataGridView();
     this.eSTADODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dESCRIPESTADODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.StateBSource = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionEstadoSanitario = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.Btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.filtrarLbl = new System.Windows.Forms.ToolStripLabel();
     this.criterioCbx = new System.Windows.Forms.ToolStripComboBox();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.crearGbx = new System.Windows.Forms.GroupBox();
     this.Btn_Cancelar = new System.Windows.Forms.Button();
     this.Btn_Crear = new System.Windows.Forms.Button();
     this.txt_Descripcion = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txt_Nombre = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.editarGbx = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.Btn_Guardar = new System.Windows.Forms.Button();
     this.updateDescripTxt = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.updateNombreTxt = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.eP_errors = new System.Windows.Forms.ErrorProvider(this.components);
     this.pn_listado.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEstados)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StateBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEstadoSanitario)).BeginInit();
     this.paginacionEstadoSanitario.SuspendLayout();
     this.pn_crear.SuspendLayout();
     this.crearGbx.SuspendLayout();
     this.pn_editar.SuspendLayout();
     this.editarGbx.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).BeginInit();
     this.SuspendLayout();
     //
     // pn_listado
     //
     this.pn_listado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_listado.Controls.Add(this.ListadoEstados);
     this.pn_listado.Controls.Add(this.paginacionEstadoSanitario);
     this.pn_listado.Location = new System.Drawing.Point(0, 0);
     this.pn_listado.Name = "pn_listado";
     this.pn_listado.Size = new System.Drawing.Size(691, 278);
     this.pn_listado.TabIndex = 0;
     //
     // ListadoEstados
     //
     this.ListadoEstados.AllowUserToAddRows = false;
     this.ListadoEstados.AllowUserToDeleteRows = false;
     this.ListadoEstados.AutoGenerateColumns = false;
     this.ListadoEstados.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ListadoEstados.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ListadoEstados.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.eSTADODataGridViewTextBoxColumn,
     this.dESCRIPESTADODataGridViewTextBoxColumn,
     this.Editar,
     this.Eliminar});
     this.ListadoEstados.DataSource = this.StateBSource;
     this.ListadoEstados.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ListadoEstados.Location = new System.Drawing.Point(0, 25);
     this.ListadoEstados.Name = "ListadoEstados";
     this.ListadoEstados.ReadOnly = true;
     this.ListadoEstados.Size = new System.Drawing.Size(687, 249);
     this.ListadoEstados.TabIndex = 5;
     this.ListadoEstados.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Listado_CellValueChanged);
     //
     // eSTADODataGridViewTextBoxColumn
     //
     this.eSTADODataGridViewTextBoxColumn.DataPropertyName = "ESTADO";
     this.eSTADODataGridViewTextBoxColumn.HeaderText = "Estado";
     this.eSTADODataGridViewTextBoxColumn.Name = "eSTADODataGridViewTextBoxColumn";
     this.eSTADODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // dESCRIPESTADODataGridViewTextBoxColumn
     //
     this.dESCRIPESTADODataGridViewTextBoxColumn.DataPropertyName = "DESCRIPESTADO";
     this.dESCRIPESTADODataGridViewTextBoxColumn.HeaderText = "Descripción estado";
     this.dESCRIPESTADODataGridViewTextBoxColumn.Name = "dESCRIPESTADODataGridViewTextBoxColumn";
     this.dESCRIPESTADODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.Editar.HeaderText = "";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "Editar";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 5;
     //
     // Eliminar
     //
     this.Eliminar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.Eliminar.DataPropertyName = "ESTADO";
     this.Eliminar.HeaderText = "";
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Eliminar.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Eliminar.Text = "Eliminar";
     this.Eliminar.UseColumnTextForButtonValue = true;
     this.Eliminar.Width = 5;
     //
     // StateBSource
     //
     this.StateBSource.DataSource = typeof(SIFCA_DAL.ESTADOSANITARIO);
     //
     // paginacionEstadoSanitario
     //
     this.paginacionEstadoSanitario.AddNewItem = null;
     this.paginacionEstadoSanitario.BindingSource = this.StateBSource;
     this.paginacionEstadoSanitario.CountItem = this.bindingNavigatorCountItem;
     this.paginacionEstadoSanitario.DeleteItem = null;
     this.paginacionEstadoSanitario.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Btn_nuevo,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.buscarLbl,
     this.busquedaTxt,
     this.filtrarLbl,
     this.criterioCbx});
     this.paginacionEstadoSanitario.Location = new System.Drawing.Point(0, 0);
     this.paginacionEstadoSanitario.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.paginacionEstadoSanitario.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.paginacionEstadoSanitario.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.paginacionEstadoSanitario.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.paginacionEstadoSanitario.Name = "paginacionEstadoSanitario";
     this.paginacionEstadoSanitario.PositionItem = this.bindingNavigatorPositionItem;
     this.paginacionEstadoSanitario.Size = new System.Drawing.Size(687, 25);
     this.paginacionEstadoSanitario.TabIndex = 4;
     this.paginacionEstadoSanitario.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // Btn_nuevo
     //
     this.Btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("Btn_nuevo.Image")));
     this.Btn_nuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_nuevo.Name = "Btn_nuevo";
     this.Btn_nuevo.Size = new System.Drawing.Size(46, 22);
     this.Btn_nuevo.Text = "Nuevo";
     this.Btn_nuevo.Click += new System.EventHandler(this.Btn_nuevo_Click);
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // buscarLbl
     //
     this.buscarLbl.Name = "buscarLbl";
     this.buscarLbl.Size = new System.Drawing.Size(45, 22);
     this.buscarLbl.Text = "Buscar:";
     //
     // busquedaTxt
     //
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(150, 25);
     this.busquedaTxt.TextChanged += new System.EventHandler(this.busquedaTxt_TextChanged);
     //
     // filtrarLbl
     //
     this.filtrarLbl.Name = "filtrarLbl";
     this.filtrarLbl.Size = new System.Drawing.Size(92, 22);
     this.filtrarLbl.Text = "Filtrar busqueda";
     //
     // criterioCbx
     //
     this.criterioCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.criterioCbx.Items.AddRange(new object[] {
     "Descripcion"});
     this.criterioCbx.Name = "criterioCbx";
     this.criterioCbx.Size = new System.Drawing.Size(121, 25);
     //
     // pn_crear
     //
     this.pn_crear.Controls.Add(this.crearGbx);
     this.pn_crear.Location = new System.Drawing.Point(0, 0);
     this.pn_crear.Name = "pn_crear";
     this.pn_crear.Size = new System.Drawing.Size(356, 209);
     this.pn_crear.TabIndex = 1;
     //
     // crearGbx
     //
     this.crearGbx.Controls.Add(this.Btn_Cancelar);
     this.crearGbx.Controls.Add(this.Btn_Crear);
     this.crearGbx.Controls.Add(this.txt_Descripcion);
     this.crearGbx.Controls.Add(this.label2);
     this.crearGbx.Controls.Add(this.txt_Nombre);
     this.crearGbx.Controls.Add(this.label1);
     this.crearGbx.Location = new System.Drawing.Point(9, 4);
     this.crearGbx.Name = "crearGbx";
     this.crearGbx.Size = new System.Drawing.Size(335, 192);
     this.crearGbx.TabIndex = 2;
     this.crearGbx.TabStop = false;
     this.crearGbx.Text = "Crear Estado Sanitario";
     //
     // Btn_Cancelar
     //
     this.Btn_Cancelar.Location = new System.Drawing.Point(219, 146);
     this.Btn_Cancelar.Name = "Btn_Cancelar";
     this.Btn_Cancelar.Size = new System.Drawing.Size(81, 23);
     this.Btn_Cancelar.TabIndex = 5;
     this.Btn_Cancelar.Text = "Cancelar";
     this.Btn_Cancelar.UseVisualStyleBackColor = true;
     this.Btn_Cancelar.Click += new System.EventHandler(this.btn_Cancelar_Click);
     //
     // Btn_Crear
     //
     this.Btn_Crear.Location = new System.Drawing.Point(117, 146);
     this.Btn_Crear.Name = "Btn_Crear";
     this.Btn_Crear.Size = new System.Drawing.Size(79, 23);
     this.Btn_Crear.TabIndex = 4;
     this.Btn_Crear.Text = "Crear";
     this.Btn_Crear.UseVisualStyleBackColor = true;
     this.Btn_Crear.Click += new System.EventHandler(this.Btn_Crear_Click);
     //
     // txt_Descripcion
     //
     this.txt_Descripcion.Location = new System.Drawing.Point(121, 66);
     this.txt_Descripcion.MaxLength = 500;
     this.txt_Descripcion.Multiline = true;
     this.txt_Descripcion.Name = "txt_Descripcion";
     this.txt_Descripcion.Size = new System.Drawing.Size(179, 65);
     this.txt_Descripcion.TabIndex = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 66);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(63, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Descripcion";
     //
     // txt_Nombre
     //
     this.txt_Nombre.Location = new System.Drawing.Point(121, 28);
     this.txt_Nombre.MaxLength = 2;
     this.txt_Nombre.Name = "txt_Nombre";
     this.txt_Nombre.Size = new System.Drawing.Size(174, 20);
     this.txt_Nombre.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 28);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(108, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Abreviatura (2 Letras)";
     //
     // pn_editar
     //
     this.pn_editar.Controls.Add(this.editarGbx);
     this.pn_editar.Location = new System.Drawing.Point(0, 0);
     this.pn_editar.Name = "pn_editar";
     this.pn_editar.Size = new System.Drawing.Size(300, 173);
     this.pn_editar.TabIndex = 2;
     //
     // editarGbx
     //
     this.editarGbx.Controls.Add(this.btnCancelar);
     this.editarGbx.Controls.Add(this.Btn_Guardar);
     this.editarGbx.Controls.Add(this.updateDescripTxt);
     this.editarGbx.Controls.Add(this.label6);
     this.editarGbx.Controls.Add(this.updateNombreTxt);
     this.editarGbx.Controls.Add(this.label3);
     this.editarGbx.Location = new System.Drawing.Point(0, 0);
     this.editarGbx.Name = "editarGbx";
     this.editarGbx.Size = new System.Drawing.Size(301, 174);
     this.editarGbx.TabIndex = 29;
     this.editarGbx.TabStop = false;
     this.editarGbx.Text = "Editar Estado Sanitario";
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(202, 141);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex = 1;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.Btn_CancelarUpdate_Click);
     //
     // Btn_Guardar
     //
     this.Btn_Guardar.Location = new System.Drawing.Point(17, 141);
     this.Btn_Guardar.Name = "Btn_Guardar";
     this.Btn_Guardar.Size = new System.Drawing.Size(75, 23);
     this.Btn_Guardar.TabIndex = 0;
     this.Btn_Guardar.Text = "Guardar";
     this.Btn_Guardar.UseVisualStyleBackColor = true;
     this.Btn_Guardar.Click += new System.EventHandler(this.Btn_guardar_Click);
     //
     // updateDescripTxt
     //
     this.updateDescripTxt.Location = new System.Drawing.Point(93, 63);
     this.updateDescripTxt.MaxLength = 500;
     this.updateDescripTxt.Multiline = true;
     this.updateDescripTxt.Name = "updateDescripTxt";
     this.updateDescripTxt.ShortcutsEnabled = false;
     this.updateDescripTxt.Size = new System.Drawing.Size(187, 72);
     this.updateDescripTxt.TabIndex = 7;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(14, 63);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(63, 13);
     this.label6.TabIndex = 6;
     this.label6.Text = "Descripción";
     //
     // updateNombreTxt
     //
     this.updateNombreTxt.Location = new System.Drawing.Point(93, 34);
     this.updateNombreTxt.Name = "updateNombreTxt";
     this.updateNombreTxt.ReadOnly = true;
     this.updateNombreTxt.Size = new System.Drawing.Size(187, 20);
     this.updateNombreTxt.TabIndex = 5;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 34);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Nombre";
     //
     // eP_errors
     //
     this.eP_errors.ContainerControl = this;
     //
     // EstadosSanitarios_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(702, 286);
     this.Controls.Add(this.pn_editar);
     this.Controls.Add(this.pn_crear);
     this.Controls.Add(this.pn_listado);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "EstadosSanitarios_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Estados Sanitarios";
     this.pn_listado.ResumeLayout(false);
     this.pn_listado.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEstados)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StateBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEstadoSanitario)).EndInit();
     this.paginacionEstadoSanitario.ResumeLayout(false);
     this.paginacionEstadoSanitario.PerformLayout();
     this.pn_crear.ResumeLayout(false);
     this.crearGbx.ResumeLayout(false);
     this.crearGbx.PerformLayout();
     this.pn_editar.ResumeLayout(false);
     this.editarGbx.ResumeLayout(false);
     this.editarGbx.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).EndInit();
     this.ResumeLayout(false);
 }
        void GetCurrentParks()
        {
            try
            {
                string   query = "SELECT * FROM CURRENT_PARKS_VIEW WHERE S_NO > 0 ";
                DateTime dtFrom;
                DateTime dtTo;

                string filter = "";
                if (txtGate.Text != "All" && string.IsNullOrEmpty(txtGate.Text) == false)
                {
                    filter += " AND GATE = '" + txtGate.Text + "'";
                }

                if (string.IsNullOrEmpty(txtName.Text) == false)
                {
                    filter += " AND UPPER(" + @"""Name"" ) LIKE UPPER('%" + txtName.Text.Trim() + "%')";
                }

                if (string.IsNullOrEmpty(txtCarID.Text) == false)
                {
                    filter += " AND UPPER(" + @"""PLATE NO#"") LIKE UPPER('%" + txtCarID.Text + "%')";
                }

                if (string.IsNullOrEmpty(txtFloor.Text) == false)
                {
                    filter += " AND " + @"""LEVEL"" = " + txtFloor.Text;
                }

                if (string.IsNullOrEmpty(txtAisle.Text) == false)
                {
                    filter += " AND " + @"""AISLE""=" + txtAisle.Text;
                }

                if (string.IsNullOrEmpty(txtRow.Text) == false)
                {
                    filter += " AND " + @"""ROW""=" + txtRow.Text;
                }

                if (string.IsNullOrEmpty(txtCardId.Text) == false)
                {
                    filter += " AND " + @"""ID"" LIKE '%" + txtCardId.Text + "%'";
                }

                if (chkDateEnable.IsChecked == true)
                {
                    dtFrom = ctrlDateTimeFrom.dateTimePicker1.Value;
                    dtTo   = ctrlDateTimeTo.dateTimePicker1.Value;

                    filter += " AND TIME BETWEEN '" + dtFrom.ToString("dd/MMM/yyyy hh:mm:ss tt") + "' AND '" + dtTo.ToString("dd/MMM/yyyy hh:mm:ss tt") + "'";
                }

                query += filter + " order by s_no";
                DataTable dt = new DataTable();
                dt.TableName = "CURRENTPARKS";
                using (OracleConnection con = new OracleConnection(Connection.connectionString))
                {
                    if (con.State == ConnectionState.Closed)
                    {
                        con.Open();
                    }

                    using (OracleCommand command = new OracleCommand(query))
                    {
                        command.CommandText = query;
                        command.Connection  = con;
                        OracleDataAdapter dadapter = new OracleDataAdapter(command);
                        dadapter.Fill(dt);
                        this.dsRpt = new DataSet();
                        this.dsRpt.Tables.Add(dt);
                    }
                }


                wgrid.dataGridView1.SuspendLayout();
                wgrid.dataGridView1.Columns.Clear();
                wgrid.dataGridView1.DataSource = dt;
                System.Windows.Forms.DataGridViewButtonColumn btnCol = new System.Windows.Forms.DataGridViewButtonColumn();
                btnCol.Name = "Photo";
                btnCol.Text = "Photo";
                btnCol.Tag  = "photo";
                wgrid.dataGridView1.Columns.Add(btnCol);

                SetGridColumnSize();
                ChangeDisableRecordBackColor();
                SetGridHeaderConfig();
                if (dt != null && dt.Rows.Count > 0)
                {
                    lblCurrentParks.Content = "Current Parks = " + dt.Rows.Count;
                }
                else
                {
                    lblCurrentParks.Content = "Current Parks = 0";
                }

                wgrid.dataGridView1.Columns[2].DefaultCellStyle.Format = "dd/MMM/yyyy hh:mm:ss tt";
            }
            catch (Exception errMsg)
            {
            }
            finally
            {
                wgrid.dataGridView1.ResumeLayout();
            }
        }
Example #28
0
 /// <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.Windows.Forms.Label dESCRIPCIONLabel;
     System.Windows.Forms.Label nOMBRELabel;
     System.Windows.Forms.Label label40;
     System.Windows.Forms.Label label41;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Especies_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.ListadoEspecies = new System.Windows.Forms.DataGridView();
     this.nOMCOMUNDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cODESPDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nOMCIENTIFICODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gRUPOCOMDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.grupoComercialBSource = new System.Windows.Forms.BindingSource(this.components);
     this.GRUPOECOLOGICO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fAMILIADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONAGEOGRAFICADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONADEVIDADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Detalle = new System.Windows.Forms.DataGridViewButtonColumn();
     this.specieBSource = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionEspecie = new System.Windows.Forms.BindingNavigator(this.components);
     this.cargarArchivo = new System.Windows.Forms.ToolStripButton();
     this.Btn_nuevaEspecie = new System.Windows.Forms.ToolStripButton();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.filtrarLbl = new System.Windows.Forms.ToolStripLabel();
     this.criterioCbx = new System.Windows.Forms.ToolStripComboBox();
     this.GroupComBSource = new System.Windows.Forms.BindingSource(this.components);
     this.groupBox = new System.Windows.Forms.GroupBox();
     this.button1 = new System.Windows.Forms.Button();
     this.cbx_GroupCom = new System.Windows.Forms.ComboBox();
     this.Btn_Guardar = new System.Windows.Forms.Button();
     this.txt_DimCorte = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txt_ZonaGeo = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.txt_NomCient = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txt_NomCom = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button2 = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.button3 = new System.Windows.Forms.Button();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.grupoEcoCbx = new System.Windows.Forms.ComboBox();
     this.label42 = new System.Windows.Forms.Label();
     this.btn_crearImg = new System.Windows.Forms.Button();
     this.cbox_GrupoComercial = new System.Windows.Forms.ComboBox();
     this.btn_Cancelar = new System.Windows.Forms.Button();
     this.Btn_Crear = new System.Windows.Forms.Button();
     this.txt_ZonaVida = new System.Windows.Forms.TextBox();
     this.txt_ZonaGeografica = new System.Windows.Forms.TextBox();
     this.txt_Familia = new System.Windows.Forms.TextBox();
     this.txt_NombreCientifico = new System.Windows.Forms.TextBox();
     this.txt_NombreComun = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.UpdateImageBN = new System.Windows.Forms.BindingNavigator(this.components);
     this.imagenesBS = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem1 = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.updImgUbic = new System.Windows.Forms.TextBox();
     this.pB_imgUpdate = new System.Windows.Forms.PictureBox();
     this.label36 = new System.Windows.Forms.Label();
     this.updImgDesc = new System.Windows.Forms.TextBox();
     this.updImgName = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.updGrupoEcoCbx = new System.Windows.Forms.ComboBox();
     this.label43 = new System.Windows.Forms.Label();
     this.Btn_CancelarUpdate = new System.Windows.Forms.Button();
     this.grupoComercialCbx = new System.Windows.Forms.ComboBox();
     this.Guardar = new System.Windows.Forms.Button();
     this.txt_ZonaVid = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.txt_ZonaGeogra = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txt_Fam = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.txt_NomCientifico = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.txt_NomComun = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.eP_errors = new System.Windows.Forms.ErrorProvider(this.components);
     this.imagenTxt = new System.Windows.Forms.TextBox();
     this.txt_descripcionImg = new System.Windows.Forms.TextBox();
     this.txt_nombreImg = new System.Windows.Forms.TextBox();
     this.imgFichero = new System.Windows.Forms.OpenFileDialog();
     this.btn_cargarImg = new System.Windows.Forms.Button();
     this.pB_imgCrear = new System.Windows.Forms.PictureBox();
     this.pn_detalle = new System.Windows.Forms.Panel();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.pB_imgDetalle = new System.Windows.Forms.PictureBox();
     this.label39 = new System.Windows.Forms.Label();
     this.rutatxt = new System.Windows.Forms.TextBox();
     this.imagenesBN = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.dESCRIPCIONTextBox = new System.Windows.Forms.TextBox();
     this.nOMBRETextBox = new System.Windows.Forms.TextBox();
     this.ver_detalle = new System.Windows.Forms.GroupBox();
     this.detailGrupoEcoTxt = new System.Windows.Forms.TextBox();
     this.label44 = new System.Windows.Forms.Label();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.cbxGrupoComercial_det = new System.Windows.Forms.ComboBox();
     this.txt_ZonaVid_det = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.txt_ZonaGeogra_det = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.txt_Fam_det = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.txt_NomCientifico_det = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.txt_NomComun_det = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.btn_cerrar = new System.Windows.Forms.Button();
     this.pn_cargarImg = new System.Windows.Forms.Panel();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label38 = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.btn_ImgCancelar = new System.Windows.Forms.Button();
     this.btn_ImgAceptar = new System.Windows.Forms.Button();
     dESCRIPCIONLabel = new System.Windows.Forms.Label();
     nOMBRELabel = new System.Windows.Forms.Label();
     label40 = new System.Windows.Forms.Label();
     label41 = new System.Windows.Forms.Label();
     this.pn_listado.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEspecies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComercialBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.specieBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEspecie)).BeginInit();
     this.paginacionEspecie.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupComBSource)).BeginInit();
     this.groupBox.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.pn_crear.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.pn_editar.SuspendLayout();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateImageBN)).BeginInit();
     this.UpdateImageBN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgUpdate)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgCrear)).BeginInit();
     this.pn_detalle.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgDetalle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBN)).BeginInit();
     this.imagenesBN.SuspendLayout();
     this.ver_detalle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.pn_cargarImg.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // dESCRIPCIONLabel
     //
     dESCRIPCIONLabel.AutoSize = true;
     dESCRIPCIONLabel.Location = new System.Drawing.Point(12, 288);
     dESCRIPCIONLabel.Name = "dESCRIPCIONLabel";
     dESCRIPCIONLabel.Size = new System.Drawing.Size(63, 13);
     dESCRIPCIONLabel.TabIndex = 75;
     dESCRIPCIONLabel.Text = "Descripcion";
     //
     // nOMBRELabel
     //
     nOMBRELabel.AutoSize = true;
     nOMBRELabel.Location = new System.Drawing.Point(12, 257);
     nOMBRELabel.Name = "nOMBRELabel";
     nOMBRELabel.Size = new System.Drawing.Size(47, 13);
     nOMBRELabel.TabIndex = 73;
     nOMBRELabel.Text = "Nombre:";
     //
     // label40
     //
     label40.AutoSize = true;
     label40.Location = new System.Drawing.Point(12, 288);
     label40.Name = "label40";
     label40.Size = new System.Drawing.Size(63, 13);
     label40.TabIndex = 75;
     label40.Text = "Descripcion";
     //
     // label41
     //
     label41.AutoSize = true;
     label41.Location = new System.Drawing.Point(12, 257);
     label41.Name = "label41";
     label41.Size = new System.Drawing.Size(47, 13);
     label41.TabIndex = 73;
     label41.Text = "Nombre:";
     //
     // pn_listado
     //
     this.pn_listado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_listado.Controls.Add(this.ListadoEspecies);
     this.pn_listado.Controls.Add(this.paginacionEspecie);
     this.pn_listado.Location = new System.Drawing.Point(0, 0);
     this.pn_listado.Name = "pn_listado";
     this.pn_listado.Size = new System.Drawing.Size(890, 486);
     this.pn_listado.TabIndex = 0;
     //
     // ListadoEspecies
     //
     this.ListadoEspecies.AllowUserToAddRows = false;
     this.ListadoEspecies.AllowUserToDeleteRows = false;
     this.ListadoEspecies.AllowUserToOrderColumns = true;
     this.ListadoEspecies.AutoGenerateColumns = false;
     this.ListadoEspecies.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ListadoEspecies.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ListadoEspecies.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nOMCOMUNDataGridViewTextBoxColumn,
     this.cODESPDataGridViewTextBoxColumn,
     this.nOMCIENTIFICODataGridViewTextBoxColumn,
     this.gRUPOCOMDataGridViewTextBoxColumn,
     this.GRUPOECOLOGICO,
     this.fAMILIADataGridViewTextBoxColumn,
     this.zONAGEOGRAFICADataGridViewTextBoxColumn,
     this.zONADEVIDADataGridViewTextBoxColumn,
     this.Editar,
     this.Eliminar,
     this.Detalle});
     this.ListadoEspecies.DataSource = this.specieBSource;
     this.ListadoEspecies.Location = new System.Drawing.Point(0, 25);
     this.ListadoEspecies.Name = "ListadoEspecies";
     this.ListadoEspecies.ReadOnly = true;
     this.ListadoEspecies.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.ListadoEspecies.Size = new System.Drawing.Size(886, 457);
     this.ListadoEspecies.TabIndex = 3;
     this.ListadoEspecies.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ListadoDeEspecies_CellValueChanged);
     this.ListadoEspecies.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.ListadoEspecies_CellFormatting);
     //
     // nOMCOMUNDataGridViewTextBoxColumn
     //
     this.nOMCOMUNDataGridViewTextBoxColumn.DataPropertyName = "NOMCOMUN";
     this.nOMCOMUNDataGridViewTextBoxColumn.HeaderText = "Nombre Común";
     this.nOMCOMUNDataGridViewTextBoxColumn.Name = "nOMCOMUNDataGridViewTextBoxColumn";
     this.nOMCOMUNDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // cODESPDataGridViewTextBoxColumn
     //
     this.cODESPDataGridViewTextBoxColumn.DataPropertyName = "CODESP";
     this.cODESPDataGridViewTextBoxColumn.HeaderText = "CODESP";
     this.cODESPDataGridViewTextBoxColumn.Name = "cODESPDataGridViewTextBoxColumn";
     this.cODESPDataGridViewTextBoxColumn.ReadOnly = true;
     this.cODESPDataGridViewTextBoxColumn.Visible = false;
     //
     // nOMCIENTIFICODataGridViewTextBoxColumn
     //
     this.nOMCIENTIFICODataGridViewTextBoxColumn.DataPropertyName = "NOMCIENTIFICO";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.HeaderText = "Nombre Cientifico";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.Name = "nOMCIENTIFICODataGridViewTextBoxColumn";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // gRUPOCOMDataGridViewTextBoxColumn
     //
     this.gRUPOCOMDataGridViewTextBoxColumn.DataPropertyName = "GRUPOCOM";
     this.gRUPOCOMDataGridViewTextBoxColumn.DataSource = this.grupoComercialBSource;
     this.gRUPOCOMDataGridViewTextBoxColumn.DisplayMember = "DESCRIPGRUPO";
     this.gRUPOCOMDataGridViewTextBoxColumn.HeaderText = "Grupo Comercial";
     this.gRUPOCOMDataGridViewTextBoxColumn.Name = "gRUPOCOMDataGridViewTextBoxColumn";
     this.gRUPOCOMDataGridViewTextBoxColumn.ReadOnly = true;
     this.gRUPOCOMDataGridViewTextBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.gRUPOCOMDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.gRUPOCOMDataGridViewTextBoxColumn.ValueMember = "GRUPOCOM";
     //
     // grupoComercialBSource
     //
     this.grupoComercialBSource.DataSource = typeof(SIFCA_DAL.GRUPOCOMERCIAL);
     //
     // GRUPOECOLOGICO
     //
     this.GRUPOECOLOGICO.DataPropertyName = "GRUPOECOLOGICO";
     this.GRUPOECOLOGICO.HeaderText = "Grupo eco";
     this.GRUPOECOLOGICO.Name = "GRUPOECOLOGICO";
     this.GRUPOECOLOGICO.ReadOnly = true;
     this.GRUPOECOLOGICO.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // fAMILIADataGridViewTextBoxColumn
     //
     this.fAMILIADataGridViewTextBoxColumn.DataPropertyName = "FAMILIA";
     this.fAMILIADataGridViewTextBoxColumn.HeaderText = "Familia";
     this.fAMILIADataGridViewTextBoxColumn.Name = "fAMILIADataGridViewTextBoxColumn";
     this.fAMILIADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // zONAGEOGRAFICADataGridViewTextBoxColumn
     //
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.DataPropertyName = "ZONAGEOGRAFICA";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.HeaderText = "Zona Geografica";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.Name = "zONAGEOGRAFICADataGridViewTextBoxColumn";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // zONADEVIDADataGridViewTextBoxColumn
     //
     this.zONADEVIDADataGridViewTextBoxColumn.DataPropertyName = "ZONADEVIDA";
     this.zONADEVIDADataGridViewTextBoxColumn.HeaderText = "Zona De Vida";
     this.zONADEVIDADataGridViewTextBoxColumn.Name = "zONADEVIDADataGridViewTextBoxColumn";
     this.zONADEVIDADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Editar.HeaderText = "Editar";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "Editar";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 40;
     //
     // Eliminar
     //
     this.Eliminar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Eliminar.HeaderText = "Eliminar";
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Text = "Eliminar";
     this.Eliminar.UseColumnTextForButtonValue = true;
     this.Eliminar.Width = 49;
     //
     // Detalle
     //
     this.Detalle.HeaderText = "Detalle";
     this.Detalle.Name = "Detalle";
     this.Detalle.ReadOnly = true;
     this.Detalle.Text = "Ver detalle";
     this.Detalle.UseColumnTextForButtonValue = true;
     //
     // specieBSource
     //
     this.specieBSource.DataSource = typeof(SIFCA_DAL.ESPECIE);
     //
     // paginacionEspecie
     //
     this.paginacionEspecie.AddNewItem = null;
     this.paginacionEspecie.CountItem = null;
     this.paginacionEspecie.DeleteItem = null;
     this.paginacionEspecie.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cargarArchivo,
     this.Btn_nuevaEspecie,
     this.buscarLbl,
     this.busquedaTxt,
     this.filtrarLbl,
     this.criterioCbx});
     this.paginacionEspecie.Location = new System.Drawing.Point(0, 0);
     this.paginacionEspecie.MoveFirstItem = null;
     this.paginacionEspecie.MoveLastItem = null;
     this.paginacionEspecie.MoveNextItem = null;
     this.paginacionEspecie.MovePreviousItem = null;
     this.paginacionEspecie.Name = "paginacionEspecie";
     this.paginacionEspecie.PositionItem = null;
     this.paginacionEspecie.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.paginacionEspecie.Size = new System.Drawing.Size(886, 25);
     this.paginacionEspecie.TabIndex = 2;
     this.paginacionEspecie.Text = "bindingNavigator1";
     //
     // cargarArchivo
     //
     this.cargarArchivo.BackColor = System.Drawing.SystemColors.ControlLight;
     this.cargarArchivo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.cargarArchivo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.cargarArchivo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cargarArchivo.Name = "cargarArchivo";
     this.cargarArchivo.Size = new System.Drawing.Size(88, 22);
     this.cargarArchivo.Text = "Cargar archivo";
     this.cargarArchivo.ToolTipText = "Cargar archivo con especies desde excel";
     this.cargarArchivo.Click += new System.EventHandler(this.cargarArchivo_Click);
     //
     // Btn_nuevaEspecie
     //
     this.Btn_nuevaEspecie.BackColor = System.Drawing.SystemColors.ControlLight;
     this.Btn_nuevaEspecie.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Btn_nuevaEspecie.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.Btn_nuevaEspecie.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_nuevaEspecie.Name = "Btn_nuevaEspecie";
     this.Btn_nuevaEspecie.Size = new System.Drawing.Size(87, 22);
     this.Btn_nuevaEspecie.Text = "Nueva Especie";
     this.Btn_nuevaEspecie.Click += new System.EventHandler(this.Btn_nuevaEspecie_Click);
     //
     // buscarLbl
     //
     this.buscarLbl.Name = "buscarLbl";
     this.buscarLbl.Size = new System.Drawing.Size(45, 22);
     this.buscarLbl.Text = "Buscar:";
     //
     // busquedaTxt
     //
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(150, 25);
     this.busquedaTxt.TextChanged += new System.EventHandler(this.busquedaTxt_TextChanged);
     //
     // filtrarLbl
     //
     this.filtrarLbl.Name = "filtrarLbl";
     this.filtrarLbl.Size = new System.Drawing.Size(92, 22);
     this.filtrarLbl.Text = "Filtrar busqueda";
     //
     // criterioCbx
     //
     this.criterioCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.criterioCbx.Items.AddRange(new object[] {
     "Grupo Comercial",
     "Nombre Comun",
     "Nombre Cientifico",
     "Familia",
     "Zona Geografica",
     "Zona Vida"});
     this.criterioCbx.Name = "criterioCbx";
     this.criterioCbx.Size = new System.Drawing.Size(121, 25);
     //
     // GroupComBSource
     //
     this.GroupComBSource.DataSource = typeof(SIFCA_DAL.GRUPOCOMERCIAL);
     //
     // groupBox
     //
     this.groupBox.Controls.Add(this.button1);
     this.groupBox.Controls.Add(this.cbx_GroupCom);
     this.groupBox.Controls.Add(this.Btn_Guardar);
     this.groupBox.Controls.Add(this.txt_DimCorte);
     this.groupBox.Controls.Add(this.label3);
     this.groupBox.Controls.Add(this.textBox1);
     this.groupBox.Controls.Add(this.label10);
     this.groupBox.Controls.Add(this.txt_ZonaGeo);
     this.groupBox.Controls.Add(this.label11);
     this.groupBox.Controls.Add(this.textBox2);
     this.groupBox.Controls.Add(this.label12);
     this.groupBox.Controls.Add(this.label13);
     this.groupBox.Controls.Add(this.txt_NomCient);
     this.groupBox.Controls.Add(this.label14);
     this.groupBox.Controls.Add(this.txt_NomCom);
     this.groupBox.Controls.Add(this.label15);
     this.groupBox.Location = new System.Drawing.Point(8, 2);
     this.groupBox.Name = "groupBox";
     this.groupBox.Size = new System.Drawing.Size(319, 283);
     this.groupBox.TabIndex = 5;
     this.groupBox.TabStop = false;
     this.groupBox.Text = "Editar Especie";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(189, 241);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 6;
     this.button1.Text = "Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     //
     // cbx_GroupCom
     //
     this.cbx_GroupCom.DisplayMember = "GRUPOCOM";
     this.cbx_GroupCom.FormattingEnabled = true;
     this.cbx_GroupCom.Location = new System.Drawing.Point(144, 84);
     this.cbx_GroupCom.Name = "cbx_GroupCom";
     this.cbx_GroupCom.Size = new System.Drawing.Size(152, 21);
     this.cbx_GroupCom.TabIndex = 18;
     this.cbx_GroupCom.ValueMember = "GRUPOCOM";
     //
     // Btn_Guardar
     //
     this.Btn_Guardar.Location = new System.Drawing.Point(38, 241);
     this.Btn_Guardar.Name = "Btn_Guardar";
     this.Btn_Guardar.Size = new System.Drawing.Size(75, 23);
     this.Btn_Guardar.TabIndex = 5;
     this.Btn_Guardar.Text = "Guardar";
     this.Btn_Guardar.UseVisualStyleBackColor = true;
     //
     // txt_DimCorte
     //
     this.txt_DimCorte.Location = new System.Drawing.Point(144, 203);
     this.txt_DimCorte.Name = "txt_DimCorte";
     this.txt_DimCorte.Size = new System.Drawing.Size(61, 20);
     this.txt_DimCorte.TabIndex = 17;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 203);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 13);
     this.label3.TabIndex = 16;
     this.label3.Text = "Diametro Corte";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(143, 173);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(153, 20);
     this.textBox1.TabIndex = 15;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(22, 173);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(73, 13);
     this.label10.TabIndex = 14;
     this.label10.Text = "Zona De Vida";
     //
     // txt_ZonaGeo
     //
     this.txt_ZonaGeo.Location = new System.Drawing.Point(143, 143);
     this.txt_ZonaGeo.Name = "txt_ZonaGeo";
     this.txt_ZonaGeo.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeo.TabIndex = 13;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(23, 143);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(87, 13);
     this.label11.TabIndex = 12;
     this.label11.Text = "Zona Geografica";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(143, 113);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(153, 20);
     this.textBox2.TabIndex = 11;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(22, 113);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(39, 13);
     this.label12.TabIndex = 10;
     this.label12.Text = "Familia";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(22, 84);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(85, 13);
     this.label13.TabIndex = 8;
     this.label13.Text = "Grupo Comercial";
     //
     // txt_NomCient
     //
     this.txt_NomCient.Location = new System.Drawing.Point(143, 54);
     this.txt_NomCient.Name = "txt_NomCient";
     this.txt_NomCient.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCient.TabIndex = 7;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(23, 54);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(90, 13);
     this.label14.TabIndex = 6;
     this.label14.Text = "Nombre Cientifico";
     //
     // txt_NomCom
     //
     this.txt_NomCom.Location = new System.Drawing.Point(143, 25);
     this.txt_NomCom.Name = "txt_NomCom";
     this.txt_NomCom.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCom.TabIndex = 5;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(22, 25);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(80, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Nombre Comun";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.comboBox1);
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.textBox3);
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.textBox4);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.textBox5);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.textBox6);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.label20);
     this.groupBox2.Controls.Add(this.textBox7);
     this.groupBox2.Controls.Add(this.label21);
     this.groupBox2.Controls.Add(this.textBox8);
     this.groupBox2.Controls.Add(this.label22);
     this.groupBox2.Location = new System.Drawing.Point(-43, -22);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(381, 288);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Editar Especie";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(202, 250);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 6;
     this.button2.Text = "Cancelar";
     this.button2.UseVisualStyleBackColor = true;
     //
     // comboBox1
     //
     this.comboBox1.DataSource = this.GroupComBSource;
     this.comboBox1.DisplayMember = "DESCRIPGRUPO";
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(157, 93);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(152, 21);
     this.comboBox1.TabIndex = 18;
     this.comboBox1.ValueMember = "GRUPOCOM";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(51, 250);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 5;
     this.button3.Text = "Guardar";
     this.button3.UseVisualStyleBackColor = true;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(157, 212);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(61, 20);
     this.textBox3.TabIndex = 17;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(37, 212);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(77, 13);
     this.label16.TabIndex = 16;
     this.label16.Text = "Diametro Corte";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(156, 182);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(153, 20);
     this.textBox4.TabIndex = 15;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(35, 182);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(73, 13);
     this.label17.TabIndex = 14;
     this.label17.Text = "Zona De Vida";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(156, 152);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(153, 20);
     this.textBox5.TabIndex = 13;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(36, 152);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(87, 13);
     this.label18.TabIndex = 12;
     this.label18.Text = "Zona Geografica";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(156, 122);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(153, 20);
     this.textBox6.TabIndex = 11;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(35, 122);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(39, 13);
     this.label19.TabIndex = 10;
     this.label19.Text = "Familia";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(35, 93);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(85, 13);
     this.label20.TabIndex = 8;
     this.label20.Text = "Grupo Comercial";
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(156, 63);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(153, 20);
     this.textBox7.TabIndex = 7;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(36, 63);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(90, 13);
     this.label21.TabIndex = 6;
     this.label21.Text = "Nombre Cientifico";
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(156, 34);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(153, 20);
     this.textBox8.TabIndex = 5;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(35, 34);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(80, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "Nombre Comun";
     //
     // pn_crear
     //
     this.pn_crear.Controls.Add(this.pictureBox1);
     this.pn_crear.Controls.Add(this.groupBox1);
     this.pn_crear.Location = new System.Drawing.Point(0, 0);
     this.pn_crear.Name = "pn_crear";
     this.pn_crear.Size = new System.Drawing.Size(376, 420);
     this.pn_crear.TabIndex = 1;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.pictureBox1.Image = global::SIFCA.Properties.Resources.nueva_especie;
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(376, 71);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 17;
     this.pictureBox1.TabStop = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.grupoEcoCbx);
     this.groupBox1.Controls.Add(this.label42);
     this.groupBox1.Controls.Add(this.btn_crearImg);
     this.groupBox1.Controls.Add(this.cbox_GrupoComercial);
     this.groupBox1.Controls.Add(this.btn_Cancelar);
     this.groupBox1.Controls.Add(this.Btn_Crear);
     this.groupBox1.Controls.Add(this.txt_ZonaVida);
     this.groupBox1.Controls.Add(this.txt_ZonaGeografica);
     this.groupBox1.Controls.Add(this.txt_Familia);
     this.groupBox1.Controls.Add(this.txt_NombreCientifico);
     this.groupBox1.Controls.Add(this.txt_NombreComun);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Location = new System.Drawing.Point(5, 77);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(344, 304);
     this.groupBox1.TabIndex = 16;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Informacion de la especie";
     //
     // grupoEcoCbx
     //
     this.grupoEcoCbx.DisplayMember = "GRUPOCOM";
     this.grupoEcoCbx.FormattingEnabled = true;
     this.grupoEcoCbx.Items.AddRange(new object[] {
     "Tolerante",
     "No Tolerante"});
     this.grupoEcoCbx.Location = new System.Drawing.Point(136, 217);
     this.grupoEcoCbx.Name = "grupoEcoCbx";
     this.grupoEcoCbx.Size = new System.Drawing.Size(186, 21);
     this.grupoEcoCbx.TabIndex = 10;
     this.grupoEcoCbx.ValueMember = "GRUPOCOM";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Location = new System.Drawing.Point(22, 221);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(91, 13);
     this.label42.TabIndex = 11;
     this.label42.Text = "Grupo ecológico :";
     //
     // btn_crearImg
     //
     this.btn_crearImg.Location = new System.Drawing.Point(49, 259);
     this.btn_crearImg.Name = "btn_crearImg";
     this.btn_crearImg.Size = new System.Drawing.Size(87, 23);
     this.btn_crearImg.TabIndex = 7;
     this.btn_crearImg.Text = "Cargar imagen";
     this.btn_crearImg.UseVisualStyleBackColor = true;
     this.btn_crearImg.Visible = false;
     this.btn_crearImg.Click += new System.EventHandler(this.btn_crearImg_Click);
     //
     // cbox_GrupoComercial
     //
     this.cbox_GrupoComercial.DataSource = this.grupoComercialBSource;
     this.cbox_GrupoComercial.DisplayMember = "DESCRIPGRUPO";
     this.cbox_GrupoComercial.FormattingEnabled = true;
     this.cbox_GrupoComercial.Location = new System.Drawing.Point(136, 24);
     this.cbox_GrupoComercial.Name = "cbox_GrupoComercial";
     this.cbox_GrupoComercial.Size = new System.Drawing.Size(186, 21);
     this.cbox_GrupoComercial.TabIndex = 0;
     this.cbox_GrupoComercial.ValueMember = "GRUPOCOM";
     //
     // btn_Cancelar
     //
     this.btn_Cancelar.Location = new System.Drawing.Point(235, 259);
     this.btn_Cancelar.Name = "btn_Cancelar";
     this.btn_Cancelar.Size = new System.Drawing.Size(87, 23);
     this.btn_Cancelar.TabIndex = 9;
     this.btn_Cancelar.Text = "Cancelar";
     this.btn_Cancelar.UseVisualStyleBackColor = true;
     this.btn_Cancelar.Click += new System.EventHandler(this.btn_Cancelar_Click);
     //
     // Btn_Crear
     //
     this.Btn_Crear.Location = new System.Drawing.Point(142, 259);
     this.Btn_Crear.Name = "Btn_Crear";
     this.Btn_Crear.Size = new System.Drawing.Size(86, 23);
     this.Btn_Crear.TabIndex = 8;
     this.Btn_Crear.Text = "Crear";
     this.Btn_Crear.UseVisualStyleBackColor = true;
     this.Btn_Crear.Click += new System.EventHandler(this.Btn_Crear_Click);
     //
     // txt_ZonaVida
     //
     this.txt_ZonaVida.AcceptsTab = true;
     this.txt_ZonaVida.Location = new System.Drawing.Point(136, 185);
     this.txt_ZonaVida.MaxLength = 200;
     this.txt_ZonaVida.Name = "txt_ZonaVida";
     this.txt_ZonaVida.Size = new System.Drawing.Size(186, 20);
     this.txt_ZonaVida.TabIndex = 5;
     this.txt_ZonaVida.Text = "Ninguna zona especificada";
     //
     // txt_ZonaGeografica
     //
     this.txt_ZonaGeografica.AcceptsTab = true;
     this.txt_ZonaGeografica.Location = new System.Drawing.Point(136, 152);
     this.txt_ZonaGeografica.MaxLength = 200;
     this.txt_ZonaGeografica.Name = "txt_ZonaGeografica";
     this.txt_ZonaGeografica.Size = new System.Drawing.Size(186, 20);
     this.txt_ZonaGeografica.TabIndex = 4;
     this.txt_ZonaGeografica.Text = "Ninguna zona especificada";
     //
     // txt_Familia
     //
     this.txt_Familia.AcceptsTab = true;
     this.txt_Familia.Location = new System.Drawing.Point(136, 119);
     this.txt_Familia.MaxLength = 200;
     this.txt_Familia.Name = "txt_Familia";
     this.txt_Familia.Size = new System.Drawing.Size(186, 20);
     this.txt_Familia.TabIndex = 3;
     //
     // txt_NombreCientifico
     //
     this.txt_NombreCientifico.AcceptsTab = true;
     this.txt_NombreCientifico.Location = new System.Drawing.Point(136, 88);
     this.txt_NombreCientifico.MaxLength = 200;
     this.txt_NombreCientifico.Name = "txt_NombreCientifico";
     this.txt_NombreCientifico.Size = new System.Drawing.Size(186, 20);
     this.txt_NombreCientifico.TabIndex = 2;
     //
     // txt_NombreComun
     //
     this.txt_NombreComun.AcceptsTab = true;
     this.txt_NombreComun.Location = new System.Drawing.Point(136, 55);
     this.txt_NombreComun.MaxLength = 200;
     this.txt_NombreComun.Name = "txt_NombreComun";
     this.txt_NombreComun.Size = new System.Drawing.Size(186, 20);
     this.txt_NombreComun.TabIndex = 1;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(21, 185);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Zona vida :";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(21, 155);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(91, 13);
     this.label5.TabIndex = 4;
     this.label5.Text = "Zona geografica :";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(21, 122);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 13);
     this.label4.TabIndex = 3;
     this.label4.Text = "Familia :";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(21, 91);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(97, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Nombre científico :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(21, 58);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(85, 13);
     this.label8.TabIndex = 1;
     this.label8.Text = "Nombre común :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(21, 30);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(90, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Grupo comercial :";
     //
     // pn_editar
     //
     this.pn_editar.Controls.Add(this.groupBox6);
     this.pn_editar.Controls.Add(this.groupBox3);
     this.pn_editar.Location = new System.Drawing.Point(0, 0);
     this.pn_editar.Name = "pn_editar";
     this.pn_editar.Size = new System.Drawing.Size(723, 445);
     this.pn_editar.TabIndex = 2;
     //
     // groupBox6
     //
     this.groupBox6.AutoSize = true;
     this.groupBox6.Controls.Add(this.UpdateImageBN);
     this.groupBox6.Controls.Add(this.updImgUbic);
     this.groupBox6.Controls.Add(this.pB_imgUpdate);
     this.groupBox6.Controls.Add(this.label36);
     this.groupBox6.Controls.Add(label40);
     this.groupBox6.Controls.Add(this.updImgDesc);
     this.groupBox6.Controls.Add(label41);
     this.groupBox6.Controls.Add(this.updImgName);
     this.groupBox6.Location = new System.Drawing.Point(355, 14);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(357, 393);
     this.groupBox6.TabIndex = 60;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Imagenes";
     //
     // UpdateImageBN
     //
     this.UpdateImageBN.AddNewItem = null;
     this.UpdateImageBN.BindingSource = this.imagenesBS;
     this.UpdateImageBN.CountItem = this.bindingNavigatorCountItem1;
     this.UpdateImageBN.DeleteItem = null;
     this.UpdateImageBN.Enabled = false;
     this.UpdateImageBN.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem1,
     this.bindingNavigatorMovePreviousItem1,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorPositionItem1,
     this.bindingNavigatorCountItem1,
     this.bindingNavigatorSeparator3,
     this.bindingNavigatorMoveNextItem1,
     this.bindingNavigatorMoveLastItem1,
     this.bindingNavigatorSeparator4,
     this.toolStripButton2,
     this.toolStripButton1});
     this.UpdateImageBN.Location = new System.Drawing.Point(3, 16);
     this.UpdateImageBN.MoveFirstItem = this.bindingNavigatorMoveFirstItem1;
     this.UpdateImageBN.MoveLastItem = this.bindingNavigatorMoveLastItem1;
     this.UpdateImageBN.MoveNextItem = this.bindingNavigatorMoveNextItem1;
     this.UpdateImageBN.MovePreviousItem = this.bindingNavigatorMovePreviousItem1;
     this.UpdateImageBN.Name = "UpdateImageBN";
     this.UpdateImageBN.PositionItem = this.bindingNavigatorPositionItem1;
     this.UpdateImageBN.Size = new System.Drawing.Size(351, 25);
     this.UpdateImageBN.TabIndex = 0;
     this.UpdateImageBN.Text = "bindingNavigator1";
     //
     // imagenesBS
     //
     this.imagenesBS.DataSource = typeof(SIFCA_DAL.IMAGEN);
     //
     // bindingNavigatorCountItem1
     //
     this.bindingNavigatorCountItem1.Name = "bindingNavigatorCountItem1";
     this.bindingNavigatorCountItem1.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem1.Text = "de {0}";
     this.bindingNavigatorCountItem1.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorMoveFirstItem1
     //
     this.bindingNavigatorMoveFirstItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem1.Image")));
     this.bindingNavigatorMoveFirstItem1.Name = "bindingNavigatorMoveFirstItem1";
     this.bindingNavigatorMoveFirstItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem1.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem1
     //
     this.bindingNavigatorMovePreviousItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem1.Image")));
     this.bindingNavigatorMovePreviousItem1.Name = "bindingNavigatorMovePreviousItem1";
     this.bindingNavigatorMovePreviousItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem1.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem1
     //
     this.bindingNavigatorPositionItem1.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem1.AutoSize = false;
     this.bindingNavigatorPositionItem1.Name = "bindingNavigatorPositionItem1";
     this.bindingNavigatorPositionItem1.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem1.Text = "0";
     this.bindingNavigatorPositionItem1.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator3
     //
     this.bindingNavigatorSeparator3.Name = "bindingNavigatorSeparator3";
     this.bindingNavigatorSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem1
     //
     this.bindingNavigatorMoveNextItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem1.Image")));
     this.bindingNavigatorMoveNextItem1.Name = "bindingNavigatorMoveNextItem1";
     this.bindingNavigatorMoveNextItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem1.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem1
     //
     this.bindingNavigatorMoveLastItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem1.Image")));
     this.bindingNavigatorMoveLastItem1.Name = "bindingNavigatorMoveLastItem1";
     this.bindingNavigatorMoveLastItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem1.Text = "Mover último";
     //
     // bindingNavigatorSeparator4
     //
     this.bindingNavigatorSeparator4.Name = "bindingNavigatorSeparator4";
     this.bindingNavigatorSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.RightToLeftAutoMirrorImage = true;
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Agregar nuevo";
     this.toolStripButton2.Click += new System.EventHandler(this.btn_crearImg_Click);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.RightToLeftAutoMirrorImage = true;
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Eliminar";
     this.toolStripButton1.Click += new System.EventHandler(this.deleteImage_Click);
     //
     // updImgUbic
     //
     this.updImgUbic.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "RUTA", true));
     this.updImgUbic.Location = new System.Drawing.Point(77, 221);
     this.updImgUbic.Name = "updImgUbic";
     this.updImgUbic.Size = new System.Drawing.Size(237, 20);
     this.updImgUbic.TabIndex = 84;
     this.updImgUbic.TabStop = false;
     this.updImgUbic.Text = "Ninguna ruta ha sido especificada";
     this.updImgUbic.TextChanged += new System.EventHandler(this.rutaUpdtxt_TextChanged);
     //
     // pB_imgUpdate
     //
     this.pB_imgUpdate.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.imagenesBS, "RUTA", true));
     this.pB_imgUpdate.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.imagenesBS, "RUTA", true));
     this.pB_imgUpdate.Image = global::SIFCA.Properties.Resources.ninguna_imagen;
     this.pB_imgUpdate.Location = new System.Drawing.Point(27, 52);
     this.pB_imgUpdate.Name = "pB_imgUpdate";
     this.pB_imgUpdate.Size = new System.Drawing.Size(308, 160);
     this.pB_imgUpdate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgUpdate.TabIndex = 83;
     this.pB_imgUpdate.TabStop = false;
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(10, 221);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(55, 13);
     this.label36.TabIndex = 82;
     this.label36.Text = "Ubicacion";
     //
     // updImgDesc
     //
     this.updImgDesc.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "DESCRIPCION", true));
     this.updImgDesc.Location = new System.Drawing.Point(76, 290);
     this.updImgDesc.Multiline = true;
     this.updImgDesc.Name = "updImgDesc";
     this.updImgDesc.Size = new System.Drawing.Size(238, 84);
     this.updImgDesc.TabIndex = 76;
     this.updImgDesc.TabStop = false;
     this.updImgDesc.Text = "Ninguna";
     //
     // updImgName
     //
     this.updImgName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "NOMBRE", true));
     this.updImgName.Location = new System.Drawing.Point(77, 256);
     this.updImgName.Name = "updImgName";
     this.updImgName.Size = new System.Drawing.Size(238, 20);
     this.updImgName.TabIndex = 74;
     this.updImgName.TabStop = false;
     this.updImgName.Text = "Ninguno";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.updGrupoEcoCbx);
     this.groupBox3.Controls.Add(this.label43);
     this.groupBox3.Controls.Add(this.Btn_CancelarUpdate);
     this.groupBox3.Controls.Add(this.grupoComercialCbx);
     this.groupBox3.Controls.Add(this.Guardar);
     this.groupBox3.Controls.Add(this.txt_ZonaVid);
     this.groupBox3.Controls.Add(this.label24);
     this.groupBox3.Controls.Add(this.txt_ZonaGeogra);
     this.groupBox3.Controls.Add(this.label25);
     this.groupBox3.Controls.Add(this.txt_Fam);
     this.groupBox3.Controls.Add(this.label26);
     this.groupBox3.Controls.Add(this.label27);
     this.groupBox3.Controls.Add(this.txt_NomCientifico);
     this.groupBox3.Controls.Add(this.label28);
     this.groupBox3.Controls.Add(this.txt_NomComun);
     this.groupBox3.Controls.Add(this.label29);
     this.groupBox3.Location = new System.Drawing.Point(10, 21);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(327, 378);
     this.groupBox3.TabIndex = 6;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Editar Especie";
     //
     // updGrupoEcoCbx
     //
     this.updGrupoEcoCbx.FormattingEnabled = true;
     this.updGrupoEcoCbx.Items.AddRange(new object[] {
     "Tolerante",
     "No Tolerante"});
     this.updGrupoEcoCbx.Location = new System.Drawing.Point(152, 202);
     this.updGrupoEcoCbx.Name = "updGrupoEcoCbx";
     this.updGrupoEcoCbx.Size = new System.Drawing.Size(153, 21);
     this.updGrupoEcoCbx.TabIndex = 19;
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(32, 205);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(85, 13);
     this.label43.TabIndex = 18;
     this.label43.Text = "Grupo ecológico";
     //
     // Btn_CancelarUpdate
     //
     this.Btn_CancelarUpdate.Location = new System.Drawing.Point(230, 351);
     this.Btn_CancelarUpdate.Name = "Btn_CancelarUpdate";
     this.Btn_CancelarUpdate.Size = new System.Drawing.Size(75, 23);
     this.Btn_CancelarUpdate.TabIndex = 8;
     this.Btn_CancelarUpdate.Text = "Cancelar";
     this.Btn_CancelarUpdate.UseVisualStyleBackColor = true;
     this.Btn_CancelarUpdate.Click += new System.EventHandler(this.Btn_CancelarUpdate_Click);
     //
     // grupoComercialCbx
     //
     this.grupoComercialCbx.DataSource = this.GroupComBSource;
     this.grupoComercialCbx.DisplayMember = "DESCRIPGRUPO";
     this.grupoComercialCbx.FormattingEnabled = true;
     this.grupoComercialCbx.Location = new System.Drawing.Point(153, 82);
     this.grupoComercialCbx.Name = "grupoComercialCbx";
     this.grupoComercialCbx.Size = new System.Drawing.Size(152, 21);
     this.grupoComercialCbx.TabIndex = 2;
     this.grupoComercialCbx.ValueMember = "GRUPOCOM";
     //
     // Guardar
     //
     this.Guardar.Location = new System.Drawing.Point(131, 351);
     this.Guardar.Name = "Guardar";
     this.Guardar.Size = new System.Drawing.Size(75, 23);
     this.Guardar.TabIndex = 7;
     this.Guardar.Text = "Guardar";
     this.Guardar.UseVisualStyleBackColor = true;
     this.Guardar.Click += new System.EventHandler(this.Btn_guardar_Click);
     //
     // txt_ZonaVid
     //
     this.txt_ZonaVid.Location = new System.Drawing.Point(152, 171);
     this.txt_ZonaVid.MaxLength = 200;
     this.txt_ZonaVid.Name = "txt_ZonaVid";
     this.txt_ZonaVid.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaVid.TabIndex = 5;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(31, 171);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(73, 13);
     this.label24.TabIndex = 14;
     this.label24.Text = "Zona De Vida";
     //
     // txt_ZonaGeogra
     //
     this.txt_ZonaGeogra.Location = new System.Drawing.Point(152, 141);
     this.txt_ZonaGeogra.MaxLength = 200;
     this.txt_ZonaGeogra.Name = "txt_ZonaGeogra";
     this.txt_ZonaGeogra.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeogra.TabIndex = 4;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(32, 141);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(87, 13);
     this.label25.TabIndex = 12;
     this.label25.Text = "Zona Geografica";
     //
     // txt_Fam
     //
     this.txt_Fam.Location = new System.Drawing.Point(152, 111);
     this.txt_Fam.MaxLength = 200;
     this.txt_Fam.Name = "txt_Fam";
     this.txt_Fam.Size = new System.Drawing.Size(153, 20);
     this.txt_Fam.TabIndex = 3;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(31, 111);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(39, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Familia";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(31, 82);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(85, 13);
     this.label27.TabIndex = 8;
     this.label27.Text = "Grupo Comercial";
     //
     // txt_NomCientifico
     //
     this.txt_NomCientifico.Location = new System.Drawing.Point(152, 52);
     this.txt_NomCientifico.MaxLength = 200;
     this.txt_NomCientifico.Name = "txt_NomCientifico";
     this.txt_NomCientifico.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCientifico.TabIndex = 1;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(32, 52);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(90, 13);
     this.label28.TabIndex = 6;
     this.label28.Text = "Nombre Cientifico";
     //
     // txt_NomComun
     //
     this.txt_NomComun.Location = new System.Drawing.Point(152, 23);
     this.txt_NomComun.MaxLength = 200;
     this.txt_NomComun.Name = "txt_NomComun";
     this.txt_NomComun.Size = new System.Drawing.Size(153, 20);
     this.txt_NomComun.TabIndex = 0;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(31, 23);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(80, 13);
     this.label29.TabIndex = 0;
     this.label29.Text = "Nombre Comun";
     //
     // eP_errors
     //
     this.eP_errors.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.eP_errors.ContainerControl = this;
     //
     // imagenTxt
     //
     this.eP_errors.SetError(this.imagenTxt, "Cargue una imagen");
     this.imagenTxt.Location = new System.Drawing.Point(16, 14);
     this.imagenTxt.Name = "imagenTxt";
     this.imagenTxt.ReadOnly = true;
     this.imagenTxt.Size = new System.Drawing.Size(193, 20);
     this.imagenTxt.TabIndex = 24;
     this.imagenTxt.Text = "Seleccione una imagen";
     //
     // txt_descripcionImg
     //
     this.eP_errors.SetError(this.txt_descripcionImg, "Campo requerido");
     this.txt_descripcionImg.Location = new System.Drawing.Point(15, 74);
     this.txt_descripcionImg.Multiline = true;
     this.txt_descripcionImg.Name = "txt_descripcionImg";
     this.txt_descripcionImg.Size = new System.Drawing.Size(292, 128);
     this.txt_descripcionImg.TabIndex = 1;
     //
     // txt_nombreImg
     //
     this.eP_errors.SetError(this.txt_nombreImg, "Campo requerido");
     this.txt_nombreImg.Location = new System.Drawing.Point(96, 25);
     this.txt_nombreImg.Name = "txt_nombreImg";
     this.txt_nombreImg.Size = new System.Drawing.Size(211, 20);
     this.txt_nombreImg.TabIndex = 0;
     //
     // btn_cargarImg
     //
     this.btn_cargarImg.Location = new System.Drawing.Point(226, 12);
     this.btn_cargarImg.Name = "btn_cargarImg";
     this.btn_cargarImg.Size = new System.Drawing.Size(72, 23);
     this.btn_cargarImg.TabIndex = 0;
     this.btn_cargarImg.Text = "Cargar";
     this.btn_cargarImg.UseVisualStyleBackColor = true;
     this.btn_cargarImg.Click += new System.EventHandler(this.btn_cargarImg_Click);
     //
     // pB_imgCrear
     //
     this.pB_imgCrear.Location = new System.Drawing.Point(16, 38);
     this.pB_imgCrear.Name = "pB_imgCrear";
     this.pB_imgCrear.Size = new System.Drawing.Size(282, 220);
     this.pB_imgCrear.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgCrear.TabIndex = 21;
     this.pB_imgCrear.TabStop = false;
     //
     // pn_detalle
     //
     this.pn_detalle.Controls.Add(this.groupBox5);
     this.pn_detalle.Controls.Add(this.ver_detalle);
     this.pn_detalle.Controls.Add(this.btn_cerrar);
     this.pn_detalle.Location = new System.Drawing.Point(0, 0);
     this.pn_detalle.Name = "pn_detalle";
     this.pn_detalle.Size = new System.Drawing.Size(678, 474);
     this.pn_detalle.TabIndex = 3;
     this.pn_detalle.Visible = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.pB_imgDetalle);
     this.groupBox5.Controls.Add(this.label39);
     this.groupBox5.Controls.Add(this.rutatxt);
     this.groupBox5.Controls.Add(this.imagenesBN);
     this.groupBox5.Controls.Add(dESCRIPCIONLabel);
     this.groupBox5.Controls.Add(this.dESCRIPCIONTextBox);
     this.groupBox5.Controls.Add(nOMBRELabel);
     this.groupBox5.Controls.Add(this.nOMBRETextBox);
     this.groupBox5.Location = new System.Drawing.Point(321, 5);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(336, 396);
     this.groupBox5.TabIndex = 59;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Imagenes";
     //
     // pB_imgDetalle
     //
     this.pB_imgDetalle.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.imagenesBS, "RUTA", true));
     this.pB_imgDetalle.Image = global::SIFCA.Properties.Resources.ninguna_imagen;
     this.pB_imgDetalle.Location = new System.Drawing.Point(56, 55);
     this.pB_imgDetalle.Name = "pB_imgDetalle";
     this.pB_imgDetalle.Size = new System.Drawing.Size(260, 145);
     this.pB_imgDetalle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgDetalle.TabIndex = 78;
     this.pB_imgDetalle.TabStop = false;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(10, 221);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(55, 13);
     this.label39.TabIndex = 82;
     this.label39.Text = "Ubicacion";
     //
     // rutatxt
     //
     this.rutatxt.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "RUTA", true));
     this.rutatxt.Enabled = false;
     this.rutatxt.Location = new System.Drawing.Point(74, 218);
     this.rutatxt.Name = "rutatxt";
     this.rutatxt.Size = new System.Drawing.Size(238, 20);
     this.rutatxt.TabIndex = 0;
     this.rutatxt.Text = "Ninguna ubicacion especificada";
     this.rutatxt.TextChanged += new System.EventHandler(this.rutatxt_TextChanged);
     //
     // imagenesBN
     //
     this.imagenesBN.AddNewItem = null;
     this.imagenesBN.BindingSource = this.imagenesBS;
     this.imagenesBN.CountItem = this.bindingNavigatorCountItem;
     this.imagenesBN.DeleteItem = null;
     this.imagenesBN.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem});
     this.imagenesBN.Location = new System.Drawing.Point(3, 16);
     this.imagenesBN.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.imagenesBN.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.imagenesBN.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.imagenesBN.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.imagenesBN.Name = "imagenesBN";
     this.imagenesBN.PositionItem = this.bindingNavigatorPositionItem;
     this.imagenesBN.Size = new System.Drawing.Size(330, 25);
     this.imagenesBN.TabIndex = 80;
     this.imagenesBN.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(78, 22);
     this.toolStripLabel1.Text = "Ver imagenes";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // dESCRIPCIONTextBox
     //
     this.dESCRIPCIONTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "DESCRIPCION", true));
     this.dESCRIPCIONTextBox.Enabled = false;
     this.dESCRIPCIONTextBox.Location = new System.Drawing.Point(76, 290);
     this.dESCRIPCIONTextBox.Multiline = true;
     this.dESCRIPCIONTextBox.Name = "dESCRIPCIONTextBox";
     this.dESCRIPCIONTextBox.Size = new System.Drawing.Size(238, 84);
     this.dESCRIPCIONTextBox.TabIndex = 2;
     this.dESCRIPCIONTextBox.Text = "Ninguna";
     //
     // nOMBRETextBox
     //
     this.nOMBRETextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "NOMBRE", true));
     this.nOMBRETextBox.Enabled = false;
     this.nOMBRETextBox.Location = new System.Drawing.Point(77, 256);
     this.nOMBRETextBox.Name = "nOMBRETextBox";
     this.nOMBRETextBox.Size = new System.Drawing.Size(238, 20);
     this.nOMBRETextBox.TabIndex = 1;
     this.nOMBRETextBox.Text = "Ninguno";
     //
     // ver_detalle
     //
     this.ver_detalle.Controls.Add(this.detailGrupoEcoTxt);
     this.ver_detalle.Controls.Add(this.label44);
     this.ver_detalle.Controls.Add(this.pictureBox2);
     this.ver_detalle.Controls.Add(this.cbxGrupoComercial_det);
     this.ver_detalle.Controls.Add(this.txt_ZonaVid_det);
     this.ver_detalle.Controls.Add(this.label30);
     this.ver_detalle.Controls.Add(this.txt_ZonaGeogra_det);
     this.ver_detalle.Controls.Add(this.label31);
     this.ver_detalle.Controls.Add(this.txt_Fam_det);
     this.ver_detalle.Controls.Add(this.label32);
     this.ver_detalle.Controls.Add(this.label33);
     this.ver_detalle.Controls.Add(this.txt_NomCientifico_det);
     this.ver_detalle.Controls.Add(this.label34);
     this.ver_detalle.Controls.Add(this.txt_NomComun_det);
     this.ver_detalle.Controls.Add(this.label35);
     this.ver_detalle.Location = new System.Drawing.Point(10, 5);
     this.ver_detalle.Name = "ver_detalle";
     this.ver_detalle.Size = new System.Drawing.Size(303, 396);
     this.ver_detalle.TabIndex = 58;
     this.ver_detalle.TabStop = false;
     this.ver_detalle.Text = "Detalle especie";
     //
     // detailGrupoEcoTxt
     //
     this.detailGrupoEcoTxt.Location = new System.Drawing.Point(137, 285);
     this.detailGrupoEcoTxt.Name = "detailGrupoEcoTxt";
     this.detailGrupoEcoTxt.ReadOnly = true;
     this.detailGrupoEcoTxt.Size = new System.Drawing.Size(152, 20);
     this.detailGrupoEcoTxt.TabIndex = 72;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(17, 285);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(85, 13);
     this.label44.TabIndex = 73;
     this.label44.Text = "Grupo ecológico";
     //
     // pictureBox2
     //
     this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Top;
     this.pictureBox2.Image = global::SIFCA.Properties.Resources.nueva_especie;
     this.pictureBox2.Location = new System.Drawing.Point(3, 16);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(297, 53);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 71;
     this.pictureBox2.TabStop = false;
     //
     // cbxGrupoComercial_det
     //
     this.cbxGrupoComercial_det.DataSource = this.GroupComBSource;
     this.cbxGrupoComercial_det.DisplayMember = "DESCRIPGRUPO";
     this.cbxGrupoComercial_det.Enabled = false;
     this.cbxGrupoComercial_det.FormattingEnabled = true;
     this.cbxGrupoComercial_det.Location = new System.Drawing.Point(136, 156);
     this.cbxGrupoComercial_det.Name = "cbxGrupoComercial_det";
     this.cbxGrupoComercial_det.Size = new System.Drawing.Size(152, 21);
     this.cbxGrupoComercial_det.TabIndex = 2;
     this.cbxGrupoComercial_det.ValueMember = "GRUPOCOM";
     //
     // txt_ZonaVid_det
     //
     this.txt_ZonaVid_det.Location = new System.Drawing.Point(136, 250);
     this.txt_ZonaVid_det.Name = "txt_ZonaVid_det";
     this.txt_ZonaVid_det.ReadOnly = true;
     this.txt_ZonaVid_det.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaVid_det.TabIndex = 5;
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(15, 250);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(73, 13);
     this.label30.TabIndex = 66;
     this.label30.Text = "Zona De Vida";
     //
     // txt_ZonaGeogra_det
     //
     this.txt_ZonaGeogra_det.Location = new System.Drawing.Point(136, 220);
     this.txt_ZonaGeogra_det.Name = "txt_ZonaGeogra_det";
     this.txt_ZonaGeogra_det.ReadOnly = true;
     this.txt_ZonaGeogra_det.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeogra_det.TabIndex = 4;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(16, 220);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(87, 13);
     this.label31.TabIndex = 64;
     this.label31.Text = "Zona Geografica";
     //
     // txt_Fam_det
     //
     this.txt_Fam_det.Location = new System.Drawing.Point(135, 185);
     this.txt_Fam_det.Name = "txt_Fam_det";
     this.txt_Fam_det.ReadOnly = true;
     this.txt_Fam_det.Size = new System.Drawing.Size(153, 20);
     this.txt_Fam_det.TabIndex = 3;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(14, 185);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(39, 13);
     this.label32.TabIndex = 62;
     this.label32.Text = "Familia";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(14, 156);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(85, 13);
     this.label33.TabIndex = 61;
     this.label33.Text = "Grupo Comercial";
     //
     // txt_NomCientifico_det
     //
     this.txt_NomCientifico_det.Location = new System.Drawing.Point(135, 123);
     this.txt_NomCientifico_det.Name = "txt_NomCientifico_det";
     this.txt_NomCientifico_det.ReadOnly = true;
     this.txt_NomCientifico_det.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCientifico_det.TabIndex = 1;
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(15, 123);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(90, 13);
     this.label34.TabIndex = 59;
     this.label34.Text = "Nombre Cientifico";
     //
     // txt_NomComun_det
     //
     this.txt_NomComun_det.Location = new System.Drawing.Point(135, 94);
     this.txt_NomComun_det.Name = "txt_NomComun_det";
     this.txt_NomComun_det.ReadOnly = true;
     this.txt_NomComun_det.Size = new System.Drawing.Size(153, 20);
     this.txt_NomComun_det.TabIndex = 0;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(14, 94);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(80, 13);
     this.label35.TabIndex = 57;
     this.label35.Text = "Nombre Comun";
     //
     // btn_cerrar
     //
     this.btn_cerrar.Location = new System.Drawing.Point(565, 408);
     this.btn_cerrar.Name = "btn_cerrar";
     this.btn_cerrar.Size = new System.Drawing.Size(92, 23);
     this.btn_cerrar.TabIndex = 0;
     this.btn_cerrar.Text = "Cerrar";
     this.btn_cerrar.UseVisualStyleBackColor = true;
     this.btn_cerrar.Click += new System.EventHandler(this.btn_cerrar_Click);
     //
     // pn_cargarImg
     //
     this.pn_cargarImg.Controls.Add(this.pB_imgCrear);
     this.pn_cargarImg.Controls.Add(this.groupBox4);
     this.pn_cargarImg.Controls.Add(this.imagenTxt);
     this.pn_cargarImg.Controls.Add(this.btn_cargarImg);
     this.pn_cargarImg.Location = new System.Drawing.Point(0, 0);
     this.pn_cargarImg.Name = "pn_cargarImg";
     this.pn_cargarImg.Size = new System.Drawing.Size(655, 317);
     this.pn_cargarImg.TabIndex = 4;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.txt_descripcionImg);
     this.groupBox4.Controls.Add(this.label38);
     this.groupBox4.Controls.Add(this.txt_nombreImg);
     this.groupBox4.Controls.Add(this.label37);
     this.groupBox4.Controls.Add(this.btn_ImgCancelar);
     this.groupBox4.Controls.Add(this.btn_ImgAceptar);
     this.groupBox4.Location = new System.Drawing.Point(304, 12);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(329, 249);
     this.groupBox4.TabIndex = 35;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Detalles";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(12, 56);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(63, 13);
     this.label38.TabIndex = 39;
     this.label38.Text = "Descripción";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(9, 25);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(81, 13);
     this.label37.TabIndex = 37;
     this.label37.Text = "Nombre imagen";
     //
     // btn_ImgCancelar
     //
     this.btn_ImgCancelar.Location = new System.Drawing.Point(209, 220);
     this.btn_ImgCancelar.Name = "btn_ImgCancelar";
     this.btn_ImgCancelar.Size = new System.Drawing.Size(98, 23);
     this.btn_ImgCancelar.TabIndex = 3;
     this.btn_ImgCancelar.Text = "Cancelar";
     this.btn_ImgCancelar.UseVisualStyleBackColor = true;
     this.btn_ImgCancelar.Click += new System.EventHandler(this.btn_ImgCancelar_Click);
     //
     // btn_ImgAceptar
     //
     this.btn_ImgAceptar.Location = new System.Drawing.Point(105, 220);
     this.btn_ImgAceptar.Name = "btn_ImgAceptar";
     this.btn_ImgAceptar.Size = new System.Drawing.Size(98, 23);
     this.btn_ImgAceptar.TabIndex = 2;
     this.btn_ImgAceptar.Text = "Aceptar";
     this.btn_ImgAceptar.UseVisualStyleBackColor = true;
     this.btn_ImgAceptar.Click += new System.EventHandler(this.btn_ImgAceptar_Click);
     //
     // Especies_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(893, 491);
     this.Controls.Add(this.pn_detalle);
     this.Controls.Add(this.pn_editar);
     this.Controls.Add(this.pn_crear);
     this.Controls.Add(this.pn_listado);
     this.Controls.Add(this.pn_cargarImg);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Especies_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Especies";
     this.pn_listado.ResumeLayout(false);
     this.pn_listado.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEspecies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComercialBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.specieBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEspecie)).EndInit();
     this.paginacionEspecie.ResumeLayout(false);
     this.paginacionEspecie.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupComBSource)).EndInit();
     this.groupBox.ResumeLayout(false);
     this.groupBox.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.pn_crear.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.pn_editar.ResumeLayout(false);
     this.pn_editar.PerformLayout();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateImageBN)).EndInit();
     this.UpdateImageBN.ResumeLayout(false);
     this.UpdateImageBN.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgUpdate)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgCrear)).EndInit();
     this.pn_detalle.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgDetalle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBN)).EndInit();
     this.imagenesBN.ResumeLayout(false);
     this.imagenesBN.PerformLayout();
     this.ver_detalle.ResumeLayout(false);
     this.ver_detalle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.pn_cargarImg.ResumeLayout(false);
     this.pn_cargarImg.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
Example #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CUnlockTableForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.button1 = new RMSUI.FunctionalButton();
     this.UnlockTableDataGridView = new RMSUI.SimpleGrid();
     this.SLColummn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TableTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TableNumberColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CustomerNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ActionButtonColumn = new System.Windows.Forms.DataGridViewButtonColumn();
     this.OrderIDColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UnlockTableDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.label1);
     this.panel2.Location = new System.Drawing.Point(79, 75);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(633, 22);
     this.panel2.TabIndex = 22;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.SteelBlue;
     this.label1.Location = new System.Drawing.Point(-4, 2);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(633, 15);
     this.label1.TabIndex = 0;
     this.label1.Text = "Current Tables";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel1.Controls.Add(this.button1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 448);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(655, 72);
     this.panel1.TabIndex = 21;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Transparent;
     this.button1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage")));
     this.button1.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("button1.BgImageOnMouseDown")));
     this.button1.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("button1.BgImageOnMouseUp")));
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font = new System.Drawing.Font("Arial", 10F);
     this.button1.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.button1.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.button1.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button1.Location = new System.Drawing.Point(241, 20);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(149, 40);
     this.button1.TabIndex = 19;
     this.button1.Text = "Close";
     this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // UnlockTableDataGridView
     //
     this.UnlockTableDataGridView.AllowUserToAddRows = false;
     this.UnlockTableDataGridView.AllowUserToDeleteRows = false;
     this.UnlockTableDataGridView.AllowUserToResizeRows = false;
     this.UnlockTableDataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
     this.UnlockTableDataGridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.UnlockTableDataGridView.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.Gainsboro;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(2);
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.UnlockTableDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.UnlockTableDataGridView.ColumnHeadersHeight = 40;
     this.UnlockTableDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.UnlockTableDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.SLColummn,
     this.TableTypeColumn,
     this.TableNumberColumn,
     this.CustomerNameColumn,
     this.ActionButtonColumn,
     this.OrderIDColumn});
     this.UnlockTableDataGridView.GridColor = System.Drawing.Color.Gray;
     this.UnlockTableDataGridView.Location = new System.Drawing.Point(10, 11);
     this.UnlockTableDataGridView.Name = "UnlockTableDataGridView";
     this.UnlockTableDataGridView.RowHeadersVisible = false;
     this.UnlockTableDataGridView.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.UnlockTableDataGridView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.UnlockTableDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.UnlockTableDataGridView.Size = new System.Drawing.Size(633, 428);
     this.UnlockTableDataGridView.TabIndex = 20;
     //
     // SLColummn
     //
     this.SLColummn.HeaderText = "SL";
     this.SLColummn.Name = "SLColummn";
     this.SLColummn.ReadOnly = true;
     this.SLColummn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.SLColummn.Width = 50;
     //
     // TableTypeColumn
     //
     this.TableTypeColumn.HeaderText = "Table Type";
     this.TableTypeColumn.Name = "TableTypeColumn";
     this.TableTypeColumn.ReadOnly = true;
     this.TableTypeColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.TableTypeColumn.Width = 130;
     //
     // TableNumberColumn
     //
     this.TableNumberColumn.HeaderText = "Table Number";
     this.TableNumberColumn.Name = "TableNumberColumn";
     this.TableNumberColumn.ReadOnly = true;
     this.TableNumberColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.TableNumberColumn.Width = 130;
     //
     // CustomerNameColumn
     //
     this.CustomerNameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.CustomerNameColumn.HeaderText = "Customer Name";
     this.CustomerNameColumn.Name = "CustomerNameColumn";
     this.CustomerNameColumn.ReadOnly = true;
     this.CustomerNameColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // ActionButtonColumn
     //
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     this.ActionButtonColumn.DefaultCellStyle = dataGridViewCellStyle2;
     this.ActionButtonColumn.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.ActionButtonColumn.HeaderText = "Action";
     this.ActionButtonColumn.Name = "ActionButtonColumn";
     this.ActionButtonColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // OrderIDColumn
     //
     this.OrderIDColumn.HeaderText = "";
     this.OrderIDColumn.Name = "OrderIDColumn";
     this.OrderIDColumn.Visible = false;
     //
     // CUnlockTableForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.DimGray;
     this.ClientSize = new System.Drawing.Size(655, 520);
     this.ControlBox = false;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.UnlockTableDataGridView);
     this.Name = "CUnlockTableForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Unlock Order ";
     this.Load += new System.EventHandler(this.CUnlockTableForm_Load);
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.UnlockTableDataGridView)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.topPanel = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.logToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bottonPanel = new System.Windows.Forms.Panel();
     this.FlooderStatusIndicatorsGroupBox = new System.Windows.Forms.GroupBox();
     this.YellowLabel = new System.Windows.Forms.Label();
     this.RedLabel = new System.Windows.Forms.Label();
     this.GreenLabel = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.ProgressLabel = new System.Windows.Forms.Label();
     this.ProgressSpinnerPictureBox = new System.Windows.Forms.PictureBox();
     this.clockLabel = new System.Windows.Forms.Label();
     this.AddDeleteFlooderGroupBox = new System.Windows.Forms.GroupBox();
     this.DeleteFlooderButton = new System.Windows.Forms.Button();
     this.AddFlooderButton = new System.Windows.Forms.Button();
     this.mainPanel = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.FlooderTimerIntervalGroupBox = new System.Windows.Forms.GroupBox();
     this.FlooderIntervalTextBox = new System.Windows.Forms.TextBox();
     this.FlooderTargetGroupBox = new System.Windows.Forms.GroupBox();
     this.TargetIpAddressTextBox = new System.Windows.Forms.TextBox();
     this.TargetPortTextBox = new System.Windows.Forms.TextBox();
     this.DatabaseResetGroupBox = new System.Windows.Forms.GroupBox();
     this.DatabaseResetCheckBox = new System.Windows.Forms.CheckBox();
     this.ParseCaptureFilesServiceGroupBox = new System.Windows.Forms.GroupBox();
     this.StartParseFilesServiceButton = new System.Windows.Forms.Button();
     this.ParseFilesServiceStatusLabel = new System.Windows.Forms.Label();
     this.ClockButton = new System.Windows.Forms.Button();
     this.FlooderStatusDataGridView = new System.Windows.Forms.DataGridView();
     this.SelectFlooder = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Pid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Flooder = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Port = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FlooderTarget = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.RunTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FlooderControl = new System.Windows.Forms.DataGridViewButtonColumn();
     this.topPanel.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.bottonPanel.SuspendLayout();
     this.FlooderStatusIndicatorsGroupBox.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ProgressSpinnerPictureBox)).BeginInit();
     this.AddDeleteFlooderGroupBox.SuspendLayout();
     this.mainPanel.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.FlooderTimerIntervalGroupBox.SuspendLayout();
     this.FlooderTargetGroupBox.SuspendLayout();
     this.DatabaseResetGroupBox.SuspendLayout();
     this.ParseCaptureFilesServiceGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FlooderStatusDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // topPanel
     //
     this.topPanel.BackColor = System.Drawing.SystemColors.Control;
     this.topPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.topPanel.Controls.Add(this.label1);
     this.topPanel.Controls.Add(this.menuStrip1);
     this.topPanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.topPanel.Location = new System.Drawing.Point(0, 0);
     this.topPanel.Name = "topPanel";
     this.topPanel.Size = new System.Drawing.Size(982, 128);
     this.topPanel.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 53);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(399, 25);
     this.label1.TabIndex = 0;
     this.label1.Text = "Virtual Machine Co-Residency Probe";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.viewToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(980, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text = "MainMenuMenuStrip";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.logToolStripMenuItem});
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "View";
     //
     // logToolStripMenuItem
     //
     this.logToolStripMenuItem.Name = "logToolStripMenuItem";
     this.logToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.logToolStripMenuItem.Text = "Log";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.aboutToolStripMenuItem.Text = "About";
     //
     // bottonPanel
     //
     this.bottonPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.bottonPanel.Controls.Add(this.FlooderStatusIndicatorsGroupBox);
     this.bottonPanel.Controls.Add(this.groupBox1);
     this.bottonPanel.Controls.Add(this.AddDeleteFlooderGroupBox);
     this.bottonPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bottonPanel.Location = new System.Drawing.Point(0, 531);
     this.bottonPanel.Name = "bottonPanel";
     this.bottonPanel.Size = new System.Drawing.Size(982, 100);
     this.bottonPanel.TabIndex = 1;
     //
     // FlooderStatusIndicatorsGroupBox
     //
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.YellowLabel);
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.RedLabel);
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.GreenLabel);
     this.FlooderStatusIndicatorsGroupBox.Location = new System.Drawing.Point(237, 5);
     this.FlooderStatusIndicatorsGroupBox.Name = "FlooderStatusIndicatorsGroupBox";
     this.FlooderStatusIndicatorsGroupBox.Size = new System.Drawing.Size(506, 82);
     this.FlooderStatusIndicatorsGroupBox.TabIndex = 9;
     this.FlooderStatusIndicatorsGroupBox.TabStop = false;
     //
     // YellowLabel
     //
     this.YellowLabel.BackColor = System.Drawing.Color.Khaki;
     this.YellowLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.YellowLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.YellowLabel.Location = new System.Drawing.Point(193, 32);
     this.YellowLabel.Name = "YellowLabel";
     this.YellowLabel.Size = new System.Drawing.Size(121, 25);
     this.YellowLabel.TabIndex = 4;
     this.YellowLabel.Text = "Non-Resident";
     this.YellowLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RedLabel
     //
     this.RedLabel.BackColor = System.Drawing.Color.LightCoral;
     this.RedLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.RedLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RedLabel.Location = new System.Drawing.Point(349, 32);
     this.RedLabel.Name = "RedLabel";
     this.RedLabel.Size = new System.Drawing.Size(121, 25);
     this.RedLabel.TabIndex = 6;
     this.RedLabel.Text = "Not Connected";
     this.RedLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // GreenLabel
     //
     this.GreenLabel.BackColor = System.Drawing.Color.LightGreen;
     this.GreenLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.GreenLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.GreenLabel.Location = new System.Drawing.Point(37, 32);
     this.GreenLabel.Name = "GreenLabel";
     this.GreenLabel.Size = new System.Drawing.Size(121, 25);
     this.GreenLabel.TabIndex = 2;
     this.GreenLabel.Text = "Co-Resident";
     this.GreenLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ProgressLabel);
     this.groupBox1.Controls.Add(this.ProgressSpinnerPictureBox);
     this.groupBox1.Controls.Add(this.clockLabel);
     this.groupBox1.Location = new System.Drawing.Point(749, 5);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(220, 82);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     //
     // ProgressLabel
     //
     this.ProgressLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ProgressLabel.Location = new System.Drawing.Point(54, 16);
     this.ProgressLabel.Name = "ProgressLabel";
     this.ProgressLabel.Size = new System.Drawing.Size(160, 58);
     this.ProgressLabel.TabIndex = 2;
     this.ProgressLabel.Text = "Progress Label";
     this.ProgressLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ProgressSpinnerPictureBox
     //
     this.ProgressSpinnerPictureBox.Image = global::COWE.Client.Properties.Resources.fedora_spinner;
     this.ProgressSpinnerPictureBox.InitialImage = null;
     this.ProgressSpinnerPictureBox.Location = new System.Drawing.Point(10, 29);
     this.ProgressSpinnerPictureBox.Name = "ProgressSpinnerPictureBox";
     this.ProgressSpinnerPictureBox.Size = new System.Drawing.Size(38, 31);
     this.ProgressSpinnerPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.ProgressSpinnerPictureBox.TabIndex = 1;
     this.ProgressSpinnerPictureBox.TabStop = false;
     //
     // clockLabel
     //
     this.clockLabel.Location = new System.Drawing.Point(29, 26);
     this.clockLabel.Name = "clockLabel";
     this.clockLabel.Size = new System.Drawing.Size(172, 31);
     this.clockLabel.TabIndex = 0;
     this.clockLabel.Text = "Clock";
     this.clockLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // AddDeleteFlooderGroupBox
     //
     this.AddDeleteFlooderGroupBox.Controls.Add(this.DeleteFlooderButton);
     this.AddDeleteFlooderGroupBox.Controls.Add(this.AddFlooderButton);
     this.AddDeleteFlooderGroupBox.Location = new System.Drawing.Point(11, 5);
     this.AddDeleteFlooderGroupBox.Name = "AddDeleteFlooderGroupBox";
     this.AddDeleteFlooderGroupBox.Size = new System.Drawing.Size(220, 82);
     this.AddDeleteFlooderGroupBox.TabIndex = 7;
     this.AddDeleteFlooderGroupBox.TabStop = false;
     //
     // DeleteFlooderButton
     //
     this.DeleteFlooderButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DeleteFlooderButton.Location = new System.Drawing.Point(39, 47);
     this.DeleteFlooderButton.Name = "DeleteFlooderButton";
     this.DeleteFlooderButton.Size = new System.Drawing.Size(139, 27);
     this.DeleteFlooderButton.TabIndex = 7;
     this.DeleteFlooderButton.Text = "Delete Flooder";
     this.DeleteFlooderButton.UseVisualStyleBackColor = true;
     this.DeleteFlooderButton.Click += new System.EventHandler(this.DeleteFlooderButton_Click);
     //
     // AddFlooderButton
     //
     this.AddFlooderButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AddFlooderButton.Location = new System.Drawing.Point(39, 13);
     this.AddFlooderButton.Name = "AddFlooderButton";
     this.AddFlooderButton.Size = new System.Drawing.Size(139, 27);
     this.AddFlooderButton.TabIndex = 6;
     this.AddFlooderButton.Text = "Add Flooder";
     this.AddFlooderButton.UseVisualStyleBackColor = true;
     this.AddFlooderButton.Click += new System.EventHandler(this.AddFlooderButton_Click);
     //
     // mainPanel
     //
     this.mainPanel.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.mainPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mainPanel.Controls.Add(this.groupBox2);
     this.mainPanel.Controls.Add(this.ClockButton);
     this.mainPanel.Controls.Add(this.FlooderStatusDataGridView);
     this.mainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mainPanel.Location = new System.Drawing.Point(0, 128);
     this.mainPanel.Name = "mainPanel";
     this.mainPanel.Size = new System.Drawing.Size(982, 403);
     this.mainPanel.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.FlooderTimerIntervalGroupBox);
     this.groupBox2.Controls.Add(this.FlooderTargetGroupBox);
     this.groupBox2.Controls.Add(this.DatabaseResetGroupBox);
     this.groupBox2.Controls.Add(this.ParseCaptureFilesServiceGroupBox);
     this.groupBox2.Location = new System.Drawing.Point(21, 5);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(942, 95);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop = false;
     //
     // FlooderTimerIntervalGroupBox
     //
     this.FlooderTimerIntervalGroupBox.Controls.Add(this.FlooderIntervalTextBox);
     this.FlooderTimerIntervalGroupBox.Location = new System.Drawing.Point(275, 24);
     this.FlooderTimerIntervalGroupBox.Name = "FlooderTimerIntervalGroupBox";
     this.FlooderTimerIntervalGroupBox.Size = new System.Drawing.Size(132, 63);
     this.FlooderTimerIntervalGroupBox.TabIndex = 8;
     this.FlooderTimerIntervalGroupBox.TabStop = false;
     this.FlooderTimerIntervalGroupBox.Text = "Flooder Interval (sec)";
     //
     // FlooderIntervalTextBox
     //
     this.FlooderIntervalTextBox.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.FlooderIntervalTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderIntervalTextBox.Location = new System.Drawing.Point(31, 23);
     this.FlooderIntervalTextBox.Name = "FlooderIntervalTextBox";
     this.FlooderIntervalTextBox.Size = new System.Drawing.Size(66, 26);
     this.FlooderIntervalTextBox.TabIndex = 6;
     this.FlooderIntervalTextBox.Text = "120";
     this.FlooderIntervalTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // FlooderTargetGroupBox
     //
     this.FlooderTargetGroupBox.Controls.Add(this.TargetIpAddressTextBox);
     this.FlooderTargetGroupBox.Controls.Add(this.TargetPortTextBox);
     this.FlooderTargetGroupBox.Location = new System.Drawing.Point(23, 24);
     this.FlooderTargetGroupBox.Name = "FlooderTargetGroupBox";
     this.FlooderTargetGroupBox.Size = new System.Drawing.Size(246, 63);
     this.FlooderTargetGroupBox.TabIndex = 9;
     this.FlooderTargetGroupBox.TabStop = false;
     this.FlooderTargetGroupBox.Text = "Target (Server) - IP Address and Port Number";
     //
     // TargetIpAddressTextBox
     //
     this.TargetIpAddressTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TargetIpAddressTextBox.Location = new System.Drawing.Point(14, 23);
     this.TargetIpAddressTextBox.Name = "TargetIpAddressTextBox";
     this.TargetIpAddressTextBox.Size = new System.Drawing.Size(138, 26);
     this.TargetIpAddressTextBox.TabIndex = 2;
     this.TargetIpAddressTextBox.Text = "255.255.255.255";
     this.TargetIpAddressTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // TargetPortTextBox
     //
     this.TargetPortTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TargetPortTextBox.Location = new System.Drawing.Point(165, 23);
     this.TargetPortTextBox.Name = "TargetPortTextBox";
     this.TargetPortTextBox.Size = new System.Drawing.Size(66, 26);
     this.TargetPortTextBox.TabIndex = 3;
     this.TargetPortTextBox.Text = "65536";
     this.TargetPortTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // DatabaseResetGroupBox
     //
     this.DatabaseResetGroupBox.Controls.Add(this.DatabaseResetCheckBox);
     this.DatabaseResetGroupBox.Location = new System.Drawing.Point(413, 24);
     this.DatabaseResetGroupBox.Name = "DatabaseResetGroupBox";
     this.DatabaseResetGroupBox.Size = new System.Drawing.Size(234, 63);
     this.DatabaseResetGroupBox.TabIndex = 10;
     this.DatabaseResetGroupBox.TabStop = false;
     this.DatabaseResetGroupBox.Text = "Database Reset /  Purge Old Files";
     //
     // DatabaseResetCheckBox
     //
     this.DatabaseResetCheckBox.AutoSize = true;
     this.DatabaseResetCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DatabaseResetCheckBox.Location = new System.Drawing.Point(9, 25);
     this.DatabaseResetCheckBox.Name = "DatabaseResetCheckBox";
     this.DatabaseResetCheckBox.Size = new System.Drawing.Size(213, 24);
     this.DatabaseResetCheckBox.TabIndex = 0;
     this.DatabaseResetCheckBox.Text = "Reset Database and Files";
     this.DatabaseResetCheckBox.UseVisualStyleBackColor = true;
     //
     // ParseCaptureFilesServiceGroupBox
     //
     this.ParseCaptureFilesServiceGroupBox.Controls.Add(this.StartParseFilesServiceButton);
     this.ParseCaptureFilesServiceGroupBox.Controls.Add(this.ParseFilesServiceStatusLabel);
     this.ParseCaptureFilesServiceGroupBox.Location = new System.Drawing.Point(653, 24);
     this.ParseCaptureFilesServiceGroupBox.Name = "ParseCaptureFilesServiceGroupBox";
     this.ParseCaptureFilesServiceGroupBox.Size = new System.Drawing.Size(266, 63);
     this.ParseCaptureFilesServiceGroupBox.TabIndex = 9;
     this.ParseCaptureFilesServiceGroupBox.TabStop = false;
     this.ParseCaptureFilesServiceGroupBox.Text = "Parse Capture Files Service";
     //
     // StartParseFilesServiceButton
     //
     this.StartParseFilesServiceButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StartParseFilesServiceButton.Location = new System.Drawing.Point(22, 21);
     this.StartParseFilesServiceButton.Name = "StartParseFilesServiceButton";
     this.StartParseFilesServiceButton.Size = new System.Drawing.Size(85, 30);
     this.StartParseFilesServiceButton.TabIndex = 8;
     this.StartParseFilesServiceButton.Text = "Start";
     this.StartParseFilesServiceButton.UseVisualStyleBackColor = true;
     this.StartParseFilesServiceButton.Click += new System.EventHandler(this.StartParseFilesServiceButton_Click);
     //
     // ParseFilesServiceStatusLabel
     //
     this.ParseFilesServiceStatusLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ParseFilesServiceStatusLabel.Location = new System.Drawing.Point(128, 25);
     this.ParseFilesServiceStatusLabel.Name = "ParseFilesServiceStatusLabel";
     this.ParseFilesServiceStatusLabel.Size = new System.Drawing.Size(100, 23);
     this.ParseFilesServiceStatusLabel.TabIndex = 0;
     this.ParseFilesServiceStatusLabel.Text = "Status";
     this.ParseFilesServiceStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ClockButton
     //
     this.ClockButton.Location = new System.Drawing.Point(902, 373);
     this.ClockButton.Name = "ClockButton";
     this.ClockButton.Size = new System.Drawing.Size(75, 23);
     this.ClockButton.TabIndex = 10;
     this.ClockButton.Text = "Start Clock";
     this.ClockButton.UseVisualStyleBackColor = true;
     this.ClockButton.Click += new System.EventHandler(this.ClockButton_Click);
     //
     // FlooderStatusDataGridView
     //
     this.FlooderStatusDataGridView.AllowUserToAddRows = false;
     this.FlooderStatusDataGridView.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.FlooderStatusDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.FlooderStatusDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.FlooderStatusDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.SelectFlooder,
     this.Pid,
     this.Flooder,
     this.Port,
     this.FlooderTarget,
     this.RunTime,
     this.Status,
     this.FlooderControl});
     this.FlooderStatusDataGridView.Location = new System.Drawing.Point(66, 116);
     this.FlooderStatusDataGridView.Name = "FlooderStatusDataGridView";
     this.FlooderStatusDataGridView.ReadOnly = true;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderStatusDataGridView.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.FlooderStatusDataGridView.Size = new System.Drawing.Size(887, 153);
     this.FlooderStatusDataGridView.TabIndex = 0;
     this.FlooderStatusDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.FlooderStatusDataGridView_CellContentClick);
     //
     // SelectFlooder
     //
     this.SelectFlooder.HeaderText = "";
     this.SelectFlooder.MinimumWidth = 30;
     this.SelectFlooder.Name = "SelectFlooder";
     this.SelectFlooder.ReadOnly = true;
     this.SelectFlooder.Width = 30;
     //
     // Pid
     //
     this.Pid.HeaderText = "PID";
     this.Pid.MinimumWidth = 60;
     this.Pid.Name = "Pid";
     this.Pid.ReadOnly = true;
     this.Pid.Width = 60;
     //
     // Flooder
     //
     this.Flooder.HeaderText = "Flooder";
     this.Flooder.MinimumWidth = 150;
     this.Flooder.Name = "Flooder";
     this.Flooder.ReadOnly = true;
     this.Flooder.ToolTipText = "IP address";
     this.Flooder.Width = 150;
     //
     // Port
     //
     this.Port.HeaderText = "Port";
     this.Port.MinimumWidth = 80;
     this.Port.Name = "Port";
     this.Port.ReadOnly = true;
     this.Port.Width = 80;
     //
     // FlooderTarget
     //
     this.FlooderTarget.HeaderText = "Destination";
     this.FlooderTarget.MinimumWidth = 150;
     this.FlooderTarget.Name = "FlooderTarget";
     this.FlooderTarget.ReadOnly = true;
     this.FlooderTarget.Width = 150;
     //
     // RunTime
     //
     this.RunTime.HeaderText = "Run Time (sec)";
     this.RunTime.Name = "RunTime";
     this.RunTime.ReadOnly = true;
     //
     // Status
     //
     this.Status.HeaderText = "Status";
     this.Status.MinimumWidth = 122;
     this.Status.Name = "Status";
     this.Status.ReadOnly = true;
     this.Status.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Status.Width = 122;
     //
     // FlooderControl
     //
     this.FlooderControl.HeaderText = "";
     this.FlooderControl.MinimumWidth = 100;
     this.FlooderControl.Name = "FlooderControl";
     this.FlooderControl.ReadOnly = true;
     this.FlooderControl.Text = "Start";
     this.FlooderControl.UseColumnTextForButtonValue = true;
     //
     // Client
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(982, 631);
     this.Controls.Add(this.mainPanel);
     this.Controls.Add(this.bottonPanel);
     this.Controls.Add(this.topPanel);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Client";
     this.Text = "Co-Residency Probe (Client)";
     this.topPanel.ResumeLayout(false);
     this.topPanel.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.bottonPanel.ResumeLayout(false);
     this.FlooderStatusIndicatorsGroupBox.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ProgressSpinnerPictureBox)).EndInit();
     this.AddDeleteFlooderGroupBox.ResumeLayout(false);
     this.mainPanel.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.FlooderTimerIntervalGroupBox.ResumeLayout(false);
     this.FlooderTimerIntervalGroupBox.PerformLayout();
     this.FlooderTargetGroupBox.ResumeLayout(false);
     this.FlooderTargetGroupBox.PerformLayout();
     this.DatabaseResetGroupBox.ResumeLayout(false);
     this.DatabaseResetGroupBox.PerformLayout();
     this.ParseCaptureFilesServiceGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.FlooderStatusDataGridView)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlStudentsSearch = new System.Windows.Forms.Panel();
     this.btnAdd = new System.Windows.Forms.Button();
     this.btnSearch = new System.Windows.Forms.Button();
     this.txtStudLastName = new System.Windows.Forms.TextBox();
     this.lblStudentLastName = new System.Windows.Forms.Label();
     this.pnlStudentsGrid = new System.Windows.Forms.Panel();
     this.dgvStudents = new System.Windows.Forms.DataGridView();
     this.colID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colStudFirstName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colMiddleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLastName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDepartment = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEdit = new System.Windows.Forms.DataGridViewButtonColumn();
     this.colDelete = new System.Windows.Forms.DataGridViewButtonColumn();
     this.pnlStudentsSearch.SuspendLayout();
     this.pnlStudentsGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).BeginInit();
     this.SuspendLayout();
     //
     // pnlStudentsSearch
     //
     this.pnlStudentsSearch.Controls.Add(this.btnAdd);
     this.pnlStudentsSearch.Controls.Add(this.btnSearch);
     this.pnlStudentsSearch.Controls.Add(this.txtStudLastName);
     this.pnlStudentsSearch.Controls.Add(this.lblStudentLastName);
     this.pnlStudentsSearch.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlStudentsSearch.Location = new System.Drawing.Point(0, 0);
     this.pnlStudentsSearch.Name = "pnlStudentsSearch";
     this.pnlStudentsSearch.Size = new System.Drawing.Size(970, 23);
     this.pnlStudentsSearch.TabIndex = 0;
     //
     // btnAdd
     //
     this.btnAdd.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnAdd.Location = new System.Drawing.Point(438, 0);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 3;
     this.btnAdd.Text = "Add";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnSearch
     //
     this.btnSearch.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnSearch.Location = new System.Drawing.Point(363, 0);
     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;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtStudLastName
     //
     this.txtStudLastName.Dock = System.Windows.Forms.DockStyle.Left;
     this.txtStudLastName.Location = new System.Drawing.Point(143, 0);
     this.txtStudLastName.Name = "txtStudLastName";
     this.txtStudLastName.Size = new System.Drawing.Size(220, 22);
     this.txtStudLastName.TabIndex = 1;
     this.txtStudLastName.TextChanged += new System.EventHandler(this.txtStudLastName_TextChanged);
     //
     // lblStudentLastName
     //
     this.lblStudentLastName.AutoSize = true;
     this.lblStudentLastName.Dock = System.Windows.Forms.DockStyle.Left;
     this.lblStudentLastName.Location = new System.Drawing.Point(0, 0);
     this.lblStudentLastName.Name = "lblStudentLastName";
     this.lblStudentLastName.Size = new System.Drawing.Size(143, 17);
     this.lblStudentLastName.TabIndex = 0;
     this.lblStudentLastName.Text = "Student\'s Last Name:";
     //
     // pnlStudentsGrid
     //
     this.pnlStudentsGrid.Controls.Add(this.dgvStudents);
     this.pnlStudentsGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlStudentsGrid.Location = new System.Drawing.Point(0, 23);
     this.pnlStudentsGrid.Name = "pnlStudentsGrid";
     this.pnlStudentsGrid.Size = new System.Drawing.Size(970, 488);
     this.pnlStudentsGrid.TabIndex = 1;
     //
     // dgvStudents
     //
     this.dgvStudents.AllowUserToAddRows = false;
     this.dgvStudents.AllowUserToDeleteRows = false;
     this.dgvStudents.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvStudents.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colID,
     this.colStudFirstName,
     this.colMiddleName,
     this.colLastName,
     this.colDepartment,
     this.colEdit,
     this.colDelete});
     this.dgvStudents.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvStudents.Location = new System.Drawing.Point(0, 0);
     this.dgvStudents.Name = "dgvStudents";
     this.dgvStudents.ReadOnly = true;
     this.dgvStudents.RowTemplate.Height = 24;
     this.dgvStudents.Size = new System.Drawing.Size(970, 488);
     this.dgvStudents.TabIndex = 0;
     this.dgvStudents.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStudents_CellClick);
     //
     // colID
     //
     this.colID.HeaderText = "ID";
     this.colID.Name = "colID";
     this.colID.ReadOnly = true;
     //
     // colStudFirstName
     //
     this.colStudFirstName.HeaderText = "First Name";
     this.colStudFirstName.Name = "colStudFirstName";
     this.colStudFirstName.ReadOnly = true;
     this.colStudFirstName.Width = 150;
     //
     // colMiddleName
     //
     this.colMiddleName.HeaderText = "Middle Name";
     this.colMiddleName.Name = "colMiddleName";
     this.colMiddleName.ReadOnly = true;
     this.colMiddleName.Width = 150;
     //
     // colLastName
     //
     this.colLastName.HeaderText = "Last Name";
     this.colLastName.Name = "colLastName";
     this.colLastName.ReadOnly = true;
     this.colLastName.Width = 150;
     //
     // colDepartment
     //
     this.colDepartment.FillWeight = 150F;
     this.colDepartment.HeaderText = "Department";
     this.colDepartment.Name = "colDepartment";
     this.colDepartment.ReadOnly = true;
     //
     // colEdit
     //
     this.colEdit.HeaderText = "Edit";
     this.colEdit.Name = "colEdit";
     this.colEdit.ReadOnly = true;
     //
     // colDelete
     //
     this.colDelete.HeaderText = "Delete";
     this.colDelete.Name = "colDelete";
     this.colDelete.ReadOnly = true;
     //
     // StudentSearchUserControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.Controls.Add(this.pnlStudentsGrid);
     this.Controls.Add(this.pnlStudentsSearch);
     this.Name = "StudentSearchUserControl";
     this.Size = new System.Drawing.Size(970, 511);
     this.pnlStudentsSearch.ResumeLayout(false);
     this.pnlStudentsSearch.PerformLayout();
     this.pnlStudentsGrid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvStudents)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvTasks = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnFile = new DevComponents.DotNetBar.ButtonItem();
     this.btnExport = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).BeginInit();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTasks
     //
     this.dgvTasks.AllowUserToAddRows = false;
     this.dgvTasks.AllowUserToDeleteRows = false;
     this.dgvTasks.BackgroundColor = System.Drawing.Color.White;
     this.dgvTasks.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvTasks.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column3,
     this.Column4,
     this.Column2});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTasks.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTasks.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvTasks.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvTasks.Location = new System.Drawing.Point(0, 27);
     this.dgvTasks.Name = "dgvTasks";
     this.dgvTasks.ReadOnly = true;
     this.dgvTasks.RowTemplate.Height = 24;
     this.dgvTasks.Size = new System.Drawing.Size(784, 535);
     this.dgvTasks.TabIndex = 0;
     this.dgvTasks.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentClick);
     this.dgvTasks.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentDoubleClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "狀態";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.HeaderText = "工作名稱";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Column3.Width = 341;
     //
     // Column4
     //
     this.Column4.HeaderText = "訊息";
     this.Column4.Name = "Column4";
     this.Column4.ReadOnly = true;
     this.Column4.Width = 200;
     //
     // Column2
     //
     this.Column2.HeaderText = "取消";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column2.Visible = false;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 562);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(784, 0);
     this.dockSite4.TabIndex = 5;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 27);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 535);
     this.dockSite1.TabIndex = 2;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(784, 27);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 535);
     this.dockSite2.TabIndex = 3;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 562);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(784, 0);
     this.dockSite8.TabIndex = 9;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 27);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 535);
     this.dockSite5.TabIndex = 6;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(784, 27);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 535);
     this.dockSite6.TabIndex = 7;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.bar1);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(784, 27);
     this.dockSite7.TabIndex = 8;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFile});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.MenuBar = true;
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(784, 26);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnFile
     //
     this.btnFile.Name = "btnFile";
     this.btnFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnExport,
     this.btnExit});
     this.btnFile.Text = "檔案";
     //
     // btnExport
     //
     this.btnExport.Enabled = false;
     this.btnExport.Name = "btnExport";
     this.btnExport.Text = "匯出";
     //
     // btnExit
     //
     this.btnExit.BeginGroup = true;
     this.btnExit.Name = "btnExit";
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 27);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(784, 0);
     this.dockSite3.TabIndex = 4;
     this.dockSite3.TabStop = false;
     //
     // MultiTaskingRunner
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 562);
     this.ControlBox = false;
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dgvTasks);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "MultiTaskingRunner";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "批次工作執行";
     this.Load += new System.EventHandler(this.MultiTaskingRunner_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).EndInit();
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_Muahang));
     this.panel2 = new System.Windows.Forms.Panel();
     this.lblTT1 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtMakh = new System.Windows.Forms.TextBox();
     this.testMaHD = new System.Windows.Forms.PictureBox();
     this.lblTT3 = new System.Windows.Forms.Label();
     this.lblTT4 = new System.Windows.Forms.Label();
     this.lblTT2 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtMahd = new System.Windows.Forms.TextBox();
     this.txtSoluongmua = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.cboNhanvien = new System.Windows.Forms.ComboBox();
     this.cboLoaisach = new System.Windows.Forms.ComboBox();
     this.btnThemvaogio = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lblThongbao = new System.Windows.Forms.Label();
     this.txtTongtien = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.grvGiohang = new System.Windows.Forms.DataGridView();
     this.masach = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.loaisach = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.soluong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dongia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.thanhtien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnGHHuy = new System.Windows.Forms.DataGridViewButtonColumn();
     this.btnExit = new System.Windows.Forms.Button();
     this.btnReset = new System.Windows.Forms.Button();
     this.btnGiaodich = new System.Windows.Forms.Button();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.testMaHD)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvGiohang)).BeginInit();
     this.SuspendLayout();
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.SystemColors.Menu;
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Controls.Add(this.lblTT1);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.txtMakh);
     this.panel2.Controls.Add(this.testMaHD);
     this.panel2.Controls.Add(this.lblTT3);
     this.panel2.Controls.Add(this.lblTT4);
     this.panel2.Controls.Add(this.lblTT2);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.txtMahd);
     this.panel2.Controls.Add(this.txtSoluongmua);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.label8);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.cboNhanvien);
     this.panel2.Controls.Add(this.cboLoaisach);
     this.panel2.Controls.Add(this.btnThemvaogio);
     this.panel2.Location = new System.Drawing.Point(2, 12);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(598, 114);
     this.panel2.TabIndex = 0;
     //
     // lblTT1
     //
     this.lblTT1.AutoSize = true;
     this.lblTT1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTT1.ForeColor = System.Drawing.Color.Red;
     this.lblTT1.Location = new System.Drawing.Point(256, 16);
     this.lblTT1.Name = "lblTT1";
     this.lblTT1.Size = new System.Drawing.Size(17, 22);
     this.lblTT1.TabIndex = 41;
     this.lblTT1.Text = "*";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(2, 19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 16);
     this.label1.TabIndex = 40;
     this.label1.Text = "Mã KH";
     //
     // txtMakh
     //
     this.txtMakh.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMakh.Location = new System.Drawing.Point(76, 13);
     this.txtMakh.MaxLength = 10;
     this.txtMakh.Name = "txtMakh";
     this.txtMakh.Size = new System.Drawing.Size(180, 26);
     this.txtMakh.TabIndex = 1;
     //
     // testMaHD
     //
     this.testMaHD.Location = new System.Drawing.Point(271, 45);
     this.testMaHD.Name = "testMaHD";
     this.testMaHD.Size = new System.Drawing.Size(25, 25);
     this.testMaHD.TabIndex = 15;
     this.testMaHD.TabStop = false;
     //
     // lblTT3
     //
     this.lblTT3.AutoSize = true;
     this.lblTT3.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTT3.ForeColor = System.Drawing.Color.Red;
     this.lblTT3.Location = new System.Drawing.Point(579, 78);
     this.lblTT3.Name = "lblTT3";
     this.lblTT3.Size = new System.Drawing.Size(17, 22);
     this.lblTT3.TabIndex = 38;
     this.lblTT3.Text = "*";
     //
     // lblTT4
     //
     this.lblTT4.AutoSize = true;
     this.lblTT4.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTT4.ForeColor = System.Drawing.Color.Red;
     this.lblTT4.Location = new System.Drawing.Point(256, 78);
     this.lblTT4.Name = "lblTT4";
     this.lblTT4.Size = new System.Drawing.Size(17, 22);
     this.lblTT4.TabIndex = 37;
     this.lblTT4.Text = "*";
     //
     // lblTT2
     //
     this.lblTT2.AutoSize = true;
     this.lblTT2.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTT2.ForeColor = System.Drawing.Color.Red;
     this.lblTT2.Location = new System.Drawing.Point(256, 47);
     this.lblTT2.Name = "lblTT2";
     this.lblTT2.Size = new System.Drawing.Size(17, 22);
     this.lblTT2.TabIndex = 14;
     this.lblTT2.Text = "*";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(2, 51);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(50, 16);
     this.label5.TabIndex = 11;
     this.label5.Text = "Mã HD";
     //
     // txtMahd
     //
     this.txtMahd.BackColor = System.Drawing.SystemColors.HighlightText;
     this.txtMahd.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMahd.Location = new System.Drawing.Point(76, 45);
     this.txtMahd.MaxLength = 10;
     this.txtMahd.Name = "txtMahd";
     this.txtMahd.Size = new System.Drawing.Size(180, 26);
     this.txtMahd.TabIndex = 2;
     this.txtMahd.TextChanged += new System.EventHandler(this.txtMahd_TextChanged);
     //
     // txtSoluongmua
     //
     this.txtSoluongmua.BackColor = System.Drawing.SystemColors.HighlightText;
     this.txtSoluongmua.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoluongmua.Location = new System.Drawing.Point(479, 76);
     this.txtSoluongmua.MaxLength = 10;
     this.txtSoluongmua.Name = "txtSoluongmua";
     this.txtSoluongmua.Size = new System.Drawing.Size(58, 26);
     this.txtSoluongmua.TabIndex = 5;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(2, 81);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 16);
     this.label7.TabIndex = 14;
     this.label7.Text = "Nhân viên";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(315, 58);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(66, 16);
     this.label8.TabIndex = 15;
     this.label8.Text = "Loại sách";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(478, 58);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(61, 16);
     this.label9.TabIndex = 16;
     this.label9.Text = "Số lượng";
     //
     // cboNhanvien
     //
     this.cboNhanvien.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboNhanvien.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboNhanvien.FormattingEnabled = true;
     this.cboNhanvien.Location = new System.Drawing.Point(76, 77);
     this.cboNhanvien.Name = "cboNhanvien";
     this.cboNhanvien.Size = new System.Drawing.Size(180, 24);
     this.cboNhanvien.TabIndex = 3;
     //
     // cboLoaisach
     //
     this.cboLoaisach.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboLoaisach.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboLoaisach.FormattingEnabled = true;
     this.cboLoaisach.Location = new System.Drawing.Point(318, 77);
     this.cboLoaisach.Name = "cboLoaisach";
     this.cboLoaisach.Size = new System.Drawing.Size(157, 24);
     this.cboLoaisach.TabIndex = 4;
     //
     // btnThemvaogio
     //
     this.btnThemvaogio.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnThemvaogio.Location = new System.Drawing.Point(543, 75);
     this.btnThemvaogio.Name = "btnThemvaogio";
     this.btnThemvaogio.Size = new System.Drawing.Size(37, 27);
     this.btnThemvaogio.TabIndex = 6;
     this.btnThemvaogio.Text = "+";
     this.btnThemvaogio.UseVisualStyleBackColor = true;
     this.btnThemvaogio.Click += new System.EventHandler(this.btnThemvaogio_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lblThongbao);
     this.groupBox1.Controls.Add(this.txtTongtien);
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.grvGiohang);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(-4, 132);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(752, 214);
     this.groupBox1.TabIndex = 41;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Giỏ hàng của bạn";
     //
     // lblThongbao
     //
     this.lblThongbao.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lblThongbao.AutoSize = true;
     this.lblThongbao.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblThongbao.ForeColor = System.Drawing.Color.Red;
     this.lblThongbao.Location = new System.Drawing.Point(12, 189);
     this.lblThongbao.Name = "lblThongbao";
     this.lblThongbao.Size = new System.Drawing.Size(0, 17);
     this.lblThongbao.TabIndex = 42;
     this.lblThongbao.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // txtTongtien
     //
     this.txtTongtien.BackColor = System.Drawing.SystemColors.HighlightText;
     this.txtTongtien.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTongtien.ForeColor = System.Drawing.Color.Red;
     this.txtTongtien.Location = new System.Drawing.Point(568, 182);
     this.txtTongtien.MaxLength = 25;
     this.txtTongtien.Name = "txtTongtien";
     this.txtTongtien.Size = new System.Drawing.Size(175, 26);
     this.txtTongtien.TabIndex = 20;
     this.txtTongtien.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(498, 188);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(77, 16);
     this.label10.TabIndex = 34;
     this.label10.Text = "Tổng tiền = ";
     //
     // grvGiohang
     //
     this.grvGiohang.AllowUserToAddRows = false;
     this.grvGiohang.AllowUserToDeleteRows = false;
     this.grvGiohang.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grvGiohang.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.masach,
     this.loaisach,
     this.soluong,
     this.dongia,
     this.thanhtien,
     this.btnGHHuy});
     this.grvGiohang.Location = new System.Drawing.Point(8, 19);
     this.grvGiohang.Name = "grvGiohang";
     this.grvGiohang.ReadOnly = true;
     this.grvGiohang.Size = new System.Drawing.Size(741, 160);
     this.grvGiohang.TabIndex = 10;
     this.grvGiohang.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grvGiohang_CellClick);
     //
     // masach
     //
     this.masach.HeaderText = "ID";
     this.masach.Name = "masach";
     this.masach.ReadOnly = true;
     this.masach.Width = 50;
     //
     // loaisach
     //
     this.loaisach.HeaderText = "Loại sách";
     this.loaisach.Name = "loaisach";
     this.loaisach.ReadOnly = true;
     this.loaisach.Width = 200;
     //
     // soluong
     //
     this.soluong.HeaderText = "Số lượng";
     this.soluong.Name = "soluong";
     this.soluong.ReadOnly = true;
     //
     // dongia
     //
     this.dongia.HeaderText = "Đơn giá";
     this.dongia.Name = "dongia";
     this.dongia.ReadOnly = true;
     this.dongia.Width = 150;
     //
     // thanhtien
     //
     this.thanhtien.HeaderText = "Thành tiền";
     this.thanhtien.Name = "thanhtien";
     this.thanhtien.ReadOnly = true;
     this.thanhtien.Width = 150;
     //
     // btnGHHuy
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Red;
     dataGridViewCellStyle1.NullValue = "X";
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Red;
     this.btnGHHuy.DefaultCellStyle = dataGridViewCellStyle1;
     this.btnGHHuy.HeaderText = "Hủy";
     this.btnGHHuy.Name = "btnGHHuy";
     this.btnGHHuy.ReadOnly = true;
     this.btnGHHuy.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.btnGHHuy.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.btnGHHuy.Text = "";
     this.btnGHHuy.Width = 40;
     //
     // btnExit
     //
     this.btnExit.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExit.Location = new System.Drawing.Point(606, 88);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(131, 31);
     this.btnExit.TabIndex = 9;
     this.btnExit.Text = "&Thoát";
     this.btnExit.UseVisualStyleBackColor = true;
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnReset
     //
     this.btnReset.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReset.Location = new System.Drawing.Point(606, 50);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(131, 31);
     this.btnReset.TabIndex = 8;
     this.btnReset.Text = "&Làm mới";
     this.btnReset.UseVisualStyleBackColor = true;
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // btnGiaodich
     //
     this.btnGiaodich.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGiaodich.Location = new System.Drawing.Point(606, 10);
     this.btnGiaodich.Name = "btnGiaodich";
     this.btnGiaodich.Size = new System.Drawing.Size(131, 31);
     this.btnGiaodich.TabIndex = 7;
     this.btnGiaodich.Text = "&Giao dịch";
     this.btnGiaodich.UseVisualStyleBackColor = true;
     this.btnGiaodich.Click += new System.EventHandler(this.btnGiaodich_Click);
     //
     // Form_Muahang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(748, 347);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.btnGiaodich);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel2);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "Form_Muahang";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thêm hóa đơn mới";
     this.Load += new System.EventHandler(this.Form_Muahang_Load);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.testMaHD)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvGiohang)).EndInit();
     this.ResumeLayout(false);
 }
        void  GetRecords(string query)
        {
            DataTable dtResult = new DataTable();

            try
            {
                dtResult.TableName = "CURRENTPARKS";
                using (OracleConnection con = new OracleConnection(Connection.connectionString))
                {
                    if (con.State == ConnectionState.Closed)
                    {
                        con.Open();
                    }

                    using (OracleCommand command = new OracleCommand(query))
                    {
                        command.CommandText = query;
                        command.Connection  = con;
                        OracleDataAdapter dadapter = new OracleDataAdapter(command);
                        dadapter.Fill(dtResult);
                    }
                }

                if (dtResult != null && dtResult.Rows.Count > 0)
                {
                    if (wgrid.dataGridView1.IsHandleCreated == false)
                    {
                        return;
                    }
                    wgrid.BeginInvoke(new Action(() =>
                    {
                        try
                        {
                            wgrid.dataGridView1.SuspendLayout();
                            wgrid.dataGridView1.Columns.Clear();
                            wgrid.dataGridView1.DataSource = dtResult;

                            //For photo
                            System.Windows.Forms.DataGridViewButtonColumn btnCol = new System.Windows.Forms.DataGridViewButtonColumn();
                            btnCol.Name = "Photo";
                            btnCol.Text = "Photo";
                            btnCol.Tag  = "photo";
                            wgrid.dataGridView1.Columns.Insert(19, btnCol);

                            //For Note
                            System.Windows.Forms.DataGridViewButtonColumn btnNote = new System.Windows.Forms.DataGridViewButtonColumn();
                            btnNote.Name = "Note";
                            btnNote.Text = "Note";
                            btnNote.Tag  = "Note";
                            wgrid.dataGridView1.Columns.Insert(20, btnNote);

                            wgrid.dataGridView1.Columns["ENTRY TIME"].DefaultCellStyle.Format = "dd/MMM/yyyy hh:mm:ss tt";
                            wgrid.dataGridView1.Columns["EXIT TIME"].DefaultCellStyle.Format  = "dd/MMM/yyyy hh:mm:ss tt";
                        }
                        catch (Exception errMsg)
                        {
                            MessageBox.Show(errMsg.Message);
                        }
                        finally
                        {
                            wgrid.dataGridView1.ResumeLayout();
                            FormatGrid();
                        }
                    }));
                }
                else
                {
                    if (wgrid.dataGridView1.Columns.Count > 0)
                    {
                        wgrid.dataGridView1.Columns.Clear();
                    }
                }

                if (dtResult != null && dtResult.Rows.Count > 0)
                {
                    lblTotalRecords.Dispatcher.BeginInvoke(new Action(() => lblTotalRecords.Content = "Total Records =" + dtResult.Rows.Count));
                }
                else
                {
                    lblTotalRecords.Dispatcher.BeginInvoke(new Action(() => lblTotalRecords.Content = "Total Records = 0"));
                }
            }
            catch (Exception errMsg)
            {
                MessageBox.Show(errMsg.Message);
            }
            finally {
            }
            //return dtResult;
        }
 /// <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(GruposComerciales_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.ListadoGruposComerciales = new System.Windows.Forms.DataGridView();
     this.gRUPOCOMDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dESCRIPGRUPODataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.grupoComBSource = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionGruposCom = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.Btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.ListadoGruposCom = new System.Windows.Forms.DataGridView();
     this.gRUPOCOMDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dESCRIPGRUPODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.descripcionTxt = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.btn_Cancelar = new System.Windows.Forms.Button();
     this.btn_Crear = new System.Windows.Forms.Button();
     this.abrevTxt = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.updateDescripcionTxt = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.btn_Guardar = new System.Windows.Forms.Button();
     this.updateAbrevTxt = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.eP_errors = new System.Windows.Forms.ErrorProvider(this.components);
     this.pn_listado.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoGruposComerciales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionGruposCom)).BeginInit();
     this.paginacionGruposCom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoGruposCom)).BeginInit();
     this.pn_crear.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.pn_editar.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).BeginInit();
     this.SuspendLayout();
     //
     // pn_listado
     //
     this.pn_listado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_listado.Controls.Add(this.ListadoGruposComerciales);
     this.pn_listado.Controls.Add(this.paginacionGruposCom);
     this.pn_listado.Controls.Add(this.ListadoGruposCom);
     this.pn_listado.Location = new System.Drawing.Point(0, 0);
     this.pn_listado.Name = "pn_listado";
     this.pn_listado.Size = new System.Drawing.Size(598, 325);
     this.pn_listado.TabIndex = 0;
     //
     // ListadoGruposComerciales
     //
     this.ListadoGruposComerciales.AllowUserToAddRows = false;
     this.ListadoGruposComerciales.AllowUserToDeleteRows = false;
     this.ListadoGruposComerciales.AutoGenerateColumns = false;
     this.ListadoGruposComerciales.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ListadoGruposComerciales.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gRUPOCOMDataGridViewTextBoxColumn1,
     this.dESCRIPGRUPODataGridViewTextBoxColumn1,
     this.Editar,
     this.Eliminar});
     this.ListadoGruposComerciales.DataSource = this.grupoComBSource;
     this.ListadoGruposComerciales.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ListadoGruposComerciales.Location = new System.Drawing.Point(0, 25);
     this.ListadoGruposComerciales.Name = "ListadoGruposComerciales";
     this.ListadoGruposComerciales.ReadOnly = true;
     this.ListadoGruposComerciales.Size = new System.Drawing.Size(594, 296);
     this.ListadoGruposComerciales.TabIndex = 4;
     this.ListadoGruposComerciales.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Listado_CellValueChanged);
     //
     // gRUPOCOMDataGridViewTextBoxColumn1
     //
     this.gRUPOCOMDataGridViewTextBoxColumn1.DataPropertyName = "GRUPOCOM";
     this.gRUPOCOMDataGridViewTextBoxColumn1.HeaderText = "Grupo comercial";
     this.gRUPOCOMDataGridViewTextBoxColumn1.Name = "gRUPOCOMDataGridViewTextBoxColumn1";
     this.gRUPOCOMDataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // dESCRIPGRUPODataGridViewTextBoxColumn1
     //
     this.dESCRIPGRUPODataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dESCRIPGRUPODataGridViewTextBoxColumn1.DataPropertyName = "DESCRIPGRUPO";
     this.dESCRIPGRUPODataGridViewTextBoxColumn1.HeaderText = "Descripcion";
     this.dESCRIPGRUPODataGridViewTextBoxColumn1.Name = "dESCRIPGRUPODataGridViewTextBoxColumn1";
     this.dESCRIPGRUPODataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.Editar.HeaderText = "";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "Editar";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 5;
     //
     // Eliminar
     //
     this.Eliminar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.Eliminar.HeaderText = "";
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Text = "Eliminar";
     this.Eliminar.UseColumnTextForButtonValue = true;
     this.Eliminar.Width = 5;
     //
     // grupoComBSource
     //
     this.grupoComBSource.DataSource = typeof(SIFCA_DAL.GRUPOCOMERCIAL);
     //
     // paginacionGruposCom
     //
     this.paginacionGruposCom.AddNewItem = null;
     this.paginacionGruposCom.BindingSource = this.grupoComBSource;
     this.paginacionGruposCom.CountItem = this.bindingNavigatorCountItem;
     this.paginacionGruposCom.DeleteItem = null;
     this.paginacionGruposCom.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Btn_nuevo,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.buscarLbl,
     this.busquedaTxt});
     this.paginacionGruposCom.Location = new System.Drawing.Point(0, 0);
     this.paginacionGruposCom.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.paginacionGruposCom.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.paginacionGruposCom.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.paginacionGruposCom.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.paginacionGruposCom.Name = "paginacionGruposCom";
     this.paginacionGruposCom.PositionItem = this.bindingNavigatorPositionItem;
     this.paginacionGruposCom.Size = new System.Drawing.Size(594, 25);
     this.paginacionGruposCom.TabIndex = 2;
     this.paginacionGruposCom.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // Btn_nuevo
     //
     this.Btn_nuevo.BackColor = System.Drawing.SystemColors.ControlLight;
     this.Btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("Btn_nuevo.Image")));
     this.Btn_nuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_nuevo.Name = "Btn_nuevo";
     this.Btn_nuevo.Size = new System.Drawing.Size(136, 22);
     this.Btn_nuevo.Text = "Nuevo grupo comercial";
     this.Btn_nuevo.Click += new System.EventHandler(this.Btn_nuevo_Click);
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // buscarLbl
     //
     this.buscarLbl.Name = "buscarLbl";
     this.buscarLbl.Size = new System.Drawing.Size(45, 22);
     this.buscarLbl.Text = "Buscar:";
     //
     // busquedaTxt
     //
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(150, 25);
     this.busquedaTxt.Click += new System.EventHandler(this.busquedaTxt_TextChanged);
     this.busquedaTxt.TextChanged += new System.EventHandler(this.busquedaTxt_TextChanged);
     //
     // ListadoGruposCom
     //
     this.ListadoGruposCom.AllowUserToAddRows = false;
     this.ListadoGruposCom.AllowUserToDeleteRows = false;
     this.ListadoGruposCom.AutoGenerateColumns = false;
     this.ListadoGruposCom.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ListadoGruposCom.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ListadoGruposCom.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gRUPOCOMDataGridViewTextBoxColumn,
     this.dESCRIPGRUPODataGridViewTextBoxColumn});
     this.ListadoGruposCom.DataSource = this.grupoComBSource;
     this.ListadoGruposCom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ListadoGruposCom.Location = new System.Drawing.Point(0, 0);
     this.ListadoGruposCom.Name = "ListadoGruposCom";
     this.ListadoGruposCom.ReadOnly = true;
     this.ListadoGruposCom.Size = new System.Drawing.Size(594, 321);
     this.ListadoGruposCom.TabIndex = 3;
     //
     // gRUPOCOMDataGridViewTextBoxColumn
     //
     this.gRUPOCOMDataGridViewTextBoxColumn.DataPropertyName = "GRUPOCOM";
     this.gRUPOCOMDataGridViewTextBoxColumn.HeaderText = "GRUPOCOM";
     this.gRUPOCOMDataGridViewTextBoxColumn.Name = "gRUPOCOMDataGridViewTextBoxColumn";
     this.gRUPOCOMDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // dESCRIPGRUPODataGridViewTextBoxColumn
     //
     this.dESCRIPGRUPODataGridViewTextBoxColumn.DataPropertyName = "DESCRIPGRUPO";
     this.dESCRIPGRUPODataGridViewTextBoxColumn.HeaderText = "Descripión";
     this.dESCRIPGRUPODataGridViewTextBoxColumn.Name = "dESCRIPGRUPODataGridViewTextBoxColumn";
     this.dESCRIPGRUPODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // pn_crear
     //
     this.pn_crear.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_crear.Controls.Add(this.groupBox1);
     this.pn_crear.Location = new System.Drawing.Point(0, 0);
     this.pn_crear.Name = "pn_crear";
     this.pn_crear.Size = new System.Drawing.Size(325, 239);
     this.pn_crear.TabIndex = 1;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.descripcionTxt);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.btn_Cancelar);
     this.groupBox1.Controls.Add(this.btn_Crear);
     this.groupBox1.Controls.Add(this.abrevTxt);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(15, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(292, 196);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Crear Grupo Comercial";
     //
     // descripcionTxt
     //
     this.descripcionTxt.Location = new System.Drawing.Point(75, 58);
     this.descripcionTxt.MaxLength = 500;
     this.descripcionTxt.Multiline = true;
     this.descripcionTxt.Name = "descripcionTxt";
     this.descripcionTxt.Size = new System.Drawing.Size(204, 101);
     this.descripcionTxt.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 61);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(63, 13);
     this.label1.TabIndex = 15;
     this.label1.Text = "Descripcion";
     //
     // btn_Cancelar
     //
     this.btn_Cancelar.Location = new System.Drawing.Point(190, 165);
     this.btn_Cancelar.Name = "btn_Cancelar";
     this.btn_Cancelar.Size = new System.Drawing.Size(89, 23);
     this.btn_Cancelar.TabIndex = 3;
     this.btn_Cancelar.Text = "Cancelar";
     this.btn_Cancelar.UseVisualStyleBackColor = true;
     this.btn_Cancelar.Click += new System.EventHandler(this.btn_Cancelar_Click);
     //
     // btn_Crear
     //
     this.btn_Crear.Location = new System.Drawing.Point(75, 165);
     this.btn_Crear.Name = "btn_Crear";
     this.btn_Crear.Size = new System.Drawing.Size(92, 23);
     this.btn_Crear.TabIndex = 2;
     this.btn_Crear.Text = "Crear";
     this.btn_Crear.UseVisualStyleBackColor = true;
     this.btn_Crear.Click += new System.EventHandler(this.Btn_Crear_Click);
     //
     // abrevTxt
     //
     this.abrevTxt.Location = new System.Drawing.Point(75, 29);
     this.abrevTxt.MaxLength = 2;
     this.abrevTxt.Name = "abrevTxt";
     this.abrevTxt.Size = new System.Drawing.Size(204, 20);
     this.abrevTxt.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 29);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(61, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "Abreviatura";
     //
     // pn_editar
     //
     this.pn_editar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_editar.Controls.Add(this.groupBox2);
     this.pn_editar.Location = new System.Drawing.Point(0, 0);
     this.pn_editar.Name = "pn_editar";
     this.pn_editar.Size = new System.Drawing.Size(325, 234);
     this.pn_editar.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.updateDescripcionTxt);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.btn_Guardar);
     this.groupBox2.Controls.Add(this.updateAbrevTxt);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Location = new System.Drawing.Point(22, 11);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(274, 177);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Editar Grupo Comercial";
     //
     // updateDescripcionTxt
     //
     this.updateDescripcionTxt.Location = new System.Drawing.Point(86, 58);
     this.updateDescripcionTxt.MaxLength = 500;
     this.updateDescripcionTxt.Multiline = true;
     this.updateDescripcionTxt.Name = "updateDescripcionTxt";
     this.updateDescripcionTxt.Size = new System.Drawing.Size(167, 66);
     this.updateDescripcionTxt.TabIndex = 1;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(6, 61);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(63, 13);
     this.label3.TabIndex = 15;
     this.label3.Text = "Descripcion";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(174, 130);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(79, 23);
     this.button1.TabIndex = 3;
     this.button1.Text = "Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Btn_CancelarUpdate_Click);
     //
     // btn_Guardar
     //
     this.btn_Guardar.Location = new System.Drawing.Point(81, 130);
     this.btn_Guardar.Name = "btn_Guardar";
     this.btn_Guardar.Size = new System.Drawing.Size(78, 23);
     this.btn_Guardar.TabIndex = 2;
     this.btn_Guardar.Text = "Guardar";
     this.btn_Guardar.UseVisualStyleBackColor = true;
     this.btn_Guardar.Click += new System.EventHandler(this.Btn_guardar_Click);
     //
     // updateAbrevTxt
     //
     this.updateAbrevTxt.Location = new System.Drawing.Point(86, 29);
     this.updateAbrevTxt.Name = "updateAbrevTxt";
     this.updateAbrevTxt.ReadOnly = true;
     this.updateAbrevTxt.Size = new System.Drawing.Size(167, 20);
     this.updateAbrevTxt.TabIndex = 0;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 29);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(61, 13);
     this.label4.TabIndex = 1;
     this.label4.Text = "Abreviatura";
     //
     // eP_errors
     //
     this.eP_errors.ContainerControl = this;
     //
     // GruposComerciales_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(609, 324);
     this.Controls.Add(this.pn_editar);
     this.Controls.Add(this.pn_crear);
     this.Controls.Add(this.pn_listado);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "GruposComerciales_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Grupos Comerciales";
     this.pn_listado.ResumeLayout(false);
     this.pn_listado.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoGruposComerciales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionGruposCom)).EndInit();
     this.paginacionGruposCom.ResumeLayout(false);
     this.paginacionGruposCom.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoGruposCom)).EndInit();
     this.pn_crear.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.pn_editar.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.btnClose = new System.Windows.Forms.Button();
     this.grdUser = new System.Windows.Forms.DataGridView();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAll = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserCompany = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserSubCompany = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserDepartment = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserWorkgroup = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUser = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDetail = new System.Windows.Forms.DataGridViewButtonColumn();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.lblPermissionScopeReq = new System.Windows.Forms.Label();
     this.ucPermissionScope = new DotNet.WinForm.Common.WinControls.UCScopePermissionSelect();
     this.lblPermissionScope = new System.Windows.Forms.Label();
     this.btnSearch = new System.Windows.Forms.Button();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.btnExport = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     this.SuspendLayout();
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Location = new System.Drawing.Point(8, 563);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 24);
     this.ucTableSort.TabIndex = 7;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(841, 564);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 9;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     //
     // grdUser
     //
     this.grdUser.AllowUserToAddRows = false;
     this.grdUser.AllowUserToDeleteRows = false;
     this.grdUser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.grdUser.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colRealName,
     this.colAll,
     this.colUserCompany,
     this.colUserSubCompany,
     this.colUserDepartment,
     this.colUserWorkgroup,
     this.colUser,
     this.colDetail});
     this.grdUser.Location = new System.Drawing.Point(10, 40);
     this.grdUser.MultiSelect = false;
     this.grdUser.Name = "grdUser";
     this.grdUser.RowTemplate.Height = 23;
     this.grdUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdUser.Size = new System.Drawing.Size(904, 516);
     this.grdUser.TabIndex = 6;
     this.grdUser.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdUser_CellContentClick);
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.FillWeight = 150F;
     this.colRealName.Frozen = true;
     this.colRealName.HeaderText = "名称";
     this.colRealName.MaxInputLength = 200;
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 150;
     //
     // colAll
     //
     this.colAll.DataPropertyName = "colAll";
     this.colAll.FillWeight = 80F;
     this.colAll.HeaderText = "全部";
     this.colAll.Name = "colAll";
     //
     // colUserCompany
     //
     this.colUserCompany.DataPropertyName = "colUserCompany";
     this.colUserCompany.FillWeight = 80F;
     this.colUserCompany.HeaderText = "所在公司";
     this.colUserCompany.Name = "colUserCompany";
     //
     // colUserSubCompany
     //
     this.colUserSubCompany.DataPropertyName = "colUserSubCompany";
     this.colUserSubCompany.HeaderText = "所在分支机构";
     this.colUserSubCompany.Name = "colUserSubCompany";
     this.colUserSubCompany.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // colUserDepartment
     //
     this.colUserDepartment.DataPropertyName = "colUserDepartment";
     this.colUserDepartment.FillWeight = 80F;
     this.colUserDepartment.HeaderText = "所在部门";
     this.colUserDepartment.Name = "colUserDepartment";
     //
     // colUserWorkgroup
     //
     this.colUserWorkgroup.DataPropertyName = "colUserWorkgroup";
     this.colUserWorkgroup.HeaderText = "所在工作组";
     this.colUserWorkgroup.Name = "colUserWorkgroup";
     //
     // colUser
     //
     this.colUser.DataPropertyName = "colUser";
     this.colUser.FillWeight = 80F;
     this.colUser.HeaderText = "仅本人";
     this.colUser.Name = "colUser";
     //
     // colDetail
     //
     this.colDetail.FillWeight = 80F;
     this.colDetail.HeaderText = "设置明细";
     this.colDetail.Name = "colDetail";
     this.colDetail.Text = "Detail";
     this.colDetail.ToolTipText = "组织机构为基础数据权限明细";
     this.colDetail.UseColumnTextForButtonValue = true;
     this.colDetail.Width = 80;
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Location = new System.Drawing.Point(763, 564);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 8;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // lblPermissionScopeReq
     //
     this.lblPermissionScopeReq.AutoSize = true;
     this.lblPermissionScopeReq.ForeColor = System.Drawing.Color.Red;
     this.lblPermissionScopeReq.Location = new System.Drawing.Point(372, 16);
     this.lblPermissionScopeReq.Name = "lblPermissionScopeReq";
     this.lblPermissionScopeReq.Size = new System.Drawing.Size(11, 12);
     this.lblPermissionScopeReq.TabIndex = 2;
     this.lblPermissionScopeReq.Text = "*";
     //
     // ucPermissionScope
     //
     this.ucPermissionScope.AllowNull = false;
     this.ucPermissionScope.AllowSelect = true;
     this.ucPermissionScope.Location = new System.Drawing.Point(91, 11);
     this.ucPermissionScope.MultiSelect = false;
     this.ucPermissionScope.Name = "ucPermissionScope";
     this.ucPermissionScope.SelectedFullName = "";
     this.ucPermissionScope.SelectedId = "";
     this.ucPermissionScope.Size = new System.Drawing.Size(276, 22);
     this.ucPermissionScope.TabIndex = 1;
     this.ucPermissionScope.SelectedIndexChanged += new BaseBusinessLogic.SelectedIndexChangedEventHandler(this.ucPermissionScope_SelectedIndexChanged);
     //
     // lblPermissionScope
     //
     this.lblPermissionScope.Location = new System.Drawing.Point(14, 14);
     this.lblPermissionScope.Name = "lblPermissionScope";
     this.lblPermissionScope.Size = new System.Drawing.Size(81, 12);
     this.lblPermissionScope.TabIndex = 0;
     this.lblPermissionScope.Text = "数据权限:";
     this.lblPermissionScope.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(702, 11);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 5;
     this.btnSearch.Text = "查询(&F)";
     this.btnSearch.UseVisualStyleBackColor = true;
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(425, 16);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(87, 12);
     this.lblContents.TabIndex = 3;
     this.lblContents.Text = "查询(&S):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(515, 12);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(184, 21);
     this.txtSearch.TabIndex = 4;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Location = new System.Drawing.Point(805, 10);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(111, 23);
     this.btnExport.TabIndex = 10;
     this.btnExport.Text = "导出Excel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // FrmUserOrganizeScope
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(923, 593);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.lblContents);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.lblPermissionScopeReq);
     this.Controls.Add(this.ucPermissionScope);
     this.Controls.Add(this.lblPermissionScope);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.grdUser);
     this.Name = "FrmUserOrganizeScope";
     this.Text = "用户管理范围设置";
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.dgPerfiles = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.btnGuardar = new System.Windows.Forms.Button();
     this.btnQuitar = new System.Windows.Forms.Button();
     this.btnAgregar = new System.Windows.Forms.Button();
     this.dgAgregados = new System.Windows.Forms.DataGridView();
     this.Select = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgPermisos = new System.Windows.Forms.DataGridView();
     this.Seleccionar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txtDescripcion = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtNombre = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.gb1 = new System.Windows.Forms.GroupBox();
     this.btnModificar = new System.Windows.Forms.Button();
     this.gb2 = new System.Windows.Forms.GroupBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dgPerfiles)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgAgregados)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgPermisos)).BeginInit();
     this.gb1.SuspendLayout();
     this.gb2.SuspendLayout();
     this.SuspendLayout();
     //
     // dgPerfiles
     //
     this.dgPerfiles.AllowUserToAddRows = false;
     this.dgPerfiles.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgPerfiles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgPerfiles.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     this.dgPerfiles.Location = new System.Drawing.Point(10, 19);
     this.dgPerfiles.Name = "dgPerfiles";
     this.dgPerfiles.Size = new System.Drawing.Size(1177, 160);
     this.dgPerfiles.TabIndex = 3;
     this.dgPerfiles.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgPerfiles_CellContentClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "Seleccionar";
     this.Column1.Name = "Column1";
     this.Column1.Text = "Seleccionar";
     this.Column1.ToolTipText = "Seleccionar";
     this.Column1.UseColumnTextForButtonValue = true;
     //
     // btnGuardar
     //
     this.btnGuardar.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGuardar.Location = new System.Drawing.Point(12, 627);
     this.btnGuardar.Name = "btnGuardar";
     this.btnGuardar.Size = new System.Drawing.Size(156, 41);
     this.btnGuardar.TabIndex = 21;
     this.btnGuardar.Text = "Guardar Cambios";
     this.btnGuardar.UseVisualStyleBackColor = true;
     this.btnGuardar.Click += new System.EventHandler(this.button3_Click);
     //
     // btnQuitar
     //
     this.btnQuitar.Enabled = false;
     this.btnQuitar.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnQuitar.Location = new System.Drawing.Point(530, 249);
     this.btnQuitar.Name = "btnQuitar";
     this.btnQuitar.Size = new System.Drawing.Size(110, 35);
     this.btnQuitar.TabIndex = 20;
     this.btnQuitar.Text = "<< Quitar";
     this.btnQuitar.UseVisualStyleBackColor = true;
     this.btnQuitar.Click += new System.EventHandler(this.btnQuitar_Click);
     //
     // btnAgregar
     //
     this.btnAgregar.Enabled = false;
     this.btnAgregar.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAgregar.Location = new System.Drawing.Point(530, 177);
     this.btnAgregar.Name = "btnAgregar";
     this.btnAgregar.Size = new System.Drawing.Size(112, 35);
     this.btnAgregar.TabIndex = 19;
     this.btnAgregar.Text = "Agregar >>";
     this.btnAgregar.UseVisualStyleBackColor = true;
     this.btnAgregar.Click += new System.EventHandler(this.btnAgregar_Click);
     //
     // dgAgregados
     //
     this.dgAgregados.AllowUserToAddRows = false;
     this.dgAgregados.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgAgregados.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgAgregados.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Select,
     this.Column3,
     this.Column4,
     this.Column5,
     this.Column6});
     this.dgAgregados.Location = new System.Drawing.Point(650, 113);
     this.dgAgregados.Name = "dgAgregados";
     this.dgAgregados.Size = new System.Drawing.Size(537, 247);
     this.dgAgregados.TabIndex = 18;
     this.dgAgregados.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgAgregados_CellContentClick);
     //
     // Select
     //
     this.Select.HeaderText = "Seleccionar";
     this.Select.Name = "Select";
     this.Select.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Select.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Select.Text = "Seleccionar";
     this.Select.ToolTipText = "Seleccionar";
     this.Select.UseColumnTextForButtonValue = true;
     //
     // Column3
     //
     this.Column3.HeaderText = "id_permiso_general_agregado";
     this.Column3.Name = "Column3";
     this.Column3.Visible = false;
     //
     // Column4
     //
     this.Column4.HeaderText = "nombre";
     this.Column4.Name = "Column4";
     //
     // Column5
     //
     this.Column5.HeaderText = "descripcion";
     this.Column5.Name = "Column5";
     //
     // Column6
     //
     this.Column6.HeaderText = "submenu";
     this.Column6.Name = "Column6";
     //
     // dgPermisos
     //
     this.dgPermisos.AllowUserToAddRows = false;
     this.dgPermisos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgPermisos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Seleccionar,
     this.dataGridViewTextBoxColumn2,
     this.dataGridViewTextBoxColumn3,
     this.dataGridViewTextBoxColumn4,
     this.dataGridViewTextBoxColumn5});
     this.dgPermisos.Location = new System.Drawing.Point(10, 113);
     this.dgPermisos.Name = "dgPermisos";
     this.dgPermisos.Size = new System.Drawing.Size(507, 247);
     this.dgPermisos.TabIndex = 17;
     this.dgPermisos.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgPermisos_CellContentClick);
     //
     // Seleccionar
     //
     this.Seleccionar.HeaderText = "Seleccionar";
     this.Seleccionar.Name = "Seleccionar";
     this.Seleccionar.Text = "Seleccionar";
     this.Seleccionar.ToolTipText = "Seleccionar";
     this.Seleccionar.UseColumnTextForButtonValue = true;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.HeaderText = "id_permiso_general";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.Visible = false;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.HeaderText = "nombre";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.HeaderText = "descripcion";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.HeaderText = "submenu";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     //
     // txtDescripcion
     //
     this.txtDescripcion.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDescripcion.Location = new System.Drawing.Point(146, 49);
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.Size = new System.Drawing.Size(279, 26);
     this.txtDescripcion.TabIndex = 16;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(12, 49);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(92, 20);
     this.label2.TabIndex = 15;
     this.label2.Text = "Descripcion";
     //
     // txtNombre
     //
     this.txtNombre.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNombre.Location = new System.Drawing.Point(146, 14);
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Size = new System.Drawing.Size(279, 26);
     this.txtNombre.TabIndex = 14;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(12, 14);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(65, 20);
     this.label1.TabIndex = 13;
     this.label1.Text = "Nombre";
     //
     // gb1
     //
     this.gb1.Controls.Add(this.btnModificar);
     this.gb1.Controls.Add(this.dgPerfiles);
     this.gb1.Location = new System.Drawing.Point(12, 4);
     this.gb1.Name = "gb1";
     this.gb1.Size = new System.Drawing.Size(1193, 235);
     this.gb1.TabIndex = 0;
     this.gb1.TabStop = false;
     //
     // btnModificar
     //
     this.btnModificar.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnModificar.Location = new System.Drawing.Point(10, 185);
     this.btnModificar.Name = "btnModificar";
     this.btnModificar.Size = new System.Drawing.Size(106, 36);
     this.btnModificar.TabIndex = 4;
     this.btnModificar.Text = "Modificar";
     this.btnModificar.UseVisualStyleBackColor = true;
     this.btnModificar.Click += new System.EventHandler(this.btnModificar_Click);
     //
     // gb2
     //
     this.gb2.Controls.Add(this.label4);
     this.gb2.Controls.Add(this.label3);
     this.gb2.Controls.Add(this.btnQuitar);
     this.gb2.Controls.Add(this.btnAgregar);
     this.gb2.Controls.Add(this.dgAgregados);
     this.gb2.Controls.Add(this.dgPermisos);
     this.gb2.Controls.Add(this.txtDescripcion);
     this.gb2.Controls.Add(this.label2);
     this.gb2.Controls.Add(this.txtNombre);
     this.gb2.Controls.Add(this.label1);
     this.gb2.Enabled = false;
     this.gb2.Location = new System.Drawing.Point(12, 245);
     this.gb2.Name = "gb2";
     this.gb2.Size = new System.Drawing.Size(1193, 374);
     this.gb2.TabIndex = 25;
     this.gb2.TabStop = false;
     this.gb2.Enter += new System.EventHandler(this.gb2_Enter);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(646, 90);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(140, 20);
     this.label4.TabIndex = 22;
     this.label4.Text = "Permisos Actuales";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(9, 90);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(171, 20);
     this.label3.TabIndex = 21;
     this.label3.Text = "Permisos para Agregar";
     //
     // button2
     //
     this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.Location = new System.Drawing.Point(1105, 628);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(101, 40);
     this.button2.TabIndex = 25;
     this.button2.Text = "Salir";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancelar.Location = new System.Drawing.Point(986, 628);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(101, 40);
     this.btnCancelar.TabIndex = 26;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // ModificarPerfil
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(1217, 677);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.gb2);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.gb1);
     this.Controls.Add(this.btnGuardar);
     this.MaximizeBox = false;
     this.Name = "ModificarPerfil";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modificar Perfil";
     this.Load += new System.EventHandler(this.ModificarPerfil_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgPerfiles)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgAgregados)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgPermisos)).EndInit();
     this.gb1.ResumeLayout(false);
     this.gb2.ResumeLayout(false);
     this.gb2.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnClose = new System.Windows.Forms.Button();
     this.grdGGCCReg = new System.Windows.Forms.DataGridView();
     this.lngGGCCRegistrationWebID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.strFirstName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.strLastCoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.strCompanyName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.strGGCCName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dteDateRegistered = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dteLastModified = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDetails = new System.Windows.Forms.DataGridViewButtonColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grdGGCCReg)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(627, 12);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 0;
     this.btnClose.Text = "&Close";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // grdGGCCReg
     //
     this.grdGGCCReg.AllowUserToAddRows = false;
     this.grdGGCCReg.AllowUserToDeleteRows = false;
     this.grdGGCCReg.AllowUserToOrderColumns = true;
     this.grdGGCCReg.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.grdGGCCReg.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdGGCCReg.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.lngGGCCRegistrationWebID,
     this.strFirstName,
     this.strLastCoName,
     this.strCompanyName,
     this.strGGCCName,
     this.dteDateRegistered,
     this.dteLastModified,
     this.colDetails});
     this.grdGGCCReg.Location = new System.Drawing.Point(12, 41);
     this.grdGGCCReg.MultiSelect = false;
     this.grdGGCCReg.Name = "grdGGCCReg";
     this.grdGGCCReg.ReadOnly = true;
     this.grdGGCCReg.Size = new System.Drawing.Size(690, 324);
     this.grdGGCCReg.TabIndex = 1;
     this.grdGGCCReg.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.btnDetails_Click);
     //
     // lngGGCCRegistrationWebID
     //
     this.lngGGCCRegistrationWebID.DataPropertyName = "lngGGCCRegistrationWebID";
     this.lngGGCCRegistrationWebID.HeaderText = "lngGGCCRegistrationWebID";
     this.lngGGCCRegistrationWebID.Name = "lngGGCCRegistrationWebID";
     this.lngGGCCRegistrationWebID.ReadOnly = true;
     this.lngGGCCRegistrationWebID.Visible = false;
     //
     // strFirstName
     //
     this.strFirstName.DataPropertyName = "strFirstName";
     this.strFirstName.HeaderText = "First Name";
     this.strFirstName.Name = "strFirstName";
     this.strFirstName.ReadOnly = true;
     //
     // strLastCoName
     //
     this.strLastCoName.DataPropertyName = "strLastCoName";
     this.strLastCoName.HeaderText = "Last Name";
     this.strLastCoName.Name = "strLastCoName";
     this.strLastCoName.ReadOnly = true;
     //
     // strCompanyName
     //
     this.strCompanyName.DataPropertyName = "strCompanyName";
     this.strCompanyName.HeaderText = "Company";
     this.strCompanyName.Name = "strCompanyName";
     this.strCompanyName.ReadOnly = true;
     //
     // strGGCCName
     //
     this.strGGCCName.DataPropertyName = "strGGCCName";
     this.strGGCCName.HeaderText = "Event Name";
     this.strGGCCName.Name = "strGGCCName";
     this.strGGCCName.ReadOnly = true;
     //
     // dteDateRegistered
     //
     this.dteDateRegistered.DataPropertyName = "dteDateRegistered";
     this.dteDateRegistered.HeaderText = "Date Registered";
     this.dteDateRegistered.Name = "dteDateRegistered";
     this.dteDateRegistered.ReadOnly = true;
     //
     // dteLastModified
     //
     this.dteLastModified.DataPropertyName = "dteLastModified";
     this.dteLastModified.HeaderText = "Last Modified";
     this.dteLastModified.Name = "dteLastModified";
     this.dteLastModified.ReadOnly = true;
     //
     // colDetails
     //
     this.colDetails.HeaderText = "Details";
     this.colDetails.Name = "colDetails";
     this.colDetails.ReadOnly = true;
     this.colDetails.Text = "Process Reg";
     this.colDetails.UseColumnTextForButtonValue = true;
     //
     // frmProcessGGCCReg
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(714, 377);
     this.Controls.Add(this.grdGGCCReg);
     this.Controls.Add(this.btnClose);
     this.Name = "frmProcessGGCCReg";
     this.Text = "Process Event Registrations";
     this.Load += new System.EventHandler(this.frmProcessGGCCReg_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grdGGCCReg)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </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.dg_LugarPractica = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.btnSalir = new System.Windows.Forms.Button();
     this.gb_Consulta = new System.Windows.Forms.GroupBox();
     this.cmbLocalidades = new System.Windows.Forms.ComboBox();
     this.txtNombre = new System.Windows.Forms.TextBox();
     this.btnBuscar = new System.Windows.Forms.Button();
     this.lblLocalidad = new System.Windows.Forms.Label();
     this.lblNombre = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dg_LugarPractica)).BeginInit();
     this.gb_Consulta.SuspendLayout();
     this.SuspendLayout();
     //
     // dg_LugarPractica
     //
     this.dg_LugarPractica.AllowUserToAddRows = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dg_LugarPractica.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dg_LugarPractica.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dg_LugarPractica.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dg_LugarPractica.DefaultCellStyle = dataGridViewCellStyle2;
     this.dg_LugarPractica.Location = new System.Drawing.Point(40, 140);
     this.dg_LugarPractica.Name = "dg_LugarPractica";
     this.dg_LugarPractica.ReadOnly = true;
     this.dg_LugarPractica.RowTemplate.Height = 28;
     this.dg_LugarPractica.Size = new System.Drawing.Size(780, 195);
     this.dg_LugarPractica.TabIndex = 5;
     this.dg_LugarPractica.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgLugarPractica_CellContentClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.Text = "Eliminar";
     this.Column1.ToolTipText = "Eliminar";
     this.Column1.UseColumnTextForButtonValue = true;
     //
     // btnSalir
     //
     this.btnSalir.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSalir.Location = new System.Drawing.Point(700, 365);
     this.btnSalir.Margin = new System.Windows.Forms.Padding(2);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(120, 49);
     this.btnSalir.TabIndex = 6;
     this.btnSalir.Text = "Salir";
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // gb_Consulta
     //
     this.gb_Consulta.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.gb_Consulta.Controls.Add(this.cmbLocalidades);
     this.gb_Consulta.Controls.Add(this.txtNombre);
     this.gb_Consulta.Controls.Add(this.btnBuscar);
     this.gb_Consulta.Controls.Add(this.lblLocalidad);
     this.gb_Consulta.Controls.Add(this.lblNombre);
     this.gb_Consulta.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gb_Consulta.Location = new System.Drawing.Point(40, 20);
     this.gb_Consulta.Name = "gb_Consulta";
     this.gb_Consulta.Size = new System.Drawing.Size(780, 100);
     this.gb_Consulta.TabIndex = 1;
     this.gb_Consulta.TabStop = false;
     this.gb_Consulta.Text = "Búsqueda";
     //
     // cmbLocalidades
     //
     this.cmbLocalidades.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbLocalidades.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbLocalidades.FormattingEnabled = true;
     this.cmbLocalidades.Location = new System.Drawing.Point(412, 40);
     this.cmbLocalidades.Name = "cmbLocalidades";
     this.cmbLocalidades.Size = new System.Drawing.Size(232, 28);
     this.cmbLocalidades.TabIndex = 3;
     //
     // txtNombre
     //
     this.txtNombre.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNombre.Location = new System.Drawing.Point(89, 40);
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Size = new System.Drawing.Size(211, 26);
     this.txtNombre.TabIndex = 2;
     //
     // btnBuscar
     //
     this.btnBuscar.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBuscar.Location = new System.Drawing.Point(654, 35);
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(112, 35);
     this.btnBuscar.TabIndex = 4;
     this.btnBuscar.Text = "Buscar";
     this.btnBuscar.UseVisualStyleBackColor = true;
     this.btnBuscar.Click += new System.EventHandler(this.btnBuscar_Click);
     //
     // lblLocalidad
     //
     this.lblLocalidad.AutoSize = true;
     this.lblLocalidad.Location = new System.Drawing.Point(311, 44);
     this.lblLocalidad.Name = "lblLocalidad";
     this.lblLocalidad.Size = new System.Drawing.Size(86, 20);
     this.lblLocalidad.TabIndex = 1;
     this.lblLocalidad.Text = "Localidad";
     //
     // lblNombre
     //
     this.lblNombre.AutoSize = true;
     this.lblNombre.Location = new System.Drawing.Point(13, 44);
     this.lblNombre.Name = "lblNombre";
     this.lblNombre.Size = new System.Drawing.Size(71, 20);
     this.lblNombre.TabIndex = 0;
     this.lblNombre.Text = "Nombre";
     //
     // EliminarLugarDePractica
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(847, 425);
     this.Controls.Add(this.gb_Consulta);
     this.Controls.Add(this.btnSalir);
     this.Controls.Add(this.dg_LugarPractica);
     this.MinimizeBox = false;
     this.Name = "EliminarLugarDePractica";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Eliminar Lugar de Práctica";
     this.Load += new System.EventHandler(this.EliminarLugarPractica_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dg_LugarPractica)).EndInit();
     this.gb_Consulta.ResumeLayout(false);
     this.gb_Consulta.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.Label productCodeLabel;
     System.Windows.Forms.Label nameLabel;
     System.Windows.Forms.Label versionLabel;
     System.Windows.Forms.Label releaseDateLabel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProductIncidents));
     this.productsBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.productsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.techSupportDataSet2C = new SportsPro.TechSupportDataSet2C();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.productCodeTextBox = new System.Windows.Forms.TextBox();
     this.nameTextBox = new System.Windows.Forms.TextBox();
     this.versionTextBox = new System.Windows.Forms.TextBox();
     this.releaseDateTextBox = new System.Windows.Forms.TextBox();
     this.incidentsDataGridView = new System.Windows.Forms.DataGridView();
     this.incidentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.productsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.ProductsTableAdapter();
     this.tableAdapterManager = new SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager();
     this.incidentsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.IncidentsTableAdapter();
     this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateOpened = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateClosed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TechnicianName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DisplayCustomerInfo = new System.Windows.Forms.DataGridViewButtonColumn();
     productCodeLabel = new System.Windows.Forms.Label();
     nameLabel = new System.Windows.Forms.Label();
     versionLabel = new System.Windows.Forms.Label();
     releaseDateLabel1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).BeginInit();
     this.productsBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // productCodeLabel
     //
     productCodeLabel.AutoSize = true;
     productCodeLabel.Location = new System.Drawing.Point(9, 35);
     productCodeLabel.Name = "productCodeLabel";
     productCodeLabel.Size = new System.Drawing.Size(75, 13);
     productCodeLabel.TabIndex = 1;
     productCodeLabel.Text = "Product Code:";
     //
     // nameLabel
     //
     nameLabel.AutoSize = true;
     nameLabel.Location = new System.Drawing.Point(9, 61);
     nameLabel.Name = "nameLabel";
     nameLabel.Size = new System.Drawing.Size(38, 13);
     nameLabel.TabIndex = 3;
     nameLabel.Text = "Name:";
     //
     // versionLabel
     //
     versionLabel.AutoSize = true;
     versionLabel.Location = new System.Drawing.Point(9, 87);
     versionLabel.Name = "versionLabel";
     versionLabel.Size = new System.Drawing.Size(45, 13);
     versionLabel.TabIndex = 5;
     versionLabel.Text = "Version:";
     //
     // releaseDateLabel1
     //
     releaseDateLabel1.AutoSize = true;
     releaseDateLabel1.Location = new System.Drawing.Point(9, 113);
     releaseDateLabel1.Name = "releaseDateLabel1";
     releaseDateLabel1.Size = new System.Drawing.Size(75, 13);
     releaseDateLabel1.TabIndex = 9;
     releaseDateLabel1.Text = "Release Date:";
     //
     // productsBindingNavigator
     //
     this.productsBindingNavigator.AddNewItem = null;
     this.productsBindingNavigator.BindingSource = this.productsBindingSource;
     this.productsBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.productsBindingNavigator.DeleteItem = null;
     this.productsBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.productsBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.productsBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.productsBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.productsBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.productsBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.productsBindingNavigator.Name = "productsBindingNavigator";
     this.productsBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.productsBindingNavigator.Size = new System.Drawing.Size(592, 25);
     this.productsBindingNavigator.TabIndex = 0;
     this.productsBindingNavigator.Text = "bindingNavigator1";
     //
     // productsBindingSource
     //
     this.productsBindingSource.DataMember = "Products";
     this.productsBindingSource.DataSource = this.techSupportDataSet2C;
     //
     // techSupportDataSet2C
     //
     this.techSupportDataSet2C.DataSetName = "TechSupportDataSet2C";
     this.techSupportDataSet2C.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // productCodeTextBox
     //
     this.productCodeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "ProductCode", true));
     this.productCodeTextBox.Location = new System.Drawing.Point(90, 32);
     this.productCodeTextBox.Name = "productCodeTextBox";
     this.productCodeTextBox.ReadOnly = true;
     this.productCodeTextBox.Size = new System.Drawing.Size(100, 20);
     this.productCodeTextBox.TabIndex = 2;
     //
     // nameTextBox
     //
     this.nameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "Name", true));
     this.nameTextBox.Location = new System.Drawing.Point(90, 58);
     this.nameTextBox.Name = "nameTextBox";
     this.nameTextBox.ReadOnly = true;
     this.nameTextBox.Size = new System.Drawing.Size(200, 20);
     this.nameTextBox.TabIndex = 4;
     //
     // versionTextBox
     //
     this.versionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "Version", true));
     this.versionTextBox.Location = new System.Drawing.Point(90, 84);
     this.versionTextBox.Name = "versionTextBox";
     this.versionTextBox.ReadOnly = true;
     this.versionTextBox.Size = new System.Drawing.Size(100, 20);
     this.versionTextBox.TabIndex = 6;
     //
     // releaseDateTextBox
     //
     this.releaseDateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "ReleaseDate", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, null, "d"));
     this.releaseDateTextBox.Location = new System.Drawing.Point(90, 110);
     this.releaseDateTextBox.Name = "releaseDateTextBox";
     this.releaseDateTextBox.ReadOnly = true;
     this.releaseDateTextBox.Size = new System.Drawing.Size(100, 20);
     this.releaseDateTextBox.TabIndex = 10;
     //
     // incidentsDataGridView
     //
     this.incidentsDataGridView.AllowUserToAddRows = false;
     this.incidentsDataGridView.AllowUserToDeleteRows = false;
     this.incidentsDataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.incidentsDataGridView.AutoGenerateColumns = false;
     this.incidentsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.incidentsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.CustomerID,
     this.DateOpened,
     this.DateClosed,
     this.Title,
     this.TechnicianName,
     this.CustomerName,
     this.DisplayCustomerInfo});
     this.incidentsDataGridView.DataSource = this.incidentsBindingSource;
     this.incidentsDataGridView.Location = new System.Drawing.Point(12, 144);
     this.incidentsDataGridView.Name = "incidentsDataGridView";
     this.incidentsDataGridView.ReadOnly = true;
     this.incidentsDataGridView.Size = new System.Drawing.Size(568, 137);
     this.incidentsDataGridView.TabIndex = 10;
     this.incidentsDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.incidentsDataGridView_CellContentClick);
     //
     // incidentsBindingSource
     //
     this.incidentsBindingSource.DataMember = "FK_Incidents_Products";
     this.incidentsBindingSource.DataSource = this.productsBindingSource;
     //
     // productsTableAdapter
     //
     this.productsTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.ProductsTableAdapter = this.productsTableAdapter;
     this.tableAdapterManager.UpdateOrder = SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     //
     // incidentsTableAdapter
     //
     this.incidentsTableAdapter.ClearBeforeFill = true;
     //
     // CustomerID
     //
     this.CustomerID.DataPropertyName = "CustomerID";
     this.CustomerID.HeaderText = "CustomerID";
     this.CustomerID.Name = "CustomerID";
     this.CustomerID.ReadOnly = true;
     this.CustomerID.Visible = false;
     //
     // DateOpened
     //
     this.DateOpened.DataPropertyName = "DateOpened";
     this.DateOpened.HeaderText = "Date Opened";
     this.DateOpened.Name = "DateOpened";
     this.DateOpened.ReadOnly = true;
     //
     // DateClosed
     //
     this.DateClosed.DataPropertyName = "DateClosed";
     this.DateClosed.HeaderText = "Date Closed";
     this.DateClosed.Name = "DateClosed";
     this.DateClosed.ReadOnly = true;
     //
     // Title
     //
     this.Title.DataPropertyName = "Title";
     this.Title.HeaderText = "Title";
     this.Title.Name = "Title";
     this.Title.ReadOnly = true;
     //
     // TechnicianName
     //
     this.TechnicianName.DataPropertyName = "TechnicianName";
     this.TechnicianName.HeaderText = "Technician Name";
     this.TechnicianName.Name = "TechnicianName";
     this.TechnicianName.ReadOnly = true;
     this.TechnicianName.Width = 120;
     //
     // CustomerName
     //
     this.CustomerName.DataPropertyName = "CustomerName";
     this.CustomerName.HeaderText = "Customer Name";
     this.CustomerName.Name = "CustomerName";
     this.CustomerName.ReadOnly = true;
     this.CustomerName.Width = 120;
     //
     // DisplayCustomerInfo
     //
     this.DisplayCustomerInfo.HeaderText = "";
     this.DisplayCustomerInfo.Name = "DisplayCustomerInfo";
     this.DisplayCustomerInfo.ReadOnly = true;
     this.DisplayCustomerInfo.Text = "Display Customer Info";
     this.DisplayCustomerInfo.UseColumnTextForButtonValue = true;
     this.DisplayCustomerInfo.Width = 120;
     //
     // frmProductIncidents
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(592, 293);
     this.Controls.Add(this.incidentsDataGridView);
     this.Controls.Add(releaseDateLabel1);
     this.Controls.Add(this.releaseDateTextBox);
     this.Controls.Add(productCodeLabel);
     this.Controls.Add(this.productCodeTextBox);
     this.Controls.Add(nameLabel);
     this.Controls.Add(this.nameTextBox);
     this.Controls.Add(versionLabel);
     this.Controls.Add(this.versionTextBox);
     this.Controls.Add(this.productsBindingNavigator);
     this.Name = "frmProductIncidents";
     this.Text = "Incidents by Product";
     this.Load += new System.EventHandler(this.frmProductIncidents_Load);
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).EndInit();
     this.productsBindingNavigator.ResumeLayout(false);
     this.productsBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.lbCabecera = new System.Windows.Forms.Label();
     this.dgv = new System.Windows.Forms.DataGridView();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.dSElipses = new Elipses.DSElipses();
     this.elipsesBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.elipsesTableAdapter = new Elipses.DSElipsesTableAdapters.ElipsesTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSElipses)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.elipsesBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // btnCancelar
     //
     this.btnCancelar.Font = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancelar.Location = new System.Drawing.Point(697, 396);
     this.btnCancelar.Margin = new System.Windows.Forms.Padding(4);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(265, 43);
     this.btnCancelar.TabIndex = 3;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // lbCabecera
     //
     this.lbCabecera.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.lbCabecera.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbCabecera.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCabecera.Location = new System.Drawing.Point(45, 38);
     this.lbCabecera.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbCabecera.Name = "lbCabecera";
     this.lbCabecera.Size = new System.Drawing.Size(428, 28);
     this.lbCabecera.TabIndex = 26;
     //
     // dgv
     //
     this.dgv.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Editar});
     this.dgv.Location = new System.Drawing.Point(45, 82);
     this.dgv.Margin = new System.Windows.Forms.Padding(4);
     this.dgv.MultiSelect = false;
     this.dgv.Name = "dgv";
     this.dgv.ReadOnly = true;
     this.dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgv.Size = new System.Drawing.Size(915, 306);
     this.dgv.TabIndex = 27;
     this.dgv.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_CellContentClick);
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Editar.HeaderText = "Edit";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "►";
     this.Editar.ToolTipText = "►";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 40;
     //
     // dSElipses
     //
     this.dSElipses.DataSetName = "DSElipses";
     this.dSElipses.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // elipsesBindingSource
     //
     this.elipsesBindingSource.DataMember = "Elipses";
     this.elipsesBindingSource.DataSource = this.dSElipses;
     //
     // elipsesTableAdapter
     //
     this.elipsesTableAdapter.ClearBeforeFill = true;
     //
     // FormDatos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.ClientSize = new System.Drawing.Size(1001, 455);
     this.Controls.Add(this.dgv);
     this.Controls.Add(this.lbCabecera);
     this.Controls.Add(this.btnCancelar);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "FormDatos";
     this.Text = "FormDatos";
     this.Load += new System.EventHandler(this.FormDatos_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSElipses)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.elipsesBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.textBox_NumeroDoc = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.button_limpiar = new System.Windows.Forms.Button();
     this.textBox_NumeroSocio = new System.Windows.Forms.TextBox();
     this.button_Buscar = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox_Apellido = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox_Nombre = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.button4 = new System.Windows.Forms.Button();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Seleccionar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textBox_NumeroDoc);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.button_limpiar);
     this.groupBox1.Controls.Add(this.textBox_NumeroSocio);
     this.groupBox1.Controls.Add(this.button_Buscar);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.textBox_Apellido);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.textBox_Nombre);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(18, 13);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(636, 150);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Filtro";
     this.groupBox1.Enter += new System.EventHandler(this.groupBox1_Enter);
     //
     // textBox_NumeroDoc
     //
     this.textBox_NumeroDoc.Location = new System.Drawing.Point(384, 26);
     this.textBox_NumeroDoc.Name = "textBox_NumeroDoc";
     this.textBox_NumeroDoc.Size = new System.Drawing.Size(168, 20);
     this.textBox_NumeroDoc.TabIndex = 7;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(331, 29);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(47, 13);
     this.label3.TabIndex = 6;
     this.label3.Text = "Nro Doc";
     //
     // button_limpiar
     //
     this.button_limpiar.Location = new System.Drawing.Point(334, 111);
     this.button_limpiar.Name = "button_limpiar";
     this.button_limpiar.Size = new System.Drawing.Size(218, 23);
     this.button_limpiar.TabIndex = 2;
     this.button_limpiar.Text = "Limpiar";
     this.button_limpiar.UseVisualStyleBackColor = true;
     this.button_limpiar.Click += new System.EventHandler(this.button_limpiar_Click);
     //
     // textBox_NumeroSocio
     //
     this.textBox_NumeroSocio.Location = new System.Drawing.Point(158, 26);
     this.textBox_NumeroSocio.Name = "textBox_NumeroSocio";
     this.textBox_NumeroSocio.Size = new System.Drawing.Size(145, 20);
     this.textBox_NumeroSocio.TabIndex = 5;
     //
     // button_Buscar
     //
     this.button_Buscar.Location = new System.Drawing.Point(94, 111);
     this.button_Buscar.Name = "button_Buscar";
     this.button_Buscar.Size = new System.Drawing.Size(209, 23);
     this.button_Buscar.TabIndex = 1;
     this.button_Buscar.Text = "Buscar";
     this.button_Buscar.UseVisualStyleBackColor = true;
     this.button_Buscar.Click += new System.EventHandler(this.button1_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(91, 29);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(61, 13);
     this.label4.TabIndex = 4;
     this.label4.Text = "Nro Afiliado";
     //
     // textBox_Apellido
     //
     this.textBox_Apellido.Location = new System.Drawing.Point(384, 71);
     this.textBox_Apellido.Name = "textBox_Apellido";
     this.textBox_Apellido.Size = new System.Drawing.Size(168, 20);
     this.textBox_Apellido.TabIndex = 3;
     this.textBox_Apellido.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(331, 74);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(44, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Apellido";
     this.label2.Click += new System.EventHandler(this.label2_Click);
     //
     // textBox_Nombre
     //
     this.textBox_Nombre.Location = new System.Drawing.Point(158, 71);
     this.textBox_Nombre.Name = "textBox_Nombre";
     this.textBox_Nombre.Size = new System.Drawing.Size(145, 20);
     this.textBox_Nombre.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(105, 74);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(44, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Nombre";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(301, 364);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(75, 23);
     this.button4.TabIndex = 4;
     this.button4.Text = "Volver";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Seleccionar});
     this.dataGridView1.Location = new System.Drawing.Point(18, 181);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(636, 177);
     this.dataGridView1.TabIndex = 5;
     this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
     //
     // Seleccionar
     //
     this.Seleccionar.HeaderText = "Seleccionar";
     this.Seleccionar.Name = "Seleccionar";
     this.Seleccionar.Text = "Seleccionar";
     this.Seleccionar.UseColumnTextForButtonValue = true;
     //
     // ListadoAfiliado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(677, 392);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.groupBox1);
     this.Name = "ListadoAfiliado";
     this.Text = "Listado Afiliados";
     this.Load += new System.EventHandler(this.ListadoAfiliado_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
 }
Example #43
0
 /// <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 dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_KH));
     this.panel1 = new System.Windows.Forms.Panel();
     this.label5 = new System.Windows.Forms.Label();
     this.txtSdtkh = new System.Windows.Forms.TextBox();
     this.btnThoat = new System.Windows.Forms.Button();
     this.testMaKH = new System.Windows.Forms.PictureBox();
     this.btnUpdate = new System.Windows.Forms.Button();
     this.lblTT2 = new System.Windows.Forms.Label();
     this.btnSearch = new System.Windows.Forms.Button();
     this.lblTT1 = new System.Windows.Forms.Label();
     this.btnDelete = new System.Windows.Forms.Button();
     this.label14 = new System.Windows.Forms.Label();
     this.btnReset = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.btnInsert = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtScmkh = new System.Windows.Forms.TextBox();
     this.txtTenkh = new System.Windows.Forms.TextBox();
     this.txtMakh = new System.Windows.Forms.TextBox();
     this.radNu = new System.Windows.Forms.RadioButton();
     this.radNam = new System.Windows.Forms.RadioButton();
     this.grvdata = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnMuahang = new System.Windows.Forms.DataGridViewButtonColumn();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.testMaKH)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvdata)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Menu;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.txtSdtkh);
     this.panel1.Controls.Add(this.btnThoat);
     this.panel1.Controls.Add(this.testMaKH);
     this.panel1.Controls.Add(this.btnUpdate);
     this.panel1.Controls.Add(this.lblTT2);
     this.panel1.Controls.Add(this.btnSearch);
     this.panel1.Controls.Add(this.lblTT1);
     this.panel1.Controls.Add(this.btnDelete);
     this.panel1.Controls.Add(this.label14);
     this.panel1.Controls.Add(this.btnReset);
     this.panel1.Controls.Add(this.label12);
     this.panel1.Controls.Add(this.btnInsert);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.txtScmkh);
     this.panel1.Controls.Add(this.txtTenkh);
     this.panel1.Controls.Add(this.txtMakh);
     this.panel1.Controls.Add(this.radNu);
     this.panel1.Controls.Add(this.radNam);
     this.panel1.Location = new System.Drawing.Point(1, 1);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(316, 358);
     this.panel1.TabIndex = 5;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(13, 185);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(35, 16);
     this.label5.TabIndex = 16;
     this.label5.Text = "SĐT";
     //
     // txtSdtkh
     //
     this.txtSdtkh.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSdtkh.Location = new System.Drawing.Point(81, 179);
     this.txtSdtkh.MaxLength = 11;
     this.txtSdtkh.Name = "txtSdtkh";
     this.txtSdtkh.Size = new System.Drawing.Size(205, 26);
     this.txtSdtkh.TabIndex = 6;
     //
     // btnThoat
     //
     this.btnThoat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnThoat.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnThoat.Image = global::QLBanhang.Properties.Resources.exit;
     this.btnThoat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnThoat.Location = new System.Drawing.Point(164, 308);
     this.btnThoat.Name = "btnThoat";
     this.btnThoat.Size = new System.Drawing.Size(120, 43);
     this.btnThoat.TabIndex = 12;
     this.btnThoat.Text = "Th&oát";
     this.btnThoat.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnThoat.UseVisualStyleBackColor = true;
     this.btnThoat.Click += new System.EventHandler(this.btnThoat_Click);
     //
     // testMaKH
     //
     this.testMaKH.Location = new System.Drawing.Point(258, 51);
     this.testMaKH.Name = "testMaKH";
     this.testMaKH.Size = new System.Drawing.Size(25, 25);
     this.testMaKH.TabIndex = 14;
     this.testMaKH.TabStop = false;
     //
     // btnUpdate
     //
     this.btnUpdate.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnUpdate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnUpdate.Image = global::QLBanhang.Properties.Resources.update;
     this.btnUpdate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnUpdate.Location = new System.Drawing.Point(35, 263);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(120, 43);
     this.btnUpdate.TabIndex = 9;
     this.btnUpdate.Text = "&Sửa";
     this.btnUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnUpdate.UseVisualStyleBackColor = true;
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // lblTT2
     //
     this.lblTT2.AutoSize = true;
     this.lblTT2.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTT2.ForeColor = System.Drawing.Color.Red;
     this.lblTT2.Location = new System.Drawing.Point(286, 85);
     this.lblTT2.Name = "lblTT2";
     this.lblTT2.Size = new System.Drawing.Size(20, 25);
     this.lblTT2.TabIndex = 13;
     this.lblTT2.Text = "*";
     //
     // btnSearch
     //
     this.btnSearch.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearch.Image = global::QLBanhang.Properties.Resources.search;
     this.btnSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSearch.Location = new System.Drawing.Point(164, 219);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(120, 43);
     this.btnSearch.TabIndex = 8;
     this.btnSearch.Text = "Tìm &kiếm";
     this.btnSearch.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // lblTT1
     //
     this.lblTT1.AutoSize = true;
     this.lblTT1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTT1.ForeColor = System.Drawing.Color.Red;
     this.lblTT1.Location = new System.Drawing.Point(286, 53);
     this.lblTT1.Name = "lblTT1";
     this.lblTT1.Size = new System.Drawing.Size(20, 25);
     this.lblTT1.TabIndex = 12;
     this.lblTT1.Text = "*";
     //
     // btnDelete
     //
     this.btnDelete.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDelete.Image = global::QLBanhang.Properties.Resources.delete;
     this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(164, 263);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(120, 43);
     this.btnDelete.TabIndex = 10;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnDelete.UseVisualStyleBackColor = true;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(-2, 26);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(323, 16);
     this.label14.TabIndex = 11;
     this.label14.Text = "_____________________________________________";
     //
     // btnReset
     //
     this.btnReset.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnReset.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReset.Image = global::QLBanhang.Properties.Resources.reset;
     this.btnReset.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnReset.Location = new System.Drawing.Point(35, 308);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(120, 43);
     this.btnReset.TabIndex = 11;
     this.btnReset.Text = "&Reset";
     this.btnReset.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnReset.UseVisualStyleBackColor = true;
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(87, 10);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(155, 16);
     this.label12.TabIndex = 10;
     this.label12.Text = "Thông tin khách hàng";
     //
     // btnInsert
     //
     this.btnInsert.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnInsert.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnInsert.Image = global::QLBanhang.Properties.Resources.insert;
     this.btnInsert.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnInsert.Location = new System.Drawing.Point(35, 219);
     this.btnInsert.Name = "btnInsert";
     this.btnInsert.Size = new System.Drawing.Size(120, 43);
     this.btnInsert.TabIndex = 7;
     this.btnInsert.Text = "&Thêm mới";
     this.btnInsert.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnInsert.UseVisualStyleBackColor = true;
     this.btnInsert.Click += new System.EventHandler(this.btnInsert_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(13, 153);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(37, 16);
     this.label4.TabIndex = 9;
     this.label4.Text = "CMT";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(13, 121);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(55, 16);
     this.label3.TabIndex = 8;
     this.label3.Text = "Giới tính";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(13, 89);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(47, 16);
     this.label2.TabIndex = 7;
     this.label2.Text = "Họ tên";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(13, 57);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 16);
     this.label1.TabIndex = 6;
     this.label1.Text = "Mã KH";
     //
     // txtScmkh
     //
     this.txtScmkh.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtScmkh.Location = new System.Drawing.Point(81, 147);
     this.txtScmkh.MaxLength = 9;
     this.txtScmkh.Name = "txtScmkh";
     this.txtScmkh.Size = new System.Drawing.Size(205, 26);
     this.txtScmkh.TabIndex = 5;
     //
     // txtTenkh
     //
     this.txtTenkh.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTenkh.Location = new System.Drawing.Point(81, 83);
     this.txtTenkh.MaxLength = 50;
     this.txtTenkh.Name = "txtTenkh";
     this.txtTenkh.Size = new System.Drawing.Size(205, 26);
     this.txtTenkh.TabIndex = 2;
     //
     // txtMakh
     //
     this.txtMakh.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMakh.Location = new System.Drawing.Point(81, 51);
     this.txtMakh.MaxLength = 10;
     this.txtMakh.Name = "txtMakh";
     this.txtMakh.Size = new System.Drawing.Size(171, 26);
     this.txtMakh.TabIndex = 1;
     this.txtMakh.TextChanged += new System.EventHandler(this.txtMakh_TextChanged);
     //
     // radNu
     //
     this.radNu.AutoSize = true;
     this.radNu.Location = new System.Drawing.Point(222, 121);
     this.radNu.Name = "radNu";
     this.radNu.Size = new System.Drawing.Size(39, 17);
     this.radNu.TabIndex = 4;
     this.radNu.TabStop = true;
     this.radNu.Text = "Nữ";
     this.radNu.UseVisualStyleBackColor = true;
     //
     // radNam
     //
     this.radNam.AutoSize = true;
     this.radNam.Location = new System.Drawing.Point(131, 121);
     this.radNam.Name = "radNam";
     this.radNam.Size = new System.Drawing.Size(47, 17);
     this.radNam.TabIndex = 3;
     this.radNam.TabStop = true;
     this.radNam.Text = "Nam";
     this.radNam.UseVisualStyleBackColor = true;
     //
     // grvdata
     //
     this.grvdata.AllowUserToAddRows = false;
     this.grvdata.AllowUserToDeleteRows = false;
     this.grvdata.AllowUserToResizeColumns = false;
     this.grvdata.AllowUserToResizeRows = false;
     this.grvdata.BackgroundColor = System.Drawing.SystemColors.ButtonFace;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grvdata.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grvdata.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grvdata.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3,
     this.Column5,
     this.Column4,
     this.btnMuahang});
     this.grvdata.Cursor = System.Windows.Forms.Cursors.Default;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grvdata.DefaultCellStyle = dataGridViewCellStyle3;
     this.grvdata.Location = new System.Drawing.Point(320, 1);
     this.grvdata.MultiSelect = false;
     this.grvdata.Name = "grvdata";
     this.grvdata.ReadOnly = true;
     this.grvdata.Size = new System.Drawing.Size(561, 358);
     this.grvdata.TabIndex = 13;
     this.grvdata.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grvdata_CellClick);
     this.grvdata.RowEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.grvdata_RowEnter);
     //
     // Column1
     //
     this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.Column1.HeaderText = "Mã KH";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.Width = 65;
     //
     // Column2
     //
     this.Column2.HeaderText = "Họ tên";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Width = 120;
     //
     // Column3
     //
     this.Column3.HeaderText = "Giới tính";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Width = 50;
     //
     // Column5
     //
     this.Column5.HeaderText = "Số CMT";
     this.Column5.Name = "Column5";
     this.Column5.ReadOnly = true;
     //
     // Column4
     //
     this.Column4.HeaderText = "Số điện thoại";
     this.Column4.Name = "Column4";
     this.Column4.ReadOnly = true;
     //
     // btnMuahang
     //
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.NullValue = "Mua hàng";
     this.btnMuahang.DefaultCellStyle = dataGridViewCellStyle2;
     this.btnMuahang.HeaderText = "Mua hàng";
     this.btnMuahang.Name = "btnMuahang";
     this.btnMuahang.ReadOnly = true;
     this.btnMuahang.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.btnMuahang.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.btnMuahang.Width = 80;
     //
     // Form_KH
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(883, 362);
     this.Controls.Add(this.grvdata);
     this.Controls.Add(this.panel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "Form_KH";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "QUẢN LÝ CỬA HÀNG SÁCH";
     this.Load += new System.EventHandler(this.Form_KH_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.testMaKH)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvdata)).EndInit();
     this.ResumeLayout(false);
 }