Example #1
0
 public static void Excute(DevExpress.XtraEditors.CheckEdit items)
 {
     if (items.Text == "Clean Temporary Files")
     {
         CleanTempFolder();
     }
     if (items.Text == " Clean Recent Items")
     {
         CleanRecents();
     }
     if (items.Text == "Clean Windows Temp Files")
     {
         CleanTempWindows();
     }
     if (items.Text == "Clean Prefetch Data")
     {
         CleanPrefetch();
     }
     if (items.Text == "Clean Cookies")
     {
         CleanCookies();
     }
     if (items.Text == "Clean Temporary Internet Files")
     {
         Clean_Temporary_Internet_Files();
     }
     if (items.Text == "Clean Internet History")
     {
         CleanInternetHistory();
     }
     if (items.Text == "Empty Recycle Bin")
     {
         CleanRecycleBin();
     }
 }
Example #2
0
 public static void Excute(DevExpress.XtraEditors.CheckEdit items)
 {
     if (items.Text == "Disable System Restore")
     {
         DisableSystemRestore();
     }
     if (items.Text == "Disable CD Burning Features")
     {
         DisableCDBurningDFeatures();
     }
     if (items.Text == "Disable Windows SmartScreen")
     {
         DisableWindowsSmartScreen();
     }
     if (items.Text == "Disable Windows Sidebar")
     {
         DisableWindowsSideBar();
     }
     if (items.Text == "Speed Up Menu Show")
     {
         OptimizeMenuShowDelay();
     }
     if (items.Text == "Speed Shutdown Process")
     {
         OptimizeHungAppTimeOut(); OptimizeWaitKillSVC(); AutoEndTask();
     }
     if (items.Text == "Disable Autorun For All Drives")
     {
         DisableAutorun();
     }
 }
Example #3
0
 /// <summary>
 /// iChk_CheckedChanged
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void iChk_CheckedChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.CheckEdit iChk = sender as DevExpress.XtraEditors.CheckEdit;
     if (iChk.Checked)
     {
         // 根据分组属性控制只选一个
         foreach (DevExpress.XtraEditors.CheckEdit chk in lstCheck)
         {
             if (chk != iChk && chk.Properties.AccessibleName == iChk.Properties.AccessibleName)
             {
                 chk.Checked = false;
                 ((DevExpress.XtraEditors.CheckEdit)sender).Properties.Appearance.ForeColor = Color.Black;
                 ((DevExpress.XtraEditors.CheckEdit)sender).Invalidate();
                 ((DevExpress.XtraEditors.CheckEdit)sender).Update();
             }
         }
         ((DevExpress.XtraEditors.CheckEdit)sender).Properties.Appearance.ForeColor = Color.Blue;
         ((DevExpress.XtraEditors.CheckEdit)sender).Invalidate();
         ((DevExpress.XtraEditors.CheckEdit)sender).Update();
     }
     else
     {
         ((DevExpress.XtraEditors.CheckEdit)sender).Properties.Appearance.ForeColor = Color.Black;
         ((DevExpress.XtraEditors.CheckEdit)sender).Invalidate();
         ((DevExpress.XtraEditors.CheckEdit)sender).Update();
     }
 }
 /// <summary>
 /// 本月,下月,随后的两个季度月份复选框的 checkEdit13_CheckedChanged事件
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void checkEdit13_CheckedChanged(object sender, EventArgs e)
 {
     try
     {
         foreach (Control t in this.panelControl1.Controls)
         {
             if (t is DevExpress.XtraEditors.CheckEdit)
             {
                 DevExpress.XtraEditors.CheckEdit checkEdit = (DevExpress.XtraEditors.CheckEdit)t;
                 if (checkEdit.Checked && checkEdit.Name == "checkEdit13")
                 {
                     ShowMessageBox.ShowInformation("此月份不能与其它月份同时选择!");
                 }
             }
         }
     }
     catch (Exception ex)
     {
         string      errCode   = "GL-5872";
         string      errMsg    = "本月,下月,随后的两个季度月份复选框的事件失败!";
         VTException exception = new VTException(errCode, errMsg, ex);
         LogHelper.WriteError(exception.ToString(), exception.InnerException);
         return;
     }
 }
Example #5
0
        private void CheckBox_CheckedChanged(object sender, EventArgs e)
        {
            try
            {
                DevExpress.XtraEditors.CheckEdit chk = sender as DevExpress.XtraEditors.CheckEdit;



                if (chk == chkRS232)
                {
                    if (chk.Checked)
                    {
                        chkDriver.Checked = false;
                    }
                }
                else
                {
                    if (chk.Checked)
                    {
                        chkRS232.Checked = false;
                    }
                }


                this.pnlPrintDriver.Enabled     = chkDriver.Checked;
                this.cboComPrintMachine.Enabled = chkRS232.Checked;
                this.pnlSerial.Enabled          = this.chkRS232.Checked;
            }
            catch (Exception ex)
            {
            }
        }
Example #6
0
        private void chkTag_CheckedChanged(object sender, EventArgs e)
        {
            DataRow dtrTemPd = this.gridView2.GetFocusedDataRow();

            DevExpress.XtraEditors.CheckEdit oSender = sender as DevExpress.XtraEditors.CheckEdit;
            dtrTemPd["CTAGVALUE"] = oSender.Checked;
            this.pmSumMfgQty();
        }
Example #7
0
 private void checkEdit1_CheckedChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.CheckEdit check = sender as DevExpress.XtraEditors.CheckEdit;
     if (check != null)
     {
         helper.AllowDockToTabbedContainer = check.Checked;
     }
 }
Example #8
0
 private void checkEdit1_CheckedChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.CheckEdit editer = sender as DevExpress.XtraEditors.CheckEdit;
     foreach (TreeListNode item in this.treeList1.Nodes)
     {
         item.Checked = editer.Checked;
         treeList1_AfterCheckNode(this.treeList1, new DevExpress.XtraTreeList.NodeEventArgs(item));
     }
 }
Example #9
0
 private void InitializeComponent()
 {
     this.comboBoxEditPlateNo = new DevExpress.XtraEditors.MRUEdit();
     this.checkEditPlantNo    = new DevExpress.XtraEditors.LabelControl();
     this.checkEditNonePlate  = new DevExpress.XtraEditors.CheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditPlateNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditNonePlate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // comboBoxEditPlateNo
     //
     this.comboBoxEditPlateNo.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxEditPlateNo.EditValue = "沪A123456";
     this.comboBoxEditPlateNo.Location  = new System.Drawing.Point(55, 3);
     this.comboBoxEditPlateNo.Name      = "comboBoxEditPlateNo";
     this.comboBoxEditPlateNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.comboBoxEditPlateNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEditPlateNo.Properties.CharacterCasing      = System.Windows.Forms.CharacterCasing.Upper;
     this.comboBoxEditPlateNo.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned;
     this.comboBoxEditPlateNo.Properties.LookAndFeel.SkinName = "DevExpress Dark Style";
     this.comboBoxEditPlateNo.Size     = new System.Drawing.Size(141, 20);
     this.comboBoxEditPlateNo.TabIndex = 104;
     //
     // checkEditPlantNo
     //
     this.checkEditPlantNo.Location = new System.Drawing.Point(2, 7);
     this.checkEditPlantNo.Name     = "checkEditPlantNo";
     this.checkEditPlantNo.Size     = new System.Drawing.Size(24, 14);
     this.checkEditPlantNo.TabIndex = 105;
     this.checkEditPlantNo.Text     = "车牌";
     //
     // checkEditNonePlate
     //
     this.checkEditNonePlate.Location           = new System.Drawing.Point(53, 27);
     this.checkEditNonePlate.Name               = "checkEditNonePlate";
     this.checkEditNonePlate.Properties.Caption = "无牌车";
     this.checkEditNonePlate.Properties.LookAndFeel.SkinName = "DevExpress Dark Style";
     this.checkEditNonePlate.Size            = new System.Drawing.Size(140, 19);
     this.checkEditNonePlate.TabIndex        = 106;
     this.checkEditNonePlate.CheckedChanged += new System.EventHandler(this.checkEditNonePlate_CheckedChanged);
     //
     // ucSearchPara_VehiclePlate
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.Controls.Add(this.checkEditNonePlate);
     this.Controls.Add(this.comboBoxEditPlateNo);
     this.Controls.Add(this.checkEditPlantNo);
     this.Name = "ucSearchPara_VehiclePlate";
     this.Size = new System.Drawing.Size(196, 49);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditPlateNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditNonePlate.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #10
0
        private void checkEditSongHuoTongDengji_CheckedChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.CheckEdit checkEdit = sender as DevExpress.XtraEditors.CheckEdit;

            if (checkEdit != null)
            {
                if (checkEdit.Checked == true)
                {
                    this.textEditCompanyJinChuAddress.EditValue = this.CompanyAddressTextEdit.EditValue;
                }
            }
        }
Example #11
0
 //设置工具提示
 private void InitToolTipChk(string displayName, DevExpress.XtraEditors.CheckEdit item, Point point)
 {
     if (displayName.Trim() != "")
     {
         toolTipController1.SetToolTip(item, displayName);
         toolTipController1.SetToolTipIconType(item, DevExpress.Utils.ToolTipIconType.Exclamation);
         toolTipController1.ShowBeak   = true;
         toolTipController1.ShowShadow = true;
         toolTipController1.Rounded    = true;
         toolTipController1.ShowHint(displayName, point);
     }
 }
Example #12
0
 void SetCheckStat(DevExpress.XtraEditors.CheckEdit chk1, DevExpress.XtraEditors.CheckEdit chk2)
 {
     if (chk1.Checked)
     {
         chk2.Checked   = false;
         chk2.ForeColor = System.Drawing.Color.FromArgb(30, 57, 91);
         chk1.ForeColor = System.Drawing.Color.Crimson;
     }
     else
     {
         chk1.ForeColor = System.Drawing.Color.FromArgb(30, 57, 91);
     }
 }
        private void checkEdit_CheckedChanged(object sender, EventArgs e)
        {
            var target = (sender as DevExpress.XtraEditors.CheckEdit);

            if (target.Checked)
            {
                if (currentCheckEdit != null)
                {
                    currentCheckEdit.Checked = false;
                }
                currentCheckEdit = target;
            }
        }
Example #14
0
        private void repositoryItemCheckEdit2_Click(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.CheckEdit cd = sender as DevExpress.XtraEditors.CheckEdit;

            if (cd.Checked)
            {
                cd.Visible = true;
            }
            else
            {
                cd.Checked = true;
            }
        }
Example #15
0
        private void Set_Checkbox_State(DevExpress.XtraEditors.CheckEdit objchk, string objchk_name)
        {
            bool lb_result = false;

            if (objchk.Checked)
            {
                lb_result = true;
            }
            else
            {
                lb_result = false;
            }
            dgvDetails.Rows[dgvDetails.CurrentCell.RowIndex].Cells[objchk_name].Value = lb_result;
        }
Example #16
0
        private void SorguYaz(DevExpress.XtraEditors.CheckEdit checkBox, string kategori, string text, ref int isaretSayisi)
        {
            // Checkboxlar işaretlenince verileri bu metoda gönderiliyor ve dinamik sorgumuz güncelleniyor.

            if (checkBox.Checked) // işaretleme olunca sorguya ekleme yapılıyor ve işaret sayısı artıyor
            {
                isaretSayisi++;
                IsaretSayisiKontrol(isaretSayisi);

                /* normalde en son işaretlenen checkbox sorguda en sona geliyor ancak katgorileri aynı olanlar aynı parantez içinde olması gerektiğinden
                 * önce o katagori dinamikSorgu içinde var mı kontrol edilecek eğer varsa o parantez içinde saptanan indexten itibaren yazılacak
                 * eğer kategorisi yoksa en sona yazılmaya devam edecek.
                 */

                if (dinamikSorgu.Contains(kategori))
                {
                    int    indexKategori = dinamikSorgu.IndexOf(kategori);
                    string p1            = dinamikSorgu.Substring(0, indexKategori);
                    string p2            = dinamikSorgu.Substring(indexKategori);

                    dinamikSorgu = p1 + $"{kategori} = '{text}' OR " + p2;
                }
                else
                {
                    dinamikSorgu = dinamikSorgu + $"{kategori} = '{text}' OR ";
                }
            }
            else // işaretleme kalkınca sorgudan sorgudan eklenen string ifade siliniyor ve işaret sayısı azalıyor
            {
                isaretSayisi--;
                dinamikSorgu = dinamikSorgu.Replace($"{kategori} = '{text}' OR ", "");

                if (isaretSayisi == 0)
                {
                    // Bir kategori kaldırıldığında o kategöri için açılan ve kapanan parantezlerin silinmesi gerekiyor bu blokta bunun kontrolü ve silinmesi sağlanıyor

                    int indexParantez = dinamikSorgu.LastIndexOf(") AND ()"); // eğer kaldırılan kategori başta ya da ortalardaysa pozitif değer döner

                    if (indexParantez == -1)
                    {
                        indexParantez = dinamikSorgu.Length - 7;
                    }

                    // silinecek ifadenin öncesi ve sonrası birleştirilip dinamikSorgu yenileniyor
                    string p1 = dinamikSorgu.Substring(0, indexParantez);
                    string p2 = dinamikSorgu.Substring(indexParantez + 7);
                    dinamikSorgu = p1 + p2;
                }
            }
        }
Example #17
0
        private void Chk_CheckedChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.CheckEdit chkVo = sender as DevExpress.XtraEditors.CheckEdit;

            if (lstSingleCheck != null)
            {
                foreach (DevExpress.XtraEditors.CheckEdit chk in lstSingleCheck)
                {
                    if (chkVo != chk)
                    {
                        chk.Checked = false;
                    }
                }
            }
        }
Example #18
0
        protected void MarcarCambioEstadoPaso(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.CheckEdit check = sender as DevExpress.XtraEditors.CheckEdit;
            if (check == null)
            {
                return;
            }

            PaperlessPasosEstado paso = ObtenerPasoSeleccionado();

            if (paso.Paso.NumPaso == 1 || paso.Paso.NumPaso == 3 || paso.Paso.NumPaso == 12 || paso.Paso.NumPaso == 13)
            {
                paso.Estado = false;
                CargarPasos();
                return;
            }

            if (!ValidarPermiteCambiarPasoEstado(paso))
            {
                paso.Estado = false;
                CargarPasos();
                return;
            }

            if (paso.Estado)
            {
                CargarPasos();
                return;
            }


            paso.Estado = check.Checked;

            if (paso != null)
            {
                Entidades.GlobalObject.ResultadoTransaccion resultado = LogicaNegocios.Paperless.Paperless.Usuario1CambiarEstadoPaso(paso);
                if (resultado.Estado == Enums.EstadoTransaccion.Rechazada)
                {
                    MessageBox.Show("Error al cambiar estado del paso. \n" + resultado.Descripcion, "Paperless",
                                    MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
                else
                {
                    CargarPasos();
                }
            }
        }
        //================================  事件 ================================

        #region 添加或修改合约交割月份UI AgreementDeliMonthManageUI_Load

        /// <summary>
        /// 添加或修改合约交割月份UI AgreementDeliMonthManageUI_Load
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void AgreementDeliMonthManageUI_Load(object sender, EventArgs e)
        {
            try
            {
                //绑定期货交易规则表中的品种ID对应的品种名称
                //this.cmbBreedClassID.Properties.Items.Clear();
                //this.GetBindBreedClassName(); //获取期货交易规则表中的品种ID对应的品种名称
                //this.cmbBreedClassID.SelectedIndex = 0;
                labBreedClassName.Text = SpotManageCommon.GetBreedClassNameByID(m_BreedClassID);
                List <QH_AgreementDeliveryMonth> MonthID = new List <QH_AgreementDeliveryMonth>();
                MonthID = FuturesManageCommon.GetQHAgreementDeliveryMonth(m_BreedClassID);

                foreach (Control c in this.panelControl1.Controls)
                {
                    if (c is DevExpress.XtraEditors.CheckEdit)
                    {
                        DevExpress.XtraEditors.CheckEdit checkEdit = (DevExpress.XtraEditors.CheckEdit)c;

                        int id = int.Parse(c.Name.Substring(9));

                        CheckTag ct = new CheckTag();
                        ct.ID             = id;
                        ct.InitIsChecked  = false;
                        checkEdit.Checked = false;

                        foreach (QH_AgreementDeliveryMonth i in MonthID)
                        {
                            if (i.MonthID == id)
                            {
                                ct.InitIsChecked  = true;
                                checkEdit.Checked = true;
                            }
                        }
                        c.Tag = ct;
                    }
                }
            }
            catch (Exception ex)
            {
                string      errCode   = "GL-5870";
                string      errMsg    = "添加或修改合约交割月份UI加载失败!";
                VTException exception = new VTException(errCode, errMsg, ex);
                LogHelper.WriteError(exception.ToString(), exception.InnerException);
                return;
            }
        }
Example #20
0
 private void CheckedChanged(object sender, System.EventArgs e)
 {
     if (UserControl.userType == 19 || UserControl.userType == 1)
     {
         try
         {
             DevExpress.XtraEditors.CheckEdit edit = sender as DevExpress.XtraEditors.CheckEdit;
             switch (edit.Checked)
             {
             case true:
                 if (MessageBox.Show("هل انت متاكد انك تريد الحذف؟", "", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                 {
                     dbconnection.Open();
                     string       query = "insert into storage_least_taswya (Data_ID,Date) values (@Data_ID,@Date)";
                     MySqlCommand com   = new MySqlCommand(query, dbconnection);
                     com.Parameters.Add("@Data_ID", MySqlDbType.Int16);
                     com.Parameters["@Data_ID"].Value = gridView1.GetFocusedRowCellDisplayText(gridView1.Columns["Data_ID"]);
                     com.Parameters.Add("@Date", MySqlDbType.DateTime);
                     com.Parameters["@Date"].Value = DateTime.Now;
                     com.ExecuteNonQuery();
                     dbconnection.Close();
                     clearCom();
                     string q1, q2, q3, q4, fQuery = "";
                     q1 = "select Type_ID from type";
                     q2 = "select Factory_ID from factory";
                     q3 = "select Product_ID from product";
                     q4 = "select Group_ID from groupo";
                     testQuantity(q1, q2, q3, q4, fQuery);
                     mainForm.LeastQuantityFunction();
                 }
                 else
                 {
                     edit.CheckState = CheckState.Unchecked;
                 }
                 break;
             }
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message);
         }
         dbconnection.Close();
         dbconnection6.Close();
     }
 }
Example #21
0
 /// <summary>
 /// 그리드의 체크박스 의 속성이 변경될때
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
 private void CheckBox_CheckStateChanged(object sender, EventArgs e)
 {
     try
     {
         DevExpress.XtraEditors.CheckEdit chk = sender as DevExpress.XtraEditors.CheckEdit;
         if (chk.Properties.Name == "chkRoom")
         {
             this.chkRoomuseyn.Checked = chk.Checked;
         }
         else
         {
             this.chkRsvuseyn.Checked = chk.Checked;
         }
     }
     catch (Exception ex)
     {
         Basic.ShowMessage(3, ex.Message);
     }
 }
 private void rpckbSectionManage_CheckedChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.CheckEdit ckb = (DevExpress.XtraEditors.CheckEdit)sender;
     if (ckb.CheckState == CheckState.Unchecked)
     {
         ckbSectionAll.Checked = false;
     }
     else
     {
         for (int i = 0; i < dtSectionList.Rows.Count; i++)
         {
             if (Convert.ToBoolean(dtSectionList.Rows[i][ViewInfo]) == false)
             {
                 ckbSectionAll.Checked = false;
                 return;
             }
             ckbSectionAll.Checked = true;
         }
     }
 }
Example #23
0
        private void repositoryItemCheckEdit1_CheckedChanged(object sender, EventArgs e)
        {
            int row = Convert.ToInt16(gridView1.FocusedRowHandle);

            DevExpress.XtraEditors.CheckEdit editor = (DevExpress.XtraEditors.CheckEdit)sender;
            if (editor.CheckState == CheckState.Checked)
            {
                _totalSelect = Convert.ToInt32(gridView1.GetRowCellValue(row, "GOOD_QTY"));
            }

            for (int i = 0; i < gridView1.RowCount; i++)
            {
                if (i != row)
                {
                    gridView1.SetRowCellValue(i, "F*G", false);
                }
            }

            txtTotal.EditValue = _totalSelect;
        }
Example #24
0
 /// <summary>
 /// 全选
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void chkAll_CheckedChanged(object sender, EventArgs e)
 {
     try
     {
         DevExpress.XtraEditors.CheckEdit chk = (DevExpress.XtraEditors.CheckEdit)sender;
         foreach (Control c in groupControlMainten.Controls)
         {
             if (c is DevExpress.XtraEditors.CheckEdit)
             {
                 if (((DevExpress.XtraEditors.CheckEdit)c).Tag.ToString() == chk.Tag.ToString())
                 {
                     ((DevExpress.XtraEditors.CheckEdit)c).Checked = chk.Checked;
                 }
             }
         }
     }
     catch (Exception E)
     {
         this.ShowMessage(E.Message);
     }
 }
Example #25
0
 /// <summary>
 /// Chk_CheckedChanged
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void Chk_CheckedChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.CheckEdit chk = sender as DevExpress.XtraEditors.CheckEdit;
     if (chk.Checked)
     {
         chk.ForeColor = System.Drawing.Color.Crimson;
         List <DevExpress.XtraEditors.CheckEdit> lstCurr = null;
         foreach (List <DevExpress.XtraEditors.CheckEdit> checkboxs in lstSingleCheck)
         {
             foreach (DevExpress.XtraEditors.CheckEdit chk2 in checkboxs)
             {
                 if (chk == chk2)
                 {
                     lstCurr = checkboxs;
                     break;
                 }
             }
             if (lstCurr != null)
             {
                 break;
             }
         }
         if (lstCurr != null)
         {
             foreach (DevExpress.XtraEditors.CheckEdit chk3 in lstCurr)
             {
                 if (chk3 != chk)
                 {
                     chk3.Checked = false;
                 }
             }
         }
     }
     else
     {
         chk.ForeColor = System.Drawing.Color.Black;
     }
 }
        private void gcTopend_ColumnEdit_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.CheckEdit editor = (sender as DevExpress.XtraEditors.CheckEdit);
            TheTopEndText = editor.Properties.GetDisplayText(editor.EditValue);

            if (activity.EditValue.ToString() == "1")
            {
                string wpDesc = Development.GetRowCellValue(Development.FocusedRowHandle, Development.Columns["description"]).ToString();

                string workplcid;
                string prmonth;
                dt.AcceptChanges();
                DataRow[] df = dt.Select("description='" + wpDesc + "'");
                prmonth   = df[0]["prodmonth"].ToString();
                workplcid = df[0]["workplaceid"].ToString();

                if (TheTopEndText == "True")
                {
                    MWDataManager.clsDataAccess _dbMan = new MWDataManager.clsDataAccess();
                    _dbMan.ConnectionString   = TConnections.GetConnectionString(theSystemDBTag, UserCurrentInfo.Connection);
                    _dbMan.queryExecutionType = MWDataManager.ExecutionType.GeneralSQLStatement;
                    _dbMan.SqlStatement       = "update PLANMONTH SET Topend = 'Y' WHERE prodmonth=" + prmonth + " and workplaceid='" + workplcid + "' and Plancode ='LP' ";

                    _dbMan.queryReturnType = MWDataManager.ReturnType.DataTable;
                    _dbMan.ExecuteInstruction();
                }
                else
                {
                    MWDataManager.clsDataAccess _dbMan = new MWDataManager.clsDataAccess();
                    _dbMan.ConnectionString   = TConnections.GetConnectionString(theSystemDBTag, UserCurrentInfo.Connection);
                    _dbMan.queryExecutionType = MWDataManager.ExecutionType.GeneralSQLStatement;
                    _dbMan.SqlStatement       = "update PLANMONTH SET Topend = 'N' WHERE prodmonth=" + prmonth + " and workplaceid='" + workplcid + "' and Plancode ='LP' ";

                    _dbMan.queryReturnType = MWDataManager.ReturnType.DataTable;
                    _dbMan.ExecuteInstruction();
                }
            }
        }
Example #27
0
        void chkCompany_CheckedChanged(object sender, EventArgs e)
        {
            try
            {
                if (this.gridViewCompany.FocusedRowHandle < 0)
                {
                    return;
                }
                DevExpress.XtraEditors.CheckEdit chk = sender  as DevExpress.XtraEditors.CheckEdit;
                if (this.gridViewCompany.GetRowCellValue(this.gridViewCompany.FocusedRowHandle, "WITHIN_COMPANY").ToString() != "Y" &&
                    chk.CheckState == CheckState.Checked)
                {
                    Basic.ShowMessage(1, "사업장 접근 권한이 없습니다.\n\r선택 할 수 없습니다.");
                    chk.Checked = false;

                    return;
                }
            }
            catch (Exception ex)
            {
                Basic.ShowMessage(3, ex.Message);
            }
        }
Example #28
0
        /// <summary>
        /// 체크박스에서의 엔터키
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
        private void chk_KeyDown(object sender, KeyEventArgs e)
        {
            try
            {
                if (e.KeyCode != Keys.Enter)
                {
                    return;
                }

                DevExpress.XtraEditors.CheckEdit chk = sender as DevExpress.XtraEditors.CheckEdit;
                if (chk.Name == "chkUsedayyn")
                {
                    lupFacilitycode.Focus();
                }
                else
                {
                    SendKeys.Send("{Tab}");
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
 /// <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(FrmChuongTrinh));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControlThongTinPhatSong = new DevExpress.XtraEditors.GroupControl();
     this.ReleaseDate = new DevExpress.XtraEditors.DateEdit();
     this.SoRunConlai = new DevExpress.XtraEditors.SpinEdit();
     this.ReleaseRun = new DevExpress.XtraEditors.SpinEdit();
     this.Release = new DevExpress.XtraEditors.SpinEdit();
     this.SoDaRun = new DevExpress.XtraEditors.SpinEdit();
     this.gridControlPhatSongKhac = new DevExpress.XtraGrid.GridControl();
     this.gridviewPhatSongKhac = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColPSK_Kenh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_LanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhPhatSong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColIsPhatLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatStart = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatEnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColTimeSlot = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.RunThu = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRun = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ReleaseRule = new DevExpress.XtraEditors.MemoEdit();
     this.MuaKem = new DevExpress.XtraEditors.MemoEdit();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlNguonGoc = new DevExpress.XtraEditors.GroupControl();
     this.NoteBQ = new DevExpress.XtraEditors.MemoEdit();
     this.gridControlThongTinBan = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongTinBan = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhBan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanTu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanDen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.DonViHauKy = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.HangSanXuat = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.KenhHanCheBan = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.BanQuyenHTV = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDStart = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNStart = new DevExpress.XtraEditors.DateEdit();
     this.ChanelRight = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.DaoDien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGhiChu = new DevExpress.XtraGrid.GridControl();
     this.gridViewGhiChu = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.colLoaiGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNoiDungGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.PhanLoaiDrama = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.NguonTrading = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ClassName = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.Code = new DevExpress.XtraEditors.TextEdit();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Period = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TrailerGoc = new DevExpress.XtraEditors.CheckEdit();
     this.Photos = new DevExpress.XtraEditors.CheckEdit();
     this.Script = new DevExpress.XtraEditors.CheckEdit();
     this.ckcMoiTrenThiTruong = new DevExpress.XtraEditors.CheckEdit();
     this.ckcTrongKho = new DevExpress.XtraEditors.CheckEdit();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Ranking = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DienVien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.NgayAWB = new DevExpress.XtraEditors.DateEdit();
     this.TomTatNoiDung = new DevExpress.XtraEditors.MemoEdit();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.TinhTrangBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.MaChuongTrinh = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControlMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChuongTrinh = new DevExpress.XtraTab.XtraTabPage();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.popupMenuTab = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).BeginInit();
     this.groupControlThongTinPhatSong.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).BeginInit();
     this.groupControlNguonGoc.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit();
     this.groupControlThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).BeginInit();
     this.xtraTabControlMain.SuspendLayout();
     this.xtraTabPageChuongTrinh.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(626, 716);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(30, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(117, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(21, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 716);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(218, 31);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(638, 52);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 76);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(82, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Tên chương trình";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(405, 165);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(227, 20);
     this.KyHieuPhanLoai.TabIndex = 11;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(343, 168);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(345, 191);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 33);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(5, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(9, 100);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Đạo diễn";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(639, 122);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(1049, 38);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "CHƯƠNG TRÌNH";
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(3, 1);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(221, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 0;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControlThongTinPhatSong
     //
     this.groupControlThongTinPhatSong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTinPhatSong.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTinPhatSong.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseDate);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoRunConlai);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.Release);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoDaRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlPhatSongKhac);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl8);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl9);
     this.groupControlThongTinPhatSong.Controls.Add(this.RunThu);
     this.groupControlThongTinPhatSong.Controls.Add(this.TongSoRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl20);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl19);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl6);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl24);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl21);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl15);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl10);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRule);
     this.groupControlThongTinPhatSong.Controls.Add(this.MuaKem);
     this.groupControlThongTinPhatSong.Location = new System.Drawing.Point(3, 672);
     this.groupControlThongTinPhatSong.Name = "groupControlThongTinPhatSong";
     this.groupControlThongTinPhatSong.Size = new System.Drawing.Size(1000, 351);
     this.groupControlThongTinPhatSong.TabIndex = 2;
     this.groupControlThongTinPhatSong.Text = "Thông tin phát sóng";
     //
     // ReleaseDate
     //
     this.ReleaseDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseDate.EditValue = null;
     this.ReleaseDate.Location = new System.Drawing.Point(840, 150);
     this.ReleaseDate.Name = "ReleaseDate";
     this.ReleaseDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ReleaseDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseDate.Size = new System.Drawing.Size(155, 20);
     this.ReleaseDate.TabIndex = 5;
     //
     // SoRunConlai
     //
     this.SoRunConlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConlai.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConlai.Location = new System.Drawing.Point(840, 102);
     this.SoRunConlai.Name = "SoRunConlai";
     this.SoRunConlai.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoRunConlai.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConlai.Properties.ReadOnly = true;
     this.SoRunConlai.Size = new System.Drawing.Size(155, 20);
     this.SoRunConlai.TabIndex = 4;
     this.SoRunConlai.TabStop = false;
     //
     // ReleaseRun
     //
     this.ReleaseRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.ReleaseRun.Location = new System.Drawing.Point(841, 175);
     this.ReleaseRun.Name = "ReleaseRun";
     this.ReleaseRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseRun.Size = new System.Drawing.Size(154, 20);
     this.ReleaseRun.TabIndex = 5;
     //
     // Release
     //
     this.Release.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Release.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Release.Location = new System.Drawing.Point(840, 125);
     this.Release.Name = "Release";
     this.Release.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Release.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Release.Size = new System.Drawing.Size(155, 20);
     this.Release.TabIndex = 5;
     //
     // SoDaRun
     //
     this.SoDaRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDaRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoDaRun.Location = new System.Drawing.Point(840, 78);
     this.SoDaRun.Name = "SoDaRun";
     this.SoDaRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoDaRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoDaRun.Size = new System.Drawing.Size(155, 20);
     this.SoDaRun.TabIndex = 3;
     this.SoDaRun.TabStop = false;
     this.SoDaRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // gridControlPhatSongKhac
     //
     this.gridControlPhatSongKhac.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlPhatSongKhac.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlPhatSongKhac.BackgroundImage")));
     this.gridControlPhatSongKhac.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlPhatSongKhac.Location = new System.Drawing.Point(450, 32);
     this.gridControlPhatSongKhac.MainView = this.gridviewPhatSongKhac;
     this.gridControlPhatSongKhac.Name = "gridControlPhatSongKhac";
     this.gridControlPhatSongKhac.Size = new System.Drawing.Size(305, 314);
     this.gridControlPhatSongKhac.TabIndex = 1;
     this.gridControlPhatSongKhac.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridviewPhatSongKhac});
     //
     // gridviewPhatSongKhac
     //
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridviewPhatSongKhac.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColPSK_Kenh,
     this.ColPSK_TuNgay,
     this.ColPSK_DenNgay,
     this.ColPSK_LanPhat});
     this.gridviewPhatSongKhac.GridControl = this.gridControlPhatSongKhac;
     this.gridviewPhatSongKhac.GroupCount = 1;
     this.gridviewPhatSongKhac.IndicatorWidth = 40;
     this.gridviewPhatSongKhac.Name = "gridviewPhatSongKhac";
     this.gridviewPhatSongKhac.OptionsLayout.Columns.AddNewColumns = false;
     this.gridviewPhatSongKhac.OptionsNavigation.AutoFocusNewRow = true;
     this.gridviewPhatSongKhac.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridviewPhatSongKhac.OptionsPrint.UsePrintStyles = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceEvenRow = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceOddRow = true;
     this.gridviewPhatSongKhac.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridviewPhatSongKhac.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridviewPhatSongKhac.OptionsView.ShowFooter = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupedColumns = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupPanel = false;
     this.gridviewPhatSongKhac.OptionsView.ShowIndicator = false;
     this.gridviewPhatSongKhac.OptionsView.ShowViewCaption = true;
     this.gridviewPhatSongKhac.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColPSK_Kenh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridviewPhatSongKhac.ViewCaption = "Thời gian phát sóng trên các kênh khác";
     this.gridviewPhatSongKhac.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewPhatSongKhac_ValidateRow);
     //
     // ColPSK_Kenh
     //
     this.ColPSK_Kenh.Caption = "Kênh phát sóng";
     this.ColPSK_Kenh.Name = "ColPSK_Kenh";
     this.ColPSK_Kenh.SummaryItem.DisplayFormat = "Số lần đã phát {0}";
     this.ColPSK_Kenh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColPSK_Kenh.Visible = true;
     this.ColPSK_Kenh.VisibleIndex = 0;
     this.ColPSK_Kenh.Width = 100;
     //
     // ColPSK_TuNgay
     //
     this.ColPSK_TuNgay.Caption = "Từ ngày";
     this.ColPSK_TuNgay.Name = "ColPSK_TuNgay";
     this.ColPSK_TuNgay.Visible = true;
     this.ColPSK_TuNgay.VisibleIndex = 1;
     this.ColPSK_TuNgay.Width = 52;
     //
     // ColPSK_DenNgay
     //
     this.ColPSK_DenNgay.Caption = "Đến ngày";
     this.ColPSK_DenNgay.Name = "ColPSK_DenNgay";
     this.ColPSK_DenNgay.Visible = true;
     this.ColPSK_DenNgay.VisibleIndex = 2;
     this.ColPSK_DenNgay.Width = 59;
     //
     // ColPSK_LanPhat
     //
     this.ColPSK_LanPhat.Caption = "Run thứ";
     this.ColPSK_LanPhat.Name = "ColPSK_LanPhat";
     this.ColPSK_LanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColPSK_LanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColPSK_LanPhat.Visible = true;
     this.ColPSK_LanPhat.VisibleIndex = 3;
     this.ColPSK_LanPhat.Width = 52;
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(6, 32);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(436, 314);
     this.gridControlNgayPhatDauTien.TabIndex = 0;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhPhatSong,
     this.ColIsPhatLai,
     this.ColNgayPhatStart,
     this.ColNgayPhatEnd,
     this.ColTimeSlot,
     this.ColLanPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsMenu.EnableFooterMenu = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowViewCaption = true;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.ViewCaption = "Ngày phát sóng đầu tiên";
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridViewNgayPhatDauTien_RowUpdated);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // ColKenhPhatSong
     //
     this.ColKenhPhatSong.Caption = "Kênh";
     this.ColKenhPhatSong.Name = "ColKenhPhatSong";
     this.ColKenhPhatSong.SummaryItem.DisplayFormat = "Phát chính: {0} lần";
     this.ColKenhPhatSong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhPhatSong.Visible = true;
     this.ColKenhPhatSong.VisibleIndex = 0;
     this.ColKenhPhatSong.Width = 83;
     //
     // ColIsPhatLai
     //
     this.ColIsPhatLai.Caption = "Phát lại";
     this.ColIsPhatLai.Name = "ColIsPhatLai";
     this.ColIsPhatLai.SummaryItem.DisplayFormat = "Phát lại: {0} lần";
     this.ColIsPhatLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColIsPhatLai.Visible = true;
     this.ColIsPhatLai.VisibleIndex = 1;
     this.ColIsPhatLai.Width = 68;
     //
     // ColNgayPhatStart
     //
     this.ColNgayPhatStart.Caption = "Từ ngày";
     this.ColNgayPhatStart.Name = "ColNgayPhatStart";
     this.ColNgayPhatStart.Visible = true;
     this.ColNgayPhatStart.VisibleIndex = 2;
     this.ColNgayPhatStart.Width = 52;
     //
     // ColNgayPhatEnd
     //
     this.ColNgayPhatEnd.Caption = "Đến ngày";
     this.ColNgayPhatEnd.Name = "ColNgayPhatEnd";
     this.ColNgayPhatEnd.Visible = true;
     this.ColNgayPhatEnd.VisibleIndex = 3;
     this.ColNgayPhatEnd.Width = 59;
     //
     // ColTimeSlot
     //
     this.ColTimeSlot.Caption = "Timeslot";
     this.ColTimeSlot.Name = "ColTimeSlot";
     this.ColTimeSlot.Visible = true;
     this.ColTimeSlot.VisibleIndex = 4;
     this.ColTimeSlot.Width = 51;
     //
     // ColLanPhat
     //
     this.ColLanPhat.Caption = "Run thứ";
     this.ColLanPhat.Name = "ColLanPhat";
     this.ColLanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColLanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColLanPhat.Visible = true;
     this.ColLanPhat.VisibleIndex = 5;
     this.ColLanPhat.Width = 52;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(760, 105);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(52, 13);
     this.labelControl8.TabIndex = 137;
     this.labelControl8.Text = "Run còn lại";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(760, 81);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(49, 13);
     this.labelControl9.TabIndex = 137;
     this.labelControl9.Text = "Số đã Run";
     //
     // RunThu
     //
     this.RunThu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RunThu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.RunThu.Location = new System.Drawing.Point(840, 32);
     this.RunThu.Name = "RunThu";
     this.RunThu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.RunThu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.RunThu.Size = new System.Drawing.Size(155, 20);
     this.RunThu.TabIndex = 2;
     this.RunThu.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // TongSoRun
     //
     this.TongSoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRun.Location = new System.Drawing.Point(840, 55);
     this.TongSoRun.Name = "TongSoRun";
     this.TongSoRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongSoRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRun.Size = new System.Drawing.Size(155, 20);
     this.TongSoRun.TabIndex = 2;
     this.TongSoRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // labelControl20
     //
     this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl20.Location = new System.Drawing.Point(760, 178);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(57, 13);
     this.labelControl20.TabIndex = 129;
     this.labelControl20.Text = "Release run";
     //
     // labelControl19
     //
     this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl19.Location = new System.Drawing.Point(760, 151);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(63, 13);
     this.labelControl19.TabIndex = 129;
     this.labelControl19.Text = "Release date";
     //
     // labelControl6
     //
     this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl6.Location = new System.Drawing.Point(760, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(74, 13);
     this.labelControl6.TabIndex = 129;
     this.labelControl6.Text = "Release (Ngày)";
     //
     // labelControl24
     //
     this.labelControl24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl24.Location = new System.Drawing.Point(760, 205);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(53, 13);
     this.labelControl24.TabIndex = 137;
     this.labelControl24.Text = "Realse rule";
     //
     // labelControl21
     //
     this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl21.Location = new System.Drawing.Point(760, 276);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(42, 13);
     this.labelControl21.TabIndex = 137;
     this.labelControl21.Text = "Mua kèm";
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.Location = new System.Drawing.Point(760, 36);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(39, 13);
     this.labelControl15.TabIndex = 137;
     this.labelControl15.Text = "Run thứ";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(760, 57);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(60, 13);
     this.labelControl10.TabIndex = 137;
     this.labelControl10.Text = "Tổng số Run";
     //
     // ReleaseRule
     //
     this.ReleaseRule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRule.Location = new System.Drawing.Point(841, 201);
     this.ReleaseRule.Name = "ReleaseRule";
     this.ReleaseRule.Size = new System.Drawing.Size(152, 70);
     this.ReleaseRule.TabIndex = 6;
     //
     // MuaKem
     //
     this.MuaKem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.MuaKem.Location = new System.Drawing.Point(841, 277);
     this.MuaKem.Name = "MuaKem";
     this.MuaKem.Size = new System.Drawing.Size(155, 69);
     this.MuaKem.TabIndex = 6;
     //
     // Rating
     //
     this.Rating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Rating.Location = new System.Drawing.Point(690, 120);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(303, 20);
     this.Rating.TabIndex = 12;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(93, 120);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(241, 20);
     this.DoiTuongKhanGia.TabIndex = 10;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControlNguonGoc
     //
     this.groupControlNguonGoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlNguonGoc.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlNguonGoc.AppearanceCaption.Options.UseFont = true;
     this.groupControlNguonGoc.Controls.Add(this.NoteBQ);
     this.groupControlNguonGoc.Controls.Add(this.gridControlThongTinBan);
     this.groupControlNguonGoc.Controls.Add(this.groupControl7);
     this.groupControlNguonGoc.Controls.Add(this.labelControl17);
     this.groupControlNguonGoc.Controls.Add(this.groupControl1);
     this.groupControlNguonGoc.Controls.Add(this.labelControl14);
     this.groupControlNguonGoc.Location = new System.Drawing.Point(4, 425);
     this.groupControlNguonGoc.Name = "groupControlNguonGoc";
     this.groupControlNguonGoc.Size = new System.Drawing.Size(999, 228);
     this.groupControlNguonGoc.TabIndex = 1;
     this.groupControlNguonGoc.Text = "Nguồn gốc - bản quyền";
     //
     // NoteBQ
     //
     this.NoteBQ.Location = new System.Drawing.Point(95, 180);
     this.NoteBQ.Name = "NoteBQ";
     this.NoteBQ.Size = new System.Drawing.Size(539, 43);
     this.NoteBQ.TabIndex = 136;
     //
     // gridControlThongTinBan
     //
     this.gridControlThongTinBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlThongTinBan.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongTinBan.BackgroundImage")));
     this.gridControlThongTinBan.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongTinBan.Location = new System.Drawing.Point(645, 29);
     this.gridControlThongTinBan.MainView = this.gridViewThongTinBan;
     this.gridControlThongTinBan.Name = "gridControlThongTinBan";
     this.gridControlThongTinBan.Size = new System.Drawing.Size(350, 194);
     this.gridControlThongTinBan.TabIndex = 2;
     this.gridControlThongTinBan.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongTinBan});
     //
     // gridViewThongTinBan
     //
     this.gridViewThongTinBan.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongTinBan.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongTinBan.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhBan,
     this.ColNgayBanTu,
     this.ColNgayBanDen});
     this.gridViewThongTinBan.GridControl = this.gridControlThongTinBan;
     this.gridViewThongTinBan.GroupCount = 1;
     this.gridViewThongTinBan.IndicatorWidth = 40;
     this.gridViewThongTinBan.Name = "gridViewThongTinBan";
     this.gridViewThongTinBan.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongTinBan.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongTinBan.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongTinBan.OptionsPrint.UsePrintStyles = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongTinBan.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewThongTinBan.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewThongTinBan.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongTinBan.OptionsView.ShowGroupPanel = false;
     this.gridViewThongTinBan.OptionsView.ShowIndicator = false;
     this.gridViewThongTinBan.OptionsView.ShowViewCaption = true;
     this.gridViewThongTinBan.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhBan, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewThongTinBan.ViewCaption = "Thông tin bán";
     this.gridViewThongTinBan.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewThongTinBan_CustomDrawGroupRow);
     this.gridViewThongTinBan.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongTinBan_ValidateRow);
     //
     // ColKenhBan
     //
     this.ColKenhBan.Caption = "Kênh bán";
     this.ColKenhBan.Name = "ColKenhBan";
     this.ColKenhBan.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.ColKenhBan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhBan.Visible = true;
     this.ColKenhBan.VisibleIndex = 0;
     this.ColKenhBan.Width = 70;
     //
     // ColNgayBanTu
     //
     this.ColNgayBanTu.Caption = "Từ ngày";
     this.ColNgayBanTu.Name = "ColNgayBanTu";
     this.ColNgayBanTu.Visible = true;
     this.ColNgayBanTu.VisibleIndex = 1;
     this.ColNgayBanTu.Width = 52;
     //
     // ColNgayBanDen
     //
     this.ColNgayBanDen.Caption = "Đên ngày";
     this.ColNgayBanDen.Name = "ColNgayBanDen";
     this.ColNgayBanDen.Visible = true;
     this.ColNgayBanDen.VisibleIndex = 2;
     this.ColNgayBanDen.Width = 59;
     //
     // groupControl7
     //
     this.groupControl7.Controls.Add(this.DonViHauKy);
     this.groupControl7.Controls.Add(this.HangSanXuat);
     this.groupControl7.Controls.Add(this.DonViSoHuu);
     this.groupControl7.Controls.Add(this.NamSanXuat);
     this.groupControl7.Controls.Add(this.label4);
     this.groupControl7.Controls.Add(this.label2);
     this.groupControl7.Controls.Add(this.labelControl33);
     this.groupControl7.Controls.Add(this.labelControl32);
     this.groupControl7.Controls.Add(this.labelControl4);
     this.groupControl7.Controls.Add(this.labelControl7);
     this.groupControl7.Controls.Add(this.QuocGia);
     this.groupControl7.Controls.Add(this.label25);
     this.groupControl7.Controls.Add(this.KenhHanCheBan);
     this.groupControl7.Controls.Add(this.DonViCungCap);
     this.groupControl7.Location = new System.Drawing.Point(2, 29);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.ShowCaption = false;
     this.groupControl7.Size = new System.Drawing.Size(338, 147);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "groupControl7";
     //
     // DonViHauKy
     //
     this.DonViHauKy._DataSource = null;
     this.DonViHauKy._GetField = null;
     this.DonViHauKy.Location = new System.Drawing.Point(92, 53);
     this.DonViHauKy.Name = "DonViHauKy";
     this.DonViHauKy.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.DonViHauKy.Size = new System.Drawing.Size(241, 20);
     this.DonViHauKy.TabIndex = 133;
     //
     // HangSanXuat
     //
     this.HangSanXuat.Location = new System.Drawing.Point(92, 78);
     this.HangSanXuat.Name = "HangSanXuat";
     this.HangSanXuat.Size = new System.Drawing.Size(241, 20);
     this.HangSanXuat.TabIndex = 1;
     this.HangSanXuat.ZZZWidthFactor = 2F;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(92, 31);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(241, 20);
     this.DonViSoHuu.TabIndex = 1;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(278, 101);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(55, 20);
     this.NamSanXuat.TabIndex = 3;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(6, 81);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(70, 13);
     this.labelControl33.TabIndex = 0;
     this.labelControl33.Text = "Hãng sản xuất";
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(5, 55);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(66, 13);
     this.labelControl32.TabIndex = 0;
     this.labelControl32.Text = "Đơn vị hậu kỳ";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(5, 104);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(70, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "Nước sản xuất";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(5, 127);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(86, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "Kênh hạn chế bán";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(92, 101);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(137, 20);
     this.QuocGia.TabIndex = 2;
     this.QuocGia.ValueField = null;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(236, 104);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // KenhHanCheBan
     //
     this.KenhHanCheBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.KenhHanCheBan.DataSource = null;
     this.KenhHanCheBan.DisplayField = null;
     this.KenhHanCheBan.EditValue = "";
     this.KenhHanCheBan.Location = new System.Drawing.Point(92, 123);
     this.KenhHanCheBan.Name = "KenhHanCheBan";
     this.KenhHanCheBan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.KenhHanCheBan.Size = new System.Drawing.Size(241, 20);
     this.KenhHanCheBan.TabIndex = 4;
     this.KenhHanCheBan.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(92, 8);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(241, 20);
     this.DonViCungCap.TabIndex = 0;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(436, 23);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(95, 13);
     this.labelControl17.TabIndex = 0;
     this.labelControl17.Text = "Thời hạn bản quyền";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.BanQuyenHTV);
     this.groupControl1.Controls.Add(this.BanQuyenDIDEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDIDStart);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNStart);
     this.groupControl1.Controls.Add(this.ChanelRight);
     this.groupControl1.Controls.Add(this.labelControl25);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.labelControl28);
     this.groupControl1.Controls.Add(this.labelControl29);
     this.groupControl1.Controls.Add(this.labelControl30);
     this.groupControl1.Controls.Add(this.BanQuyenThuoc);
     this.groupControl1.Controls.Add(this.labelControl31);
     this.groupControl1.Location = new System.Drawing.Point(345, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(289, 145);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "groupControl5";
     //
     // BanQuyenHTV
     //
     this.BanQuyenHTV.EditValue = null;
     this.BanQuyenHTV.Location = new System.Drawing.Point(72, 83);
     this.BanQuyenHTV.Name = "BanQuyenHTV";
     this.BanQuyenHTV.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenHTV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenHTV.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenHTV.Size = new System.Drawing.Size(213, 20);
     this.BanQuyenHTV.TabIndex = 5;
     //
     // BanQuyenDIDEnd
     //
     this.BanQuyenDIDEnd.EditValue = null;
     this.BanQuyenDIDEnd.Location = new System.Drawing.Point(192, 38);
     this.BanQuyenDIDEnd.Name = "BanQuyenDIDEnd";
     this.BanQuyenDIDEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDIDEnd.TabIndex = 2;
     this.BanQuyenDIDEnd.ToolTip = "Bản quyền đối với đối tác trong nước End";
     //
     // BanQuyenDTNNEnd
     //
     this.BanQuyenDTNNEnd.EditValue = null;
     this.BanQuyenDTNNEnd.Location = new System.Drawing.Point(192, 60);
     this.BanQuyenDTNNEnd.Name = "BanQuyenDTNNEnd";
     this.BanQuyenDTNNEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDTNNEnd.TabIndex = 4;
     this.BanQuyenDTNNEnd.ToolTip = "Bản quyền với đối tác nước ngoài end";
     //
     // BanQuyenDIDStart
     //
     this.BanQuyenDIDStart.EditValue = null;
     this.BanQuyenDIDStart.Location = new System.Drawing.Point(71, 38);
     this.BanQuyenDIDStart.Name = "BanQuyenDIDStart";
     this.BanQuyenDIDStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDStart.Size = new System.Drawing.Size(91, 20);
     this.BanQuyenDIDStart.TabIndex = 1;
     this.BanQuyenDIDStart.ToolTip = "Bản quyền đối với đối tác trong nước start";
     //
     // BanQuyenDTNNStart
     //
     this.BanQuyenDTNNStart.EditValue = null;
     this.BanQuyenDTNNStart.Location = new System.Drawing.Point(71, 60);
     this.BanQuyenDTNNStart.Name = "BanQuyenDTNNStart";
     this.BanQuyenDTNNStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNStart.Size = new System.Drawing.Size(90, 20);
     this.BanQuyenDTNNStart.TabIndex = 3;
     //
     // ChanelRight
     //
     this.ChanelRight.DataSource = null;
     this.ChanelRight.DisplayField = null;
     this.ChanelRight.EditValue = "";
     this.ChanelRight.Location = new System.Drawing.Point(72, 106);
     this.ChanelRight.Name = "ChanelRight";
     this.ChanelRight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ChanelRight.Size = new System.Drawing.Size(213, 20);
     this.ChanelRight.TabIndex = 11;
     this.ChanelRight.ValueField = null;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(2, 110);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(64, 13);
     this.labelControl25.TabIndex = 0;
     this.labelControl25.Text = "Channel right";
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(3, 20);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(44, 13);
     this.labelControl26.TabIndex = 0;
     this.labelControl26.Text = "BQ thuộc";
     this.labelControl26.ToolTip = "Bản quyền thuộc";
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(3, 87);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(19, 13);
     this.labelControl27.TabIndex = 0;
     this.labelControl27.Text = "HTV";
     this.labelControl27.ToolTip = "Bản quyền HTV";
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(3, 64);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(54, 13);
     this.labelControl28.TabIndex = 0;
     this.labelControl28.Text = "DTNN Start";
     this.labelControl28.ToolTip = "Bản quyền với đối tác nước ngoài Start";
     //
     // labelControl29
     //
     this.labelControl29.Location = new System.Drawing.Point(3, 42);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(53, 13);
     this.labelControl29.TabIndex = 0;
     this.labelControl29.Text = "DTTN Start";
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(169, 64);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(18, 13);
     this.labelControl30.TabIndex = 0;
     this.labelControl30.Text = "End";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.Location = new System.Drawing.Point(71, 16);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Size = new System.Drawing.Size(217, 20);
     this.BanQuyenThuoc.TabIndex = 0;
     this.BanQuyenThuoc.ZZZWidthFactor = 2F;
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(169, 42);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(18, 13);
     this.labelControl31.TabIndex = 0;
     this.labelControl31.Text = "End";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(6, 182);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(40, 13);
     this.labelControl14.TabIndex = 0;
     this.labelControl14.Text = "Note BQ";
     //
     // DaoDien
     //
     this.DaoDien.DataSource = null;
     this.DaoDien.DisplayField = null;
     this.DaoDien.EditValue = "";
     this.DaoDien.Location = new System.Drawing.Point(93, 96);
     this.DaoDien.Name = "DaoDien";
     this.DaoDien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DaoDien.Size = new System.Drawing.Size(239, 20);
     this.DaoDien.TabIndex = 7;
     this.DaoDien.ValueField = null;
     //
     // groupControlThongTin
     //
     this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTin.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTin.Controls.Add(this.gridControlGhiChu);
     this.groupControlThongTin.Controls.Add(this.labelControl34);
     this.groupControlThongTin.Controls.Add(this.PhanLoaiDrama);
     this.groupControlThongTin.Controls.Add(this.labelControl18);
     this.groupControlThongTin.Controls.Add(this.NguonTrading);
     this.groupControlThongTin.Controls.Add(this.ClassName);
     this.groupControlThongTin.Controls.Add(this.labelControl23);
     this.groupControlThongTin.Controls.Add(this.labelControl13);
     this.groupControlThongTin.Controls.Add(this.Code);
     this.groupControlThongTin.Controls.Add(this.TenGoc);
     this.groupControlThongTin.Controls.Add(this.NoiDung);
     this.groupControlThongTin.Controls.Add(this.Period);
     this.groupControlThongTin.Controls.Add(this.Category);
     this.groupControlThongTin.Controls.Add(this.TrailerGoc);
     this.groupControlThongTin.Controls.Add(this.Photos);
     this.groupControlThongTin.Controls.Add(this.Script);
     this.groupControlThongTin.Controls.Add(this.ckcMoiTrenThiTruong);
     this.groupControlThongTin.Controls.Add(this.ckcTrongKho);
     this.groupControlThongTin.Controls.Add(this.ThanhLy);
     this.groupControlThongTin.Controls.Add(this.groupControl8);
     this.groupControlThongTin.Controls.Add(this.label22);
     this.groupControlThongTin.Controls.Add(this.Ranking);
     this.groupControlThongTin.Controls.Add(this.Rating);
     this.groupControlThongTin.Controls.Add(this.DienVien);
     this.groupControlThongTin.Controls.Add(this.DaoDien);
     this.groupControlThongTin.Controls.Add(this.KyHieuPhanLoai);
     this.groupControlThongTin.Controls.Add(this.labelControl22);
     this.groupControlThongTin.Controls.Add(this.labelControl16);
     this.groupControlThongTin.Controls.Add(this.label21);
     this.groupControlThongTin.Controls.Add(this.labelControl12);
     this.groupControlThongTin.Controls.Add(this.label15);
     this.groupControlThongTin.Controls.Add(this.label5);
     this.groupControlThongTin.Controls.Add(this.label24);
     this.groupControlThongTin.Controls.Add(this.TuKhoaSelect);
     this.groupControlThongTin.Controls.Add(this.DoiTuongKhanGia);
     this.groupControlThongTin.Controls.Add(this.labelControl11);
     this.groupControlThongTin.Controls.Add(this.label14);
     this.groupControlThongTin.Controls.Add(this.NgayAWB);
     this.groupControlThongTin.Controls.Add(this.TomTatNoiDung);
     this.groupControlThongTin.Controls.Add(this.GhiChu);
     this.groupControlThongTin.Controls.Add(this.TuKhoaText);
     this.groupControlThongTin.Controls.Add(this.label20);
     this.groupControlThongTin.Controls.Add(this.labelControl2);
     this.groupControlThongTin.Controls.Add(this.label33);
     this.groupControlThongTin.Controls.Add(this.labelControl5);
     this.groupControlThongTin.Controls.Add(this.label36);
     this.groupControlThongTin.Controls.Add(this.Info);
     this.groupControlThongTin.Controls.Add(this.TinhTrangBang);
     this.groupControlThongTin.Controls.Add(this.TietMuc);
     this.groupControlThongTin.Controls.Add(this.labelControl3);
     this.groupControlThongTin.Controls.Add(this.MaChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.label7);
     this.groupControlThongTin.Controls.Add(this.label42);
     this.groupControlThongTin.Controls.Add(this.labelControl1);
     this.groupControlThongTin.Controls.Add(this.label8);
     this.groupControlThongTin.Location = new System.Drawing.Point(3, 0);
     this.groupControlThongTin.Name = "groupControlThongTin";
     this.groupControlThongTin.Size = new System.Drawing.Size(1000, 410);
     this.groupControlThongTin.TabIndex = 0;
     this.groupControlThongTin.Text = "Thông tin chính";
     //
     // gridControlGhiChu
     //
     this.gridControlGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlGhiChu.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlGhiChu.BackgroundImage")));
     this.gridControlGhiChu.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlGhiChu.Location = new System.Drawing.Point(405, 241);
     this.gridControlGhiChu.MainView = this.gridViewGhiChu;
     this.gridControlGhiChu.Name = "gridControlGhiChu";
     this.gridControlGhiChu.Size = new System.Drawing.Size(588, 152);
     this.gridControlGhiChu.TabIndex = 138;
     this.gridControlGhiChu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGhiChu});
     //
     // gridViewGhiChu
     //
     this.gridViewGhiChu.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewGhiChu.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewGhiChu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLoaiGhiChu,
     this.colNoiDungGhiChu});
     this.gridViewGhiChu.GridControl = this.gridControlGhiChu;
     this.gridViewGhiChu.IndicatorWidth = 40;
     this.gridViewGhiChu.Name = "gridViewGhiChu";
     this.gridViewGhiChu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewGhiChu.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewGhiChu.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewGhiChu.OptionsPrint.UsePrintStyles = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewGhiChu.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewGhiChu.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewGhiChu.OptionsView.ShowGroupedColumns = true;
     this.gridViewGhiChu.OptionsView.ShowGroupPanel = false;
     this.gridViewGhiChu.OptionsView.ShowIndicator = false;
     this.gridViewGhiChu.ViewCaption = "Thông tin bán";
     //
     // colLoaiGhiChu
     //
     this.colLoaiGhiChu.Caption = "Loại ghi chú";
     this.colLoaiGhiChu.Name = "colLoaiGhiChu";
     this.colLoaiGhiChu.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.colLoaiGhiChu.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.colLoaiGhiChu.Visible = true;
     this.colLoaiGhiChu.VisibleIndex = 0;
     this.colLoaiGhiChu.Width = 68;
     //
     // colNoiDungGhiChu
     //
     this.colNoiDungGhiChu.Caption = "Nội dung";
     this.colNoiDungGhiChu.Name = "colNoiDungGhiChu";
     this.colNoiDungGhiChu.Visible = true;
     this.colNoiDungGhiChu.VisibleIndex = 1;
     this.colNoiDungGhiChu.Width = 54;
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(342, 245);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(60, 13);
     this.labelControl34.TabIndex = 139;
     this.labelControl34.Text = "Ghi chú khác";
     //
     // PhanLoaiDrama
     //
     this.PhanLoaiDrama._DataSource = null;
     this.PhanLoaiDrama._GetField = null;
     this.PhanLoaiDrama.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PhanLoaiDrama.Location = new System.Drawing.Point(690, 142);
     this.PhanLoaiDrama.MenuManager = this.barManager1;
     this.PhanLoaiDrama.Name = "PhanLoaiDrama";
     this.PhanLoaiDrama.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.PhanLoaiDrama.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PhanLoaiDrama.Size = new System.Drawing.Size(303, 20);
     this.PhanLoaiDrama.TabIndex = 137;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 2;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 750);
     this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 750);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1049, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 750);
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(639, 144);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(49, 13);
     this.labelControl18.TabIndex = 136;
     this.labelControl18.Text = "P/L Drama";
     this.labelControl18.ToolTip = "Phân loại Drama";
     //
     // NguonTrading
     //
     this.NguonTrading._DataSource = null;
     this.NguonTrading._GetField = null;
     this.NguonTrading.Location = new System.Drawing.Point(93, 191);
     this.NguonTrading.Name = "NguonTrading";
     this.NguonTrading.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
     this.NguonTrading.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NguonTrading.Size = new System.Drawing.Size(239, 20);
     this.NguonTrading.TabIndex = 135;
     //
     // ClassName
     //
     this.ClassName._DataSource = null;
     this.ClassName._GetField = null;
     this.ClassName.Location = new System.Drawing.Point(405, 119);
     this.ClassName.MenuManager = this.barManager1;
     this.ClassName.Name = "ClassName";
     this.ClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, false)});
     this.ClassName.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.ClassName.Size = new System.Drawing.Size(227, 20);
     this.ClassName.TabIndex = 135;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(8, 192);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(70, 13);
     this.labelControl23.TabIndex = 134;
     this.labelControl23.Text = "Nguồn Trading";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 170);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(41, 13);
     this.labelControl13.TabIndex = 134;
     this.labelControl13.Text = "Code CT";
     this.labelControl13.ToolTip = "Mã code kế toán";
     //
     // Code
     //
     this.Code.Location = new System.Drawing.Point(93, 168);
     this.Code.MenuManager = this.barManager1;
     this.Code.Name = "Code";
     this.Code.Size = new System.Drawing.Size(239, 20);
     this.Code.TabIndex = 133;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(405, 73);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(227, 20);
     this.TenGoc.TabIndex = 132;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(93, 73);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(240, 20);
     this.NoiDung.TabIndex = 132;
     this.NoiDung.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // Period
     //
     this.Period._DataSource = null;
     this.Period._GetField = null;
     this.Period.Location = new System.Drawing.Point(405, 142);
     this.Period.Name = "Period";
     this.Period.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, false)});
     this.Period.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Period.Size = new System.Drawing.Size(228, 20);
     this.Period.TabIndex = 6;
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Category.Location = new System.Drawing.Point(690, 72);
     this.Category.MenuManager = this.barManager1;
     this.Category.Name = "Category";
     this.Category.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, false)});
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(303, 20);
     this.Category.TabIndex = 6;
     //
     // TrailerGoc
     //
     this.TrailerGoc.Location = new System.Drawing.Point(260, 215);
     this.TrailerGoc.Name = "TrailerGoc";
     this.TrailerGoc.Properties.Caption = "Trailer gốc";
     this.TrailerGoc.Size = new System.Drawing.Size(72, 19);
     this.TrailerGoc.TabIndex = 16;
     //
     // Photos
     //
     this.Photos.Location = new System.Drawing.Point(174, 215);
     this.Photos.Name = "Photos";
     this.Photos.Properties.Caption = "Photo";
     this.Photos.Size = new System.Drawing.Size(56, 19);
     this.Photos.TabIndex = 15;
     //
     // Script
     //
     this.Script.Location = new System.Drawing.Point(93, 215);
     this.Script.MenuManager = this.barManager1;
     this.Script.Name = "Script";
     this.Script.Properties.Caption = "Script";
     this.Script.Size = new System.Drawing.Size(48, 19);
     this.Script.TabIndex = 14;
     //
     // ckcMoiTrenThiTruong
     //
     this.ckcMoiTrenThiTruong.Location = new System.Drawing.Point(313, 25);
     this.ckcMoiTrenThiTruong.Name = "ckcMoiTrenThiTruong";
     this.ckcMoiTrenThiTruong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcMoiTrenThiTruong.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseFont = true;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseForeColor = true;
     this.ckcMoiTrenThiTruong.Properties.Caption = "Mới trên thị trường";
     this.ckcMoiTrenThiTruong.Size = new System.Drawing.Size(142, 19);
     this.ckcMoiTrenThiTruong.TabIndex = 0;
     //
     // ckcTrongKho
     //
     this.ckcTrongKho.Location = new System.Drawing.Point(204, 24);
     this.ckcTrongKho.Name = "ckcTrongKho";
     this.ckcTrongKho.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcTrongKho.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcTrongKho.Properties.Appearance.Options.UseFont = true;
     this.ckcTrongKho.Properties.Appearance.Options.UseForeColor = true;
     this.ckcTrongKho.Properties.Caption = "Có trong kho";
     this.ckcTrongKho.Size = new System.Drawing.Size(98, 19);
     this.ckcTrongKho.TabIndex = 0;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(91, 24);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 0;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(405, 188);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(227, 46);
     this.groupControl8.TabIndex = 17;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(220, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 2;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(220, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Ranking
     //
     this.Ranking.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ranking.Location = new System.Drawing.Point(690, 96);
     this.Ranking.Name = "Ranking";
     this.Ranking.Size = new System.Drawing.Size(305, 20);
     this.Ranking.TabIndex = 9;
     this.Ranking.ZZZWidthFactor = 2F;
     //
     // DienVien
     //
     this.DienVien.DataSource = null;
     this.DienVien.DisplayField = null;
     this.DienVien.EditValue = "";
     this.DienVien.Location = new System.Drawing.Point(405, 96);
     this.DienVien.Name = "DienVien";
     this.DienVien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DienVien.Size = new System.Drawing.Size(227, 20);
     this.DienVien.TabIndex = 8;
     this.DienVien.ValueField = null;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(344, 122);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(24, 13);
     this.labelControl22.TabIndex = 0;
     this.labelControl22.Text = "Điểm";
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(343, 145);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(30, 13);
     this.labelControl16.TabIndex = 0;
     this.labelControl16.Text = "Period";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(640, 98);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(38, 13);
     this.labelControl12.TabIndex = 0;
     this.labelControl12.Text = "Ranking";
     //
     // label24
     //
     this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label24.Location = new System.Drawing.Point(968, 125);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(690, 216);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(303, 19);
     this.TuKhoaSelect.TabIndex = 18;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(638, 74);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(45, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "Category";
     //
     // NgayAWB
     //
     this.NgayAWB.EditValue = null;
     this.NgayAWB.Location = new System.Drawing.Point(405, 48);
     this.NgayAWB.Name = "NgayAWB";
     this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayAWB.Size = new System.Drawing.Size(227, 20);
     this.NgayAWB.TabIndex = 2;
     //
     // TomTatNoiDung
     //
     this.TomTatNoiDung.Location = new System.Drawing.Point(93, 242);
     this.TomTatNoiDung.Name = "TomTatNoiDung";
     this.TomTatNoiDung.Size = new System.Drawing.Size(241, 80);
     this.TomTatNoiDung.TabIndex = 20;
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(91, 326);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(243, 78);
     this.GhiChu.TabIndex = 21;
     this.GhiChu.EditValueChanged += new System.EventHandler(this.GhiChu_EditValueChanged);
     //
     // TuKhoaText
     //
     this.TuKhoaText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaText.Location = new System.Drawing.Point(690, 167);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(303, 50);
     this.TuKhoaText.TabIndex = 19;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(639, 169);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(343, 100);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(44, 13);
     this.labelControl2.TabIndex = 129;
     this.labelControl2.Text = "Diễn viên";
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(343, 52);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(51, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày AWB";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(8, 244);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 129;
     this.labelControl5.Text = "Tóm tắt nội dung";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(12, 329);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(308, 46);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 1;
     //
     // TinhTrangBang
     //
     this.TinhTrangBang.Location = new System.Drawing.Point(93, 144);
     this.TinhTrangBang.Name = "TinhTrangBang";
     this.TinhTrangBang.Size = new System.Drawing.Size(241, 20);
     this.TinhTrangBang.TabIndex = 13;
     this.TinhTrangBang.ZZZWidthFactor = 2F;
     //
     // TietMuc
     //
     this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TietMuc.Location = new System.Drawing.Point(690, 48);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(303, 20);
     this.TietMuc.TabIndex = 3;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(9, 148);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(39, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "TT băng";
     this.labelControl3.ToolTip = "Tình trạng băng";
     //
     // MaChuongTrinh
     //
     this.MaChuongTrinh.Location = new System.Drawing.Point(93, 48);
     this.MaChuongTrinh.Name = "MaChuongTrinh";
     this.MaChuongTrinh.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.MaChuongTrinh.Properties.Appearance.Options.UseBackColor = true;
     this.MaChuongTrinh.Properties.MaxLength = 100;
     this.MaChuongTrinh.Properties.ReadOnly = true;
     this.MaChuongTrinh.Size = new System.Drawing.Size(209, 20);
     this.MaChuongTrinh.TabIndex = 1;
     this.MaChuongTrinh.TabStop = false;
     this.MaChuongTrinh.ToolTip = "Mã chương trình";
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(342, 76);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 52);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(78, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Mã chương trình";
     //
     // xtraTabControlMain
     //
     this.xtraTabControlMain.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.xtraTabControlMain.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.Blue;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseForeColor = true;
     this.xtraTabControlMain.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControlMain.Location = new System.Drawing.Point(6, 44);
     this.xtraTabControlMain.Name = "xtraTabControlMain";
     this.xtraTabControlMain.SelectedTabPage = this.xtraTabPageChuongTrinh;
     this.xtraTabControlMain.Size = new System.Drawing.Size(1043, 666);
     this.xtraTabControlMain.TabIndex = 130;
     this.xtraTabControlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageChuongTrinh,
     this.xtraTabPageAdd});
     this.xtraTabControlMain.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging);
     this.xtraTabControlMain.CloseButtonClick += new System.EventHandler(this.xtraTabControlMain_CloseButtonClick);
     //
     // xtraTabPageChuongTrinh
     //
     this.xtraTabPageChuongTrinh.AutoScroll = true;
     this.xtraTabPageChuongTrinh.Controls.Add(this.xtraScrollableControl1);
     this.xtraTabPageChuongTrinh.FireScrollEventOnMouseWheel = true;
     this.xtraTabPageChuongTrinh.Name = "xtraTabPageChuongTrinh";
     this.xtraTabPageChuongTrinh.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageChuongTrinh.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageChuongTrinh.Text = "Thông tin chương trình";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTinPhatSong);
     this.xtraScrollableControl1.Controls.Add(this.groupControlNguonGoc);
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTin);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(1036, 637);
     this.xtraScrollableControl1.TabIndex = 130;
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPageAdd.Appearance.Header.Options.UseFont = true;
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageAdd.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageAdd.Text = "+";
     //
     // popupMenuTab
     //
     this.popupMenuTab.Manager = this.barManager1;
     this.popupMenuTab.Name = "popupMenuTab";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Text";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // FrmChuongTrinh
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1049, 750);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.xtraTabControlMain);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmChuongTrinh";
     this.Text = "Chương trình";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).EndInit();
     this.groupControlThongTinPhatSong.ResumeLayout(false);
     this.groupControlThongTinPhatSong.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).EndInit();
     this.groupControlNguonGoc.ResumeLayout(false);
     this.groupControlNguonGoc.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit();
     this.groupControlThongTin.ResumeLayout(false);
     this.groupControlThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).EndInit();
     this.xtraTabControlMain.ResumeLayout(false);
     this.xtraTabPageChuongTrinh.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserEditForm));
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.UserNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.UserNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.IsLockCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.CreateNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.LastModifyNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.RemarkTextEdit = new DevExpress.XtraEditors.MemoEdit();
     this.CreateDateTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.LastModifyDateTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForUserNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForIsLock = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForRemark = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForCreateName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForLastModifyName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForUserName = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForCreateDate = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForLastModifyDate = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.formStyleSelect1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormStyleSelect();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UserNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UserNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsLockCheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateDateTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyDateTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForIsLock)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyDate)).BeginInit();
     this.SuspendLayout();
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.UserWithCreateAndModify);
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.UserNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.UserNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.IsLockCheckEdit);
     this.dataLayoutControl1.Controls.Add(this.CreateNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.LastModifyNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.RemarkTextEdit);
     this.dataLayoutControl1.Controls.Add(this.CreateDateTextEdit);
     this.dataLayoutControl1.Controls.Add(this.LastModifyDateTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControl1.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(637, 278, 470, 497);
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.layoutControlGroup1;
     this.dataLayoutControl1.Size = new System.Drawing.Size(522, 280);
     this.dataLayoutControl1.TabIndex = 0;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(410, 242);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 13;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(306, 242);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 12;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // UserNoTextEdit
     //
     this.UserNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "UserNo", true));
     this.UserNoTextEdit.Location = new System.Drawing.Point(87, 12);
     this.UserNoTextEdit.Name = "UserNoTextEdit";
     this.UserNoTextEdit.Properties.NullValuePrompt = null;
     this.UserNoTextEdit.Size = new System.Drawing.Size(172, 20);
     this.UserNoTextEdit.StyleController = this.dataLayoutControl1;
     this.UserNoTextEdit.TabIndex = 4;
     //
     // UserNameTextEdit
     //
     this.UserNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "UserName", true));
     this.UserNameTextEdit.Location = new System.Drawing.Point(338, 12);
     this.UserNameTextEdit.Name = "UserNameTextEdit";
     this.UserNameTextEdit.Properties.NullValuePrompt = null;
     this.UserNameTextEdit.Size = new System.Drawing.Size(172, 20);
     this.UserNameTextEdit.StyleController = this.dataLayoutControl1;
     this.UserNameTextEdit.TabIndex = 5;
     //
     // IsLockCheckEdit
     //
     this.IsLockCheckEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "IsLock", true));
     this.IsLockCheckEdit.Location = new System.Drawing.Point(87, 36);
     this.IsLockCheckEdit.Name = "IsLockCheckEdit";
     this.IsLockCheckEdit.Properties.Caption = "是否锁定";
     this.IsLockCheckEdit.Size = new System.Drawing.Size(172, 19);
     this.IsLockCheckEdit.StyleController = this.dataLayoutControl1;
     this.IsLockCheckEdit.TabIndex = 6;
     //
     // CreateNameTextEdit
     //
     this.CreateNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "CreateName", true));
     this.CreateNameTextEdit.Location = new System.Drawing.Point(87, 194);
     this.CreateNameTextEdit.Name = "CreateNameTextEdit";
     this.CreateNameTextEdit.Properties.NullValuePrompt = null;
     this.CreateNameTextEdit.Properties.ReadOnly = true;
     this.CreateNameTextEdit.Size = new System.Drawing.Size(172, 20);
     this.CreateNameTextEdit.StyleController = this.dataLayoutControl1;
     this.CreateNameTextEdit.TabIndex = 10;
     //
     // LastModifyNameTextEdit
     //
     this.LastModifyNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "LastModifyName", true));
     this.LastModifyNameTextEdit.Location = new System.Drawing.Point(87, 218);
     this.LastModifyNameTextEdit.Name = "LastModifyNameTextEdit";
     this.LastModifyNameTextEdit.Properties.NullValuePrompt = null;
     this.LastModifyNameTextEdit.Properties.ReadOnly = true;
     this.LastModifyNameTextEdit.Size = new System.Drawing.Size(172, 20);
     this.LastModifyNameTextEdit.StyleController = this.dataLayoutControl1;
     this.LastModifyNameTextEdit.TabIndex = 11;
     //
     // RemarkTextEdit
     //
     this.RemarkTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Remark", true));
     this.RemarkTextEdit.Location = new System.Drawing.Point(87, 59);
     this.RemarkTextEdit.Name = "RemarkTextEdit";
     this.RemarkTextEdit.Properties.NullValuePrompt = null;
     this.RemarkTextEdit.Size = new System.Drawing.Size(423, 131);
     this.RemarkTextEdit.StyleController = this.dataLayoutControl1;
     this.RemarkTextEdit.TabIndex = 7;
     //
     // CreateDateTextEdit
     //
     this.CreateDateTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "CreateDate", true));
     this.CreateDateTextEdit.Location = new System.Drawing.Point(338, 194);
     this.CreateDateTextEdit.Name = "CreateDateTextEdit";
     this.CreateDateTextEdit.Properties.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.CreateDateTextEdit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.CreateDateTextEdit.Properties.EditFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.CreateDateTextEdit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.CreateDateTextEdit.Properties.Mask.EditMask = "yyyy-MM-dd HH:mm:ss";
     this.CreateDateTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.CreateDateTextEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.CreateDateTextEdit.Properties.NullValuePrompt = null;
     this.CreateDateTextEdit.Properties.ReadOnly = true;
     this.CreateDateTextEdit.Size = new System.Drawing.Size(172, 20);
     this.CreateDateTextEdit.StyleController = this.dataLayoutControl1;
     this.CreateDateTextEdit.TabIndex = 8;
     //
     // LastModifyDateTextEdit
     //
     this.LastModifyDateTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "LastModifyDate", true));
     this.LastModifyDateTextEdit.Location = new System.Drawing.Point(338, 218);
     this.LastModifyDateTextEdit.Name = "LastModifyDateTextEdit";
     this.LastModifyDateTextEdit.Properties.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.LastModifyDateTextEdit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.LastModifyDateTextEdit.Properties.EditFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.LastModifyDateTextEdit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.LastModifyDateTextEdit.Properties.Mask.EditMask = "yyyy-MM-dd HH:mm:ss";
     this.LastModifyDateTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.LastModifyDateTextEdit.Properties.NullValuePrompt = null;
     this.LastModifyDateTextEdit.Properties.ReadOnly = true;
     this.LastModifyDateTextEdit.Size = new System.Drawing.Size(172, 20);
     this.LastModifyDateTextEdit.StyleController = this.dataLayoutControl1;
     this.LastModifyDateTextEdit.TabIndex = 9;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(522, 280);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForUserNo,
     this.ItemForIsLock,
     this.ItemForRemark,
     this.ItemForCreateName,
     this.ItemForLastModifyName,
     this.ItemForUserName,
     this.emptySpaceItem1,
     this.emptySpaceItem2,
     this.layoutControlItem2,
     this.layoutControlItem1,
     this.ItemForCreateDate,
     this.ItemForLastModifyDate});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(514, 272);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForUserNo
     //
     this.ItemForUserNo.Control = this.UserNoTextEdit;
     this.ItemForUserNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForUserNo.Name = "ItemForUserNo";
     this.ItemForUserNo.Size = new System.Drawing.Size(251, 24);
     this.ItemForUserNo.Text = "用户编号";
     this.ItemForUserNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForIsLock
     //
     this.ItemForIsLock.Control = this.IsLockCheckEdit;
     this.ItemForIsLock.Location = new System.Drawing.Point(0, 24);
     this.ItemForIsLock.Name = "ItemForIsLock";
     this.ItemForIsLock.Size = new System.Drawing.Size(251, 23);
     this.ItemForIsLock.Text = " ";
     this.ItemForIsLock.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForRemark
     //
     this.ItemForRemark.Control = this.RemarkTextEdit;
     this.ItemForRemark.Location = new System.Drawing.Point(0, 47);
     this.ItemForRemark.Name = "ItemForRemark";
     this.ItemForRemark.Size = new System.Drawing.Size(502, 135);
     this.ItemForRemark.Text = "备注";
     this.ItemForRemark.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForCreateName
     //
     this.ItemForCreateName.Control = this.CreateNameTextEdit;
     this.ItemForCreateName.Location = new System.Drawing.Point(0, 182);
     this.ItemForCreateName.Name = "ItemForCreateName";
     this.ItemForCreateName.Size = new System.Drawing.Size(251, 24);
     this.ItemForCreateName.Text = "创建人";
     this.ItemForCreateName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForLastModifyName
     //
     this.ItemForLastModifyName.Control = this.LastModifyNameTextEdit;
     this.ItemForLastModifyName.Location = new System.Drawing.Point(0, 206);
     this.ItemForLastModifyName.Name = "ItemForLastModifyName";
     this.ItemForLastModifyName.Size = new System.Drawing.Size(251, 24);
     this.ItemForLastModifyName.Text = "最后修改人";
     this.ItemForLastModifyName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForUserName
     //
     this.ItemForUserName.Control = this.UserNameTextEdit;
     this.ItemForUserName.Location = new System.Drawing.Point(251, 0);
     this.ItemForUserName.Name = "ItemForUserName";
     this.ItemForUserName.Size = new System.Drawing.Size(251, 24);
     this.ItemForUserName.Text = "用户名";
     this.ItemForUserName.TextSize = new System.Drawing.Size(72, 13);
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 230);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(294, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.Location = new System.Drawing.Point(251, 24);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(251, 23);
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnClose;
     this.layoutControlItem2.Location = new System.Drawing.Point(398, 230);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnSave;
     this.layoutControlItem1.Location = new System.Drawing.Point(294, 230);
     this.layoutControlItem1.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // ItemForCreateDate
     //
     this.ItemForCreateDate.Control = this.CreateDateTextEdit;
     this.ItemForCreateDate.Location = new System.Drawing.Point(251, 182);
     this.ItemForCreateDate.Name = "ItemForCreateDate";
     this.ItemForCreateDate.Size = new System.Drawing.Size(251, 24);
     this.ItemForCreateDate.Text = "创建日期";
     this.ItemForCreateDate.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForLastModifyDate
     //
     this.ItemForLastModifyDate.Control = this.LastModifyDateTextEdit;
     this.ItemForLastModifyDate.Location = new System.Drawing.Point(251, 206);
     this.ItemForLastModifyDate.Name = "ItemForLastModifyDate";
     this.ItemForLastModifyDate.Size = new System.Drawing.Size(251, 24);
     this.ItemForLastModifyDate.Text = "最后修改日期";
     this.ItemForLastModifyDate.TextSize = new System.Drawing.Size(72, 13);
     //
     // formStyleSelect1
     //
     this.formStyleSelect1.Form = this;
     //
     // UserEditForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(522, 280);
     this.Controls.Add(this.dataLayoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "UserEditForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "用户信息";
     this.Load += new System.EventHandler(this.UserEditForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.UserNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UserNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsLockCheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateDateTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyDateTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForIsLock)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyDate)).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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditServerForm));
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.displayNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.urlTextBox = new DevExpress.XtraEditors.TextEdit();
     this.displayNameLabel = new DevExpress.XtraEditors.LabelControl();
     this.urlLabel = new DevExpress.XtraEditors.LabelControl();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.validateButton = new DevExpress.XtraEditors.SimpleButton();
     this.cancelButton = new DevExpress.XtraEditors.SimpleButton();
     this.authenticationCheckBox = new DevExpress.XtraEditors.CheckEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.usernameTextBox = new DevExpress.XtraEditors.TextEdit();
     this.passwordTextBox = new DevExpress.XtraEditors.TextEdit();
     this.passwordLabel = new DevExpress.XtraEditors.LabelControl();
     this.usernameLabel = new DevExpress.XtraEditors.LabelControl();
     this.ignoreUntrustedCertificateCheckBox = new DevExpress.XtraEditors.CheckEdit();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.urlTextBox.Properties)).BeginInit();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.authenticationCheckBox.Properties)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.usernameTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.passwordTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ignoreUntrustedCertificateCheckBox.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
     this.tableLayoutPanel1.Controls.Add(this.displayNameTextEdit, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.urlTextBox, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.displayNameLabel, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.urlLabel, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.authenticationCheckBox, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.ignoreUntrustedCertificateCheckBox, 0, 5);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     //
     // displayNameTextEdit
     //
     resources.ApplyResources(this.displayNameTextEdit, "displayNameTextEdit");
     this.displayNameTextEdit.Name = "displayNameTextEdit";
     //
     // urlTextBox
     //
     resources.ApplyResources(this.urlTextBox, "urlTextBox");
     this.urlTextBox.Name = "urlTextBox";
     this.urlTextBox.Leave += new System.EventHandler(this.urlTextBox_Leave);
     //
     // displayNameLabel
     //
     this.displayNameLabel.Appearance.Options.UseTextOptions = true;
     this.displayNameLabel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     resources.ApplyResources(this.displayNameLabel, "displayNameLabel");
     this.displayNameLabel.Name = "displayNameLabel";
     //
     // urlLabel
     //
     this.urlLabel.Appearance.Options.UseTextOptions = true;
     this.urlLabel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     resources.ApplyResources(this.urlLabel, "urlLabel");
     this.urlLabel.Name = "urlLabel";
     //
     // tableLayoutPanel2
     //
     resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
     this.tableLayoutPanel1.SetColumnSpan(this.tableLayoutPanel2, 2);
     this.tableLayoutPanel2.Controls.Add(this.validateButton, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.cancelButton, 2, 0);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     //
     // validateButton
     //
     this.validateButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     resources.ApplyResources(this.validateButton, "validateButton");
     this.validateButton.Name = "validateButton";
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this.cancelButton, "cancelButton");
     this.cancelButton.Name = "cancelButton";
     //
     // authenticationCheckBox
     //
     this.tableLayoutPanel1.SetColumnSpan(this.authenticationCheckBox, 2);
     resources.ApplyResources(this.authenticationCheckBox, "authenticationCheckBox");
     this.authenticationCheckBox.Name = "authenticationCheckBox";
     this.authenticationCheckBox.Properties.AutoWidth = true;
     this.authenticationCheckBox.Properties.Caption = resources.GetString("authenticationCheckBox.Properties.Caption");
     this.authenticationCheckBox.CheckStateChanged += new System.EventHandler(this.authenticationCheckBox_CheckStateChanged);
     //
     // tableLayoutPanel3
     //
     resources.ApplyResources(this.tableLayoutPanel3, "tableLayoutPanel3");
     this.tableLayoutPanel1.SetColumnSpan(this.tableLayoutPanel3, 2);
     this.tableLayoutPanel3.Controls.Add(this.usernameTextBox, 2, 0);
     this.tableLayoutPanel3.Controls.Add(this.passwordTextBox, 2, 1);
     this.tableLayoutPanel3.Controls.Add(this.passwordLabel, 1, 1);
     this.tableLayoutPanel3.Controls.Add(this.usernameLabel, 1, 0);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     //
     // usernameTextBox
     //
     resources.ApplyResources(this.usernameTextBox, "usernameTextBox");
     this.usernameTextBox.Name = "usernameTextBox";
     //
     // passwordTextBox
     //
     resources.ApplyResources(this.passwordTextBox, "passwordTextBox");
     this.passwordTextBox.Name = "passwordTextBox";
     this.passwordTextBox.Properties.PasswordChar = '*';
     //
     // passwordLabel
     //
     this.passwordLabel.Appearance.Options.UseTextOptions = true;
     this.passwordLabel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     resources.ApplyResources(this.passwordLabel, "passwordLabel");
     this.passwordLabel.Name = "passwordLabel";
     //
     // usernameLabel
     //
     this.usernameLabel.Appearance.Options.UseTextOptions = true;
     this.usernameLabel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     resources.ApplyResources(this.usernameLabel, "usernameLabel");
     this.usernameLabel.Name = "usernameLabel";
     //
     // ignoreUntrustedCertificateCheckBox
     //
     this.tableLayoutPanel1.SetColumnSpan(this.ignoreUntrustedCertificateCheckBox, 2);
     resources.ApplyResources(this.ignoreUntrustedCertificateCheckBox, "ignoreUntrustedCertificateCheckBox");
     this.ignoreUntrustedCertificateCheckBox.Name = "ignoreUntrustedCertificateCheckBox";
     this.ignoreUntrustedCertificateCheckBox.Properties.AutoWidth = true;
     this.ignoreUntrustedCertificateCheckBox.Properties.Caption = resources.GetString("ignoreUntrustedCertificateCheckBox.Properties.Caption");
     //
     // EditServerForm
     //
     this.AcceptButton = this.validateButton;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.cancelButton;
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "EditServerForm";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.EditServerForm_FormClosing);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.urlTextBox.Properties)).EndInit();
     this.tableLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.authenticationCheckBox.Properties)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.usernameTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.passwordTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ignoreUntrustedCertificateCheckBox.Properties)).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.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
     this.checkEditAll = new DevExpress.XtraEditors.CheckEdit();
     this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit_database = new DevExpress.XtraEditors.TextEdit();
     this.textEdit_vacantroom = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit_database = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_vacantroom = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_payment = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_billingdate = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_endofbook = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_checkout = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_checkin = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_email = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.textEdit_email = new DevExpress.XtraEditors.TextEdit();
     this.labelControlEmail = new DevExpress.XtraEditors.LabelControl();
     this.labelControlSampleEmail = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
     this.groupControlWarning.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditAll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
     this.panelControlSetting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_database.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_vacantroom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_database.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_vacantroom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_payment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_billingdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_endofbook.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkout.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_email.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_email.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControlWarning
     //
     this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
     this.groupControlWarning.Controls.Add(this.checkEditAll);
     this.groupControlWarning.Controls.Add(this.panelControlSetting);
     this.groupControlWarning.Location = new System.Drawing.Point(13, 13);
     this.groupControlWarning.Name = "groupControlWarning";
     this.groupControlWarning.Size = new System.Drawing.Size(599, 244);
     this.groupControlWarning.TabIndex = 342;
     this.groupControlWarning.Text = "รายการแจ้งเตือน";
     //
     // checkEditAll
     //
     this.checkEditAll.Location = new System.Drawing.Point(15, 25);
     this.checkEditAll.Name = "checkEditAll";
     this.checkEditAll.Properties.Caption = "เลือกทั้งหมด";
     this.checkEditAll.Size = new System.Drawing.Size(152, 19);
     this.checkEditAll.TabIndex = 1;
     //
     // panelControlSetting
     //
     this.panelControlSetting.Controls.Add(this.labelControl2);
     this.panelControlSetting.Controls.Add(this.labelControl1);
     this.panelControlSetting.Controls.Add(this.textEdit_database);
     this.panelControlSetting.Controls.Add(this.textEdit_vacantroom);
     this.panelControlSetting.Controls.Add(this.checkEdit_database);
     this.panelControlSetting.Controls.Add(this.checkEdit_vacantroom);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_payment);
     this.panelControlSetting.Controls.Add(this.checkEdit_billingdate);
     this.panelControlSetting.Controls.Add(this.checkEdit_endofbook);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkout);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkin);
     this.panelControlSetting.Location = new System.Drawing.Point(17, 50);
     this.panelControlSetting.Name = "panelControlSetting";
     this.panelControlSetting.Size = new System.Drawing.Size(564, 181);
     this.panelControlSetting.TabIndex = 0;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(434, 158);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(13, 13);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "GB";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(434, 131);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(65, 13);
     this.labelControl1.TabIndex = 3;
     this.labelControl1.Text = "(A)  (0.2-1.0)";
     //
     // textEdit_database
     //
     this.textEdit_database.EditValue = "1.000";
     this.textEdit_database.Location = new System.Drawing.Point(368, 154);
     this.textEdit_database.Name = "textEdit_database";
     this.textEdit_database.Properties.Mask.EditMask = "([1]){1}\\.([0]){2}|0\\.([0-9]){1}([2-9]){1}";
     this.textEdit_database.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit_database.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit_database.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEdit_database.Size = new System.Drawing.Size(60, 20);
     this.textEdit_database.TabIndex = 2;
     //
     // textEdit_vacantroom
     //
     this.textEdit_vacantroom.EditValue = "0.2";
     this.textEdit_vacantroom.Location = new System.Drawing.Point(368, 128);
     this.textEdit_vacantroom.Name = "textEdit_vacantroom";
     this.textEdit_vacantroom.Properties.Mask.BeepOnError = true;
     this.textEdit_vacantroom.Properties.Mask.EditMask = "([1]){1}\\.([0]){2}|0\\.([0-9]){1}([2-9]){1}";
     this.textEdit_vacantroom.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit_vacantroom.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit_vacantroom.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEdit_vacantroom.Size = new System.Drawing.Size(60, 20);
     this.textEdit_vacantroom.TabIndex = 2;
     //
     // checkEdit_database
     //
     this.checkEdit_database.Location = new System.Drawing.Point(17, 155);
     this.checkEdit_database.Name = "checkEdit_database";
     this.checkEdit_database.Properties.Caption = "เมื่อขนาดของฐานโฟลเดอร์ฐานข้อมูลสำรองมีขนาดมากกว่า";
     this.checkEdit_database.Size = new System.Drawing.Size(340, 19);
     this.checkEdit_database.TabIndex = 1;
     //
     // checkEdit_vacantroom
     //
     this.checkEdit_vacantroom.Location = new System.Drawing.Point(17, 130);
     this.checkEdit_vacantroom.Name = "checkEdit_vacantroom";
     this.checkEdit_vacantroom.Properties.Caption = "กรณีห้องว่างแต่มีกระแสไฟฟ้าไหลตั้งแต่";
     this.checkEdit_vacantroom.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_vacantroom.TabIndex = 1;
     //
     // checkEdit_overdue_payment
     //
     this.checkEdit_overdue_payment.Location = new System.Drawing.Point(17, 105);
     this.checkEdit_overdue_payment.Name = "checkEdit_overdue_payment";
     this.checkEdit_overdue_payment.Properties.Caption = "เมื่อเกินกำหนดชำระเงิน";
     this.checkEdit_overdue_payment.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_payment.TabIndex = 1;
     //
     // checkEdit_billingdate
     //
     this.checkEdit_billingdate.Location = new System.Drawing.Point(17, 80);
     this.checkEdit_billingdate.Name = "checkEdit_billingdate";
     this.checkEdit_billingdate.Properties.Caption = "เมื่อถึงกำหนดวันตัดรอบบิล";
     this.checkEdit_billingdate.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_billingdate.TabIndex = 1;
     //
     // checkEdit_endofbook
     //
     this.checkEdit_endofbook.Location = new System.Drawing.Point(17, 55);
     this.checkEdit_endofbook.Name = "checkEdit_endofbook";
     this.checkEdit_endofbook.Properties.Caption = "เมื่อเกินวันที่สิ้นสุดการจอง";
     this.checkEdit_endofbook.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_endofbook.TabIndex = 1;
     //
     // checkEdit_overdue_checkout
     //
     this.checkEdit_overdue_checkout.Location = new System.Drawing.Point(17, 30);
     this.checkEdit_overdue_checkout.Name = "checkEdit_overdue_checkout";
     this.checkEdit_overdue_checkout.Properties.Caption = "เมื่อเกินกำหนดวันที่ย้ายออก";
     this.checkEdit_overdue_checkout.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_checkout.TabIndex = 1;
     //
     // checkEdit_overdue_checkin
     //
     this.checkEdit_overdue_checkin.Location = new System.Drawing.Point(17, 5);
     this.checkEdit_overdue_checkin.Name = "checkEdit_overdue_checkin";
     this.checkEdit_overdue_checkin.Properties.Caption = "เมื่อเกินกำหนดวันที่ย้ายเข้า";
     this.checkEdit_overdue_checkin.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_checkin.TabIndex = 1;
     //
     // checkEdit_email
     //
     this.checkEdit_email.Location = new System.Drawing.Point(15, 5);
     this.checkEdit_email.Name = "checkEdit_email";
     this.checkEdit_email.Properties.Caption = "ต้องการส่งรายการแจ้งเตือนทางอีเมล์";
     this.checkEdit_email.Size = new System.Drawing.Size(277, 19);
     this.checkEdit_email.TabIndex = 4;
     this.checkEdit_email.Visible = false;
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.textEdit_email);
     this.panelControl3.Controls.Add(this.labelControlEmail);
     this.panelControl3.Controls.Add(this.labelControlSampleEmail);
     this.panelControl3.Controls.Add(this.checkEdit_email);
     this.panelControl3.Controls.Add(this.panelControl1);
     this.panelControl3.Location = new System.Drawing.Point(13, 264);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(599, 158);
     this.panelControl3.TabIndex = 343;
     //
     // textEdit_email
     //
     this.textEdit_email.EditValue = "";
     this.textEdit_email.Location = new System.Drawing.Point(99, 49);
     this.textEdit_email.Name = "textEdit_email";
     this.textEdit_email.Size = new System.Drawing.Size(366, 20);
     this.textEdit_email.TabIndex = 344;
     this.textEdit_email.Visible = false;
     //
     // labelControlEmail
     //
     this.labelControlEmail.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlEmail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlEmail.Location = new System.Drawing.Point(42, 52);
     this.labelControlEmail.Name = "labelControlEmail";
     this.labelControlEmail.Size = new System.Drawing.Size(46, 13);
     this.labelControlEmail.TabIndex = 343;
     this.labelControlEmail.Text = "อีเมล์ :";
     this.labelControlEmail.Visible = false;
     //
     // labelControlSampleEmail
     //
     this.labelControlSampleEmail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlSampleEmail.Location = new System.Drawing.Point(99, 30);
     this.labelControlSampleEmail.Name = "labelControlSampleEmail";
     this.labelControlSampleEmail.Size = new System.Drawing.Size(275, 13);
     this.labelControlSampleEmail.TabIndex = 343;
     this.labelControlSampleEmail.Text = "(ตัวอย่าง [email protected], [email protected])";
     this.labelControlSampleEmail.Visible = false;
     //
     // panelControl1
     //
     this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Location = new System.Drawing.Point(150, 75);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(315, 69);
     this.panelControl1.TabIndex = 342;
     //
     // bttSave
     //
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(82, 7);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 330;
     this.bttSave.Text = "บันทึก";
     //
     // bttCancel
     //
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(163, 7);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 329;
     this.bttCancel.Text = "ยกเลิก";
     //
     // PopupWarningSetting
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(624, 434);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.groupControlWarning);
     this.Name = "PopupWarningSetting";
     this.Text = "ตั้งค่ารายการแจ้งเตือน";
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).EndInit();
     this.groupControlWarning.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditAll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).EndInit();
     this.panelControlSetting.ResumeLayout(false);
     this.panelControlSetting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_database.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_vacantroom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_database.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_vacantroom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_payment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_billingdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_endofbook.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkout.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_email.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_email.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.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(ProgramPermission));
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlAuthorize = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.panelControl25 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup8 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu8 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup8 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl19 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditHelp = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl26 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup9 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu9 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnBoxCheck = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup9 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl27 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditRegistration = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl24 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup7 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup7 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl18 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditDeviceSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl23 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup6 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup6 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl17 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditDatabaseSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl22 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup5 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup5 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl15 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditProgramSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl21 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup4 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup4 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl12 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl13 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl14 = new DevExpress.XtraEditors.PanelControl();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditBasicSetting = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup3 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup3 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditReportManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup2 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnParent2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditMeterManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup1 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnParent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditRoomManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl20 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlPermissionBar = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuNameBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadWriteBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOnlyBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl16 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.textEditGroupID = new DevExpress.XtraEditors.TextEdit();
     this.textEditGroupName = new DevExpress.XtraEditors.TextEdit();
     this.labelGroupName = new DevExpress.XtraEditors.LabelControl();
     this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlAuthorizeList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGroupPermission = new DevExpress.XtraGrid.GridControl();
     this.gridViewGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnGroupId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmountUser = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorize)).BeginInit();
     this.groupControlAuthorize.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).BeginInit();
     this.panelControl25.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).BeginInit();
     this.panelControl19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditHelp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).BeginInit();
     this.panelControl26.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl27)).BeginInit();
     this.panelControl27.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRegistration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).BeginInit();
     this.panelControl24.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).BeginInit();
     this.panelControl18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDeviceSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).BeginInit();
     this.panelControl23.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).BeginInit();
     this.panelControl17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDatabaseSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).BeginInit();
     this.panelControl22.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).BeginInit();
     this.panelControl15.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditProgramSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).BeginInit();
     this.panelControl21.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
     this.panelControl11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).BeginInit();
     this.panelControl12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).BeginInit();
     this.panelControl13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).BeginInit();
     this.panelControl14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
     this.panelControl10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditBasicSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
     this.panelControl9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditReportManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditMeterManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRoomManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).BeginInit();
     this.panelControl20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPermissionBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).BeginInit();
     this.panelControl16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
     this.panelControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorizeList)).BeginInit();
     this.groupControlAuthorizeList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGroupPermission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlAuthorize);
     this.panelControl3.Controls.Add(this.panelControl8);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(559, 609);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlAuthorize
     //
     this.groupControlAuthorize.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAuthorize.AppearanceCaption.Options.UseFont = true;
     this.groupControlAuthorize.Controls.Add(this.xtraScrollableControl1);
     this.groupControlAuthorize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAuthorize.Location = new System.Drawing.Point(0, 0);
     this.groupControlAuthorize.Name = "groupControlAuthorize";
     this.groupControlAuthorize.Size = new System.Drawing.Size(559, 543);
     this.groupControlAuthorize.TabIndex = 3;
     this.groupControlAuthorize.Text = "สิทธิ์การใช้งาน";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.xtraScrollableControl1.Appearance.Options.UseBackColor = true;
     this.xtraScrollableControl1.Controls.Add(this.panelControl25);
     this.xtraScrollableControl1.Controls.Add(this.panelControl19);
     this.xtraScrollableControl1.Controls.Add(this.panelControl26);
     this.xtraScrollableControl1.Controls.Add(this.panelControl27);
     this.xtraScrollableControl1.Controls.Add(this.panelControl24);
     this.xtraScrollableControl1.Controls.Add(this.panelControl18);
     this.xtraScrollableControl1.Controls.Add(this.panelControl23);
     this.xtraScrollableControl1.Controls.Add(this.panelControl17);
     this.xtraScrollableControl1.Controls.Add(this.panelControl22);
     this.xtraScrollableControl1.Controls.Add(this.panelControl15);
     this.xtraScrollableControl1.Controls.Add(this.panelControl21);
     this.xtraScrollableControl1.Controls.Add(this.panelControl11);
     this.xtraScrollableControl1.Controls.Add(this.panelControl7);
     this.xtraScrollableControl1.Controls.Add(this.panelControl9);
     this.xtraScrollableControl1.Controls.Add(this.panelControl5);
     this.xtraScrollableControl1.Controls.Add(this.panelControl6);
     this.xtraScrollableControl1.Controls.Add(this.panelControl1);
     this.xtraScrollableControl1.Controls.Add(this.panelControl4);
     this.xtraScrollableControl1.Controls.Add(this.panelControl20);
     this.xtraScrollableControl1.Controls.Add(this.panelControl16);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(555, 519);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // panelControl25
     //
     this.panelControl25.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl25.Controls.Add(this.gridControlMenuGroup8);
     this.panelControl25.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl25.Location = new System.Drawing.Point(0, 1519);
     this.panelControl25.Name = "panelControl25";
     this.panelControl25.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl25.Size = new System.Drawing.Size(538, 104);
     this.panelControl25.TabIndex = 26;
     //
     // gridControlMenuGroup8
     //
     this.gridControlMenuGroup8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup8.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup8.MainView = this.gridViewMenu8;
     this.gridControlMenuGroup8.Name = "gridControlMenuGroup8";
     this.gridControlMenuGroup8.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup8});
     this.gridControlMenuGroup8.Size = new System.Drawing.Size(524, 90);
     this.gridControlMenuGroup8.TabIndex = 7;
     this.gridControlMenuGroup8.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu8});
     //
     // gridViewMenu8
     //
     this.gridViewMenu8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn22,
     this.gridColumnMenuName8,
     this.gridColumn24,
     this.gridColumn25});
     this.gridViewMenu8.GridControl = this.gridControlMenuGroup8;
     this.gridViewMenu8.Name = "gridViewMenu8";
     this.gridViewMenu8.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu8.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu8.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu8.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu8.OptionsView.ShowVertLines = false;
     this.gridViewMenu8.PaintStyleName = "Skin";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = " ";
     this.gridColumn22.FieldName = "permission_flag_check";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 0;
     this.gridColumn22.Width = 20;
     //
     // gridColumnMenuName8
     //
     this.gridColumnMenuName8.Caption = " ";
     this.gridColumnMenuName8.Name = "gridColumnMenuName8";
     this.gridColumnMenuName8.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName8.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName8.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName8.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName8.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName8.Visible = true;
     this.gridColumnMenuName8.VisibleIndex = 1;
     this.gridColumnMenuName8.Width = 317;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = " ";
     this.gridColumn24.ColumnEdit = this.repositoryItemRadioGroup8;
     this.gridColumn24.FieldName = "permission_flag_access";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 2;
     this.gridColumn24.Width = 151;
     //
     // repositoryItemRadioGroup8
     //
     this.repositoryItemRadioGroup8.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup8.Name = "repositoryItemRadioGroup8";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "gridColumn1";
     this.gridColumn25.FieldName = "menu_parent";
     this.gridColumn25.Name = "gridColumn25";
     //
     // panelControl19
     //
     this.panelControl19.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl19.Controls.Add(this.checkEditHelp);
     this.panelControl19.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl19.Location = new System.Drawing.Point(0, 1494);
     this.panelControl19.Name = "panelControl19";
     this.panelControl19.Size = new System.Drawing.Size(538, 25);
     this.panelControl19.TabIndex = 19;
     //
     // checkEditHelp
     //
     this.checkEditHelp.Location = new System.Drawing.Point(5, 2);
     this.checkEditHelp.Name = "checkEditHelp";
     this.checkEditHelp.Properties.Caption = "ช่วยเหลือ";
     this.checkEditHelp.Size = new System.Drawing.Size(231, 19);
     this.checkEditHelp.TabIndex = 1;
     this.checkEditHelp.CheckedChanged += new System.EventHandler(this.checkEditHelp_CheckedChanged);
     //
     // panelControl26
     //
     this.panelControl26.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl26.Controls.Add(this.gridControlMenuGroup9);
     this.panelControl26.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl26.Location = new System.Drawing.Point(0, 1390);
     this.panelControl26.Name = "panelControl26";
     this.panelControl26.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl26.Size = new System.Drawing.Size(538, 104);
     this.panelControl26.TabIndex = 28;
     //
     // gridControlMenuGroup9
     //
     this.gridControlMenuGroup9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup9.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup9.MainView = this.gridViewMenu9;
     this.gridControlMenuGroup9.Name = "gridControlMenuGroup9";
     this.gridControlMenuGroup9.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup9});
     this.gridControlMenuGroup9.Size = new System.Drawing.Size(524, 90);
     this.gridControlMenuGroup9.TabIndex = 7;
     this.gridControlMenuGroup9.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu9});
     //
     // gridViewMenu9
     //
     this.gridViewMenu9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnBoxCheck,
     this.gridColumnMenuName9,
     this.gridColumn10,
     this.gridColumn11});
     this.gridViewMenu9.GridControl = this.gridControlMenuGroup9;
     this.gridViewMenu9.Name = "gridViewMenu9";
     this.gridViewMenu9.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu9.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu9.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu9.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu9.OptionsView.ShowVertLines = false;
     this.gridViewMenu9.PaintStyleName = "Skin";
     //
     // gridColumnBoxCheck
     //
     this.gridColumnBoxCheck.Caption = " ";
     this.gridColumnBoxCheck.FieldName = "permission_flag_check";
     this.gridColumnBoxCheck.Name = "gridColumnBoxCheck";
     this.gridColumnBoxCheck.OptionsColumn.AllowSize = false;
     this.gridColumnBoxCheck.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnBoxCheck.Visible = true;
     this.gridColumnBoxCheck.VisibleIndex = 0;
     this.gridColumnBoxCheck.Width = 20;
     //
     // gridColumnMenuName9
     //
     this.gridColumnMenuName9.Caption = " ";
     this.gridColumnMenuName9.Name = "gridColumnMenuName9";
     this.gridColumnMenuName9.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName9.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName9.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName9.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName9.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName9.Visible = true;
     this.gridColumnMenuName9.VisibleIndex = 1;
     this.gridColumnMenuName9.Width = 317;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = " ";
     this.gridColumn10.ColumnEdit = this.repositoryItemRadioGroup9;
     this.gridColumn10.FieldName = "permission_flag_access";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 151;
     //
     // repositoryItemRadioGroup9
     //
     this.repositoryItemRadioGroup9.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup9.Name = "repositoryItemRadioGroup9";
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "gridColumn1";
     this.gridColumn11.FieldName = "menu_parent";
     this.gridColumn11.Name = "gridColumn11";
     //
     // panelControl27
     //
     this.panelControl27.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl27.Controls.Add(this.checkEditRegistration);
     this.panelControl27.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl27.Location = new System.Drawing.Point(0, 1365);
     this.panelControl27.Name = "panelControl27";
     this.panelControl27.Size = new System.Drawing.Size(538, 25);
     this.panelControl27.TabIndex = 27;
     //
     // checkEditRegistration
     //
     this.checkEditRegistration.Location = new System.Drawing.Point(5, 2);
     this.checkEditRegistration.Name = "checkEditRegistration";
     this.checkEditRegistration.Properties.Caption = "ลงทะเบียน";
     this.checkEditRegistration.Size = new System.Drawing.Size(231, 19);
     this.checkEditRegistration.TabIndex = 1;
     //
     // panelControl24
     //
     this.panelControl24.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl24.Controls.Add(this.gridControlMenuGroup7);
     this.panelControl24.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl24.Location = new System.Drawing.Point(0, 1255);
     this.panelControl24.Name = "panelControl24";
     this.panelControl24.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl24.Size = new System.Drawing.Size(538, 110);
     this.panelControl24.TabIndex = 25;
     //
     // gridControlMenuGroup7
     //
     this.gridControlMenuGroup7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup7.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup7.MainView = this.gridViewMenu7;
     this.gridControlMenuGroup7.Name = "gridControlMenuGroup7";
     this.gridControlMenuGroup7.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup7});
     this.gridControlMenuGroup7.Size = new System.Drawing.Size(524, 96);
     this.gridControlMenuGroup7.TabIndex = 7;
     this.gridControlMenuGroup7.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu7});
     //
     // gridViewMenu7
     //
     this.gridViewMenu7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumnMenuName7,
     this.gridColumn20,
     this.gridColumn21});
     this.gridViewMenu7.GridControl = this.gridControlMenuGroup7;
     this.gridViewMenu7.Name = "gridViewMenu7";
     this.gridViewMenu7.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu7.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu7.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu7.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu7.OptionsView.ShowVertLines = false;
     this.gridViewMenu7.PaintStyleName = "Skin";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = " ";
     this.gridColumn18.FieldName = "permission_flag_check";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowSize = false;
     this.gridColumn18.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 20;
     //
     // gridColumnMenuName7
     //
     this.gridColumnMenuName7.Caption = " ";
     this.gridColumnMenuName7.Name = "gridColumnMenuName7";
     this.gridColumnMenuName7.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName7.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName7.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName7.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName7.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName7.Visible = true;
     this.gridColumnMenuName7.VisibleIndex = 1;
     this.gridColumnMenuName7.Width = 317;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = " ";
     this.gridColumn20.ColumnEdit = this.repositoryItemRadioGroup7;
     this.gridColumn20.FieldName = "permission_flag_access";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     this.gridColumn20.Width = 151;
     //
     // repositoryItemRadioGroup7
     //
     this.repositoryItemRadioGroup7.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup7.Name = "repositoryItemRadioGroup7";
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "gridColumn1";
     this.gridColumn21.FieldName = "menu_parent";
     this.gridColumn21.Name = "gridColumn21";
     //
     // panelControl18
     //
     this.panelControl18.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl18.Controls.Add(this.checkEditDeviceSetting);
     this.panelControl18.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl18.Location = new System.Drawing.Point(0, 1230);
     this.panelControl18.Name = "panelControl18";
     this.panelControl18.Size = new System.Drawing.Size(538, 25);
     this.panelControl18.TabIndex = 18;
     //
     // checkEditDeviceSetting
     //
     this.checkEditDeviceSetting.Location = new System.Drawing.Point(5, 2);
     this.checkEditDeviceSetting.Name = "checkEditDeviceSetting";
     this.checkEditDeviceSetting.Properties.Caption = "ตั้งค่าอุปกรณ์";
     this.checkEditDeviceSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditDeviceSetting.TabIndex = 1;
     this.checkEditDeviceSetting.CheckedChanged += new System.EventHandler(this.checkEditDeviceSetting_CheckedChanged);
     //
     // panelControl23
     //
     this.panelControl23.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl23.Controls.Add(this.gridControlMenuGroup6);
     this.panelControl23.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl23.Location = new System.Drawing.Point(0, 1150);
     this.panelControl23.Name = "panelControl23";
     this.panelControl23.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl23.Size = new System.Drawing.Size(538, 80);
     this.panelControl23.TabIndex = 24;
     //
     // gridControlMenuGroup6
     //
     this.gridControlMenuGroup6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup6.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup6.MainView = this.gridViewMenu6;
     this.gridControlMenuGroup6.Name = "gridControlMenuGroup6";
     this.gridControlMenuGroup6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup6});
     this.gridControlMenuGroup6.Size = new System.Drawing.Size(524, 66);
     this.gridControlMenuGroup6.TabIndex = 7;
     this.gridControlMenuGroup6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu6});
     //
     // gridViewMenu6
     //
     this.gridViewMenu6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14,
     this.gridColumnMenuName6,
     this.gridColumn16,
     this.gridColumn17});
     this.gridViewMenu6.GridControl = this.gridControlMenuGroup6;
     this.gridViewMenu6.Name = "gridViewMenu6";
     this.gridViewMenu6.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu6.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu6.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu6.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu6.OptionsView.ShowVertLines = false;
     this.gridViewMenu6.PaintStyleName = "Skin";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = " ";
     this.gridColumn14.FieldName = "permission_flag_check";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowSize = false;
     this.gridColumn14.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 20;
     //
     // gridColumnMenuName6
     //
     this.gridColumnMenuName6.Caption = " ";
     this.gridColumnMenuName6.Name = "gridColumnMenuName6";
     this.gridColumnMenuName6.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName6.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName6.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName6.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName6.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName6.Visible = true;
     this.gridColumnMenuName6.VisibleIndex = 1;
     this.gridColumnMenuName6.Width = 317;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = " ";
     this.gridColumn16.ColumnEdit = this.repositoryItemRadioGroup6;
     this.gridColumn16.FieldName = "permission_flag_access";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 2;
     this.gridColumn16.Width = 151;
     //
     // repositoryItemRadioGroup6
     //
     this.repositoryItemRadioGroup6.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup6.Name = "repositoryItemRadioGroup6";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "gridColumn1";
     this.gridColumn17.FieldName = "menu_parent";
     this.gridColumn17.Name = "gridColumn17";
     //
     // panelControl17
     //
     this.panelControl17.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl17.Controls.Add(this.checkEditDatabaseSetting);
     this.panelControl17.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl17.Location = new System.Drawing.Point(0, 1125);
     this.panelControl17.Name = "panelControl17";
     this.panelControl17.Size = new System.Drawing.Size(538, 25);
     this.panelControl17.TabIndex = 16;
     //
     // checkEditDatabaseSetting
     //
     this.checkEditDatabaseSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditDatabaseSetting.Name = "checkEditDatabaseSetting";
     this.checkEditDatabaseSetting.Properties.Caption = "ตั้งค่าฐานข้อมูล";
     this.checkEditDatabaseSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditDatabaseSetting.TabIndex = 1;
     this.checkEditDatabaseSetting.CheckedChanged += new System.EventHandler(this.checkEditDatabaseSetting_CheckedChanged);
     //
     // panelControl22
     //
     this.panelControl22.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl22.Controls.Add(this.gridControlMenuGroup5);
     this.panelControl22.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl22.Location = new System.Drawing.Point(0, 979);
     this.panelControl22.Name = "panelControl22";
     this.panelControl22.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl22.Size = new System.Drawing.Size(538, 146);
     this.panelControl22.TabIndex = 23;
     //
     // gridControlMenuGroup5
     //
     this.gridControlMenuGroup5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup5.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup5.MainView = this.gridViewMenu5;
     this.gridControlMenuGroup5.Name = "gridControlMenuGroup5";
     this.gridControlMenuGroup5.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup5});
     this.gridControlMenuGroup5.Size = new System.Drawing.Size(524, 132);
     this.gridControlMenuGroup5.TabIndex = 7;
     this.gridControlMenuGroup5.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu5});
     //
     // gridViewMenu5
     //
     this.gridViewMenu5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumnMenuName5,
     this.gridColumn8,
     this.gridColumn13});
     this.gridViewMenu5.GridControl = this.gridControlMenuGroup5;
     this.gridViewMenu5.Name = "gridViewMenu5";
     this.gridViewMenu5.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu5.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu5.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu5.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu5.OptionsView.ShowVertLines = false;
     this.gridViewMenu5.PaintStyleName = "Skin";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = " ";
     this.gridColumn6.FieldName = "permission_flag_check";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowSize = false;
     this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 20;
     //
     // gridColumnMenuName5
     //
     this.gridColumnMenuName5.Caption = " ";
     this.gridColumnMenuName5.Name = "gridColumnMenuName5";
     this.gridColumnMenuName5.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName5.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName5.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName5.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName5.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName5.Visible = true;
     this.gridColumnMenuName5.VisibleIndex = 1;
     this.gridColumnMenuName5.Width = 317;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = " ";
     this.gridColumn8.ColumnEdit = this.repositoryItemRadioGroup5;
     this.gridColumn8.FieldName = "permission_flag_access";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width = 151;
     //
     // repositoryItemRadioGroup5
     //
     this.repositoryItemRadioGroup5.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup5.Name = "repositoryItemRadioGroup5";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "gridColumn1";
     this.gridColumn13.FieldName = "menu_parent";
     this.gridColumn13.Name = "gridColumn13";
     //
     // panelControl15
     //
     this.panelControl15.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl15.Controls.Add(this.checkEditProgramSetting);
     this.panelControl15.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl15.Location = new System.Drawing.Point(0, 954);
     this.panelControl15.Name = "panelControl15";
     this.panelControl15.Size = new System.Drawing.Size(538, 25);
     this.panelControl15.TabIndex = 12;
     //
     // checkEditProgramSetting
     //
     this.checkEditProgramSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditProgramSetting.Name = "checkEditProgramSetting";
     this.checkEditProgramSetting.Properties.Caption = "ตั้งค่าโปรแกรม";
     this.checkEditProgramSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditProgramSetting.TabIndex = 1;
     this.checkEditProgramSetting.CheckedChanged += new System.EventHandler(this.checkEditProgramSetting_CheckedChanged);
     //
     // panelControl21
     //
     this.panelControl21.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl21.Controls.Add(this.gridControlMenuGroup4);
     this.panelControl21.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl21.Location = new System.Drawing.Point(0, 728);
     this.panelControl21.Name = "panelControl21";
     this.panelControl21.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl21.Size = new System.Drawing.Size(538, 226);
     this.panelControl21.TabIndex = 22;
     //
     // gridControlMenuGroup4
     //
     this.gridControlMenuGroup4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup4.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup4.MainView = this.gridViewMenu4;
     this.gridControlMenuGroup4.Name = "gridControlMenuGroup4";
     this.gridControlMenuGroup4.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup4});
     this.gridControlMenuGroup4.Size = new System.Drawing.Size(524, 212);
     this.gridControlMenuGroup4.TabIndex = 7;
     this.gridControlMenuGroup4.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu4});
     //
     // gridViewMenu4
     //
     this.gridViewMenu4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumnMenuName4,
     this.gridColumn4,
     this.gridColumn5});
     this.gridViewMenu4.GridControl = this.gridControlMenuGroup4;
     this.gridViewMenu4.Name = "gridViewMenu4";
     this.gridViewMenu4.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu4.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu4.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu4.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu4.OptionsView.ShowVertLines = false;
     this.gridViewMenu4.PaintStyleName = "Skin";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = " ";
     this.gridColumn2.FieldName = "permission_flag_check";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowSize = false;
     this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 20;
     //
     // gridColumnMenuName4
     //
     this.gridColumnMenuName4.Caption = " ";
     this.gridColumnMenuName4.Name = "gridColumnMenuName4";
     this.gridColumnMenuName4.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName4.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName4.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName4.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName4.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName4.Visible = true;
     this.gridColumnMenuName4.VisibleIndex = 1;
     this.gridColumnMenuName4.Width = 317;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = " ";
     this.gridColumn4.ColumnEdit = this.repositoryItemRadioGroup4;
     this.gridColumn4.FieldName = "permission_flag_access";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 151;
     //
     // repositoryItemRadioGroup4
     //
     this.repositoryItemRadioGroup4.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup4.Name = "repositoryItemRadioGroup4";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "gridColumn1";
     this.gridColumn5.FieldName = "menu_parent";
     this.gridColumn5.Name = "gridColumn5";
     //
     // panelControl11
     //
     this.panelControl11.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl11.Controls.Add(this.panelControl12);
     this.panelControl11.Controls.Add(this.panelControl10);
     this.panelControl11.Controls.Add(this.checkEdit4);
     this.panelControl11.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl11.Location = new System.Drawing.Point(0, 703);
     this.panelControl11.Name = "panelControl11";
     this.panelControl11.Size = new System.Drawing.Size(538, 25);
     this.panelControl11.TabIndex = 10;
     //
     // panelControl12
     //
     this.panelControl12.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl12.Controls.Add(this.panelControl13);
     this.panelControl12.Controls.Add(this.checkEdit6);
     this.panelControl12.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl12.Location = new System.Drawing.Point(0, 38);
     this.panelControl12.Name = "panelControl12";
     this.panelControl12.Size = new System.Drawing.Size(538, 38);
     this.panelControl12.TabIndex = 12;
     //
     // panelControl13
     //
     this.panelControl13.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl13.Controls.Add(this.panelControl14);
     this.panelControl13.Controls.Add(this.checkEdit7);
     this.panelControl13.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl13.Location = new System.Drawing.Point(0, 0);
     this.panelControl13.Name = "panelControl13";
     this.panelControl13.Size = new System.Drawing.Size(538, 38);
     this.panelControl13.TabIndex = 11;
     //
     // panelControl14
     //
     this.panelControl14.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl14.Controls.Add(this.checkEdit8);
     this.panelControl14.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl14.Location = new System.Drawing.Point(0, 0);
     this.panelControl14.Name = "panelControl14";
     this.panelControl14.Size = new System.Drawing.Size(538, 38);
     this.panelControl14.TabIndex = 11;
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(4, 13);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "บริการห้องพัก";
     this.checkEdit8.Size = new System.Drawing.Size(100, 19);
     this.checkEdit8.TabIndex = 1;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(4, 13);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "บริการห้องพัก";
     this.checkEdit7.Size = new System.Drawing.Size(100, 19);
     this.checkEdit7.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(4, 13);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "บริการห้องพัก";
     this.checkEdit6.Size = new System.Drawing.Size(100, 19);
     this.checkEdit6.TabIndex = 1;
     //
     // panelControl10
     //
     this.panelControl10.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl10.Controls.Add(this.checkEditBasicSetting);
     this.panelControl10.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl10.Location = new System.Drawing.Point(0, 0);
     this.panelControl10.Name = "panelControl10";
     this.panelControl10.Size = new System.Drawing.Size(538, 38);
     this.panelControl10.TabIndex = 11;
     //
     // checkEditBasicSetting
     //
     this.checkEditBasicSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditBasicSetting.Name = "checkEditBasicSetting";
     this.checkEditBasicSetting.Properties.Caption = "ตั้งค่าพื้นฐาน";
     this.checkEditBasicSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditBasicSetting.TabIndex = 1;
     this.checkEditBasicSetting.CheckedChanged += new System.EventHandler(this.checkEditBasicSetting_CheckedChanged);
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(4, 13);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "บริการห้องพัก";
     this.checkEdit4.Size = new System.Drawing.Size(100, 19);
     this.checkEdit4.TabIndex = 1;
     //
     // panelControl7
     //
     this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl7.Controls.Add(this.gridControlMenuGroup3);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl7.Location = new System.Drawing.Point(0, 531);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl7.Size = new System.Drawing.Size(538, 172);
     this.panelControl7.TabIndex = 7;
     //
     // gridControlMenuGroup3
     //
     this.gridControlMenuGroup3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup3.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup3.MainView = this.gridViewMenu3;
     this.gridControlMenuGroup3.Name = "gridControlMenuGroup3";
     this.gridControlMenuGroup3.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup3});
     this.gridControlMenuGroup3.Size = new System.Drawing.Size(524, 158);
     this.gridControlMenuGroup3.TabIndex = 7;
     this.gridControlMenuGroup3.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu3});
     //
     // gridViewMenu3
     //
     this.gridViewMenu3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox3,
     this.gridColumnMenuName3,
     this.gridColumnReadOrWrite3,
     this.gridColumn1});
     this.gridViewMenu3.GridControl = this.gridControlMenuGroup3;
     this.gridViewMenu3.Name = "gridViewMenu3";
     this.gridViewMenu3.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu3.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu3.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu3.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu3.OptionsView.ShowVertLines = false;
     this.gridViewMenu3.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox3
     //
     this.gridColumnCheckBox3.Caption = " ";
     this.gridColumnCheckBox3.FieldName = "permission_flag_check";
     this.gridColumnCheckBox3.Name = "gridColumnCheckBox3";
     this.gridColumnCheckBox3.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox3.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox3.Visible = true;
     this.gridColumnCheckBox3.VisibleIndex = 0;
     this.gridColumnCheckBox3.Width = 20;
     //
     // gridColumnMenuName3
     //
     this.gridColumnMenuName3.Caption = " ";
     this.gridColumnMenuName3.Name = "gridColumnMenuName3";
     this.gridColumnMenuName3.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName3.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName3.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName3.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName3.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName3.Visible = true;
     this.gridColumnMenuName3.VisibleIndex = 1;
     this.gridColumnMenuName3.Width = 317;
     //
     // gridColumnReadOrWrite3
     //
     this.gridColumnReadOrWrite3.Caption = " ";
     this.gridColumnReadOrWrite3.ColumnEdit = this.repositoryItemRadioGroup3;
     this.gridColumnReadOrWrite3.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite3.Name = "gridColumnReadOrWrite3";
     this.gridColumnReadOrWrite3.Visible = true;
     this.gridColumnReadOrWrite3.VisibleIndex = 2;
     this.gridColumnReadOrWrite3.Width = 151;
     //
     // repositoryItemRadioGroup3
     //
     this.repositoryItemRadioGroup3.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup3.Name = "repositoryItemRadioGroup3";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "gridColumn1";
     this.gridColumn1.FieldName = "menu_parent";
     this.gridColumn1.Name = "gridColumn1";
     //
     // panelControl9
     //
     this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl9.Controls.Add(this.checkEditReportManagement);
     this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl9.Location = new System.Drawing.Point(0, 506);
     this.panelControl9.Name = "panelControl9";
     this.panelControl9.Size = new System.Drawing.Size(538, 25);
     this.panelControl9.TabIndex = 8;
     //
     // checkEditReportManagement
     //
     this.checkEditReportManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditReportManagement.Name = "checkEditReportManagement";
     this.checkEditReportManagement.Properties.Caption = "รายงาน";
     this.checkEditReportManagement.Size = new System.Drawing.Size(100, 19);
     this.checkEditReportManagement.TabIndex = 1;
     this.checkEditReportManagement.CheckedChanged += new System.EventHandler(this.checkEditReportManagement_CheckedChanged);
     //
     // panelControl5
     //
     this.panelControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl5.Controls.Add(this.gridControlMenuGroup2);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 421);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl5.Size = new System.Drawing.Size(538, 85);
     this.panelControl5.TabIndex = 5;
     //
     // gridControlMenuGroup2
     //
     this.gridControlMenuGroup2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup2.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup2.MainView = this.gridViewMenu2;
     this.gridControlMenuGroup2.Name = "gridControlMenuGroup2";
     this.gridControlMenuGroup2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup2});
     this.gridControlMenuGroup2.Size = new System.Drawing.Size(524, 71);
     this.gridControlMenuGroup2.TabIndex = 6;
     this.gridControlMenuGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu2});
     //
     // gridViewMenu2
     //
     this.gridViewMenu2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox2,
     this.gridColumnMenuName2,
     this.gridColumnReadOrWrite2,
     this.gridColumnParent2});
     this.gridViewMenu2.GridControl = this.gridControlMenuGroup2;
     this.gridViewMenu2.Name = "gridViewMenu2";
     this.gridViewMenu2.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu2.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu2.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu2.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu2.OptionsView.ShowVertLines = false;
     this.gridViewMenu2.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox2
     //
     this.gridColumnCheckBox2.Caption = " ";
     this.gridColumnCheckBox2.FieldName = "permission_flag_check";
     this.gridColumnCheckBox2.Name = "gridColumnCheckBox2";
     this.gridColumnCheckBox2.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox2.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox2.Visible = true;
     this.gridColumnCheckBox2.VisibleIndex = 0;
     this.gridColumnCheckBox2.Width = 20;
     //
     // gridColumnMenuName2
     //
     this.gridColumnMenuName2.Caption = " ";
     this.gridColumnMenuName2.Name = "gridColumnMenuName2";
     this.gridColumnMenuName2.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName2.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName2.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName2.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName2.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName2.Visible = true;
     this.gridColumnMenuName2.VisibleIndex = 1;
     this.gridColumnMenuName2.Width = 317;
     //
     // gridColumnReadOrWrite2
     //
     this.gridColumnReadOrWrite2.Caption = " ";
     this.gridColumnReadOrWrite2.ColumnEdit = this.repositoryItemRadioGroup2;
     this.gridColumnReadOrWrite2.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite2.Name = "gridColumnReadOrWrite2";
     this.gridColumnReadOrWrite2.Visible = true;
     this.gridColumnReadOrWrite2.VisibleIndex = 2;
     this.gridColumnReadOrWrite2.Width = 151;
     //
     // repositoryItemRadioGroup2
     //
     this.repositoryItemRadioGroup2.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup2.Name = "repositoryItemRadioGroup2";
     //
     // gridColumnParent2
     //
     this.gridColumnParent2.Caption = "Parent";
     this.gridColumnParent2.FieldName = "menu_parent";
     this.gridColumnParent2.Name = "gridColumnParent2";
     //
     // panelControl6
     //
     this.panelControl6.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl6.Appearance.Options.UseBackColor = true;
     this.panelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl6.Controls.Add(this.checkEditMeterManagement);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl6.Location = new System.Drawing.Point(0, 396);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(538, 25);
     this.panelControl6.TabIndex = 6;
     //
     // checkEditMeterManagement
     //
     this.checkEditMeterManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditMeterManagement.Name = "checkEditMeterManagement";
     this.checkEditMeterManagement.Properties.Caption = "บันทึกค่ามิเตอร์";
     this.checkEditMeterManagement.Size = new System.Drawing.Size(206, 19);
     this.checkEditMeterManagement.TabIndex = 1;
     this.checkEditMeterManagement.CheckedChanged += new System.EventHandler(this.checkEditMeterManagement_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.gridControlMenuGroup1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 147);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl1.Size = new System.Drawing.Size(538, 249);
     this.panelControl1.TabIndex = 3;
     //
     // gridControlMenuGroup1
     //
     this.gridControlMenuGroup1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup1.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup1.MainView = this.gridViewMenu;
     this.gridControlMenuGroup1.Name = "gridControlMenuGroup1";
     this.gridControlMenuGroup1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup1});
     this.gridControlMenuGroup1.Size = new System.Drawing.Size(524, 235);
     this.gridControlMenuGroup1.TabIndex = 5;
     this.gridControlMenuGroup1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu});
     //
     // gridViewMenu
     //
     this.gridViewMenu.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox,
     this.gridColumnMenuName,
     this.gridColumnReadOrWrite,
     this.gridColumnParent});
     this.gridViewMenu.GridControl = this.gridControlMenuGroup1;
     this.gridViewMenu.Name = "gridViewMenu";
     this.gridViewMenu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu.OptionsView.ShowVertLines = false;
     this.gridViewMenu.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox
     //
     this.gridColumnCheckBox.Caption = " ";
     this.gridColumnCheckBox.FieldName = "permission_flag_check";
     this.gridColumnCheckBox.Name = "gridColumnCheckBox";
     this.gridColumnCheckBox.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox.Visible = true;
     this.gridColumnCheckBox.VisibleIndex = 0;
     this.gridColumnCheckBox.Width = 20;
     //
     // gridColumnMenuName
     //
     this.gridColumnMenuName.Caption = " ";
     this.gridColumnMenuName.Name = "gridColumnMenuName";
     this.gridColumnMenuName.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName.Visible = true;
     this.gridColumnMenuName.VisibleIndex = 1;
     this.gridColumnMenuName.Width = 317;
     //
     // gridColumnReadOrWrite
     //
     this.gridColumnReadOrWrite.Caption = " ";
     this.gridColumnReadOrWrite.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumnReadOrWrite.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite.Name = "gridColumnReadOrWrite";
     this.gridColumnReadOrWrite.Visible = true;
     this.gridColumnReadOrWrite.VisibleIndex = 2;
     this.gridColumnReadOrWrite.Width = 151;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     //
     // gridColumnParent
     //
     this.gridColumnParent.Caption = "parent";
     this.gridColumnParent.FieldName = "menu_parent";
     this.gridColumnParent.Name = "gridColumnParent";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.checkEditRoomManagement);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 122);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(538, 25);
     this.panelControl4.TabIndex = 4;
     //
     // checkEditRoomManagement
     //
     this.checkEditRoomManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditRoomManagement.Name = "checkEditRoomManagement";
     this.checkEditRoomManagement.Properties.Caption = "บริการห้องพัก";
     this.checkEditRoomManagement.Size = new System.Drawing.Size(243, 19);
     this.checkEditRoomManagement.TabIndex = 1;
     this.checkEditRoomManagement.CheckedChanged += new System.EventHandler(this.checkEditRoomManagement_CheckedChanged);
     //
     // panelControl20
     //
     this.panelControl20.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl20.Controls.Add(this.gridControlPermissionBar);
     this.panelControl20.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl20.Location = new System.Drawing.Point(0, 59);
     this.panelControl20.Name = "panelControl20";
     this.panelControl20.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl20.Size = new System.Drawing.Size(538, 63);
     this.panelControl20.TabIndex = 21;
     //
     // gridControlPermissionBar
     //
     this.gridControlPermissionBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlPermissionBar.Location = new System.Drawing.Point(7, 7);
     this.gridControlPermissionBar.MainView = this.gridView4;
     this.gridControlPermissionBar.Name = "gridControlPermissionBar";
     this.gridControlPermissionBar.Size = new System.Drawing.Size(524, 49);
     this.gridControlPermissionBar.TabIndex = 4;
     this.gridControlPermissionBar.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumnMenuNameBar,
     this.gridColumnReadWriteBar,
     this.gridColumnReadOnlyBar});
     this.gridView4.GridControl = this.gridControlPermissionBar;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsLayout.Columns.AddNewColumns = false;
     this.gridView4.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     this.gridView4.OptionsView.ShowHorzLines = false;
     this.gridView4.OptionsView.ShowVertLines = false;
     this.gridView4.OptionsView.ShowViewCaption = true;
     this.gridView4.PaintStyleName = "Skin";
     this.gridView4.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     this.gridView4.ViewCaption = "รายการเมนู";
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = " ";
     this.gridColumn9.FieldName = "checkbox";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSize = false;
     this.gridColumn9.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 20;
     //
     // gridColumnMenuNameBar
     //
     this.gridColumnMenuNameBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnMenuNameBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnMenuNameBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnMenuNameBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnMenuNameBar.Caption = " ชื่อเมนู";
     this.gridColumnMenuNameBar.Name = "gridColumnMenuNameBar";
     this.gridColumnMenuNameBar.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowMove = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuNameBar.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuNameBar.Visible = true;
     this.gridColumnMenuNameBar.VisibleIndex = 1;
     this.gridColumnMenuNameBar.Width = 318;
     //
     // gridColumnReadWriteBar
     //
     this.gridColumnReadWriteBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnReadWriteBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnReadWriteBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnReadWriteBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnReadWriteBar.Caption = "อ่านและเขียนได้";
     this.gridColumnReadWriteBar.Name = "gridColumnReadWriteBar";
     this.gridColumnReadWriteBar.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnReadWriteBar.Visible = true;
     this.gridColumnReadWriteBar.VisibleIndex = 2;
     this.gridColumnReadWriteBar.Width = 162;
     //
     // gridColumnReadOnlyBar
     //
     this.gridColumnReadOnlyBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnReadOnlyBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnReadOnlyBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnReadOnlyBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnReadOnlyBar.Caption = "อ่านอย่างเดียว";
     this.gridColumnReadOnlyBar.Name = "gridColumnReadOnlyBar";
     this.gridColumnReadOnlyBar.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnReadOnlyBar.Visible = true;
     this.gridColumnReadOnlyBar.VisibleIndex = 3;
     this.gridColumnReadOnlyBar.Width = 200;
     //
     // panelControl16
     //
     this.panelControl16.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl16.Controls.Add(this.labelControl2);
     this.panelControl16.Controls.Add(this.labelControlRequired);
     this.panelControl16.Controls.Add(this.textEditGroupID);
     this.panelControl16.Controls.Add(this.textEditGroupName);
     this.panelControl16.Controls.Add(this.labelGroupName);
     this.panelControl16.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl16.Location = new System.Drawing.Point(0, 0);
     this.panelControl16.Name = "panelControl16";
     this.panelControl16.Size = new System.Drawing.Size(538, 59);
     this.panelControl16.TabIndex = 20;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl2.Location = new System.Drawing.Point(15, 15);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(6, 13);
     this.labelControl2.TabIndex = 372;
     this.labelControl2.Text = "*";
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(103, 40);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 372;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // textEditGroupID
     //
     this.textEditGroupID.Location = new System.Drawing.Point(438, 12);
     this.textEditGroupID.Name = "textEditGroupID";
     this.textEditGroupID.Size = new System.Drawing.Size(70, 20);
     this.textEditGroupID.TabIndex = 1;
     this.textEditGroupID.Visible = false;
     //
     // textEditGroupName
     //
     this.textEditGroupName.Location = new System.Drawing.Point(103, 12);
     this.textEditGroupName.Name = "textEditGroupName";
     this.textEditGroupName.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,300}";
     this.textEditGroupName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditGroupName.Properties.MaxLength = 300;
     this.textEditGroupName.Size = new System.Drawing.Size(329, 20);
     this.textEditGroupName.TabIndex = 1;
     //
     // labelGroupName
     //
     this.labelGroupName.Location = new System.Drawing.Point(27, 15);
     this.labelGroupName.Name = "labelGroupName";
     this.labelGroupName.Size = new System.Drawing.Size(35, 13);
     this.labelGroupName.TabIndex = 0;
     this.labelGroupName.Text = "ชื่อกลุ่ม";
     //
     // panelControl8
     //
     this.panelControl8.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.panelControl8.Appearance.Options.UseBackColor = true;
     this.panelControl8.Controls.Add(this.bttDelete);
     this.panelControl8.Controls.Add(this.bttAdd);
     this.panelControl8.Controls.Add(this.bttEdit);
     this.panelControl8.Controls.Add(this.bttCancel);
     this.panelControl8.Controls.Add(this.bttSave);
     this.panelControl8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl8.Location = new System.Drawing.Point(0, 543);
     this.panelControl8.Name = "panelControl8";
     this.panelControl8.Size = new System.Drawing.Size(559, 66);
     this.panelControl8.TabIndex = 418;
     //
     // bttDelete
     //
     this.bttDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttDelete.Image = ((System.Drawing.Image)(resources.GetObject("bttDelete.Image")));
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(332, 5);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 20;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // bttAdd
     //
     this.bttAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttAdd.Image = ((System.Drawing.Image)(resources.GetObject("bttAdd.Image")));
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(180, 5);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 18;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = ((System.Drawing.Image)(resources.GetObject("bttEdit.Image")));
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(256, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = ((System.Drawing.Image)(resources.GetObject("bttCancel.Image")));
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(484, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = ((System.Drawing.Image)(resources.GetObject("bttSave.Image")));
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(408, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1064, 609);
     this.splitContainerControl1.SplitterPosition = 585;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlAuthorizeList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1064, 609);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 23;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlAuthorizeList
     //
     this.groupControlAuthorizeList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAuthorizeList.AppearanceCaption.Options.UseFont = true;
     this.groupControlAuthorizeList.Controls.Add(this.gridControlGroupPermission);
     this.groupControlAuthorizeList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAuthorizeList.Location = new System.Drawing.Point(0, 0);
     this.groupControlAuthorizeList.Name = "groupControlAuthorizeList";
     this.groupControlAuthorizeList.Size = new System.Drawing.Size(500, 609);
     this.groupControlAuthorizeList.TabIndex = 0;
     this.groupControlAuthorizeList.Text = "รายการกลุ่มผู้ใช้งาน";
     //
     // gridControlGroupPermission
     //
     this.gridControlGroupPermission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlGroupPermission.Location = new System.Drawing.Point(2, 22);
     this.gridControlGroupPermission.MainView = this.gridViewGroup;
     this.gridControlGroupPermission.Name = "gridControlGroupPermission";
     this.gridControlGroupPermission.Size = new System.Drawing.Size(496, 585);
     this.gridControlGroupPermission.TabIndex = 1;
     this.gridControlGroupPermission.UseEmbeddedNavigator = true;
     this.gridControlGroupPermission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGroup});
     //
     // gridViewGroup
     //
     this.gridViewGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnGroupId,
     this.gridColumnGroupName,
     this.gridColumnAmountUser});
     this.gridViewGroup.GridControl = this.gridControlGroupPermission;
     this.gridViewGroup.Name = "gridViewGroup";
     this.gridViewGroup.OptionsFind.AlwaysVisible = true;
     this.gridViewGroup.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGroup.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnGroupId
     //
     this.gridColumnGroupId.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnGroupId.AppearanceHeader.Options.UseFont = true;
     this.gridColumnGroupId.Caption = "รหัสกลุ่ม";
     this.gridColumnGroupId.FieldName = "group_id";
     this.gridColumnGroupId.Name = "gridColumnGroupId";
     this.gridColumnGroupId.OptionsColumn.AllowEdit = false;
     this.gridColumnGroupId.OptionsColumn.AllowFocus = false;
     this.gridColumnGroupId.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnGroupId.OptionsColumn.AllowMove = false;
     //
     // gridColumnGroupName
     //
     this.gridColumnGroupName.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnGroupName.AppearanceHeader.Options.UseFont = true;
     this.gridColumnGroupName.Caption = "ชื่อกลุ่ม";
     this.gridColumnGroupName.FieldName = "group_name";
     this.gridColumnGroupName.Name = "gridColumnGroupName";
     this.gridColumnGroupName.OptionsColumn.AllowEdit = false;
     this.gridColumnGroupName.OptionsColumn.AllowFocus = false;
     this.gridColumnGroupName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnGroupName.OptionsColumn.AllowMove = false;
     this.gridColumnGroupName.Visible = true;
     this.gridColumnGroupName.VisibleIndex = 0;
     //
     // gridColumnAmountUser
     //
     this.gridColumnAmountUser.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmountUser.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmountUser.Caption = "จำนวนผู้ใช้";
     this.gridColumnAmountUser.FieldName = "amount_user";
     this.gridColumnAmountUser.Name = "gridColumnAmountUser";
     this.gridColumnAmountUser.OptionsColumn.AllowEdit = false;
     this.gridColumnAmountUser.OptionsColumn.AllowFocus = false;
     this.gridColumnAmountUser.OptionsColumn.AllowMove = false;
     this.gridColumnAmountUser.OptionsColumn.ReadOnly = true;
     this.gridColumnAmountUser.Visible = true;
     this.gridColumnAmountUser.VisibleIndex = 1;
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.splitContainerControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(7, 7);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1064, 609);
     this.panelControl2.TabIndex = 22;
     //
     // ProgramPermission
     //
     this.AccessibleName = "ProgramPermission";
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.panelControl2);
     this.Name = "ProgramPermission";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1078, 623);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorize)).EndInit();
     this.groupControlAuthorize.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).EndInit();
     this.panelControl25.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).EndInit();
     this.panelControl19.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditHelp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).EndInit();
     this.panelControl26.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl27)).EndInit();
     this.panelControl27.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRegistration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).EndInit();
     this.panelControl24.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).EndInit();
     this.panelControl18.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDeviceSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).EndInit();
     this.panelControl23.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).EndInit();
     this.panelControl17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDatabaseSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).EndInit();
     this.panelControl22.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).EndInit();
     this.panelControl15.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditProgramSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).EndInit();
     this.panelControl21.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
     this.panelControl11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).EndInit();
     this.panelControl12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).EndInit();
     this.panelControl13.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).EndInit();
     this.panelControl14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
     this.panelControl10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditBasicSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
     this.panelControl9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditReportManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditMeterManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRoomManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).EndInit();
     this.panelControl20.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPermissionBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).EndInit();
     this.panelControl16.ResumeLayout(false);
     this.panelControl16.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
     this.panelControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorizeList)).EndInit();
     this.groupControlAuthorizeList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGroupPermission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #34
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(frmProducts));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
     this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
     this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
     this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
     this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
     this.txtTransit = new DevExpress.XtraEditors.TextEdit();
     this.txtTarget = new DevExpress.XtraEditors.TextEdit();
     this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
     this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
     this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
     this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
     this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
     this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
     this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
     this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
     this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
     this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
     this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl53 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl38 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl43 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl42 = new DevExpress.XtraEditors.LabelControl();
     this.XtrabarBonus = new DevExpress.XtraTab.XtraTabPage();
     this.datagridBonus = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.datagridProductAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.txtMaxLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtMinLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtBarCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShelfCode = new DevExpress.XtraEditors.TextEdit();
     this.grdPresevasionStandard = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.txtClaimPartnerID = new System.Windows.Forms.MaskedTextBox();
     this.txtClaimPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.txtBussinessPartnerid = new System.Windows.Forms.MaskedTextBox();
     this.businessPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl40 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl48 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl46 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl47 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl54 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl55 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.dgFileAttachments = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Productid = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbProductCategory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtShortName = new DevExpress.XtraEditors.TextEdit();
     this.txtArtical = new DevExpress.XtraEditors.TextEdit();
     this.txtProductName = new DevExpress.XtraEditors.TextEdit();
     this.cmbSkuType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbGeneralName = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbProtoType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtProductId = new System.Windows.Forms.MaskedTextBox();
     this.txtPack = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl49 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl39 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtGroupSeq = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.txtmanualgroup = new DevExpress.XtraEditors.TextEdit();
     this.labelControl57 = new DevExpress.XtraEditors.LabelControl();
     this.txtdateto = new System.Windows.Forms.MaskedTextBox();
     this.txtdatefrom = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl56 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl51 = new DevExpress.XtraEditors.LabelControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.chkCompanyDiscount = new DevExpress.XtraEditors.CheckEdit();
     this.txtCompanySeq = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.txtReportCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtReportCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtrabarGeneralinformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).BeginInit();
     this.XtrabarBonus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.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.xtraTabControl1.Location = new System.Drawing.Point(3, 171);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtrabarGeneralinformation;
     this.xtraTabControl1.Size = new System.Drawing.Size(701, 254);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtrabarGeneralinformation,
     this.XtrabarBonus,
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.xtraTabControl1_PreviewKeyDown);
     //
     // xtrabarGeneralinformation
     //
     this.xtrabarGeneralinformation.Controls.Add(this.panelControl1);
     this.xtrabarGeneralinformation.Name = "xtrabarGeneralinformation";
     this.xtrabarGeneralinformation.Size = new System.Drawing.Size(695, 226);
     this.xtrabarGeneralinformation.Text = "General Information";
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Controls.Add(this.txtfactor);
     this.panelControl1.Controls.Add(this.txtuompurchase);
     this.panelControl1.Controls.Add(this.txtuomsize);
     this.panelControl1.Controls.Add(this.txtuomsale);
     this.panelControl1.Controls.Add(this.cmbValueMethod);
     this.panelControl1.Controls.Add(this.txtAvgRate);
     this.panelControl1.Controls.Add(this.txtToleranceDay);
     this.panelControl1.Controls.Add(this.txtLoadTime);
     this.panelControl1.Controls.Add(this.txtPurchaseRate);
     this.panelControl1.Controls.Add(this.txtSpecialRate);
     this.panelControl1.Controls.Add(this.txtCostRate);
     this.panelControl1.Controls.Add(this.txtTransit);
     this.panelControl1.Controls.Add(this.txtTarget);
     this.panelControl1.Controls.Add(this.txtNetBalance);
     this.panelControl1.Controls.Add(this.txtBalanceBonus);
     this.panelControl1.Controls.Add(this.txtBalanceStock);
     this.panelControl1.Controls.Add(this.txtMaxQuantityDays);
     this.panelControl1.Controls.Add(this.txtMaxQuantityPCustomer);
     this.panelControl1.Controls.Add(this.txtPackInBox);
     this.panelControl1.Controls.Add(this.txtInventoryDays);
     this.panelControl1.Controls.Add(this.txtMinFlatRate);
     this.panelControl1.Controls.Add(this.txtMaxFlatRate);
     this.panelControl1.Controls.Add(this.cmbSaleTaxCalculation);
     this.panelControl1.Controls.Add(this.txtSaleTaxVale);
     this.panelControl1.Controls.Add(this.txtSaleTaxPer);
     this.panelControl1.Controls.Add(this.txtMaxSalesDisc);
     this.panelControl1.Controls.Add(this.txtPurchaseDiscountPer);
     this.panelControl1.Controls.Add(this.txtRetailPrice);
     this.panelControl1.Controls.Add(this.chkwolallow);
     this.panelControl1.Controls.Add(this.chkAllowPer);
     this.panelControl1.Controls.Add(this.chkAutoBonus);
     this.panelControl1.Controls.Add(this.chkSaleBase);
     this.panelControl1.Controls.Add(this.chkSaleTaxReg);
     this.panelControl1.Controls.Add(this.chkNonPharma);
     this.panelControl1.Controls.Add(this.chkExcempted);
     this.panelControl1.Controls.Add(this.chkUseFlatRate);
     this.panelControl1.Controls.Add(this.chkNorCotics);
     this.panelControl1.Controls.Add(this.chkHideinTabs);
     this.panelControl1.Controls.Add(this.chkAllowMaxQtyDays);
     this.panelControl1.Controls.Add(this.chkProductDiscontinue);
     this.panelControl1.Controls.Add(this.txtTradePrice);
     this.panelControl1.Controls.Add(this.txtSaleRate);
     this.panelControl1.Controls.Add(this.txtPackInCarton);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl18);
     this.panelControl1.Controls.Add(this.labelControl17);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl13);
     this.panelControl1.Controls.Add(this.labelControl50);
     this.panelControl1.Controls.Add(this.labelControl12);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.labelControl19);
     this.panelControl1.Controls.Add(this.labelControl20);
     this.panelControl1.Controls.Add(this.labelControl25);
     this.panelControl1.Controls.Add(this.labelControl24);
     this.panelControl1.Controls.Add(this.labelControl23);
     this.panelControl1.Controls.Add(this.labelControl22);
     this.panelControl1.Controls.Add(this.labelControl21);
     this.panelControl1.Controls.Add(this.labelControl26);
     this.panelControl1.Controls.Add(this.labelControl52);
     this.panelControl1.Controls.Add(this.labelControl53);
     this.panelControl1.Controls.Add(this.labelControl27);
     this.panelControl1.Controls.Add(this.labelControl28);
     this.panelControl1.Controls.Add(this.labelControl29);
     this.panelControl1.Controls.Add(this.labelControl30);
     this.panelControl1.Controls.Add(this.labelControl31);
     this.panelControl1.Controls.Add(this.labelControl32);
     this.panelControl1.Controls.Add(this.labelControl37);
     this.panelControl1.Controls.Add(this.labelControl38);
     this.panelControl1.Controls.Add(this.labelControl44);
     this.panelControl1.Controls.Add(this.labelControl43);
     this.panelControl1.Controls.Add(this.labelControl41);
     this.panelControl1.Controls.Add(this.labelControl42);
     this.panelControl1.Location = new System.Drawing.Point(-1, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(700, 226);
     this.panelControl1.TabIndex = 180;
     //
     // txtfactor
     //
     this.txtfactor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtfactor.Location = new System.Drawing.Point(449, 161);
     this.txtfactor.Name = "txtfactor";
     this.txtfactor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtfactor.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtfactor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtfactor.Size = new System.Drawing.Size(82, 20);
     this.txtfactor.TabIndex = 124270;
     this.txtfactor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtfactor_PreviewKeyDown);
     //
     // txtuompurchase
     //
     this.txtuompurchase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuompurchase.Location = new System.Drawing.Point(449, 142);
     this.txtuompurchase.Name = "txtuompurchase";
     this.txtuompurchase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuompurchase.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuompurchase.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuompurchase.Size = new System.Drawing.Size(82, 20);
     this.txtuompurchase.TabIndex = 124262;
     this.txtuompurchase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuompurchase_PreviewKeyDown);
     //
     // txtuomsize
     //
     this.txtuomsize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsize.Location = new System.Drawing.Point(449, 123);
     this.txtuomsize.Name = "txtuomsize";
     this.txtuomsize.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsize.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsize.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsize.Size = new System.Drawing.Size(82, 20);
     this.txtuomsize.TabIndex = 124258;
     this.txtuomsize.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsize_PreviewKeyDown);
     //
     // txtuomsale
     //
     this.txtuomsale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsale.Location = new System.Drawing.Point(449, 104);
     this.txtuomsale.Name = "txtuomsale";
     this.txtuomsale.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsale.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsale.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsale.Size = new System.Drawing.Size(82, 20);
     this.txtuomsale.TabIndex = 124260;
     this.txtuomsale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsale_PreviewKeyDown);
     //
     // cmbValueMethod
     //
     this.cmbValueMethod.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbValueMethod.Location = new System.Drawing.Point(449, 85);
     this.cmbValueMethod.Name = "cmbValueMethod";
     this.cmbValueMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbValueMethod.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbValueMethod.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbValueMethod.Size = new System.Drawing.Size(82, 20);
     this.cmbValueMethod.TabIndex = 37;
     this.cmbValueMethod.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbValueMethod_PreviewKeyDown);
     //
     // txtAvgRate
     //
     this.txtAvgRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtAvgRate.Location = new System.Drawing.Point(449, 66);
     this.txtAvgRate.Name = "txtAvgRate";
     this.txtAvgRate.Size = new System.Drawing.Size(82, 20);
     this.txtAvgRate.TabIndex = 36;
     this.txtAvgRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtAvgRate_PreviewKeyDown);
     //
     // txtToleranceDay
     //
     this.txtToleranceDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtToleranceDay.Location = new System.Drawing.Point(449, 47);
     this.txtToleranceDay.Name = "txtToleranceDay";
     this.txtToleranceDay.Size = new System.Drawing.Size(82, 20);
     this.txtToleranceDay.TabIndex = 35;
     this.txtToleranceDay.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtToleranceDay_PreviewKeyDown);
     //
     // txtLoadTime
     //
     this.txtLoadTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLoadTime.Location = new System.Drawing.Point(449, 28);
     this.txtLoadTime.Name = "txtLoadTime";
     this.txtLoadTime.Size = new System.Drawing.Size(82, 20);
     this.txtLoadTime.TabIndex = 34;
     this.txtLoadTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtLoadTime_PreviewKeyDown);
     //
     // txtPurchaseRate
     //
     this.txtPurchaseRate.EditValue = "0.00";
     this.txtPurchaseRate.Location = new System.Drawing.Point(285, 199);
     this.txtPurchaseRate.Name = "txtPurchaseRate";
     this.txtPurchaseRate.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseRate.TabIndex = 32;
     this.txtPurchaseRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseRate_PreviewKeyDown);
     //
     // txtSpecialRate
     //
     this.txtSpecialRate.EditValue = "0.00";
     this.txtSpecialRate.Location = new System.Drawing.Point(285, 180);
     this.txtSpecialRate.Name = "txtSpecialRate";
     this.txtSpecialRate.Size = new System.Drawing.Size(82, 20);
     this.txtSpecialRate.TabIndex = 31;
     this.txtSpecialRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSpecialRate_PreviewKeyDown);
     //
     // txtCostRate
     //
     this.txtCostRate.EditValue = "0.00";
     this.txtCostRate.Location = new System.Drawing.Point(285, 161);
     this.txtCostRate.Name = "txtCostRate";
     this.txtCostRate.Size = new System.Drawing.Size(82, 20);
     this.txtCostRate.TabIndex = 30;
     this.txtCostRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCostRate_PreviewKeyDown);
     //
     // txtTransit
     //
     this.txtTransit.EditValue = "0.00";
     this.txtTransit.Location = new System.Drawing.Point(285, 142);
     this.txtTransit.Name = "txtTransit";
     this.txtTransit.Size = new System.Drawing.Size(82, 20);
     this.txtTransit.TabIndex = 124268;
     this.txtTransit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTransit_PreviewKeyDown);
     //
     // txtTarget
     //
     this.txtTarget.EditValue = "0.00";
     this.txtTarget.Location = new System.Drawing.Point(285, 123);
     this.txtTarget.Name = "txtTarget";
     this.txtTarget.Size = new System.Drawing.Size(82, 20);
     this.txtTarget.TabIndex = 124266;
     this.txtTarget.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTarget_PreviewKeyDown);
     //
     // txtNetBalance
     //
     this.txtNetBalance.EditValue = "0.00";
     this.txtNetBalance.Location = new System.Drawing.Point(285, 104);
     this.txtNetBalance.Name = "txtNetBalance";
     this.txtNetBalance.Size = new System.Drawing.Size(82, 20);
     this.txtNetBalance.TabIndex = 29;
     this.txtNetBalance.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtNetBalance_PreviewKeyDown);
     //
     // txtBalanceBonus
     //
     this.txtBalanceBonus.EditValue = "";
     this.txtBalanceBonus.Location = new System.Drawing.Point(285, 85);
     this.txtBalanceBonus.Name = "txtBalanceBonus";
     this.txtBalanceBonus.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceBonus.TabIndex = 28;
     this.txtBalanceBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceBonus_PreviewKeyDown);
     //
     // txtBalanceStock
     //
     this.txtBalanceStock.Location = new System.Drawing.Point(285, 66);
     this.txtBalanceStock.Name = "txtBalanceStock";
     this.txtBalanceStock.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceStock.TabIndex = 27;
     this.txtBalanceStock.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceStock_PreviewKeyDown);
     //
     // txtMaxQuantityDays
     //
     this.txtMaxQuantityDays.Location = new System.Drawing.Point(285, 47);
     this.txtMaxQuantityDays.Name = "txtMaxQuantityDays";
     this.txtMaxQuantityDays.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityDays.TabIndex = 26;
     this.txtMaxQuantityDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityDays_PreviewKeyDown);
     //
     // txtMaxQuantityPCustomer
     //
     this.txtMaxQuantityPCustomer.Location = new System.Drawing.Point(285, 28);
     this.txtMaxQuantityPCustomer.Name = "txtMaxQuantityPCustomer";
     this.txtMaxQuantityPCustomer.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityPCustomer.TabIndex = 25;
     this.txtMaxQuantityPCustomer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityPCustomer_PreviewKeyDown);
     //
     // txtPackInBox
     //
     this.txtPackInBox.Location = new System.Drawing.Point(102, 199);
     this.txtPackInBox.Name = "txtPackInBox";
     this.txtPackInBox.Size = new System.Drawing.Size(82, 20);
     this.txtPackInBox.TabIndex = 23;
     this.txtPackInBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInBox_PreviewKeyDown);
     //
     // txtInventoryDays
     //
     this.txtInventoryDays.EditValue = "0.00";
     this.txtInventoryDays.Location = new System.Drawing.Point(102, 180);
     this.txtInventoryDays.Name = "txtInventoryDays";
     this.txtInventoryDays.Size = new System.Drawing.Size(82, 20);
     this.txtInventoryDays.TabIndex = 22;
     this.txtInventoryDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInventoryDays_PreviewKeyDown);
     //
     // txtMinFlatRate
     //
     this.txtMinFlatRate.EditValue = "0.00";
     this.txtMinFlatRate.Location = new System.Drawing.Point(102, 161);
     this.txtMinFlatRate.Name = "txtMinFlatRate";
     this.txtMinFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMinFlatRate.TabIndex = 21;
     this.txtMinFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinFlatRate_PreviewKeyDown);
     //
     // txtMaxFlatRate
     //
     this.txtMaxFlatRate.EditValue = "0.00";
     this.txtMaxFlatRate.Location = new System.Drawing.Point(102, 142);
     this.txtMaxFlatRate.Name = "txtMaxFlatRate";
     this.txtMaxFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMaxFlatRate.TabIndex = 20;
     this.txtMaxFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxFlatRate_PreviewKeyDown);
     //
     // cmbSaleTaxCalculation
     //
     this.cmbSaleTaxCalculation.Location = new System.Drawing.Point(102, 123);
     this.cmbSaleTaxCalculation.Name = "cmbSaleTaxCalculation";
     this.cmbSaleTaxCalculation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSaleTaxCalculation.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSaleTaxCalculation.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSaleTaxCalculation.Size = new System.Drawing.Size(82, 20);
     this.cmbSaleTaxCalculation.TabIndex = 59;
     //
     // txtSaleTaxVale
     //
     this.txtSaleTaxVale.EditValue = "0.00";
     this.txtSaleTaxVale.Location = new System.Drawing.Point(102, 104);
     this.txtSaleTaxVale.Name = "txtSaleTaxVale";
     this.txtSaleTaxVale.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxVale.TabIndex = 19;
     this.txtSaleTaxVale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxVale_PreviewKeyDown);
     //
     // txtSaleTaxPer
     //
     this.txtSaleTaxPer.EditValue = "0.00";
     this.txtSaleTaxPer.Location = new System.Drawing.Point(102, 85);
     this.txtSaleTaxPer.Name = "txtSaleTaxPer";
     this.txtSaleTaxPer.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxPer.TabIndex = 18;
     this.txtSaleTaxPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxPer_PreviewKeyDown);
     //
     // txtMaxSalesDisc
     //
     this.txtMaxSalesDisc.EditValue = "0.00";
     this.txtMaxSalesDisc.Location = new System.Drawing.Point(102, 66);
     this.txtMaxSalesDisc.Name = "txtMaxSalesDisc";
     this.txtMaxSalesDisc.Size = new System.Drawing.Size(82, 20);
     this.txtMaxSalesDisc.TabIndex = 17;
     this.txtMaxSalesDisc.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxSalesDisc_PreviewKeyDown);
     //
     // txtPurchaseDiscountPer
     //
     this.txtPurchaseDiscountPer.EditValue = "0.0000";
     this.txtPurchaseDiscountPer.Location = new System.Drawing.Point(102, 47);
     this.txtPurchaseDiscountPer.Name = "txtPurchaseDiscountPer";
     this.txtPurchaseDiscountPer.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseDiscountPer.TabIndex = 16;
     this.txtPurchaseDiscountPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseDiscountPer_PreviewKeyDown);
     //
     // txtRetailPrice
     //
     this.txtRetailPrice.EditValue = "0.00";
     this.txtRetailPrice.Location = new System.Drawing.Point(102, 28);
     this.txtRetailPrice.Name = "txtRetailPrice";
     this.txtRetailPrice.Size = new System.Drawing.Size(82, 20);
     this.txtRetailPrice.TabIndex = 15;
     this.txtRetailPrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRetailPrice_PreviewKeyDown);
     //
     // chkwolallow
     //
     this.chkwolallow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkwolallow.EnterMoveNextControl = true;
     this.chkwolallow.Location = new System.Drawing.Point(545, 179);
     this.chkwolallow.Name = "chkwolallow";
     this.chkwolallow.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkwolallow.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkwolallow.Properties.Appearance.Options.UseFont = true;
     this.chkwolallow.Properties.Appearance.Options.UseForeColor = true;
     this.chkwolallow.Properties.Caption = "With Out Lic Allow";
     this.chkwolallow.Size = new System.Drawing.Size(136, 19);
     this.chkwolallow.TabIndex = 50;
     this.chkwolallow.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkwolallow_PreviewKeyDown);
     //
     // chkAllowPer
     //
     this.chkAllowPer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowPer.Location = new System.Drawing.Point(545, 145);
     this.chkAllowPer.Name = "chkAllowPer";
     this.chkAllowPer.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowPer.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowPer.Properties.Appearance.Options.UseFont = true;
     this.chkAllowPer.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowPer.Properties.Caption = "Allow 100%";
     this.chkAllowPer.Size = new System.Drawing.Size(136, 19);
     this.chkAllowPer.TabIndex = 48;
     this.chkAllowPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowPer_PreviewKeyDown);
     //
     // chkAutoBonus
     //
     this.chkAutoBonus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAutoBonus.Location = new System.Drawing.Point(545, 162);
     this.chkAutoBonus.Name = "chkAutoBonus";
     this.chkAutoBonus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAutoBonus.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAutoBonus.Properties.Appearance.Options.UseFont = true;
     this.chkAutoBonus.Properties.Appearance.Options.UseForeColor = true;
     this.chkAutoBonus.Properties.Caption = "Auto Bonus";
     this.chkAutoBonus.Size = new System.Drawing.Size(136, 19);
     this.chkAutoBonus.TabIndex = 49;
     this.chkAutoBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAutoBonus_PreviewKeyDown);
     //
     // chkSaleBase
     //
     this.chkSaleBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleBase.Location = new System.Drawing.Point(545, 128);
     this.chkSaleBase.Name = "chkSaleBase";
     this.chkSaleBase.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleBase.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleBase.Properties.Appearance.Options.UseFont = true;
     this.chkSaleBase.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleBase.Properties.Caption = "Sale Base";
     this.chkSaleBase.Size = new System.Drawing.Size(136, 19);
     this.chkSaleBase.TabIndex = 47;
     this.chkSaleBase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleBase_PreviewKeyDown);
     //
     // chkSaleTaxReg
     //
     this.chkSaleTaxReg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleTaxReg.Location = new System.Drawing.Point(545, 93);
     this.chkSaleTaxReg.Name = "chkSaleTaxReg";
     this.chkSaleTaxReg.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleTaxReg.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleTaxReg.Properties.Appearance.Options.UseFont = true;
     this.chkSaleTaxReg.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleTaxReg.Properties.Caption = "S.Tax Reg";
     this.chkSaleTaxReg.Size = new System.Drawing.Size(111, 19);
     this.chkSaleTaxReg.TabIndex = 44;
     this.chkSaleTaxReg.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleTaxReg_PreviewKeyDown);
     //
     // chkNonPharma
     //
     this.chkNonPharma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNonPharma.Location = new System.Drawing.Point(545, 110);
     this.chkNonPharma.Name = "chkNonPharma";
     this.chkNonPharma.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNonPharma.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNonPharma.Properties.Appearance.Options.UseFont = true;
     this.chkNonPharma.Properties.Appearance.Options.UseForeColor = true;
     this.chkNonPharma.Properties.Caption = "Non Pharma";
     this.chkNonPharma.Size = new System.Drawing.Size(89, 19);
     this.chkNonPharma.TabIndex = 45;
     this.chkNonPharma.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNonPharma_PreviewKeyDown);
     //
     // chkExcempted
     //
     this.chkExcempted.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkExcempted.Location = new System.Drawing.Point(545, 76);
     this.chkExcempted.Name = "chkExcempted";
     this.chkExcempted.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExcempted.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkExcempted.Properties.Appearance.Options.UseFont = true;
     this.chkExcempted.Properties.Appearance.Options.UseForeColor = true;
     this.chkExcempted.Properties.Caption = "Tax Excempted";
     this.chkExcempted.Size = new System.Drawing.Size(111, 19);
     this.chkExcempted.TabIndex = 43;
     this.chkExcempted.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkExcempted_PreviewKeyDown);
     //
     // chkUseFlatRate
     //
     this.chkUseFlatRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkUseFlatRate.Location = new System.Drawing.Point(545, 7);
     this.chkUseFlatRate.Name = "chkUseFlatRate";
     this.chkUseFlatRate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkUseFlatRate.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkUseFlatRate.Properties.Appearance.Options.UseFont = true;
     this.chkUseFlatRate.Properties.Appearance.Options.UseForeColor = true;
     this.chkUseFlatRate.Properties.Caption = "Use Flat Rate";
     this.chkUseFlatRate.Size = new System.Drawing.Size(139, 19);
     this.chkUseFlatRate.TabIndex = 39;
     this.chkUseFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkUseFlatRate_PreviewKeyDown);
     //
     // chkNorCotics
     //
     this.chkNorCotics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNorCotics.Location = new System.Drawing.Point(545, 24);
     this.chkNorCotics.Name = "chkNorCotics";
     this.chkNorCotics.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNorCotics.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNorCotics.Properties.Appearance.Options.UseFont = true;
     this.chkNorCotics.Properties.Appearance.Options.UseForeColor = true;
     this.chkNorCotics.Properties.Caption = "Norcotics";
     this.chkNorCotics.Size = new System.Drawing.Size(75, 19);
     this.chkNorCotics.TabIndex = 40;
     this.chkNorCotics.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNorCotics_PreviewKeyDown);
     //
     // chkHideinTabs
     //
     this.chkHideinTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkHideinTabs.Location = new System.Drawing.Point(545, 59);
     this.chkHideinTabs.Name = "chkHideinTabs";
     this.chkHideinTabs.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkHideinTabs.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkHideinTabs.Properties.Appearance.Options.UseFont = true;
     this.chkHideinTabs.Properties.Appearance.Options.UseForeColor = true;
     this.chkHideinTabs.Properties.Caption = "Hide in Tabs";
     this.chkHideinTabs.Size = new System.Drawing.Size(111, 19);
     this.chkHideinTabs.TabIndex = 42;
     this.chkHideinTabs.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkHideinTabs_PreviewKeyDown);
     //
     // chkAllowMaxQtyDays
     //
     this.chkAllowMaxQtyDays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowMaxQtyDays.Location = new System.Drawing.Point(545, 42);
     this.chkAllowMaxQtyDays.Name = "chkAllowMaxQtyDays";
     this.chkAllowMaxQtyDays.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowMaxQtyDays.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseFont = true;
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowMaxQtyDays.Properties.Caption = "Allow Max Qty & Days";
     this.chkAllowMaxQtyDays.Size = new System.Drawing.Size(139, 19);
     this.chkAllowMaxQtyDays.TabIndex = 41;
     this.chkAllowMaxQtyDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowMaxQtyDays_PreviewKeyDown);
     //
     // chkProductDiscontinue
     //
     this.chkProductDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkProductDiscontinue.Location = new System.Drawing.Point(545, 197);
     this.chkProductDiscontinue.Name = "chkProductDiscontinue";
     this.chkProductDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkProductDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkProductDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.chkProductDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.chkProductDiscontinue.Properties.Caption = "Product Discountinue";
     this.chkProductDiscontinue.Size = new System.Drawing.Size(141, 19);
     this.chkProductDiscontinue.TabIndex = 38;
     this.chkProductDiscontinue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkProductDiscontinue_PreviewKeyDown);
     //
     // txtTradePrice
     //
     this.txtTradePrice.EditValue = "0.00";
     this.txtTradePrice.Location = new System.Drawing.Point(102, 9);
     this.txtTradePrice.Name = "txtTradePrice";
     this.txtTradePrice.Size = new System.Drawing.Size(82, 20);
     this.txtTradePrice.TabIndex = 14;
     this.txtTradePrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTradePrice_PreviewKeyDown);
     //
     // txtSaleRate
     //
     this.txtSaleRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleRate.EditValue = "0.00";
     this.txtSaleRate.Location = new System.Drawing.Point(449, 9);
     this.txtSaleRate.Name = "txtSaleRate";
     this.txtSaleRate.Size = new System.Drawing.Size(82, 20);
     this.txtSaleRate.TabIndex = 33;
     this.txtSaleRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleRate_PreviewKeyDown);
     //
     // txtPackInCarton
     //
     this.txtPackInCarton.Location = new System.Drawing.Point(285, 9);
     this.txtPackInCarton.Name = "txtPackInCarton";
     this.txtPackInCarton.Size = new System.Drawing.Size(82, 20);
     this.txtPackInCarton.TabIndex = 24;
     this.txtPackInCarton.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInCarton_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(16, 9);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(96, 20);
     this.labelControl9.TabIndex = 140;
     this.labelControl9.Text = "Trade Price";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(16, 28);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(96, 20);
     this.labelControl18.TabIndex = 157;
     this.labelControl18.Text = "Retail Price";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl17.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl17.LineVisible = true;
     this.labelControl17.Location = new System.Drawing.Point(16, 47);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(96, 20);
     this.labelControl17.TabIndex = 156;
     this.labelControl17.Text = "Purchase Disc %";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(16, 66);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(96, 20);
     this.labelControl16.TabIndex = 155;
     this.labelControl16.Text = "Max Sales Disc %";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(16, 85);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(96, 20);
     this.labelControl15.TabIndex = 154;
     this.labelControl15.Text = "Sale Tax %";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(16, 104);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(96, 20);
     this.labelControl13.TabIndex = 153;
     this.labelControl13.Text = "Sale Tax Value";
     //
     // labelControl50
     //
     this.labelControl50.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl50.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl50.LineVisible = true;
     this.labelControl50.Location = new System.Drawing.Point(16, 123);
     this.labelControl50.Name = "labelControl50";
     this.labelControl50.Size = new System.Drawing.Size(96, 20);
     this.labelControl50.TabIndex = 60;
     this.labelControl50.Text = "Sale Tax Calc";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(16, 142);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(96, 20);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "Max Flat Rate";
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(16, 161);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(96, 20);
     this.labelControl11.TabIndex = 151;
     this.labelControl11.Text = "Min Flat Rate";
     //
     // labelControl19
     //
     this.labelControl19.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl19.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl19.LineVisible = true;
     this.labelControl19.Location = new System.Drawing.Point(16, 180);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(96, 20);
     this.labelControl19.TabIndex = 158;
     this.labelControl19.Text = "Inventory Days";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(16, 198);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(96, 20);
     this.labelControl20.TabIndex = 159;
     this.labelControl20.Text = "Tabs in Pack";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(191, 10);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(100, 20);
     this.labelControl25.TabIndex = 164;
     this.labelControl25.Text = "Packs in Carton";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(191, 29);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(100, 20);
     this.labelControl24.TabIndex = 163;
     this.labelControl24.Text = "Max Qty/Customer";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(191, 48);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(100, 20);
     this.labelControl23.TabIndex = 162;
     this.labelControl23.Text = "Max Qty Days";
     //
     // labelControl22
     //
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.LineVisible = true;
     this.labelControl22.Location = new System.Drawing.Point(191, 67);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(100, 20);
     this.labelControl22.TabIndex = 161;
     this.labelControl22.Text = "Balance Stock";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(191, 86);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(100, 20);
     this.labelControl21.TabIndex = 160;
     this.labelControl21.Text = "Balance Bonus";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(191, 104);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(100, 20);
     this.labelControl26.TabIndex = 165;
     this.labelControl26.Text = "Net Balance";
     //
     // labelControl52
     //
     this.labelControl52.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl52.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl52.LineVisible = true;
     this.labelControl52.Location = new System.Drawing.Point(191, 123);
     this.labelControl52.Name = "labelControl52";
     this.labelControl52.Size = new System.Drawing.Size(100, 20);
     this.labelControl52.TabIndex = 124267;
     this.labelControl52.Text = "Target";
     //
     // labelControl53
     //
     this.labelControl53.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl53.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl53.LineVisible = true;
     this.labelControl53.Location = new System.Drawing.Point(191, 142);
     this.labelControl53.Name = "labelControl53";
     this.labelControl53.Size = new System.Drawing.Size(100, 20);
     this.labelControl53.TabIndex = 124269;
     this.labelControl53.Text = "Transit";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(191, 162);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(100, 20);
     this.labelControl27.TabIndex = 166;
     this.labelControl27.Text = "Total Cost";
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(191, 180);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(100, 20);
     this.labelControl28.TabIndex = 167;
     this.labelControl28.Text = "Special Rate";
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(191, 199);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(100, 20);
     this.labelControl29.TabIndex = 168;
     this.labelControl29.Text = "Pure Rate";
     //
     // labelControl30
     //
     this.labelControl30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl30.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl30.LineVisible = true;
     this.labelControl30.Location = new System.Drawing.Point(373, 10);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(82, 20);
     this.labelControl30.TabIndex = 169;
     this.labelControl30.Text = "Sale Rate";
     //
     // labelControl31
     //
     this.labelControl31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl31.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl31.LineVisible = true;
     this.labelControl31.Location = new System.Drawing.Point(373, 29);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(82, 20);
     this.labelControl31.TabIndex = 182;
     this.labelControl31.Text = "Lead Time";
     //
     // labelControl32
     //
     this.labelControl32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl32.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl32.LineVisible = true;
     this.labelControl32.Location = new System.Drawing.Point(373, 48);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(82, 20);
     this.labelControl32.TabIndex = 184;
     this.labelControl32.Text = "Tolerance Day";
     //
     // labelControl37
     //
     this.labelControl37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl37.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl37.LineVisible = true;
     this.labelControl37.Location = new System.Drawing.Point(373, 67);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(82, 20);
     this.labelControl37.TabIndex = 186;
     this.labelControl37.Text = "Avg Rate";
     //
     // labelControl38
     //
     this.labelControl38.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl38.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl38.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl38.LineVisible = true;
     this.labelControl38.Location = new System.Drawing.Point(373, 86);
     this.labelControl38.Name = "labelControl38";
     this.labelControl38.Size = new System.Drawing.Size(82, 20);
     this.labelControl38.TabIndex = 103;
     this.labelControl38.Text = "Value Method";
     //
     // labelControl44
     //
     this.labelControl44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl44.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl44.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl44.LineVisible = true;
     this.labelControl44.Location = new System.Drawing.Point(373, 105);
     this.labelControl44.Name = "labelControl44";
     this.labelControl44.Size = new System.Drawing.Size(82, 20);
     this.labelControl44.TabIndex = 124261;
     this.labelControl44.Text = "UOM-Sale";
     //
     // labelControl43
     //
     this.labelControl43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl43.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl43.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl43.LineVisible = true;
     this.labelControl43.Location = new System.Drawing.Point(373, 124);
     this.labelControl43.Name = "labelControl43";
     this.labelControl43.Size = new System.Drawing.Size(82, 20);
     this.labelControl43.TabIndex = 124259;
     this.labelControl43.Text = "UOM-Size";
     //
     // labelControl41
     //
     this.labelControl41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl41.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl41.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl41.LineVisible = true;
     this.labelControl41.Location = new System.Drawing.Point(373, 144);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(82, 20);
     this.labelControl41.TabIndex = 124263;
     this.labelControl41.Text = "UOM-Purchase";
     //
     // labelControl42
     //
     this.labelControl42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl42.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl42.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl42.LineVisible = true;
     this.labelControl42.Location = new System.Drawing.Point(373, 161);
     this.labelControl42.Name = "labelControl42";
     this.labelControl42.Size = new System.Drawing.Size(82, 20);
     this.labelControl42.TabIndex = 124265;
     this.labelControl42.Text = "Factor";
     //
     // XtrabarBonus
     //
     this.XtrabarBonus.Controls.Add(this.datagridBonus);
     this.XtrabarBonus.Name = "XtrabarBonus";
     this.XtrabarBonus.Size = new System.Drawing.Size(695, 226);
     this.XtrabarBonus.Text = "Bonus";
     //
     // datagridBonus
     //
     this.datagridBonus.AllowAddNew = true;
     this.datagridBonus.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridBonus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridBonus.Caption = "Product Bonus";
     this.datagridBonus.CaptionHeight = 20;
     this.datagridBonus.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ColumnFooters = true;
     this.datagridBonus.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridBonus.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridBonus.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridBonus.Images"))));
     this.datagridBonus.Location = new System.Drawing.Point(0, 1);
     this.datagridBonus.Name = "datagridBonus";
     this.datagridBonus.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridBonus.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridBonus.PreviewInfo.ZoomFactor = 75D;
     this.datagridBonus.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridBonus.PrintInfo.PageSettings")));
     this.datagridBonus.RecordSelectors = false;
     this.datagridBonus.RowHeight = 20;
     this.datagridBonus.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridBonus.ScrollTips = true;
     this.datagridBonus.Size = new System.Drawing.Size(726, 304);
     this.datagridBonus.TabIndex = 32000;
     this.datagridBonus.Text = "c1TrueDBGrid1";
     this.datagridBonus.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridBonus.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridBonus_AfterColUpdate);
     this.datagridBonus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridBonus_KeyDown);
     this.datagridBonus.PropBag = resources.GetString("datagridBonus.PropBag");
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.datagridProductAllocation);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage1.Text = "Territory Allocation";
     //
     // datagridProductAllocation
     //
     this.datagridProductAllocation.AllowAddNew = true;
     this.datagridProductAllocation.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridProductAllocation.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridProductAllocation.Caption = "Product Allocation";
     this.datagridProductAllocation.CaptionHeight = 20;
     this.datagridProductAllocation.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ColumnFooters = true;
     this.datagridProductAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridProductAllocation.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridProductAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridProductAllocation.Images"))));
     this.datagridProductAllocation.Location = new System.Drawing.Point(-1, 0);
     this.datagridProductAllocation.Name = "datagridProductAllocation";
     this.datagridProductAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridProductAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridProductAllocation.PreviewInfo.ZoomFactor = 75D;
     this.datagridProductAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridProductAllocation.PrintInfo.PageSettings")));
     this.datagridProductAllocation.RecordSelectors = false;
     this.datagridProductAllocation.RowHeight = 20;
     this.datagridProductAllocation.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridProductAllocation.ScrollTips = true;
     this.datagridProductAllocation.Size = new System.Drawing.Size(696, 233);
     this.datagridProductAllocation.TabIndex = 1;
     this.datagridProductAllocation.Text = "c1TrueDBGrid1";
     this.datagridProductAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridProductAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridProductAllocation_AfterColUpdate);
     this.datagridProductAllocation.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridProductAllocation_KeyDown);
     this.datagridProductAllocation.PropBag = resources.GetString("datagridProductAllocation.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.groupControl5);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage2.Text = "Advance Information";
     //
     // groupControl5
     //
     this.groupControl5.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.groupControl5.Controls.Add(this.txtMaxLimit);
     this.groupControl5.Controls.Add(this.txtMinLimit);
     this.groupControl5.Controls.Add(this.txtBarCode);
     this.groupControl5.Controls.Add(this.txtShelfCode);
     this.groupControl5.Controls.Add(this.grdPresevasionStandard);
     this.groupControl5.Controls.Add(this.simpleButton8);
     this.groupControl5.Controls.Add(this.txtClaimPartnerID);
     this.groupControl5.Controls.Add(this.txtClaimPartnerName);
     this.groupControl5.Controls.Add(this.simpleButton7);
     this.groupControl5.Controls.Add(this.txtBussinessPartnerid);
     this.groupControl5.Controls.Add(this.businessPartnerName);
     this.groupControl5.Controls.Add(this.labelControl40);
     this.groupControl5.Controls.Add(this.labelControl48);
     this.groupControl5.Controls.Add(this.labelControl46);
     this.groupControl5.Controls.Add(this.labelControl47);
     this.groupControl5.Controls.Add(this.labelControl54);
     this.groupControl5.Controls.Add(this.labelControl55);
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(695, 233);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Extra Information";
     //
     // txtMaxLimit
     //
     this.txtMaxLimit.Location = new System.Drawing.Point(103, 102);
     this.txtMaxLimit.Name = "txtMaxLimit";
     this.txtMaxLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMaxLimit.TabIndex = 124268;
     this.txtMaxLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxLimit_PreviewKeyDown);
     //
     // txtMinLimit
     //
     this.txtMinLimit.Location = new System.Drawing.Point(103, 83);
     this.txtMinLimit.Name = "txtMinLimit";
     this.txtMinLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMinLimit.TabIndex = 124266;
     this.txtMinLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinLimit_PreviewKeyDown);
     //
     // txtBarCode
     //
     this.txtBarCode.Location = new System.Drawing.Point(103, 64);
     this.txtBarCode.Name = "txtBarCode";
     this.txtBarCode.Size = new System.Drawing.Size(209, 20);
     this.txtBarCode.TabIndex = 124261;
     this.txtBarCode.TabStop = false;
     this.txtBarCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBarCode_PreviewKeyDown);
     //
     // txtShelfCode
     //
     this.txtShelfCode.Location = new System.Drawing.Point(103, 45);
     this.txtShelfCode.Name = "txtShelfCode";
     this.txtShelfCode.Size = new System.Drawing.Size(209, 20);
     this.txtShelfCode.TabIndex = 124259;
     this.txtShelfCode.TabStop = false;
     this.txtShelfCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShelfCode_PreviewKeyDown);
     //
     // grdPresevasionStandard
     //
     this.grdPresevasionStandard.AllowAddNew = true;
     this.grdPresevasionStandard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdPresevasionStandard.CaptionHeight = 17;
     this.grdPresevasionStandard.Images.Add(((System.Drawing.Image)(resources.GetObject("grdPresevasionStandard.Images"))));
     this.grdPresevasionStandard.Location = new System.Drawing.Point(411, 5);
     this.grdPresevasionStandard.Name = "grdPresevasionStandard";
     this.grdPresevasionStandard.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdPresevasionStandard.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdPresevasionStandard.PreviewInfo.ZoomFactor = 75D;
     this.grdPresevasionStandard.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdPresevasionStandard.PrintInfo.PageSettings")));
     this.grdPresevasionStandard.RowHeight = 15;
     this.grdPresevasionStandard.Size = new System.Drawing.Size(277, 225);
     this.grdPresevasionStandard.TabIndex = 124270;
     this.grdPresevasionStandard.Text = "c1TrueDBGrid2";
     this.grdPresevasionStandard.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdPresevasionStandard_AfterColUpdate);
     this.grdPresevasionStandard.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdPresevasionStandard_PreviewKeyDown);
     this.grdPresevasionStandard.PropBag = resources.GetString("grdPresevasionStandard.PropBag");
     //
     // simpleButton8
     //
     this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton8.Appearance.Options.UseFont = true;
     this.simpleButton8.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton8.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton8.Location = new System.Drawing.Point(152, 26);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton8.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.simpleButton8.SuperTip = superToolTip1;
     this.simpleButton8.TabIndex = 124264;
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // txtClaimPartnerID
     //
     this.txtClaimPartnerID.Location = new System.Drawing.Point(103, 25);
     this.txtClaimPartnerID.Mask = "000000";
     this.txtClaimPartnerID.Name = "txtClaimPartnerID";
     this.txtClaimPartnerID.Size = new System.Drawing.Size(49, 21);
     this.txtClaimPartnerID.TabIndex = 124262;
     this.txtClaimPartnerID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClaimPartnerID_PreviewKeyDown);
     //
     // txtClaimPartnerName
     //
     this.txtClaimPartnerName.Location = new System.Drawing.Point(176, 26);
     this.txtClaimPartnerName.Name = "txtClaimPartnerName";
     this.txtClaimPartnerName.Size = new System.Drawing.Size(136, 20);
     this.txtClaimPartnerName.TabIndex = 124265;
     //
     // simpleButton7
     //
     this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton7.Appearance.Options.UseFont = true;
     this.simpleButton7.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton7.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton7.Location = new System.Drawing.Point(152, 6);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton7.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.simpleButton7.SuperTip = superToolTip2;
     this.simpleButton7.TabIndex = 124250;
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // txtBussinessPartnerid
     //
     this.txtBussinessPartnerid.Location = new System.Drawing.Point(103, 6);
     this.txtBussinessPartnerid.Mask = "000000";
     this.txtBussinessPartnerid.Name = "txtBussinessPartnerid";
     this.txtBussinessPartnerid.Size = new System.Drawing.Size(49, 21);
     this.txtBussinessPartnerid.TabIndex = 124248;
     this.txtBussinessPartnerid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBussinessPartnerid_PreviewKeyDown);
     //
     // businessPartnerName
     //
     this.businessPartnerName.Location = new System.Drawing.Point(176, 7);
     this.businessPartnerName.Name = "businessPartnerName";
     this.businessPartnerName.Size = new System.Drawing.Size(136, 20);
     this.businessPartnerName.TabIndex = 124251;
     //
     // labelControl40
     //
     this.labelControl40.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl40.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl40.LineVisible = true;
     this.labelControl40.Location = new System.Drawing.Point(8, 6);
     this.labelControl40.Name = "labelControl40";
     this.labelControl40.Size = new System.Drawing.Size(103, 20);
     this.labelControl40.TabIndex = 124249;
     this.labelControl40.Text = "Business Partner ID";
     //
     // labelControl48
     //
     this.labelControl48.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl48.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl48.LineVisible = true;
     this.labelControl48.Location = new System.Drawing.Point(8, 26);
     this.labelControl48.Name = "labelControl48";
     this.labelControl48.Size = new System.Drawing.Size(103, 20);
     this.labelControl48.TabIndex = 124263;
     this.labelControl48.Text = "Claim Partner ID";
     //
     // labelControl46
     //
     this.labelControl46.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl46.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl46.LineVisible = true;
     this.labelControl46.Location = new System.Drawing.Point(8, 46);
     this.labelControl46.Name = "labelControl46";
     this.labelControl46.Size = new System.Drawing.Size(103, 20);
     this.labelControl46.TabIndex = 124258;
     this.labelControl46.Text = "Shelf Code";
     //
     // labelControl47
     //
     this.labelControl47.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl47.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl47.LineVisible = true;
     this.labelControl47.Location = new System.Drawing.Point(8, 65);
     this.labelControl47.Name = "labelControl47";
     this.labelControl47.Size = new System.Drawing.Size(103, 20);
     this.labelControl47.TabIndex = 124260;
     this.labelControl47.Text = "Bar Code";
     //
     // labelControl54
     //
     this.labelControl54.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl54.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl54.LineVisible = true;
     this.labelControl54.Location = new System.Drawing.Point(8, 85);
     this.labelControl54.Name = "labelControl54";
     this.labelControl54.Size = new System.Drawing.Size(103, 20);
     this.labelControl54.TabIndex = 124267;
     this.labelControl54.Text = "Min Limit";
     //
     // labelControl55
     //
     this.labelControl55.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl55.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl55.LineVisible = true;
     this.labelControl55.Location = new System.Drawing.Point(8, 103);
     this.labelControl55.Name = "labelControl55";
     this.labelControl55.Size = new System.Drawing.Size(103, 20);
     this.labelControl55.TabIndex = 124269;
     this.labelControl55.Text = "Max Limit";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.dgFileAttachments);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage3.Text = "Attachment & Remarks";
     //
     // dgFileAttachments
     //
     this.dgFileAttachments.AllowAddNew = true;
     this.dgFileAttachments.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.dgFileAttachments.CaptionHeight = 17;
     this.dgFileAttachments.Images.Add(((System.Drawing.Image)(resources.GetObject("dgFileAttachments.Images"))));
     this.dgFileAttachments.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.Name = "dgFileAttachments";
     this.dgFileAttachments.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.dgFileAttachments.PreviewInfo.ZoomFactor = 75D;
     this.dgFileAttachments.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("dgFileAttachments.PrintInfo.PageSettings")));
     this.dgFileAttachments.RowHeight = 15;
     this.dgFileAttachments.Size = new System.Drawing.Size(698, 233);
     this.dgFileAttachments.TabIndex = 0;
     this.dgFileAttachments.Text = "c1TrueDBGrid1";
     this.dgFileAttachments.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_AfterColUpdate);
     this.dgFileAttachments.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_ButtonClick);
     this.dgFileAttachments.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.dgFileAttachments_PreviewKeyDown);
     this.dgFileAttachments.PropBag = resources.GetString("dgFileAttachments.PropBag");
     //
     // Productid
     //
     this.Productid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.Productid.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Productid.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.Productid.LineVisible = true;
     this.Productid.Location = new System.Drawing.Point(4, 12);
     this.Productid.Name = "Productid";
     this.Productid.Size = new System.Drawing.Size(72, 20);
     this.Productid.TabIndex = 1;
     this.Productid.Text = "Item Id";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cmbProductCategory);
     this.groupControl1.Controls.Add(this.txtShortName);
     this.groupControl1.Controls.Add(this.txtArtical);
     this.groupControl1.Controls.Add(this.txtProductName);
     this.groupControl1.Controls.Add(this.cmbSkuType);
     this.groupControl1.Controls.Add(this.cmbGeneralName);
     this.groupControl1.Controls.Add(this.cmbProtoType);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtProductId);
     this.groupControl1.Controls.Add(this.txtPack);
     this.groupControl1.Controls.Add(this.Productid);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.labelControl49);
     this.groupControl1.Controls.Add(this.labelControl39);
     this.groupControl1.Location = new System.Drawing.Point(2, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(405, 105);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "Products";
     //
     // cmbProductCategory
     //
     this.cmbProductCategory.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProductCategory.Location = new System.Drawing.Point(308, 67);
     this.cmbProductCategory.Name = "cmbProductCategory";
     this.cmbProductCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProductCategory.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProductCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProductCategory.Size = new System.Drawing.Size(91, 20);
     this.cmbProductCategory.TabIndex = 55;
     this.cmbProductCategory.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProductCategory_PreviewKeyDown);
     //
     // txtShortName
     //
     this.txtShortName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtShortName.Location = new System.Drawing.Point(62, 69);
     this.txtShortName.Name = "txtShortName";
     this.txtShortName.Size = new System.Drawing.Size(169, 20);
     this.txtShortName.TabIndex = 6;
     this.txtShortName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShortName_PreviewKeyDown);
     //
     // txtArtical
     //
     this.txtArtical.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtArtical.Location = new System.Drawing.Point(62, 50);
     this.txtArtical.Name = "txtArtical";
     this.txtArtical.Size = new System.Drawing.Size(169, 20);
     this.txtArtical.TabIndex = 5;
     this.txtArtical.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtArtical_PreviewKeyDown);
     //
     // txtProductName
     //
     this.txtProductName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductName.Location = new System.Drawing.Point(62, 31);
     this.txtProductName.Name = "txtProductName";
     this.txtProductName.Size = new System.Drawing.Size(169, 20);
     this.txtProductName.TabIndex = 4;
     this.txtProductName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductName_PreviewKeyDown);
     //
     // cmbSkuType
     //
     this.cmbSkuType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbSkuType.Location = new System.Drawing.Point(308, 48);
     this.cmbSkuType.Name = "cmbSkuType";
     this.cmbSkuType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSkuType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSkuType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSkuType.Size = new System.Drawing.Size(91, 20);
     this.cmbSkuType.TabIndex = 57;
     this.cmbSkuType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbSkuType_PreviewKeyDown);
     //
     // cmbGeneralName
     //
     this.cmbGeneralName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbGeneralName.Location = new System.Drawing.Point(308, 29);
     this.cmbGeneralName.Name = "cmbGeneralName";
     this.cmbGeneralName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbGeneralName.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbGeneralName.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbGeneralName.Size = new System.Drawing.Size(91, 20);
     this.cmbGeneralName.TabIndex = 3;
     this.cmbGeneralName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbGeneralName_PreviewKeyDown);
     //
     // cmbProtoType
     //
     this.cmbProtoType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProtoType.Location = new System.Drawing.Point(308, 11);
     this.cmbProtoType.Name = "cmbProtoType";
     this.cmbProtoType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProtoType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProtoType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProtoType.Size = new System.Drawing.Size(91, 20);
     this.cmbProtoType.TabIndex = 2;
     this.cmbProtoType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProtoType_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(113, 12);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btnPickList.SuperTip = superToolTip3;
     this.btnPickList.TabIndex = 47;
     this.btnPickList.TabStop = false;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl3.Location = new System.Drawing.Point(140, 15);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(22, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "Pack";
     //
     // txtProductId
     //
     this.txtProductId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductId.Location = new System.Drawing.Point(62, 11);
     this.txtProductId.Mask = "000-000";
     this.txtProductId.Name = "txtProductId";
     this.txtProductId.Size = new System.Drawing.Size(51, 21);
     this.txtProductId.TabIndex = 0;
     this.txtProductId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductId_KeyDown);
     this.txtProductId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtProductId_KeyPress);
     this.txtProductId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductId_PreviewKeyDown);
     //
     // txtPack
     //
     this.txtPack.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPack.Location = new System.Drawing.Point(171, 12);
     this.txtPack.Name = "txtPack";
     this.txtPack.Size = new System.Drawing.Size(60, 20);
     this.txtPack.TabIndex = 1;
     this.txtPack.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPack_PreviewKeyDown);
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(4, 32);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 20);
     this.labelControl6.TabIndex = 7;
     this.labelControl6.Text = "Item Name";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(4, 51);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 20);
     this.labelControl2.TabIndex = 52;
     this.labelControl2.Text = "Artical No.";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(4, 70);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(72, 20);
     this.labelControl8.TabIndex = 59;
     this.labelControl8.Text = "Description";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(235, 11);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(90, 20);
     this.labelControl14.TabIndex = 52;
     this.labelControl14.Text = "Item Type";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(235, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(90, 20);
     this.labelControl7.TabIndex = 54;
     this.labelControl7.Text = "Gen. Name";
     //
     // labelControl49
     //
     this.labelControl49.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl49.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl49.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl49.LineVisible = true;
     this.labelControl49.Location = new System.Drawing.Point(235, 48);
     this.labelControl49.Name = "labelControl49";
     this.labelControl49.Size = new System.Drawing.Size(77, 20);
     this.labelControl49.TabIndex = 58;
     this.labelControl49.Text = "SKU Type";
     //
     // labelControl39
     //
     this.labelControl39.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl39.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl39.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl39.LineVisible = true;
     this.labelControl39.Location = new System.Drawing.Point(235, 67);
     this.labelControl39.Name = "labelControl39";
     this.labelControl39.Size = new System.Drawing.Size(90, 20);
     this.labelControl39.TabIndex = 56;
     this.labelControl39.Text = "Item Category";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(169, 9);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 20);
     this.labelControl4.TabIndex = 5;
     this.labelControl4.Text = "Group Seq.";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(5, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(84, 20);
     this.labelControl5.TabIndex = 6;
     this.labelControl5.Text = "Group Name";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(5, 8);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(71, 20);
     this.labelControl10.TabIndex = 11;
     this.labelControl10.Text = "Group Id";
     //
     // txtGroupSeq
     //
     this.txtGroupSeq.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupSeq.Location = new System.Drawing.Point(224, 10);
     this.txtGroupSeq.Name = "txtGroupSeq";
     this.txtGroupSeq.Size = new System.Drawing.Size(62, 20);
     this.txtGroupSeq.TabIndex = 8;
     this.txtGroupSeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupSeq_PreviewKeyDown);
     //
     // txtGroupName
     //
     this.txtGroupName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupName.Location = new System.Drawing.Point(85, 29);
     this.txtGroupName.Name = "txtGroupName";
     this.txtGroupName.Size = new System.Drawing.Size(201, 20);
     this.txtGroupName.TabIndex = 124244;
     this.txtGroupName.TabStop = false;
     //
     // txtGroupid
     //
     this.txtGroupid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupid.Location = new System.Drawing.Point(85, 9);
     this.txtGroupid.Mask = "000-000";
     this.txtGroupid.Name = "txtGroupid";
     this.txtGroupid.Size = new System.Drawing.Size(51, 21);
     this.txtGroupid.TabIndex = 7;
     this.txtGroupid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupid_PreviewKeyDown);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(137, 9);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton1.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.simpleButton1.SuperTip = superToolTip4;
     this.simpleButton1.TabIndex = 48;
     this.simpleButton1.TabStop = false;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.txtmanualgroup);
     this.groupControl2.Controls.Add(this.labelControl57);
     this.groupControl2.Controls.Add(this.txtdateto);
     this.groupControl2.Controls.Add(this.txtdatefrom);
     this.groupControl2.Controls.Add(this.simpleButton4);
     this.groupControl2.Controls.Add(this.simpleButton1);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.txtGroupName);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.txtGroupSeq);
     this.groupControl2.Controls.Add(this.txtGroupid);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl56);
     this.groupControl2.Controls.Add(this.labelControl51);
     this.groupControl2.Location = new System.Drawing.Point(411, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(291, 105);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "Group";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // txtmanualgroup
     //
     this.txtmanualgroup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtmanualgroup.Location = new System.Drawing.Point(85, 68);
     this.txtmanualgroup.Name = "txtmanualgroup";
     this.txtmanualgroup.Size = new System.Drawing.Size(201, 20);
     this.txtmanualgroup.TabIndex = 124245;
     this.txtmanualgroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtmanualgroup_PreviewKeyDown);
     //
     // labelControl57
     //
     this.labelControl57.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl57.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl57.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl57.LineVisible = true;
     this.labelControl57.Location = new System.Drawing.Point(168, 50);
     this.labelControl57.Name = "labelControl57";
     this.labelControl57.Size = new System.Drawing.Size(38, 20);
     this.labelControl57.TabIndex = 124252;
     this.labelControl57.Text = "Date To";
     //
     // txtdateto
     //
     this.txtdateto.Location = new System.Drawing.Point(211, 48);
     this.txtdateto.Mask = "00/00/0000";
     this.txtdateto.Name = "txtdateto";
     this.txtdateto.Size = new System.Drawing.Size(75, 21);
     this.txtdateto.TabIndex = 124251;
     this.txtdateto.ValidatingType = typeof(System.DateTime);
     this.txtdateto.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdateto_PreviewKeyDown);
     //
     // txtdatefrom
     //
     this.txtdatefrom.Location = new System.Drawing.Point(85, 48);
     this.txtdatefrom.Mask = "00/00/0000";
     this.txtdatefrom.Name = "txtdatefrom";
     this.txtdatefrom.Size = new System.Drawing.Size(75, 21);
     this.txtdatefrom.TabIndex = 124250;
     this.txtdatefrom.ValidatingType = typeof(System.DateTime);
     this.txtdatefrom.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdatefrom_PreviewKeyDown);
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton4.Location = new System.Drawing.Point(63, 9);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(21, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem1);
     this.simpleButton4.SuperTip = superToolTip5;
     this.simpleButton4.TabIndex = 187;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // labelControl56
     //
     this.labelControl56.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl56.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl56.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl56.LineVisible = true;
     this.labelControl56.Location = new System.Drawing.Point(5, 51);
     this.labelControl56.Name = "labelControl56";
     this.labelControl56.Size = new System.Drawing.Size(84, 20);
     this.labelControl56.TabIndex = 124249;
     this.labelControl56.Text = "Date From";
     //
     // labelControl51
     //
     this.labelControl51.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl51.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl51.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl51.LineVisible = true;
     this.labelControl51.Location = new System.Drawing.Point(5, 69);
     this.labelControl51.Name = "labelControl51";
     this.labelControl51.Size = new System.Drawing.Size(84, 20);
     this.labelControl51.TabIndex = 124246;
     this.labelControl51.Text = "Manual Groups";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(3, 426);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Add New Module";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip6;
     this.btnAdd.TabIndex = 47;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(79, 426);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip7;
     this.btnCancel.TabIndex = 50;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.simpleButton6);
     this.groupControl4.Controls.Add(this.simpleButton5);
     this.groupControl4.Controls.Add(this.chkCompanyDiscount);
     this.groupControl4.Controls.Add(this.txtCompanySeq);
     this.groupControl4.Controls.Add(this.simpleButton3);
     this.groupControl4.Controls.Add(this.labelControl35);
     this.groupControl4.Controls.Add(this.txtReportCompanyName);
     this.groupControl4.Controls.Add(this.txtReportCompanyid);
     this.groupControl4.Controls.Add(this.simpleButton2);
     this.groupControl4.Controls.Add(this.txtCompanyName);
     this.groupControl4.Controls.Add(this.txtCompanyid);
     this.groupControl4.Controls.Add(this.labelControl33);
     this.groupControl4.Controls.Add(this.labelControl34);
     this.groupControl4.Controls.Add(this.labelControl36);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Location = new System.Drawing.Point(3, 110);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(699, 55);
     this.groupControl4.TabIndex = 49;
     this.groupControl4.Text = "Group";
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton6.Location = new System.Drawing.Point(110, 27);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(21, 20);
     toolTipItem4.Text = "Save Module";
     superToolTip8.Items.Add(toolTipItem4);
     this.simpleButton6.SuperTip = superToolTip8;
     this.simpleButton6.TabIndex = 124246;
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(110, 6);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(21, 20);
     toolTipItem5.Text = "Save Module";
     superToolTip9.Items.Add(toolTipItem5);
     this.simpleButton5.SuperTip = superToolTip9;
     this.simpleButton5.TabIndex = 124245;
     //
     // chkCompanyDiscount
     //
     this.chkCompanyDiscount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.chkCompanyDiscount.Location = new System.Drawing.Point(472, 26);
     this.chkCompanyDiscount.Name = "chkCompanyDiscount";
     this.chkCompanyDiscount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkCompanyDiscount.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkCompanyDiscount.Properties.Appearance.Options.UseFont = true;
     this.chkCompanyDiscount.Properties.Appearance.Options.UseForeColor = true;
     this.chkCompanyDiscount.Properties.Caption = "Company Discount";
     this.chkCompanyDiscount.Size = new System.Drawing.Size(136, 19);
     this.chkCompanyDiscount.TabIndex = 100001;
     this.chkCompanyDiscount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkCompanyDiscount_PreviewKeyDown);
     //
     // txtCompanySeq
     //
     this.txtCompanySeq.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanySeq.Location = new System.Drawing.Point(542, 6);
     this.txtCompanySeq.Name = "txtCompanySeq";
     this.txtCompanySeq.Size = new System.Drawing.Size(62, 20);
     this.txtCompanySeq.TabIndex = 10;
     this.txtCompanySeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanySeq_PreviewKeyDown);
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton3.Appearance.Options.UseFont = true;
     this.simpleButton3.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location = new System.Drawing.Point(159, 27);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton3.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip10.Items.Add(toolTipTitleItem5);
     this.simpleButton3.SuperTip = superToolTip10;
     this.simpleButton3.TabIndex = 53;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // labelControl35
     //
     this.labelControl35.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl35.LineVisible = true;
     this.labelControl35.Location = new System.Drawing.Point(17, 29);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(101, 20);
     this.labelControl35.TabIndex = 50;
     this.labelControl35.Text = "Report CompanyId";
     //
     // txtReportCompanyName
     //
     this.txtReportCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyName.Location = new System.Drawing.Point(264, 26);
     this.txtReportCompanyName.Name = "txtReportCompanyName";
     this.txtReportCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtReportCompanyName.TabIndex = 13;
     //
     // txtReportCompanyid
     //
     this.txtReportCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyid.Location = new System.Drawing.Point(133, 27);
     this.txtReportCompanyid.Mask = "000";
     this.txtReportCompanyid.Name = "txtReportCompanyid";
     this.txtReportCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtReportCompanyid.TabIndex = 11;
     this.txtReportCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReportCompanyid_PreviewKeyDown);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton2.Appearance.Options.UseFont = true;
     this.simpleButton2.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(159, 6);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton2.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip11.Items.Add(toolTipTitleItem6);
     this.simpleButton2.SuperTip = superToolTip11;
     this.simpleButton2.TabIndex = 48;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyName.Location = new System.Drawing.Point(264, 6);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtCompanyName.TabIndex = 100000;
     //
     // txtCompanyid
     //
     this.txtCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyid.Location = new System.Drawing.Point(133, 6);
     this.txtCompanyid.Mask = "000";
     this.txtCompanyid.Name = "txtCompanyid";
     this.txtCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtCompanyid.TabIndex = 9;
     this.txtCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanyid_PreviewKeyDown);
     //
     // labelControl33
     //
     this.labelControl33.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl33.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl33.LineVisible = true;
     this.labelControl33.Location = new System.Drawing.Point(17, 7);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(101, 20);
     this.labelControl33.TabIndex = 11;
     this.labelControl33.Text = "Company Id";
     //
     // labelControl34
     //
     this.labelControl34.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl34.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl34.LineVisible = true;
     this.labelControl34.Location = new System.Drawing.Point(187, 6);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(95, 20);
     this.labelControl34.TabIndex = 6;
     this.labelControl34.Text = "Company Name";
     //
     // labelControl36
     //
     this.labelControl36.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl36.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl36.LineVisible = true;
     this.labelControl36.Location = new System.Drawing.Point(187, 26);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(95, 20);
     this.labelControl36.TabIndex = 49;
     this.labelControl36.Text = "Company Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(471, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(81, 20);
     this.labelControl1.TabIndex = 54;
     this.labelControl1.Text = "Company Seq.";
     //
     // frmProducts
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 454);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmProducts";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Products";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmProducts_FormClosing);
     this.Load += new System.EventHandler(this.frmProducts_Load);
     this.Enter += new System.EventHandler(this.frmProducts_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtrabarGeneralinformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).EndInit();
     this.XtrabarBonus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_reporte_diferenciaInvRollos));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.chkDiferencias = new DevExpress.XtraEditors.CheckEdit();
     this.cmb_fechas = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.rollo = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.productname = new System.Windows.Forms.TextBox();
     this.productid = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.lineaname = new System.Windows.Forms.TextBox();
     this.lineaid = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_buscar = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_imprimir_gen = new System.Windows.Forms.ToolStripButton();
     this.btn_excel = new System.Windows.Forms.ToolStripButton();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkDiferencias.Properties)).BeginInit();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.chkDiferencias);
     this.groupBox1.Controls.Add(this.cmb_fechas);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.rollo);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.productname);
     this.groupBox1.Controls.Add(this.productid);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.lineaname);
     this.groupBox1.Controls.Add(this.lineaid);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(0, 83);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(514, 114);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // chkDiferencias
     //
     this.chkDiferencias.Location = new System.Drawing.Point(248, 89);
     this.chkDiferencias.Name = "chkDiferencias";
     this.chkDiferencias.Properties.Caption = "Solo Diferencias";
     this.chkDiferencias.Size = new System.Drawing.Size(95, 19);
     this.chkDiferencias.TabIndex = 89;
     //
     // cmb_fechas
     //
     this.cmb_fechas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_fechas.FormattingEnabled = true;
     this.cmb_fechas.Location = new System.Drawing.Point(102, 87);
     this.cmb_fechas.Name = "cmb_fechas";
     this.cmb_fechas.Size = new System.Drawing.Size(121, 21);
     this.cmb_fechas.TabIndex = 88;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(53, 89);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(46, 13);
     this.label3.TabIndex = 87;
     this.label3.Text = "Fecha:";
     //
     // rollo
     //
     this.rollo.Location = new System.Drawing.Point(103, 64);
     this.rollo.MaxLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.Size = new System.Drawing.Size(60, 21);
     this.rollo.TabIndex = 84;
     this.rollo.Text = "ventas al exterior";
     this.rollo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rollo_KeyDown);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(57, 66);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(40, 13);
     this.label8.TabIndex = 83;
     this.label8.Text = "Rollo:";
     //
     // productname
     //
     this.productname.Location = new System.Drawing.Point(188, 42);
     this.productname.Name = "productname";
     this.productname.Size = new System.Drawing.Size(317, 21);
     this.productname.TabIndex = 79;
     this.productname.Text = "ventas al exterior";
     //
     // productid
     //
     this.productid.Location = new System.Drawing.Point(103, 42);
     this.productid.MaxLength = 13;
     this.productid.Name = "productid";
     this.productid.Size = new System.Drawing.Size(83, 21);
     this.productid.TabIndex = 78;
     this.productid.Text = "ventas al exterior";
     this.productid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productid_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(35, 45);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(62, 13);
     this.label2.TabIndex = 77;
     this.label2.Text = "Producto:";
     //
     // lineaname
     //
     this.lineaname.Location = new System.Drawing.Point(149, 20);
     this.lineaname.Name = "lineaname";
     this.lineaname.Size = new System.Drawing.Size(282, 21);
     this.lineaname.TabIndex = 17;
     this.lineaname.Text = "ventas al exterior";
     //
     // lineaid
     //
     this.lineaid.Location = new System.Drawing.Point(102, 20);
     this.lineaid.MaxLength = 13;
     this.lineaid.Name = "lineaid";
     this.lineaid.Size = new System.Drawing.Size(47, 21);
     this.lineaid.TabIndex = 16;
     this.lineaid.Text = "ventas al exterior";
     this.lineaid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lineaid_KeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(54, 23);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(42, 13);
     this.label1.TabIndex = 21;
     this.label1.Text = "Linea:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(514, 50);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(69, 12);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(414, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "CONCILIACIÓN DE INVENTARIO X ROLLO";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_buscar
     //
     this.btn_buscar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_buscar.Image = ((System.Drawing.Image)(resources.GetObject("btn_buscar.Image")));
     this.btn_buscar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_buscar.Name = "btn_buscar";
     this.btn_buscar.Size = new System.Drawing.Size(26, 26);
     this.btn_buscar.Text = "toolStripButton15";
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_cancelar,
     this.toolStripSeparator1,
     this.btn_imprimir,
     this.btn_imprimir_gen,
     this.btn_excel,
     this.toolStripSeparator2,
     this.btn_buscar,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(516, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_imprimir_gen
     //
     this.btn_imprimir_gen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir_gen.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir_gen.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir_gen.Name = "btn_imprimir_gen";
     this.btn_imprimir_gen.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir_gen.Text = "Impresion General";
     this.btn_imprimir_gen.Click += new System.EventHandler(this.btn_imprimir_gen_Click);
     //
     // btn_excel
     //
     this.btn_excel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_excel.Image = global::BapFormulariosNet.Properties.Resources.btn_excel20;
     this.btn_excel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_excel.Name = "btn_excel";
     this.btn_excel.Size = new System.Drawing.Size(26, 26);
     this.btn_excel.Text = "toolStripButton1";
     this.btn_excel.ToolTipText = "Excel";
     //
     // Frm_reporte_diferenciaInvRollos
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     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(516, 200);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_reporte_diferenciaInvRollos";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "INV :: CONCILIACIÓN DE INVENTARIO X ROLLO";
     this.Load += new System.EventHandler(this.Frm_reporte_stockrollo_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkDiferencias.Properties)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     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.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.txtNewScheme = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.cboSchemes = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewScheme.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Image = global::FRDB_SQLite.Properties.Resources.Ribbon_Save_16x16;
     this.btnOK.Location = new System.Drawing.Point(126, 119);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(90, 30);
     this.btnOK.TabIndex = 3;
     this.btnOK.Text = "Save";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.Image = global::FRDB_SQLite.Properties.Resources.small_cancel;
     this.btnCancel.Location = new System.Drawing.Point(231, 119);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(90, 30);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 44);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "New Scheme:";
     this.checkEdit1.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit1.Size = new System.Drawing.Size(92, 19);
     this.checkEdit1.TabIndex = 6;
     this.checkEdit1.CheckStateChanged += new System.EventHandler(this.checkEdit1_Click);
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(12, 84);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Existing Scheme:";
     this.checkEdit2.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit2.Size = new System.Drawing.Size(107, 19);
     this.checkEdit2.TabIndex = 6;
     this.checkEdit2.CheckStateChanged += new System.EventHandler(this.checkEdit2_Click);
     //
     // txtNewScheme
     //
     this.txtNewScheme.Location = new System.Drawing.Point(120, 44);
     this.txtNewScheme.Name = "txtNewScheme";
     this.txtNewScheme.Size = new System.Drawing.Size(201, 20);
     this.txtNewScheme.TabIndex = 7;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(76, 12);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(187, 19);
     this.labelControl3.TabIndex = 9;
     this.labelControl3.Text = "Save List Attributes To";
     //
     // cboSchemes
     //
     this.cboSchemes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboSchemes.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboSchemes.FormattingEnabled = true;
     this.cboSchemes.Location = new System.Drawing.Point(120, 82);
     this.cboSchemes.Name = "cboSchemes";
     this.cboSchemes.Size = new System.Drawing.Size(201, 24);
     this.cboSchemes.TabIndex = 10;
     //
     // frmSaveScheme
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(342, 157);
     this.Controls.Add(this.cboSchemes);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.txtNewScheme);
     this.Controls.Add(this.checkEdit2);
     this.Controls.Add(this.checkEdit1);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.MaximizeBox = false;
     this.Name = "frmSaveScheme";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Save Attributes To Scheme";
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewScheme.Properties)).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(UsersFrm));
     this.groupControlInsert = new DevExpress.XtraEditors.GroupControl();
     this.CEAddActive = new DevExpress.XtraEditors.CheckEdit();
     this.BtnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.TxtAddItem = new DevExpress.XtraEditors.TextEdit();
     this.TxtAddPass2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.TxtAddPass1 = new DevExpress.XtraEditors.TextEdit();
     this.groupControlUpdate = new DevExpress.XtraEditors.GroupControl();
     this.CEEditActive = new DevExpress.XtraEditors.CheckEdit();
     this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.TxtEditPass2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtEditPass1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtEditItem = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.BtnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInsert)).BeginInit();
     this.groupControlInsert.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEAddActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).BeginInit();
     this.groupControlUpdate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEEditActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlInsert
     //
     this.groupControlInsert.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlInsert.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlInsert.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlInsert.Controls.Add(this.CEAddActive);
     this.groupControlInsert.Controls.Add(this.BtnAdd);
     this.groupControlInsert.Controls.Add(this.TxtAddItem);
     this.groupControlInsert.Controls.Add(this.TxtAddPass2);
     this.groupControlInsert.Controls.Add(this.labelControl3);
     this.groupControlInsert.Controls.Add(this.labelControl7);
     this.groupControlInsert.Controls.Add(this.labelControl6);
     this.groupControlInsert.Controls.Add(this.TxtAddPass1);
     this.groupControlInsert.Location = new System.Drawing.Point(9, 239);
     this.groupControlInsert.Name = "groupControlInsert";
     this.groupControlInsert.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlInsert.Size = new System.Drawing.Size(341, 153);
     this.groupControlInsert.TabIndex = 7;
     this.groupControlInsert.Text = "اضافة مستخدم جديد";
     //
     // CEAddActive
     //
     this.CEAddActive.EditValue = true;
     this.CEAddActive.Location = new System.Drawing.Point(143, 99);
     this.CEAddActive.Name = "CEAddActive";
     this.CEAddActive.Properties.Caption = "متاح";
     this.CEAddActive.Size = new System.Drawing.Size(62, 19);
     this.CEAddActive.TabIndex = 10;
     //
     // BtnAdd
     //
     this.BtnAdd.Enabled = false;
     this.BtnAdd.Location = new System.Drawing.Point(95, 124);
     this.BtnAdd.Name = "BtnAdd";
     this.BtnAdd.Size = new System.Drawing.Size(110, 23);
     this.BtnAdd.TabIndex = 11;
     this.BtnAdd.Text = "اضافه";
     this.BtnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
     //
     // TxtAddItem
     //
     this.TxtAddItem.Location = new System.Drawing.Point(32, 24);
     this.TxtAddItem.Name = "TxtAddItem";
     this.TxtAddItem.Properties.MaxLength = 25;
     this.TxtAddItem.Properties.NullValuePrompt = "ادخل اسم";
     this.TxtAddItem.Size = new System.Drawing.Size(173, 19);
     this.TxtAddItem.TabIndex = 7;
     this.TxtAddItem.EditValueChanged += new System.EventHandler(this.TxtNewItem_EditValueChanged);
     //
     // TxtAddPass2
     //
     this.TxtAddPass2.Location = new System.Drawing.Point(32, 74);
     this.TxtAddPass2.Name = "TxtAddPass2";
     this.TxtAddPass2.Properties.MaxLength = 25;
     this.TxtAddPass2.Properties.NullValuePrompt = "اعد كتابة كلمة المرور";
     this.TxtAddPass2.Properties.PasswordChar = '*';
     this.TxtAddPass2.Size = new System.Drawing.Size(173, 19);
     this.TxtAddPass2.TabIndex = 9;
     this.TxtAddPass2.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(225, 24);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(74, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المستخدم";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(211, 77);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(76, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "تأكيد كلمة المرور";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(249, 52);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 13);
     this.labelControl6.TabIndex = 0;
     this.labelControl6.Text = "كلمة المرور";
     //
     // TxtAddPass1
     //
     this.TxtAddPass1.Location = new System.Drawing.Point(32, 49);
     this.TxtAddPass1.Name = "TxtAddPass1";
     this.TxtAddPass1.Properties.MaxLength = 25;
     this.TxtAddPass1.Properties.NullValuePrompt = "ادخل كلمة المرور";
     this.TxtAddPass1.Properties.PasswordChar = '*';
     this.TxtAddPass1.Size = new System.Drawing.Size(173, 19);
     this.TxtAddPass1.TabIndex = 8;
     this.TxtAddPass1.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // groupControlUpdate
     //
     this.groupControlUpdate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlUpdate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlUpdate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlUpdate.Controls.Add(this.CEEditActive);
     this.groupControlUpdate.Controls.Add(this.BtnUpdate);
     this.groupControlUpdate.Controls.Add(this.TxtEditPass2);
     this.groupControlUpdate.Controls.Add(this.labelControl5);
     this.groupControlUpdate.Controls.Add(this.TxtEditPass1);
     this.groupControlUpdate.Controls.Add(this.labelControl4);
     this.groupControlUpdate.Controls.Add(this.TxtEditItem);
     this.groupControlUpdate.Controls.Add(this.labelControl2);
     this.groupControlUpdate.Location = new System.Drawing.Point(9, 75);
     this.groupControlUpdate.Name = "groupControlUpdate";
     this.groupControlUpdate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlUpdate.Size = new System.Drawing.Size(341, 158);
     this.groupControlUpdate.TabIndex = 2;
     this.groupControlUpdate.Text = "تعديل مستخدم";
     //
     // CEEditActive
     //
     this.CEEditActive.EditValue = true;
     this.CEEditActive.Location = new System.Drawing.Point(141, 104);
     this.CEEditActive.Name = "CEEditActive";
     this.CEEditActive.Properties.Caption = "متاح";
     this.CEEditActive.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.CEEditActive.Size = new System.Drawing.Size(64, 19);
     this.CEEditActive.TabIndex = 5;
     //
     // BtnUpdate
     //
     this.BtnUpdate.Enabled = false;
     this.BtnUpdate.Location = new System.Drawing.Point(95, 129);
     this.BtnUpdate.Name = "BtnUpdate";
     this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
     this.BtnUpdate.TabIndex = 6;
     this.BtnUpdate.Text = "تعديل";
     this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // TxtEditPass2
     //
     this.TxtEditPass2.Location = new System.Drawing.Point(32, 79);
     this.TxtEditPass2.Name = "TxtEditPass2";
     this.TxtEditPass2.Properties.MaxLength = 25;
     this.TxtEditPass2.Properties.NullValuePrompt = "اعد كتابة كلمة المرور";
     this.TxtEditPass2.Properties.PasswordChar = '*';
     this.TxtEditPass2.Size = new System.Drawing.Size(173, 19);
     this.TxtEditPass2.TabIndex = 4;
     this.TxtEditPass2.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(211, 82);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(76, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "تأكيد كلمة المرور";
     //
     // TxtEditPass1
     //
     this.TxtEditPass1.Location = new System.Drawing.Point(32, 54);
     this.TxtEditPass1.Name = "TxtEditPass1";
     this.TxtEditPass1.Properties.MaxLength = 25;
     this.TxtEditPass1.Properties.NullValuePrompt = "ادخل كلمة المرور";
     this.TxtEditPass1.Properties.PasswordChar = '*';
     this.TxtEditPass1.Size = new System.Drawing.Size(173, 19);
     this.TxtEditPass1.TabIndex = 3;
     this.TxtEditPass1.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(247, 57);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(52, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "كلمة المرور";
     //
     // TxtEditItem
     //
     this.TxtEditItem.Location = new System.Drawing.Point(32, 29);
     this.TxtEditItem.Name = "TxtEditItem";
     this.TxtEditItem.Properties.MaxLength = 25;
     this.TxtEditItem.Properties.NullValuePrompt = "ادخل اسم";
     this.TxtEditItem.Size = new System.Drawing.Size(173, 19);
     this.TxtEditItem.TabIndex = 2;
     this.TxtEditItem.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(233, 32);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تعديل الاسم";
     //
     // groupControlSelect
     //
     this.groupControlSelect.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.BtnDelete);
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Location = new System.Drawing.Point(9, 10);
     this.groupControlSelect.Name = "groupControlSelect";
     this.groupControlSelect.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlSelect.Size = new System.Drawing.Size(341, 59);
     this.groupControlSelect.TabIndex = 0;
     this.groupControlSelect.Text = "جميع المستخدمين";
     //
     // BtnDelete
     //
     this.BtnDelete.Enabled = false;
     this.BtnDelete.Image = ((System.Drawing.Image)(resources.GetObject("BtnDelete.Image")));
     this.BtnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnDelete.Location = new System.Drawing.Point(21, 26);
     this.BtnDelete.Name = "BtnDelete";
     this.BtnDelete.Size = new System.Drawing.Size(44, 22);
     this.BtnDelete.TabIndex = 1;
     this.BtnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
     //
     // LUEItems
     //
     this.LUEItems.Location = new System.Drawing.Point(68, 29);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserName", "اسم المستخدم", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(173, 19);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(247, 32);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختار مستخدم";
     //
     // BtnRefresh
     //
     this.BtnRefresh.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.BtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("BtnRefresh.Image")));
     this.BtnRefresh.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnRefresh.Location = new System.Drawing.Point(356, 79);
     this.BtnRefresh.Name = "BtnRefresh";
     this.BtnRefresh.Size = new System.Drawing.Size(31, 241);
     this.BtnRefresh.TabIndex = 12;
     this.BtnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
     //
     // UsersFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(394, 398);
     this.Controls.Add(this.BtnRefresh);
     this.Controls.Add(this.groupControlInsert);
     this.Controls.Add(this.groupControlUpdate);
     this.Controls.Add(this.groupControlSelect);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "UsersFrm";
     this.Text = "المستخدمين";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInsert)).EndInit();
     this.groupControlInsert.ResumeLayout(false);
     this.groupControlInsert.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEAddActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).EndInit();
     this.groupControlUpdate.ResumeLayout(false);
     this.groupControlUpdate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEEditActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.comboBox1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.gridControl1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // comboBox1
     //
     this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(46, 12);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(404, 20);
     this.comboBox1.Sorted = true;
     this.comboBox1.TabIndex = 5;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // gridControl1
     //
     this.gridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(3, 3);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemRadioGroup1});
     this.gridControl1.Size = new System.Drawing.Size(456, 293);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.GroupPanelText = "设备";
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "设备ID";
     this.gridColumn1.FieldName = "A";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "设备名称";
     this.gridColumn2.FieldName = "B";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "是否选择";
     this.gridColumn3.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumn3.FieldName = "C";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem()});
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // frmDeviceList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDeviceList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择设备";
     this.Load += new System.EventHandler(this.frmDeviceList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Example #39
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(Login));
     this.lblError = new DevExpress.XtraEditors.LabelControl();
     this.pnlTitle = new DevExpress.XtraEditors.PanelControl();
     this.txtPassword = new System.Windows.Forms.TextBox();
     this.txtUserName = new System.Windows.Forms.TextBox();
     this.btnExit = new System.Windows.Forms.Button();
     this.btnLogin = new System.Windows.Forms.Button();
     this.ckRemeberPwd = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.pnlCaption = new DevExpress.XtraEditors.PanelControl();
     this.lblSysName = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.pnlTitle)).BeginInit();
     this.pnlTitle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckRemeberPwd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCaption)).BeginInit();
     this.pnlCaption.SuspendLayout();
     this.SuspendLayout();
     //
     // lblError
     //
     this.lblError.Appearance.Font = new System.Drawing.Font("宋体", 9F);
     this.lblError.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblError.Location = new System.Drawing.Point(300, 262);
     this.lblError.Name = "lblError";
     this.lblError.Size = new System.Drawing.Size(96, 12);
     this.lblError.TabIndex = 12;
     this.lblError.Text = "用户名或密码错误";
     //
     // pnlTitle
     //
     this.pnlTitle.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(153)))), ((int)(((byte)(255)))));
     this.pnlTitle.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.pnlTitle.Appearance.Options.UseBorderColor = true;
     this.pnlTitle.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.pnlTitle.ContentImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.pnlTitle.Controls.Add(this.txtPassword);
     this.pnlTitle.Controls.Add(this.txtUserName);
     this.pnlTitle.Controls.Add(this.btnExit);
     this.pnlTitle.Controls.Add(this.btnLogin);
     this.pnlTitle.Controls.Add(this.ckRemeberPwd);
     this.pnlTitle.Controls.Add(this.lblError);
     this.pnlTitle.Controls.Add(this.labelControl2);
     this.pnlTitle.Controls.Add(this.labelControl1);
     this.pnlTitle.Controls.Add(this.pnlCaption);
     this.pnlTitle.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlTitle.Location = new System.Drawing.Point(0, 0);
     this.pnlTitle.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.pnlTitle.LookAndFeel.UseDefaultLookAndFeel = false;
     this.pnlTitle.Margin = new System.Windows.Forms.Padding(0);
     this.pnlTitle.Name = "pnlTitle";
     this.pnlTitle.Size = new System.Drawing.Size(521, 347);
     this.pnlTitle.TabIndex = 13;
     //
     // txtPassword
     //
     this.txtPassword.Location = new System.Drawing.Point(167, 210);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(229, 22);
     this.txtPassword.TabIndex = 2;
     this.txtPassword.UseSystemPasswordChar = true;
     //
     // txtUserName
     //
     this.txtUserName.Location = new System.Drawing.Point(167, 170);
     this.txtUserName.Name = "txtUserName";
     this.txtUserName.Size = new System.Drawing.Size(229, 22);
     this.txtUserName.TabIndex = 1;
     //
     // btnExit
     //
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ForeColor = System.Drawing.Color.Black;
     this.btnExit.Location = new System.Drawing.Point(321, 300);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(75, 23);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "退出";
     this.btnExit.UseVisualStyleBackColor = true;
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnLogin
     //
     this.btnLogin.BackColor = System.Drawing.Color.Transparent;
     this.btnLogin.ForeColor = System.Drawing.Color.Black;
     this.btnLogin.Location = new System.Drawing.Point(167, 300);
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Size = new System.Drawing.Size(75, 23);
     this.btnLogin.TabIndex = 4;
     this.btnLogin.Text = "登录";
     this.btnLogin.UseVisualStyleBackColor = true;
     this.btnLogin.Click += new System.EventHandler(this.UserLogin);
     //
     // ckRemeberPwd
     //
     this.ckRemeberPwd.Location = new System.Drawing.Point(167, 255);
     this.ckRemeberPwd.Name = "ckRemeberPwd";
     this.ckRemeberPwd.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(160)))), ((int)(((byte)(234)))));
     this.ckRemeberPwd.Properties.Appearance.Options.UseForeColor = true;
     this.ckRemeberPwd.Properties.Caption = "记住密码";
     this.ckRemeberPwd.Size = new System.Drawing.Size(77, 19);
     this.ckRemeberPwd.TabIndex = 3;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(160)))), ((int)(((byte)(234)))));
     this.labelControl2.Location = new System.Drawing.Point(93, 208);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(64, 21);
     this.labelControl2.TabIndex = 19;
     this.labelControl2.Text = "密 码:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F);
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(160)))), ((int)(((byte)(234)))));
     this.labelControl1.Location = new System.Drawing.Point(93, 168);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(64, 21);
     this.labelControl1.TabIndex = 18;
     this.labelControl1.Text = "用户名:";
     //
     // pnlCaption
     //
     this.pnlCaption.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(3)))), ((int)(((byte)(138)))), ((int)(((byte)(218)))));
     this.pnlCaption.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(109)))), ((int)(((byte)(186)))));
     this.pnlCaption.Appearance.Options.UseBackColor = true;
     this.pnlCaption.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCaption.ContentImage = global::com.tk.dam.Properties.Resources.MainHeaderIcon_Backgroud;
     this.pnlCaption.ContentImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.pnlCaption.Controls.Add(this.lblSysName);
     this.pnlCaption.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCaption.Location = new System.Drawing.Point(2, 2);
     this.pnlCaption.Name = "pnlCaption";
     this.pnlCaption.Size = new System.Drawing.Size(517, 141);
     this.pnlCaption.TabIndex = 20;
     //
     // lblSysName
     //
     this.lblSysName.Appearance.Font = new System.Drawing.Font("微软雅黑", 22F, System.Drawing.FontStyle.Bold);
     this.lblSysName.Appearance.ForeColor = System.Drawing.Color.White;
     this.lblSysName.Location = new System.Drawing.Point(104, 48);
     this.lblSysName.Name = "lblSysName";
     this.lblSysName.Size = new System.Drawing.Size(300, 40);
     this.lblSysName.TabIndex = 14;
     this.lblSysName.Text = "北斗大坝安全监测系统";
     //
     // Login
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(521, 347);
     this.Controls.Add(this.pnlTitle);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Login";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "北斗大坝安全监测系统--登录界面";
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.pnlTitle)).EndInit();
     this.pnlTitle.ResumeLayout(false);
     this.pnlTitle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckRemeberPwd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCaption)).EndInit();
     this.pnlCaption.ResumeLayout(false);
     this.pnlCaption.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_lista_precios));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.articid = new System.Windows.Forms.TextBox();
     this.articname = new System.Windows.Forms.TextBox();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.label11 = new System.Windows.Forms.Label();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.pnl_01 = new DevExpress.XtraEditors.PanelControl();
     this.fechdocfin = new System.Windows.Forms.DateTimePicker();
     this.visible = new DevExpress.XtraEditors.CheckEdit();
     this.fechdocini = new System.Windows.Forms.DateTimePicker();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.incigv = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.ctactelistname = new System.Windows.Forms.TextBox();
     this.ctactelist = new System.Windows.Forms.TextBox();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.tiendalistname = new System.Windows.Forms.TextBox();
     this.tiendalist = new System.Windows.Forms.TextBox();
     this.listaprecid = new System.Windows.Forms.TextBox();
     this.listaprecname = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.pnlcontroldet = new DevExpress.XtraEditors.PanelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ExportCatalog = new DevExpress.XtraEditors.SimpleButton();
     this.btn_importar = new System.Windows.Forms.Button();
     this.btn_exportar = new System.Windows.Forms.Button();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.precunit2 = new System.Windows.Forms.TextBox();
     this.precunit1 = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.dgb_listaPrecios = new System.Windows.Forms.DataGridView();
     this.@__listaprecid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.codigo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.denominacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.Mdi_dgv_precioslist = new DevExpress.XtraGrid.GridControl();
     this.dgv_precioslist = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._listaprecid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._listaprecname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechaini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechafin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tiendalist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._ctactelist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tcamb = new DevExpress.XtraGrid.Columns.GridColumn();
     this._incigv = new DevExpress.XtraGrid.Columns.GridColumn();
     this._visible = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._feact = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).BeginInit();
     this.pnl_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.visible.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incigv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).BeginInit();
     this.pnlcontroldet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_listaPrecios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_precioslist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_precioslist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     this.SuspendLayout();
     //
     // articid
     //
     this.articid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.articid.Location = new System.Drawing.Point(76, 4);
     this.articid.MaxLength = 10;
     this.articid.Name = "articid";
     this.articid.Size = new System.Drawing.Size(100, 20);
     this.articid.TabIndex = 11;
     this.articid.Text = "0000000000000";
     this.articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.articid_KeyDown);
     //
     // articname
     //
     this.articname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articname.Location = new System.Drawing.Point(177, 4);
     this.articname.Name = "articname";
     this.articname.Size = new System.Drawing.Size(300, 21);
     this.articname.TabIndex = 12;
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.Teal;
     this.panelControl2.Appearance.ForeColor = System.Drawing.Color.White;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.Appearance.Options.UseForeColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.label11);
     this.panelControl2.Location = new System.Drawing.Point(-12, 26);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(990, 26);
     this.panelControl2.TabIndex = 113;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(408, 2);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(158, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Lista de Precios";
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem1.Text = "Nuevo";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btn_nuevo.SuperTip = superToolTip1;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem2.Text = "Editar";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btn_editar.SuperTip = superToolTip2;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem3.Text = "Cancelar";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btn_cancelar.SuperTip = superToolTip3;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem4.Text = "Guardar";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.btn_grabar.SuperTip = superToolTip4;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem5.Text = "Elimar Registro";
     superToolTip5.Items.Add(toolTipTitleItem5);
     this.btn_eliminar.SuperTip = superToolTip5;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem6.Text = "Imprimir";
     superToolTip6.Items.Add(toolTipTitleItem6);
     this.btn_imprimir.SuperTip = superToolTip6;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem7.Text = "Log";
     superToolTip7.Items.Add(toolTipTitleItem7);
     this.btn_log.SuperTip = superToolTip7;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem8.Text = "Salir";
     superToolTip8.Items.Add(toolTipTitleItem8);
     this.btn_salir.SuperTip = superToolTip8;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(978, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 440);
     this.barDockControlBottom.Size = new System.Drawing.Size(978, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 412);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(978, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 412);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem9.Text = "Actualizar";
     superToolTip9.Items.Add(toolTipTitleItem9);
     this.btnLoad.SuperTip = superToolTip9;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem10.Text = "Primer Registro";
     superToolTip10.Items.Add(toolTipTitleItem10);
     this.btnInicio.SuperTip = superToolTip10;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem11.Text = "Anterior Registro";
     superToolTip11.Items.Add(toolTipTitleItem11);
     this.btnAnterior.SuperTip = superToolTip11;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem12.Text = "Siguiente Registro";
     superToolTip12.Items.Add(toolTipTitleItem12);
     this.btnSiguiente.SuperTip = superToolTip12;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem13.Text = "Ultimo Registro";
     superToolTip13.Items.Add(toolTipTitleItem13);
     this.btnUltimo.SuperTip = superToolTip13;
     //
     // pnl_01
     //
     this.pnl_01.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_01.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_01.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.pnl_01.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnl_01.Appearance.Options.UseBackColor = true;
     this.pnl_01.Appearance.Options.UseFont = true;
     this.pnl_01.Appearance.Options.UseForeColor = true;
     this.pnl_01.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_01.Controls.Add(this.fechdocfin);
     this.pnl_01.Controls.Add(this.visible);
     this.pnl_01.Controls.Add(this.fechdocini);
     this.pnl_01.Controls.Add(this.tcamb);
     this.pnl_01.Controls.Add(this.incigv);
     this.pnl_01.Controls.Add(this.labelControl7);
     this.pnl_01.Controls.Add(this.labelControl6);
     this.pnl_01.Controls.Add(this.labelControl5);
     this.pnl_01.Controls.Add(this.ctactelistname);
     this.pnl_01.Controls.Add(this.ctactelist);
     this.pnl_01.Controls.Add(this.labelControl4);
     this.pnl_01.Controls.Add(this.tiendalistname);
     this.pnl_01.Controls.Add(this.tiendalist);
     this.pnl_01.Controls.Add(this.listaprecid);
     this.pnl_01.Controls.Add(this.listaprecname);
     this.pnl_01.Controls.Add(this.labelControl3);
     this.pnl_01.Controls.Add(this.labelControl1);
     this.pnl_01.Location = new System.Drawing.Point(350, 58);
     this.pnl_01.Name = "pnl_01";
     this.pnl_01.Size = new System.Drawing.Size(626, 131);
     this.pnl_01.TabIndex = 120;
     //
     // fechdocfin
     //
     this.fechdocfin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdocfin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdocfin.Location = new System.Drawing.Point(306, 79);
     this.fechdocfin.Name = "fechdocfin";
     this.fechdocfin.Size = new System.Drawing.Size(80, 20);
     this.fechdocfin.TabIndex = 125;
     //
     // visible
     //
     this.visible.Location = new System.Drawing.Point(300, 102);
     this.visible.Name = "visible";
     this.visible.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.visible.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.visible.Properties.Appearance.Options.UseFont = true;
     this.visible.Properties.Appearance.Options.UseForeColor = true;
     this.visible.Properties.Caption = "Visible ?";
     this.visible.Size = new System.Drawing.Size(71, 19);
     this.visible.TabIndex = 139;
     //
     // fechdocini
     //
     this.fechdocini.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdocini.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdocini.Location = new System.Drawing.Point(109, 79);
     this.fechdocini.Name = "fechdocini";
     this.fechdocini.Size = new System.Drawing.Size(80, 20);
     this.fechdocini.TabIndex = 124;
     //
     // tcamb
     //
     this.tcamb.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tcamb.Location = new System.Drawing.Point(109, 102);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(80, 21);
     this.tcamb.TabIndex = 138;
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // incigv
     //
     this.incigv.Location = new System.Drawing.Point(198, 102);
     this.incigv.Name = "incigv";
     this.incigv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.incigv.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.incigv.Properties.Appearance.Options.UseFont = true;
     this.incigv.Properties.Appearance.Options.UseForeColor = true;
     this.incigv.Properties.Caption = "Inlcuye Igv";
     this.incigv.Size = new System.Drawing.Size(94, 19);
     this.incigv.TabIndex = 137;
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(13, 105);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(83, 13);
     this.labelControl7.TabIndex = 136;
     this.labelControl7.Text = "» Tipo Cambio:";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl6.Location = new System.Drawing.Point(234, 82);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(66, 13);
     this.labelControl6.TabIndex = 135;
     this.labelControl6.Text = "» Fecha Fin:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(13, 82);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 134;
     this.labelControl5.Text = "» Fecha Inicio:";
     //
     // ctactelistname
     //
     this.ctactelistname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactelistname.Location = new System.Drawing.Point(132, 53);
     this.ctactelistname.Name = "ctactelistname";
     this.ctactelistname.Size = new System.Drawing.Size(303, 21);
     this.ctactelistname.TabIndex = 133;
     //
     // ctactelist
     //
     this.ctactelist.AccessibleDescription = "";
     this.ctactelist.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ctactelist.Location = new System.Drawing.Point(110, 53);
     this.ctactelist.MaxLength = 4;
     this.ctactelist.Name = "ctactelist";
     this.ctactelist.Size = new System.Drawing.Size(21, 20);
     this.ctactelist.TabIndex = 132;
     this.ctactelist.Text = "0";
     this.ctactelist.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ctactelist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctactelist_KeyDown);
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 57);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(91, 13);
     this.labelControl4.TabIndex = 131;
     this.labelControl4.Text = "» Lista-Clientes:";
     //
     // tiendalistname
     //
     this.tiendalistname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tiendalistname.Location = new System.Drawing.Point(132, 30);
     this.tiendalistname.Name = "tiendalistname";
     this.tiendalistname.Size = new System.Drawing.Size(287, 21);
     this.tiendalistname.TabIndex = 130;
     //
     // tiendalist
     //
     this.tiendalist.AccessibleDescription = "";
     this.tiendalist.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tiendalist.Location = new System.Drawing.Point(110, 30);
     this.tiendalist.MaxLength = 4;
     this.tiendalist.Name = "tiendalist";
     this.tiendalist.Size = new System.Drawing.Size(21, 20);
     this.tiendalist.TabIndex = 129;
     this.tiendalist.Text = "0";
     this.tiendalist.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.tiendalist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tiendalist_KeyDown);
     //
     // listaprecid
     //
     this.listaprecid.AccessibleDescription = "";
     this.listaprecid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listaprecid.Location = new System.Drawing.Point(110, 6);
     this.listaprecid.MaxLength = 4;
     this.listaprecid.Name = "listaprecid";
     this.listaprecid.Size = new System.Drawing.Size(21, 20);
     this.listaprecid.TabIndex = 128;
     this.listaprecid.Text = "0";
     this.listaprecid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // listaprecname
     //
     this.listaprecname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.listaprecname.Location = new System.Drawing.Point(132, 6);
     this.listaprecname.Name = "listaprecname";
     this.listaprecname.Size = new System.Drawing.Size(303, 21);
     this.listaprecname.TabIndex = 124;
     this.listaprecname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listaprecname_KeyDown);
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(11, 32);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(90, 13);
     this.labelControl3.TabIndex = 123;
     this.labelControl3.Text = "» Lista-Tiendas:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(11, 9);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 122;
     this.labelControl1.Text = "» Codigo:";
     //
     // pnlcontroldet
     //
     this.pnlcontroldet.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnlcontroldet.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.Options.UseBackColor = true;
     this.pnlcontroldet.Appearance.Options.UseForeColor = true;
     this.pnlcontroldet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlcontroldet.Controls.Add(this.labelControl10);
     this.pnlcontroldet.Controls.Add(this.ExportCatalog);
     this.pnlcontroldet.Controls.Add(this.btn_importar);
     this.pnlcontroldet.Controls.Add(this.btn_exportar);
     this.pnlcontroldet.Controls.Add(this.btn_del);
     this.pnlcontroldet.Controls.Add(this.btn_add);
     this.pnlcontroldet.Controls.Add(this.btn_save);
     this.pnlcontroldet.Controls.Add(this.precunit2);
     this.pnlcontroldet.Controls.Add(this.precunit1);
     this.pnlcontroldet.Controls.Add(this.labelControl9);
     this.pnlcontroldet.Controls.Add(this.labelControl8);
     this.pnlcontroldet.Controls.Add(this.dgb_listaPrecios);
     this.pnlcontroldet.Controls.Add(this.labelControl2);
     this.pnlcontroldet.Controls.Add(this.articid);
     this.pnlcontroldet.Controls.Add(this.articname);
     this.pnlcontroldet.Location = new System.Drawing.Point(349, 193);
     this.pnlcontroldet.Name = "pnlcontroldet";
     this.pnlcontroldet.Size = new System.Drawing.Size(627, 245);
     this.pnlcontroldet.TabIndex = 121;
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl10.Location = new System.Drawing.Point(547, 103);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(70, 13);
     this.labelControl10.TabIndex = 158;
     this.labelControl10.Text = "__________";
     //
     // ExportCatalog
     //
     this.ExportCatalog.Cursor = System.Windows.Forms.Cursors.Hand;
     this.ExportCatalog.Image = ((System.Drawing.Image)(resources.GetObject("ExportCatalog.Image")));
     this.ExportCatalog.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ExportCatalog.Location = new System.Drawing.Point(543, 78);
     this.ExportCatalog.Name = "ExportCatalog";
     this.ExportCatalog.Size = new System.Drawing.Size(74, 23);
     this.ExportCatalog.TabIndex = 157;
     this.ExportCatalog.Text = "Productos";
     this.ExportCatalog.ToolTip = "Exportar Productos";
     this.ExportCatalog.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.ExportCatalog.Click += new System.EventHandler(this.ExportCatalog_Click);
     //
     // btn_importar
     //
     this.btn_importar.BackColor = System.Drawing.Color.Transparent;
     this.btn_importar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_importar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btn_importar.ForeColor = System.Drawing.Color.Black;
     this.btn_importar.Image = global::BapFormulariosNet.Properties.Resources.go_import2;
     this.btn_importar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_importar.Location = new System.Drawing.Point(543, 187);
     this.btn_importar.Name = "btn_importar";
     this.btn_importar.Size = new System.Drawing.Size(81, 35);
     this.btn_importar.TabIndex = 155;
     this.btn_importar.Text = "&Importar";
     this.btn_importar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_importar.UseVisualStyleBackColor = false;
     this.btn_importar.Click += new System.EventHandler(this.btn_importar_Click);
     //
     // btn_exportar
     //
     this.btn_exportar.BackColor = System.Drawing.Color.Transparent;
     this.btn_exportar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_exportar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btn_exportar.ForeColor = System.Drawing.Color.Black;
     this.btn_exportar.Image = global::BapFormulariosNet.Properties.Resources.go_export;
     this.btn_exportar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_exportar.Location = new System.Drawing.Point(541, 146);
     this.btn_exportar.Name = "btn_exportar";
     this.btn_exportar.Size = new System.Drawing.Size(83, 35);
     this.btn_exportar.TabIndex = 156;
     this.btn_exportar.Text = "&Exportar";
     this.btn_exportar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_exportar.UseVisualStyleBackColor = false;
     this.btn_exportar.Click += new System.EventHandler(this.btn_exportar_Click);
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_del.Location = new System.Drawing.Point(407, 52);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(65, 23);
     this.btn_del.TabIndex = 144;
     this.btn_del.Text = "Eliminar";
     this.btn_del.ToolTip = "Eliminar";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(330, 52);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(71, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "Adicionar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(256, 52);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(68, 23);
     this.btn_save.TabIndex = 154;
     this.btn_save.Text = "&Aceptar";
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // precunit2
     //
     this.precunit2.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit2.Location = new System.Drawing.Point(166, 51);
     this.precunit2.Name = "precunit2";
     this.precunit2.Size = new System.Drawing.Size(80, 21);
     this.precunit2.TabIndex = 153;
     this.precunit2.Text = "00.000.00";
     this.precunit2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // precunit1
     //
     this.precunit1.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit1.Location = new System.Drawing.Point(166, 28);
     this.precunit1.Name = "precunit1";
     this.precunit1.Size = new System.Drawing.Size(80, 21);
     this.precunit1.TabIndex = 152;
     this.precunit1.Text = "00.000.00";
     this.precunit1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.precunit1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.precunit1_KeyDown);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(14, 56);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(122, 13);
     this.labelControl9.TabIndex = 151;
     this.labelControl9.Text = "» Precio Moneda US$:";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(14, 32);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(129, 13);
     this.labelControl8.TabIndex = 150;
     this.labelControl8.Text = "» Precio Moneda Local:";
     //
     // dgb_listaPrecios
     //
     this.dgb_listaPrecios.AllowUserToAddRows = false;
     this.dgb_listaPrecios.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_listaPrecios.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.@__listaprecid,
     this.codigo,
     this.denominacion,
     this._precunit1,
     this._precunit2,
     this.usuar,
     this.feact});
     this.dgb_listaPrecios.EnableHeadersVisualStyles = false;
     this.dgb_listaPrecios.Location = new System.Drawing.Point(4, 78);
     this.dgb_listaPrecios.Name = "dgb_listaPrecios";
     this.dgb_listaPrecios.ReadOnly = true;
     this.dgb_listaPrecios.RowHeadersVisible = false;
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     this.dgb_listaPrecios.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dgb_listaPrecios.Size = new System.Drawing.Size(536, 164);
     this.dgb_listaPrecios.TabIndex = 149;
     this.dgb_listaPrecios.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellClick);
     this.dgb_listaPrecios.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellEnter);
     this.dgb_listaPrecios.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_listaPrecios_KeyUp);
     //
     // __listaprecid
     //
     this.@__listaprecid.DataPropertyName = "listaprecid";
     this.@__listaprecid.HeaderText = "listaprecid";
     this.@__listaprecid.Name = "__listaprecid";
     this.@__listaprecid.ReadOnly = true;
     this.@__listaprecid.Visible = false;
     //
     // codigo
     //
     this.codigo.DataPropertyName = "codigo";
     this.codigo.HeaderText = "Codigo";
     this.codigo.Name = "codigo";
     this.codigo.ReadOnly = true;
     this.codigo.Width = 80;
     //
     // denominacion
     //
     this.denominacion.DataPropertyName = "denominacion";
     this.denominacion.HeaderText = "Denominación";
     this.denominacion.Name = "denominacion";
     this.denominacion.ReadOnly = true;
     this.denominacion.Width = 300;
     //
     // _precunit1
     //
     this._precunit1.DataPropertyName = "precunit1";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle1.Format = "N2";
     dataGridViewCellStyle1.NullValue = null;
     this._precunit1.DefaultCellStyle = dataGridViewCellStyle1;
     this._precunit1.HeaderText = "S/.";
     this._precunit1.Name = "_precunit1";
     this._precunit1.ReadOnly = true;
     this._precunit1.Width = 70;
     //
     // _precunit2
     //
     this._precunit2.DataPropertyName = "precunit2";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle2.Format = "N2";
     dataGridViewCellStyle2.NullValue = null;
     this._precunit2.DefaultCellStyle = dataGridViewCellStyle2;
     this._precunit2.HeaderText = "US$";
     this._precunit2.Name = "_precunit2";
     this._precunit2.ReadOnly = true;
     this._precunit2.Width = 70;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.ReadOnly = true;
     this.usuar.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.ReadOnly = true;
     this.feact.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(13, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 123;
     this.labelControl2.Text = "» Articulo:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.Mdi_dgv_precioslist);
     this.groupControl1.Location = new System.Drawing.Point(2, 56);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(342, 382);
     this.groupControl1.TabIndex = 142;
     this.groupControl1.Text = "Lista de Precios";
     //
     // Mdi_dgv_precioslist
     //
     this.Mdi_dgv_precioslist.Location = new System.Drawing.Point(6, 24);
     this.Mdi_dgv_precioslist.MainView = this.dgv_precioslist;
     this.Mdi_dgv_precioslist.Name = "Mdi_dgv_precioslist";
     this.Mdi_dgv_precioslist.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_precioslist.Size = new System.Drawing.Size(329, 353);
     this.Mdi_dgv_precioslist.TabIndex = 143;
     this.Mdi_dgv_precioslist.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_precioslist});
     this.Mdi_dgv_precioslist.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_precioslist
     //
     this.dgv_precioslist.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_precioslist.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_precioslist.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_precioslist.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_precioslist.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_precioslist.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_precioslist.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_precioslist.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_precioslist.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_precioslist.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_precioslist.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_precioslist.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_precioslist.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_precioslist.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_precioslist.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_precioslist.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_precioslist.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_precioslist.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.Row.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Row.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_precioslist.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_precioslist.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_precioslist.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._listaprecid,
     this._listaprecname,
     this._fechaini,
     this._fechafin,
     this._tiendalist,
     this._ctactelist,
     this._tcamb,
     this._incigv,
     this._visible,
     this._usuar,
     this._feact});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition1.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_precioslist.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.dgv_precioslist.GridControl = this.Mdi_dgv_precioslist;
     this.dgv_precioslist.Name = "dgv_precioslist";
     this.dgv_precioslist.OptionsSelection.MultiSelect = true;
     this.dgv_precioslist.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_precioslist.OptionsView.ShowGroupPanel = false;
     this.dgv_precioslist.PaintStyleName = "Web";
     this.dgv_precioslist.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // _listaprecid
     //
     this._listaprecid.Caption = "ID";
     this._listaprecid.FieldName = "listaprecid";
     this._listaprecid.Name = "_listaprecid";
     this._listaprecid.OptionsColumn.AllowEdit = false;
     this._listaprecid.Visible = true;
     this._listaprecid.VisibleIndex = 0;
     this._listaprecid.Width = 39;
     //
     // _listaprecname
     //
     this._listaprecname.Caption = "Denominación";
     this._listaprecname.FieldName = "listaprecname";
     this._listaprecname.Name = "_listaprecname";
     this._listaprecname.OptionsColumn.AllowEdit = false;
     this._listaprecname.Visible = true;
     this._listaprecname.VisibleIndex = 1;
     this._listaprecname.Width = 152;
     //
     // _fechaini
     //
     this._fechaini.Caption = "fechaini";
     this._fechaini.FieldName = "fechaini";
     this._fechaini.Name = "_fechaini";
     //
     // _fechafin
     //
     this._fechafin.Caption = "fechafin";
     this._fechafin.FieldName = "fechafin";
     this._fechafin.Name = "_fechafin";
     //
     // _tiendalist
     //
     this._tiendalist.Caption = "tiendalist";
     this._tiendalist.FieldName = "tiendalist";
     this._tiendalist.Name = "_tiendalist";
     //
     // _ctactelist
     //
     this._ctactelist.Caption = "ctactelist";
     this._ctactelist.FieldName = "ctactelist";
     this._ctactelist.Name = "_ctactelist";
     //
     // _tcamb
     //
     this._tcamb.Caption = "tcamb";
     this._tcamb.FieldName = "tcamb";
     this._tcamb.Name = "_tcamb";
     //
     // _incigv
     //
     this._incigv.Caption = "incigv";
     this._incigv.FieldName = "incigv";
     this._incigv.Name = "_incigv";
     //
     // _visible
     //
     this._visible.Caption = "visible";
     this._visible.FieldName = "visible";
     this._visible.Name = "_visible";
     //
     // _usuar
     //
     this._usuar.Caption = "usuar";
     this._usuar.FieldName = "usuar";
     this._usuar.Name = "_usuar";
     //
     // _feact
     //
     this._feact.Caption = "feact";
     this._feact.FieldName = "feact";
     this._feact.Name = "_feact";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // Frm_lista_precios
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     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(978, 440);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.pnlcontroldet);
     this.Controls.Add(this.pnl_01);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_lista_precios";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Lista de Precios";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).EndInit();
     this.pnl_01.ResumeLayout(false);
     this.pnl_01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.visible.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incigv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).EndInit();
     this.pnlcontroldet.ResumeLayout(false);
     this.pnlcontroldet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_listaPrecios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_precioslist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_precioslist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     this.ResumeLayout(false);
 }
Example #41
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(FrmTnLogin));
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.bgwLogin = new System.ComponentModel.BackgroundWorker();
     this.bgwLoadUsers = new System.ComponentModel.BackgroundWorker();
     this.bgwLoadParams = new System.ComponentModel.BackgroundWorker();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.AliceBlue;
     this.labelControl1.Location = new System.Drawing.Point(26, 60);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(100, 16);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Tên đăng nhập:";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.AliceBlue;
     this.labelControl2.Location = new System.Drawing.Point(26, 105);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(65, 16);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "Mật khẩu:";
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "Admin";
     this.textEdit1.Location = new System.Drawing.Point(150, 58);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.textEdit1.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.textEdit1.Properties.Appearance.Options.UseFont = true;
     this.textEdit1.Properties.Appearance.Options.UseForeColor = true;
     this.textEdit1.Size = new System.Drawing.Size(176, 21);
     this.textEdit1.TabIndex = 1;
     this.textEdit1.EditValueChanged += new System.EventHandler(this.textEdit1_EditValueChanged);
     //
     // textEdit2
     //
     this.textEdit2.EditValue = "123";
     this.textEdit2.Location = new System.Drawing.Point(150, 103);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.textEdit2.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.textEdit2.Properties.Appearance.Options.UseFont = true;
     this.textEdit2.Properties.Appearance.Options.UseForeColor = true;
     this.textEdit2.Properties.PasswordChar = '*';
     this.textEdit2.Size = new System.Drawing.Size(176, 21);
     this.textEdit2.TabIndex = 2;
     //
     // simpleButton1
     //
     this.simpleButton1.Image = global::TNPro.Properties.Resources.login_24;
     this.simpleButton1.Location = new System.Drawing.Point(149, 147);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(86, 27);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = "Đăng nhập";
     this.simpleButton1.Click += new System.EventHandler(this.btnDangNhap_Click);
     //
     // btnExit
     //
     this.btnExit.Image = global::TNPro.Properties.Resources.close_24;
     this.btnExit.Location = new System.Drawing.Point(241, 147);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(85, 27);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "Thoát";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(24, 155);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Appearance.ForeColor = System.Drawing.Color.AliceBlue;
     this.checkEdit1.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdit1.Properties.Caption = "Nhớ mật khẩu";
     this.checkEdit1.Size = new System.Drawing.Size(100, 19);
     this.checkEdit1.TabIndex = 3;
     //
     // btnClose
     //
     this.btnClose.Appearance.Font = new System.Drawing.Font("Technic", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnClose.Appearance.ForeColor = System.Drawing.Color.Red;
     this.btnClose.Appearance.Options.UseFont = true;
     this.btnClose.Appearance.Options.UseForeColor = true;
     this.btnClose.Location = new System.Drawing.Point(480, 2);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(17, 17);
     this.btnClose.TabIndex = 7;
     this.btnClose.Text = "X";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // bgwLogin
     //
     this.bgwLogin.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwLogin_DoWork);
     //
     // bgwLoadUsers
     //
     this.bgwLoadUsers.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwLoadUsers_DoWork);
     this.bgwLoadUsers.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwLoadUsers_RunWorkerCompleted);
     //
     // bgwLoadParams
     //
     this.bgwLoadParams.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwLoadParams_DoWork);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(241, 194);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "simpleButton2";
     this.simpleButton2.Visible = false;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // FrmTnLogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Tile;
     this.BackgroundImageStore = global::TNPro.Properties.Resources.login2_500_375;
     this.ClientSize = new System.Drawing.Size(500, 375);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.checkEdit1);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.textEdit2);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmTnLogin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Đăng nhập hệ thống";
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #42
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(formDangNhap));
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBoxuser = new System.Windows.Forms.TextBox();
     this.textBoxPass = new System.Windows.Forms.TextBox();
     this.checkEdithienthi = new DevExpress.XtraEditors.CheckEdit();
     this.btDangNhap = new DevExpress.XtraEditors.SimpleButton();
     this.btHuy = new DevExpress.XtraEditors.SimpleButton();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdithienthi.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Times New Roman", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.label1.ForeColor = System.Drawing.Color.DarkGreen;
     this.label1.Location = new System.Drawing.Point(41, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(402, 38);
     this.label1.TabIndex = 1;
     this.label1.Text = "    CHÀO MỪNG BẠN ĐẾN VỚI ỨNG DỤNG BÁN\r\nTHUỐC TÂY CỦA TRƯỜNG ĐẠI HỌC KIÊN GIANG";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.label2.Location = new System.Drawing.Point(9, 78);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(145, 19);
     this.label2.TabIndex = 2;
     this.label2.Text = "TÊN ĐĂNG NHẬP:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.label3.Location = new System.Drawing.Point(53, 123);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(101, 19);
     this.label3.TabIndex = 3;
     this.label3.Text = "MẬT KHẨU:";
     //
     // textBoxuser
     //
     this.textBoxuser.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.textBoxuser.Location = new System.Drawing.Point(160, 68);
     this.textBoxuser.Multiline = true;
     this.textBoxuser.Name = "textBoxuser";
     this.textBoxuser.Size = new System.Drawing.Size(266, 29);
     this.textBoxuser.TabIndex = 0;
     this.textBoxuser.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxuser_KeyPress);
     //
     // textBoxPass
     //
     this.textBoxPass.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.textBoxPass.Location = new System.Drawing.Point(160, 111);
     this.textBoxPass.Multiline = true;
     this.textBoxPass.Name = "textBoxPass";
     this.textBoxPass.PasswordChar = '*';
     this.textBoxPass.Size = new System.Drawing.Size(266, 31);
     this.textBoxPass.TabIndex = 1;
     //
     // checkEdithienthi
     //
     this.checkEdithienthi.Location = new System.Drawing.Point(160, 158);
     this.checkEdithienthi.Name = "checkEdithienthi";
     this.checkEdithienthi.Properties.Appearance.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.checkEdithienthi.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.checkEdithienthi.Properties.Appearance.Options.UseFont = true;
     this.checkEdithienthi.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdithienthi.Properties.Caption = "Hiện thị mật khẩu";
     this.checkEdithienthi.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Style13;
     this.checkEdithienthi.Size = new System.Drawing.Size(208, 22);
     this.checkEdithienthi.TabIndex = 6;
     this.checkEdithienthi.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // btDangNhap
     //
     this.btDangNhap.Image = ((System.Drawing.Image)(resources.GetObject("btDangNhap.Image")));
     this.btDangNhap.Location = new System.Drawing.Point(160, 198);
     this.btDangNhap.Name = "btDangNhap";
     this.btDangNhap.Size = new System.Drawing.Size(129, 35);
     this.btDangNhap.TabIndex = 2;
     this.btDangNhap.Text = "Đăng Nhập";
     this.btDangNhap.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // btHuy
     //
     this.btHuy.Image = ((System.Drawing.Image)(resources.GetObject("btHuy.Image")));
     this.btHuy.Location = new System.Drawing.Point(295, 197);
     this.btHuy.Name = "btHuy";
     this.btHuy.Size = new System.Drawing.Size(131, 36);
     this.btHuy.TabIndex = 3;
     this.btHuy.Text = "Hủy";
     this.btHuy.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(463, 9);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(235, 224);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 7;
     this.pictureBox1.TabStop = false;
     //
     // formDangNhap
     //
     this.AcceptButton = this.btDangNhap;
     this.Appearance.BackColor = System.Drawing.Color.Silver;
     this.Appearance.Options.UseBackColor = true;
     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(699, 245);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.btHuy);
     this.Controls.Add(this.btDangNhap);
     this.Controls.Add(this.checkEdithienthi);
     this.Controls.Add(this.textBoxPass);
     this.Controls.Add(this.textBoxuser);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderEffect = DevExpress.XtraEditors.FormBorderEffect.Glow;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "formDangNhap";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Đăng Nhập Hệ Thống";
     this.Load += new System.EventHandler(this.formDangNhap_Load);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdithienthi.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
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()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraScheduler.Printing.DailyPrintStyle dailyPrintStyle1 = new DevExpress.XtraScheduler.Printing.DailyPrintStyle();
     DevExpress.XtraScheduler.Printing.WeeklyPrintStyle weeklyPrintStyle1 = new DevExpress.XtraScheduler.Printing.WeeklyPrintStyle();
     DevExpress.XtraScheduler.Printing.MonthlyPrintStyle monthlyPrintStyle1 = new DevExpress.XtraScheduler.Printing.MonthlyPrintStyle();
     DevExpress.XtraScheduler.Printing.TriFoldPrintStyle triFoldPrintStyle1 = new DevExpress.XtraScheduler.Printing.TriFoldPrintStyle();
     DevExpress.XtraScheduler.Printing.CalendarDetailsPrintStyle calendarDetailsPrintStyle1 = new DevExpress.XtraScheduler.Printing.CalendarDetailsPrintStyle();
     DevExpress.XtraScheduler.Printing.MemoPrintStyle memoPrintStyle1 = new DevExpress.XtraScheduler.Printing.MemoPrintStyle();
     DevExpress.XtraScheduler.TimeRuler timeRuler1 = new DevExpress.XtraScheduler.TimeRuler();
     DevExpress.XtraScheduler.TimeRuler timeRuler2 = new DevExpress.XtraScheduler.TimeRuler();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCalendar));
     this.StartDatePickerTop = new System.Windows.Forms.DateTimePicker();
     this.schedulerStorage1 = new DevExpress.XtraScheduler.SchedulerStorage(this.components);
     this.pnlBody = new System.Windows.Forms.Panel();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.pnlCalendar = new System.Windows.Forms.Panel();
     this.schedulerControl1 = new DevExpress.XtraScheduler.SchedulerControl();
     this.pnlFilter = new System.Windows.Forms.Panel();
     this.chkHideWeekends = new DevExpress.XtraEditors.CheckEdit();
     this.lblMonth = new System.Windows.Forms.Label();
     this.lblYear = new System.Windows.Forms.Label();
     this.EndDatePickerTop = new System.Windows.Forms.DateTimePicker();
     this.btnClearFilters = new System.Windows.Forms.Button();
     this.cmbClass = new System.Windows.Forms.ComboBox();
     this.lblClass = new System.Windows.Forms.Label();
     this.cmbProgram = new System.Windows.Forms.ComboBox();
     this.lblProgram = new System.Windows.Forms.Label();
     this.cmbInstructor = new System.Windows.Forms.ComboBox();
     this.lblInstructor = new System.Windows.Forms.Label();
     this.cmbClient = new System.Windows.Forms.ComboBox();
     this.lblClient = new System.Windows.Forms.Label();
     this.pnlDateNavigator = new System.Windows.Forms.Panel();
     this.dateNavigator1 = new DevExpress.XtraScheduler.DateNavigator();
     this.imgContext = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).BeginInit();
     this.pnlBody.SuspendLayout();
     this.pnlCalendar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl1)).BeginInit();
     this.pnlFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideWeekends.Properties)).BeginInit();
     this.pnlDateNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateNavigator1)).BeginInit();
     this.SuspendLayout();
     //
     // StartDatePickerTop
     //
     this.StartDatePickerTop.Checked = false;
     this.StartDatePickerTop.CustomFormat = "MM/dd/yyyy";
     this.StartDatePickerTop.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.StartDatePickerTop.Location = new System.Drawing.Point(85, 7);
     this.StartDatePickerTop.Name = "StartDatePickerTop";
     this.StartDatePickerTop.Size = new System.Drawing.Size(93, 27);
     this.StartDatePickerTop.TabIndex = 15;
     this.StartDatePickerTop.ValueChanged += new System.EventHandler(this.datePickerTop_ValueChanged);
     //
     // schedulerStorage1
     //
     this.schedulerStorage1.Appointments.Mappings.Description = "Status";
     this.schedulerStorage1.Appointments.Mappings.End = "ENDDATETIME";
     this.schedulerStorage1.Appointments.Mappings.Label = "CEID";
     this.schedulerStorage1.Appointments.Mappings.Start = "STARTDATETIME";
     this.schedulerStorage1.Appointments.Mappings.Subject = "TASKDESC";
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.splitter1);
     this.pnlBody.Controls.Add(this.pnlCalendar);
     this.pnlBody.Controls.Add(this.pnlDateNavigator);
     this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Location = new System.Drawing.Point(0, 0);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(976, 622);
     this.pnlBody.TabIndex = 0;
     //
     // splitter1
     //
     this.splitter1.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter1.Location = new System.Drawing.Point(676, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(5, 622);
     this.splitter1.TabIndex = 6;
     this.splitter1.TabStop = false;
     //
     // pnlCalendar
     //
     this.pnlCalendar.Controls.Add(this.schedulerControl1);
     this.pnlCalendar.Controls.Add(this.pnlFilter);
     this.pnlCalendar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlCalendar.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pnlCalendar.Location = new System.Drawing.Point(0, 0);
     this.pnlCalendar.Name = "pnlCalendar";
     this.pnlCalendar.Size = new System.Drawing.Size(681, 622);
     this.pnlCalendar.TabIndex = 2;
     //
     // schedulerControl1
     //
     this.schedulerControl1.Appearance.Appointment.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Appearance.Appointment.Options.UseFont = true;
     this.schedulerControl1.Appearance.Selection.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Appearance.Selection.Options.UseFont = true;
     this.schedulerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.schedulerControl1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Location = new System.Drawing.Point(0, 60);
     this.schedulerControl1.Name = "schedulerControl1";
     dailyPrintStyle1.CalendarHeaderVisible = false;
     weeklyPrintStyle1.CalendarHeaderVisible = false;
     monthlyPrintStyle1.CalendarHeaderVisible = false;
     triFoldPrintStyle1.CalendarHeaderVisible = false;
     this.schedulerControl1.PrintStyles.Add(dailyPrintStyle1);
     this.schedulerControl1.PrintStyles.Add(weeklyPrintStyle1);
     this.schedulerControl1.PrintStyles.Add(monthlyPrintStyle1);
     this.schedulerControl1.PrintStyles.Add(triFoldPrintStyle1);
     this.schedulerControl1.PrintStyles.Add(calendarDetailsPrintStyle1);
     this.schedulerControl1.PrintStyles.Add(memoPrintStyle1);
     this.schedulerControl1.Size = new System.Drawing.Size(681, 562);
     this.schedulerControl1.Start = new System.DateTime(2006, 3, 6, 0, 0, 0, 0);
     this.schedulerControl1.Storage = this.schedulerStorage1;
     this.schedulerControl1.TabIndex = 1;
     this.schedulerControl1.Text = "schedulerControl1";
     this.schedulerControl1.Views.DayView.Appearance.AllDayArea.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.DayView.Appearance.AllDayArea.Options.UseFont = true;
     this.schedulerControl1.Views.DayView.Appearance.AlternateHeaderCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.DayView.Appearance.AlternateHeaderCaption.Options.UseFont = true;
     this.schedulerControl1.Views.DayView.Appearance.Appointment.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.DayView.Appearance.Appointment.Options.UseFont = true;
     this.schedulerControl1.Views.DayView.Appearance.HeaderCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.DayView.Appearance.HeaderCaption.Options.UseFont = true;
     this.schedulerControl1.Views.DayView.Appearance.Selection.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.DayView.Appearance.Selection.Options.UseFont = true;
     this.schedulerControl1.Views.DayView.Appearance.TimeRuler.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.DayView.Appearance.TimeRuler.Options.UseFont = true;
     this.schedulerControl1.Views.DayView.Appearance.TimeRulerNowArea.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.DayView.Appearance.TimeRulerNowArea.Options.UseFont = true;
     this.schedulerControl1.Views.DayView.TimeRulers.Add(timeRuler1);
     this.schedulerControl1.Views.MonthView.Appearance.Appointment.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.MonthView.Appearance.Appointment.Options.UseFont = true;
     this.schedulerControl1.Views.MonthView.AppointmentDisplayOptions.AppointmentAutoHeight = true;
     this.schedulerControl1.Views.MonthView.WeekCount = 4;
     this.schedulerControl1.Views.WeekView.Appearance.CellHeaderCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.WeekView.Appearance.CellHeaderCaption.Options.UseFont = true;
     this.schedulerControl1.Views.WeekView.Appearance.CellHeaderCaptionLine.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.WeekView.Appearance.CellHeaderCaptionLine.Options.UseFont = true;
     this.schedulerControl1.Views.WeekView.Appearance.HeaderCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.WeekView.Appearance.HeaderCaption.Options.UseFont = true;
     this.schedulerControl1.Views.WeekView.Appearance.HeaderCaptionLine.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.WeekView.Appearance.HeaderCaptionLine.Options.UseFont = true;
     this.schedulerControl1.Views.WeekView.Appearance.Selection.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.schedulerControl1.Views.WeekView.Appearance.Selection.Options.UseFont = true;
     this.schedulerControl1.Views.WorkWeekView.ShowFullWeek = true;
     this.schedulerControl1.Views.WorkWeekView.TimeRulers.Add(timeRuler2);
     this.schedulerControl1.Click += new System.EventHandler(this.schedulerControl1_Click);
     this.schedulerControl1.CustomDrawAppointment += new DevExpress.XtraScheduler.CustomDrawObjectEventHandler(this.schedulerControl1_CustomDrawAppointment);
     this.schedulerControl1.PreparePopupMenu += new DevExpress.XtraScheduler.PreparePopupMenuEventHandler(this.OnPreparePopupMenu);
     this.schedulerControl1.EditAppointmentFormShowing += new DevExpress.XtraScheduler.AppointmentFormEventHandler(this.schedulerControl_EditAppointmentFormShowing);
     this.schedulerControl1.AppointmentViewInfoCustomizing += new DevExpress.XtraScheduler.AppointmentViewInfoCustomizingEventHandler(this.schedulerControl1_AppointmentViewInfoCustomizing);
     //
     // pnlFilter
     //
     this.pnlFilter.BackColor = System.Drawing.SystemColors.GrayText;
     this.pnlFilter.Controls.Add(this.chkHideWeekends);
     this.pnlFilter.Controls.Add(this.lblMonth);
     this.pnlFilter.Controls.Add(this.lblYear);
     this.pnlFilter.Controls.Add(this.EndDatePickerTop);
     this.pnlFilter.Controls.Add(this.StartDatePickerTop);
     this.pnlFilter.Controls.Add(this.btnClearFilters);
     this.pnlFilter.Controls.Add(this.cmbClass);
     this.pnlFilter.Controls.Add(this.lblClass);
     this.pnlFilter.Controls.Add(this.cmbProgram);
     this.pnlFilter.Controls.Add(this.lblProgram);
     this.pnlFilter.Controls.Add(this.cmbInstructor);
     this.pnlFilter.Controls.Add(this.lblInstructor);
     this.pnlFilter.Controls.Add(this.cmbClient);
     this.pnlFilter.Controls.Add(this.lblClient);
     this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlFilter.Location = new System.Drawing.Point(0, 0);
     this.pnlFilter.Name = "pnlFilter";
     this.pnlFilter.Size = new System.Drawing.Size(681, 60);
     this.pnlFilter.TabIndex = 3;
     //
     // chkHideWeekends
     //
     this.chkHideWeekends.Location = new System.Drawing.Point(676, 19);
     this.chkHideWeekends.Name = "chkHideWeekends";
     this.chkHideWeekends.Properties.Caption = "Hide Weekends";
     this.chkHideWeekends.Size = new System.Drawing.Size(161, 24);
     this.chkHideWeekends.TabIndex = 20;
     this.chkHideWeekends.CheckedChanged += new System.EventHandler(this.chkHideWeekends_CheckedChanged);
     //
     // lblMonth
     //
     this.lblMonth.AutoSize = true;
     this.lblMonth.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(13, 36);
     this.lblMonth.Name = "lblMonth";
     this.lblMonth.Size = new System.Drawing.Size(87, 21);
     this.lblMonth.TabIndex = 19;
     this.lblMonth.Text = "End Date";
     //
     // lblYear
     //
     this.lblYear.AutoSize = true;
     this.lblYear.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblYear.Location = new System.Drawing.Point(13, 11);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(97, 21);
     this.lblYear.TabIndex = 18;
     this.lblYear.Text = "Start Date";
     //
     // EndDatePickerTop
     //
     this.EndDatePickerTop.Checked = false;
     this.EndDatePickerTop.CustomFormat = "MM/dd/yyyy";
     this.EndDatePickerTop.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.EndDatePickerTop.Location = new System.Drawing.Point(85, 33);
     this.EndDatePickerTop.Name = "EndDatePickerTop";
     this.EndDatePickerTop.Size = new System.Drawing.Size(93, 27);
     this.EndDatePickerTop.TabIndex = 17;
     this.EndDatePickerTop.ValueChanged += new System.EventHandler(this.datePickerTop_ValueChanged);
     //
     // btnClearFilters
     //
     this.btnClearFilters.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClearFilters.Location = new System.Drawing.Point(16, 10);
     this.btnClearFilters.Name = "btnClearFilters";
     this.btnClearFilters.Size = new System.Drawing.Size(166, 33);
     this.btnClearFilters.TabIndex = 13;
     this.btnClearFilters.Text = "Clear All Filters";
     this.btnClearFilters.Visible = false;
     this.btnClearFilters.Click += new System.EventHandler(this.btnClearFilters_Click);
     //
     // cmbClass
     //
     this.cmbClass.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbClass.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbClass.ItemHeight = 21;
     this.cmbClass.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbClass.Location = new System.Drawing.Point(502, 32);
     this.cmbClass.Name = "cmbClass";
     this.cmbClass.Size = new System.Drawing.Size(137, 29);
     this.cmbClass.TabIndex = 12;
     this.cmbClass.SelectedIndexChanged += new System.EventHandler(this.cmbClass_SelectedIndexChanged);
     //
     // lblClass
     //
     this.lblClass.AutoSize = true;
     this.lblClass.BackColor = System.Drawing.SystemColors.GrayText;
     this.lblClass.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblClass.Location = new System.Drawing.Point(446, 36);
     this.lblClass.Name = "lblClass";
     this.lblClass.Size = new System.Drawing.Size(54, 21);
     this.lblClass.TabIndex = 11;
     this.lblClass.Text = "Class";
     //
     // cmbProgram
     //
     this.cmbProgram.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbProgram.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbProgram.Location = new System.Drawing.Point(502, 6);
     this.cmbProgram.Name = "cmbProgram";
     this.cmbProgram.Size = new System.Drawing.Size(137, 29);
     this.cmbProgram.TabIndex = 10;
     this.cmbProgram.SelectedIndexChanged += new System.EventHandler(this.cmbProgram_SelectedIndexChanged);
     //
     // lblProgram
     //
     this.lblProgram.AutoSize = true;
     this.lblProgram.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblProgram.Location = new System.Drawing.Point(446, 11);
     this.lblProgram.Name = "lblProgram";
     this.lblProgram.Size = new System.Drawing.Size(83, 21);
     this.lblProgram.TabIndex = 9;
     this.lblProgram.Text = "Program";
     //
     // cmbInstructor
     //
     this.cmbInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbInstructor.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbInstructor.ItemHeight = 21;
     this.cmbInstructor.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbInstructor.Location = new System.Drawing.Point(277, 32);
     this.cmbInstructor.Name = "cmbInstructor";
     this.cmbInstructor.Size = new System.Drawing.Size(137, 29);
     this.cmbInstructor.TabIndex = 8;
     this.cmbInstructor.SelectedIndexChanged += new System.EventHandler(this.cmbInstructor_SelectedIndexChanged);
     //
     // lblInstructor
     //
     this.lblInstructor.AutoSize = true;
     this.lblInstructor.BackColor = System.Drawing.SystemColors.GrayText;
     this.lblInstructor.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblInstructor.Location = new System.Drawing.Point(212, 36);
     this.lblInstructor.Name = "lblInstructor";
     this.lblInstructor.Size = new System.Drawing.Size(97, 21);
     this.lblInstructor.TabIndex = 7;
     this.lblInstructor.Text = "Instructor";
     //
     // cmbClient
     //
     this.cmbClient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbClient.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbClient.Location = new System.Drawing.Point(277, 6);
     this.cmbClient.Name = "cmbClient";
     this.cmbClient.Size = new System.Drawing.Size(137, 29);
     this.cmbClient.TabIndex = 6;
     this.cmbClient.SelectedIndexChanged += new System.EventHandler(this.cmbClient_SelectedIndexChanged);
     //
     // lblClient
     //
     this.lblClient.AutoSize = true;
     this.lblClient.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblClient.Location = new System.Drawing.Point(212, 11);
     this.lblClient.Name = "lblClient";
     this.lblClient.Size = new System.Drawing.Size(59, 21);
     this.lblClient.TabIndex = 5;
     this.lblClient.Text = "Client";
     //
     // pnlDateNavigator
     //
     this.pnlDateNavigator.Controls.Add(this.dateNavigator1);
     this.pnlDateNavigator.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlDateNavigator.Location = new System.Drawing.Point(681, 0);
     this.pnlDateNavigator.Name = "pnlDateNavigator";
     this.pnlDateNavigator.Size = new System.Drawing.Size(295, 622);
     this.pnlDateNavigator.TabIndex = 4;
     //
     // dateNavigator1
     //
     this.dateNavigator1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dateNavigator1.HotDate = null;
     this.dateNavigator1.Location = new System.Drawing.Point(0, 0);
     this.dateNavigator1.Name = "dateNavigator1";
     this.dateNavigator1.SchedulerControl = this.schedulerControl1;
     this.dateNavigator1.Size = new System.Drawing.Size(295, 622);
     this.dateNavigator1.TabIndex = 0;
     //
     // imgContext
     //
     this.imgContext.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgContext.ImageStream")));
     this.imgContext.TransparentColor = System.Drawing.Color.Fuchsia;
     this.imgContext.Images.SetKeyName(0, "");
     this.imgContext.Images.SetKeyName(1, "");
     //
     // frmCalendar
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 20);
     this.ClientSize = new System.Drawing.Size(976, 622);
     this.Controls.Add(this.pnlBody);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "frmCalendar";
     this.Text = "Scheduler Calendar";
     this.Load += new System.EventHandler(this.frmCalendar_Load);
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).EndInit();
     this.pnlBody.ResumeLayout(false);
     this.pnlCalendar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl1)).EndInit();
     this.pnlFilter.ResumeLayout(false);
     this.pnlFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideWeekends.Properties)).EndInit();
     this.pnlDateNavigator.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateNavigator1)).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();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_promociones));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = 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();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.articid = new System.Windows.Forms.TextBox();
     this.articname = new System.Windows.Forms.TextBox();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.pnl_01 = new DevExpress.XtraEditors.PanelControl();
     this.rdb_estado = new DevExpress.XtraEditors.RadioGroup();
     this.pnl_dias = new DevExpress.XtraEditors.PanelControl();
     this.chk_sab = new DevExpress.XtraEditors.CheckEdit();
     this.chk_lun = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mar = new DevExpress.XtraEditors.CheckEdit();
     this.chk_dom = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mie = new DevExpress.XtraEditors.CheckEdit();
     this.chk_jue = new DevExpress.XtraEditors.CheckEdit();
     this.chk_vie = new DevExpress.XtraEditors.CheckEdit();
     this.exclusivo = new System.Windows.Forms.TextBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.chk_solodias = new DevExpress.XtraEditors.CheckEdit();
     this.impopack = new System.Windows.Forms.TextBox();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.npack = new System.Windows.Forms.TextBox();
     this.aplicfin = new System.Windows.Forms.TextBox();
     this.aplicini = new System.Windows.Forms.TextBox();
     this.impodoc = new System.Windows.Forms.TextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_grupopromocion = new System.Windows.Forms.ComboBox();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.perdsctocab = new System.Windows.Forms.TextBox();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.chk_aldocum = new DevExpress.XtraEditors.CheckEdit();
     this.prioridad = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tarjgrupoid = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tiendalist = new System.Windows.Forms.ComboBox();
     this.fechafin = new System.Windows.Forms.DateTimePicker();
     this.fechaini = new System.Windows.Forms.DateTimePicker();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.promoname = new System.Windows.Forms.TextBox();
     this.promoid = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.pnlcontroldet = new DevExpress.XtraEditors.PanelControl();
     this.btn_update = new DevExpress.XtraEditors.SimpleButton();
     this.btn_search = new DevExpress.XtraEditors.SimpleButton();
     this.rollo_search = new System.Windows.Forms.TextBox();
     this.btn_exportar = new DevExpress.XtraEditors.SimpleButton();
     this.btn_importar = new DevExpress.XtraEditors.SimpleButton();
     this.chk_aldoc2 = new DevExpress.XtraEditors.CheckEdit();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.precunit = new System.Windows.Forms.TextBox();
     this.percdscto = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.dgb_promodet = new System.Windows.Forms.DataGridView();
     this.@__promoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._es_dscto = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.@__percdscto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._usuarip = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.Group_chks = new DevExpress.XtraEditors.RadioGroup();
     this.cmb_perianio = new System.Windows.Forms.ComboBox();
     this.cmb_grupopromocion2 = new System.Windows.Forms.ComboBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.Mdi_dgv_promociones = new DevExpress.XtraGrid.GridControl();
     this.dgv_promociones = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._promoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._prioridad = new DevExpress.XtraGrid.Columns.GridColumn();
     this._status = new DevExpress.XtraGrid.Columns.GridColumn();
     this._exclusivo = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tiendalist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjgrupoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjetaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._percdscto = new DevExpress.XtraGrid.Columns.GridColumn();
     this._al_docum = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechaini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechafin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promotipoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._grupopromoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._campaniaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fecre = new DevExpress.XtraGrid.Columns.GridColumn();
     this._feact = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuarap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._solodias = new DevExpress.XtraGrid.Columns.GridColumn();
     this._dom = new DevExpress.XtraGrid.Columns.GridColumn();
     this._lun = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._jue = new DevExpress.XtraGrid.Columns.GridColumn();
     this._vie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._sab = new DevExpress.XtraGrid.Columns.GridColumn();
     this._npack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impopack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicfin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impodoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).BeginInit();
     this.pnl_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).BeginInit();
     this.pnl_dias.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).BeginInit();
     this.pnlcontroldet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     this.SuspendLayout();
     //
     // articid
     //
     this.articid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.articid.Location = new System.Drawing.Point(76, 4);
     this.articid.MaxLength = 10;
     this.articid.Name = "articid";
     this.articid.Size = new System.Drawing.Size(66, 20);
     this.articid.TabIndex = 11;
     this.articid.Text = "00000000";
     this.articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.articid_KeyDown);
     //
     // articname
     //
     this.articname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articname.Location = new System.Drawing.Point(143, 4);
     this.articname.Name = "articname";
     this.articname.Size = new System.Drawing.Size(326, 21);
     this.articname.TabIndex = 12;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem14.Text = "Nuevo";
     superToolTip14.Items.Add(toolTipTitleItem14);
     this.btn_nuevo.SuperTip = superToolTip14;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem15.Text = "Editar";
     superToolTip15.Items.Add(toolTipTitleItem15);
     this.btn_editar.SuperTip = superToolTip15;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem17.Text = "Cancelar";
     superToolTip17.Items.Add(toolTipTitleItem17);
     this.btn_cancelar.SuperTip = superToolTip17;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem16.Text = "Guardar";
     superToolTip16.Items.Add(toolTipTitleItem16);
     this.btn_grabar.SuperTip = superToolTip16;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem18.Text = "Elimar Registro";
     superToolTip18.Items.Add(toolTipTitleItem18);
     this.btn_eliminar.SuperTip = superToolTip18;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem19.Text = "Imprimir";
     superToolTip19.Items.Add(toolTipTitleItem19);
     this.btn_imprimir.SuperTip = superToolTip19;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem21.Text = "Log";
     superToolTip21.Items.Add(toolTipTitleItem21);
     this.btn_log.SuperTip = superToolTip21;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem26.Text = "Salir";
     superToolTip26.Items.Add(toolTipTitleItem26);
     this.btn_salir.SuperTip = superToolTip26;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1038, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 595);
     this.barDockControlBottom.Size = new System.Drawing.Size(1038, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 567);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1038, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 567);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem20.Text = "Actualizar";
     superToolTip20.Items.Add(toolTipTitleItem20);
     this.btnLoad.SuperTip = superToolTip20;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem22.Text = "Primer Registro";
     superToolTip22.Items.Add(toolTipTitleItem22);
     this.btnInicio.SuperTip = superToolTip22;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem23.Text = "Anterior Registro";
     superToolTip23.Items.Add(toolTipTitleItem23);
     this.btnAnterior.SuperTip = superToolTip23;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem24.Text = "Siguiente Registro";
     superToolTip24.Items.Add(toolTipTitleItem24);
     this.btnSiguiente.SuperTip = superToolTip24;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem25.Text = "Ultimo Registro";
     superToolTip25.Items.Add(toolTipTitleItem25);
     this.btnUltimo.SuperTip = superToolTip25;
     //
     // pnl_01
     //
     this.pnl_01.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_01.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_01.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.pnl_01.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnl_01.Appearance.Options.UseBackColor = true;
     this.pnl_01.Appearance.Options.UseFont = true;
     this.pnl_01.Appearance.Options.UseForeColor = true;
     this.pnl_01.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_01.Controls.Add(this.rdb_estado);
     this.pnl_01.Controls.Add(this.pnl_dias);
     this.pnl_01.Controls.Add(this.exclusivo);
     this.pnl_01.Controls.Add(this.labelControl1);
     this.pnl_01.Controls.Add(this.chk_solodias);
     this.pnl_01.Controls.Add(this.impopack);
     this.pnl_01.Controls.Add(this.labelControl19);
     this.pnl_01.Controls.Add(this.npack);
     this.pnl_01.Controls.Add(this.aplicfin);
     this.pnl_01.Controls.Add(this.aplicini);
     this.pnl_01.Controls.Add(this.impodoc);
     this.pnl_01.Controls.Add(this.labelControl18);
     this.pnl_01.Controls.Add(this.labelControl17);
     this.pnl_01.Controls.Add(this.labelControl16);
     this.pnl_01.Controls.Add(this.labelControl7);
     this.pnl_01.Controls.Add(this.cmb_grupopromocion);
     this.pnl_01.Controls.Add(this.labelControl15);
     this.pnl_01.Controls.Add(this.perdsctocab);
     this.pnl_01.Controls.Add(this.labelControl14);
     this.pnl_01.Controls.Add(this.chk_aldocum);
     this.pnl_01.Controls.Add(this.prioridad);
     this.pnl_01.Controls.Add(this.labelControl13);
     this.pnl_01.Controls.Add(this.cmb_tarjgrupoid);
     this.pnl_01.Controls.Add(this.labelControl12);
     this.pnl_01.Controls.Add(this.cmb_tiendalist);
     this.pnl_01.Controls.Add(this.fechafin);
     this.pnl_01.Controls.Add(this.fechaini);
     this.pnl_01.Controls.Add(this.labelControl6);
     this.pnl_01.Controls.Add(this.labelControl5);
     this.pnl_01.Controls.Add(this.labelControl4);
     this.pnl_01.Controls.Add(this.promoname);
     this.pnl_01.Controls.Add(this.promoid);
     this.pnl_01.Controls.Add(this.labelControl3);
     this.pnl_01.Location = new System.Drawing.Point(474, 31);
     this.pnl_01.Name = "pnl_01";
     this.pnl_01.Size = new System.Drawing.Size(873, 272);
     this.pnl_01.TabIndex = 120;
     //
     // rdb_estado
     //
     this.rdb_estado.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rdb_estado.Location = new System.Drawing.Point(402, 29);
     this.rdb_estado.MenuManager = this.barManager1;
     this.rdb_estado.Name = "rdb_estado";
     this.rdb_estado.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rdb_estado.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rdb_estado.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.rdb_estado.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.rdb_estado.Properties.Appearance.Options.UseBackColor = true;
     this.rdb_estado.Properties.Appearance.Options.UseFont = true;
     this.rdb_estado.Properties.Appearance.Options.UseForeColor = true;
     this.rdb_estado.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rdb_estado.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Activo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(9, "Inactivo")});
     this.rdb_estado.Size = new System.Drawing.Size(81, 38);
     this.rdb_estado.TabIndex = 183;
     //
     // pnl_dias
     //
     this.pnl_dias.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_dias.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_dias.Appearance.Options.UseBackColor = true;
     this.pnl_dias.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_dias.Controls.Add(this.chk_sab);
     this.pnl_dias.Controls.Add(this.chk_lun);
     this.pnl_dias.Controls.Add(this.chk_mar);
     this.pnl_dias.Controls.Add(this.chk_dom);
     this.pnl_dias.Controls.Add(this.chk_mie);
     this.pnl_dias.Controls.Add(this.chk_jue);
     this.pnl_dias.Controls.Add(this.chk_vie);
     this.pnl_dias.Location = new System.Drawing.Point(120, 140);
     this.pnl_dias.Name = "pnl_dias";
     this.pnl_dias.Size = new System.Drawing.Size(139, 60);
     this.pnl_dias.TabIndex = 182;
     //
     // chk_sab
     //
     this.chk_sab.Location = new System.Drawing.Point(51, 40);
     this.chk_sab.MenuManager = this.barManager1;
     this.chk_sab.Name = "chk_sab";
     this.chk_sab.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_sab.Properties.Appearance.Options.UseForeColor = true;
     this.chk_sab.Properties.Caption = "SA";
     this.chk_sab.Size = new System.Drawing.Size(39, 19);
     this.chk_sab.TabIndex = 178;
     //
     // chk_lun
     //
     this.chk_lun.Location = new System.Drawing.Point(6, 0);
     this.chk_lun.MenuManager = this.barManager1;
     this.chk_lun.Name = "chk_lun";
     this.chk_lun.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_lun.Properties.Appearance.Options.UseForeColor = true;
     this.chk_lun.Properties.Caption = "LU";
     this.chk_lun.Size = new System.Drawing.Size(39, 19);
     this.chk_lun.TabIndex = 173;
     //
     // chk_mar
     //
     this.chk_mar.Location = new System.Drawing.Point(6, 20);
     this.chk_mar.MenuManager = this.barManager1;
     this.chk_mar.Name = "chk_mar";
     this.chk_mar.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mar.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mar.Properties.Caption = "MA";
     this.chk_mar.Size = new System.Drawing.Size(39, 19);
     this.chk_mar.TabIndex = 174;
     //
     // chk_dom
     //
     this.chk_dom.Location = new System.Drawing.Point(96, 0);
     this.chk_dom.MenuManager = this.barManager1;
     this.chk_dom.Name = "chk_dom";
     this.chk_dom.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_dom.Properties.Appearance.Options.UseForeColor = true;
     this.chk_dom.Properties.Caption = "DO";
     this.chk_dom.Size = new System.Drawing.Size(39, 19);
     this.chk_dom.TabIndex = 179;
     //
     // chk_mie
     //
     this.chk_mie.Location = new System.Drawing.Point(6, 40);
     this.chk_mie.MenuManager = this.barManager1;
     this.chk_mie.Name = "chk_mie";
     this.chk_mie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mie.Properties.Caption = "MI";
     this.chk_mie.Size = new System.Drawing.Size(39, 19);
     this.chk_mie.TabIndex = 175;
     //
     // chk_jue
     //
     this.chk_jue.Location = new System.Drawing.Point(51, 0);
     this.chk_jue.MenuManager = this.barManager1;
     this.chk_jue.Name = "chk_jue";
     this.chk_jue.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_jue.Properties.Appearance.Options.UseForeColor = true;
     this.chk_jue.Properties.Caption = "JU";
     this.chk_jue.Size = new System.Drawing.Size(39, 19);
     this.chk_jue.TabIndex = 176;
     //
     // chk_vie
     //
     this.chk_vie.Location = new System.Drawing.Point(51, 20);
     this.chk_vie.MenuManager = this.barManager1;
     this.chk_vie.Name = "chk_vie";
     this.chk_vie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_vie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_vie.Properties.Caption = "VI";
     this.chk_vie.Size = new System.Drawing.Size(39, 19);
     this.chk_vie.TabIndex = 177;
     //
     // exclusivo
     //
     this.exclusivo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.exclusivo.Location = new System.Drawing.Point(352, 160);
     this.exclusivo.Name = "exclusivo";
     this.exclusivo.Size = new System.Drawing.Size(22, 21);
     this.exclusivo.TabIndex = 181;
     this.exclusivo.Text = "1";
     this.exclusivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl1.Location = new System.Drawing.Point(280, 165);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 180;
     this.labelControl1.Text = "» Exclusivo:";
     //
     // chk_solodias
     //
     this.chk_solodias.Location = new System.Drawing.Point(45, 140);
     this.chk_solodias.MenuManager = this.barManager1;
     this.chk_solodias.Name = "chk_solodias";
     this.chk_solodias.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_solodias.Properties.Appearance.Options.UseForeColor = true;
     this.chk_solodias.Properties.Caption = "Solo Dias ?";
     this.chk_solodias.Size = new System.Drawing.Size(85, 19);
     this.chk_solodias.TabIndex = 172;
     this.chk_solodias.CheckedChanged += new System.EventHandler(this.chk_solodias_CheckedChanged);
     //
     // impopack
     //
     this.impopack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impopack.Location = new System.Drawing.Point(275, 206);
     this.impopack.Name = "impopack";
     this.impopack.Size = new System.Drawing.Size(72, 21);
     this.impopack.TabIndex = 171;
     this.impopack.Text = "0.00";
     this.impopack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.impopack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.impopack_KeyDown);
     //
     // labelControl19
     //
     this.labelControl19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl19.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl19.Location = new System.Drawing.Point(159, 211);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(108, 13);
     this.labelControl19.TabIndex = 170;
     this.labelControl19.Text = "» Importe de Pack:";
     //
     // npack
     //
     this.npack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.npack.Location = new System.Drawing.Point(121, 206);
     this.npack.Name = "npack";
     this.npack.Size = new System.Drawing.Size(22, 21);
     this.npack.TabIndex = 169;
     this.npack.Text = "1";
     this.npack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.npack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.npack_KeyDown);
     //
     // aplicfin
     //
     this.aplicfin.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicfin.Location = new System.Drawing.Point(194, 229);
     this.aplicfin.Name = "aplicfin";
     this.aplicfin.Size = new System.Drawing.Size(25, 21);
     this.aplicfin.TabIndex = 168;
     this.aplicfin.Text = "999";
     this.aplicfin.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicfin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicfin_KeyDown);
     //
     // aplicini
     //
     this.aplicini.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicini.Location = new System.Drawing.Point(121, 229);
     this.aplicini.Name = "aplicini";
     this.aplicini.Size = new System.Drawing.Size(22, 21);
     this.aplicini.TabIndex = 167;
     this.aplicini.Text = "1";
     this.aplicini.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicini.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicini_KeyDown);
     //
     // impodoc
     //
     this.impodoc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impodoc.Location = new System.Drawing.Point(305, 247);
     this.impodoc.Name = "impodoc";
     this.impodoc.Size = new System.Drawing.Size(69, 21);
     this.impodoc.TabIndex = 166;
     this.impodoc.Text = "0.00";
     this.impodoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl18
     //
     this.labelControl18.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl18.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl18.Location = new System.Drawing.Point(11, 253);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(288, 13);
     this.labelControl18.TabIndex = 165;
     this.labelControl18.Text = "»» Siempre que el Importe del Documento sea >= ";
     //
     // labelControl17
     //
     this.labelControl17.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl17.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl17.Location = new System.Drawing.Point(159, 234);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(28, 13);
     this.labelControl17.TabIndex = 164;
     this.labelControl17.Text = "» AL:";
     //
     // labelControl16
     //
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl16.Location = new System.Drawing.Point(12, 235);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(73, 13);
     this.labelControl16.TabIndex = 163;
     this.labelControl16.Text = "» Aplicar del:";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(11, 211);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(58, 13);
     this.labelControl7.TabIndex = 162;
     this.labelControl7.Text = "» Pack de:";
     //
     // cmb_grupopromocion
     //
     this.cmb_grupopromocion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion.FormattingEnabled = true;
     this.cmb_grupopromocion.Location = new System.Drawing.Point(120, 116);
     this.cmb_grupopromocion.Name = "cmb_grupopromocion";
     this.cmb_grupopromocion.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion.TabIndex = 160;
     //
     // labelControl15
     //
     this.labelControl15.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl15.Location = new System.Drawing.Point(10, 119);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(81, 13);
     this.labelControl15.TabIndex = 159;
     this.labelControl15.Text = "» Grupo Prom:";
     //
     // perdsctocab
     //
     this.perdsctocab.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.perdsctocab.Location = new System.Drawing.Point(321, 70);
     this.perdsctocab.Name = "perdsctocab";
     this.perdsctocab.Size = new System.Drawing.Size(69, 21);
     this.perdsctocab.TabIndex = 158;
     this.perdsctocab.Text = "0.00";
     this.perdsctocab.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl14
     //
     this.labelControl14.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl14.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl14.Location = new System.Drawing.Point(256, 74);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(59, 13);
     this.labelControl14.TabIndex = 157;
     this.labelControl14.Text = "» %Dscto:";
     //
     // chk_aldocum
     //
     this.chk_aldocum.Location = new System.Drawing.Point(155, 71);
     this.chk_aldocum.MenuManager = this.barManager1;
     this.chk_aldocum.Name = "chk_aldocum";
     this.chk_aldocum.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldocum.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldocum.Properties.Caption = "Al Documento ?";
     this.chk_aldocum.Size = new System.Drawing.Size(97, 19);
     this.chk_aldocum.TabIndex = 156;
     //
     // prioridad
     //
     this.prioridad.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.prioridad.Location = new System.Drawing.Point(120, 70);
     this.prioridad.Name = "prioridad";
     this.prioridad.Size = new System.Drawing.Size(22, 21);
     this.prioridad.TabIndex = 155;
     this.prioridad.Text = "2";
     this.prioridad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl13
     //
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl13.Location = new System.Drawing.Point(11, 74);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(65, 13);
     this.labelControl13.TabIndex = 154;
     this.labelControl13.Text = "» Prioridad:";
     //
     // cmb_tarjgrupoid
     //
     this.cmb_tarjgrupoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tarjgrupoid.FormattingEnabled = true;
     this.cmb_tarjgrupoid.Location = new System.Drawing.Point(120, 47);
     this.cmb_tarjgrupoid.Name = "cmb_tarjgrupoid";
     this.cmb_tarjgrupoid.Size = new System.Drawing.Size(201, 21);
     this.cmb_tarjgrupoid.TabIndex = 153;
     //
     // labelControl12
     //
     this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl12.Location = new System.Drawing.Point(11, 52);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(99, 13);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "» Grupo Tarjetas:";
     //
     // cmb_tiendalist
     //
     this.cmb_tiendalist.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tiendalist.FormattingEnabled = true;
     this.cmb_tiendalist.Location = new System.Drawing.Point(120, 25);
     this.cmb_tiendalist.Name = "cmb_tiendalist";
     this.cmb_tiendalist.Size = new System.Drawing.Size(201, 21);
     this.cmb_tiendalist.TabIndex = 151;
     //
     // fechafin
     //
     this.fechafin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechafin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechafin.Location = new System.Drawing.Point(321, 93);
     this.fechafin.Name = "fechafin";
     this.fechafin.Size = new System.Drawing.Size(80, 20);
     this.fechafin.TabIndex = 125;
     //
     // fechaini
     //
     this.fechaini.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechaini.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechaini.Location = new System.Drawing.Point(120, 93);
     this.fechaini.Name = "fechaini";
     this.fechaini.Size = new System.Drawing.Size(80, 20);
     this.fechaini.TabIndex = 124;
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl6.Location = new System.Drawing.Point(250, 96);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(66, 13);
     this.labelControl6.TabIndex = 135;
     this.labelControl6.Text = "» Fecha Fin:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(11, 96);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 134;
     this.labelControl5.Text = "» Fecha Inicio:";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 29);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(105, 13);
     this.labelControl4.TabIndex = 131;
     this.labelControl4.Text = "» Lista de Tiendas:";
     //
     // promoname
     //
     this.promoname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.promoname.Location = new System.Drawing.Point(158, 3);
     this.promoname.Name = "promoname";
     this.promoname.Size = new System.Drawing.Size(325, 21);
     this.promoname.TabIndex = 130;
     //
     // promoid
     //
     this.promoid.AccessibleDescription = "";
     this.promoid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.promoid.Location = new System.Drawing.Point(121, 3);
     this.promoid.MaxLength = 4;
     this.promoid.Name = "promoid";
     this.promoid.Size = new System.Drawing.Size(35, 20);
     this.promoid.TabIndex = 128;
     this.promoid.Text = "0";
     this.promoid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(11, 6);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(94, 13);
     this.labelControl3.TabIndex = 123;
     this.labelControl3.Text = "» Denominación:";
     //
     // pnlcontroldet
     //
     this.pnlcontroldet.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnlcontroldet.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.Options.UseBackColor = true;
     this.pnlcontroldet.Appearance.Options.UseForeColor = true;
     this.pnlcontroldet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlcontroldet.Controls.Add(this.btn_update);
     this.pnlcontroldet.Controls.Add(this.btn_search);
     this.pnlcontroldet.Controls.Add(this.rollo_search);
     this.pnlcontroldet.Controls.Add(this.btn_exportar);
     this.pnlcontroldet.Controls.Add(this.btn_importar);
     this.pnlcontroldet.Controls.Add(this.chk_aldoc2);
     this.pnlcontroldet.Controls.Add(this.btn_del);
     this.pnlcontroldet.Controls.Add(this.btn_add);
     this.pnlcontroldet.Controls.Add(this.btn_save);
     this.pnlcontroldet.Controls.Add(this.precunit);
     this.pnlcontroldet.Controls.Add(this.percdscto);
     this.pnlcontroldet.Controls.Add(this.labelControl9);
     this.pnlcontroldet.Controls.Add(this.labelControl8);
     this.pnlcontroldet.Controls.Add(this.dgb_promodet);
     this.pnlcontroldet.Controls.Add(this.labelControl2);
     this.pnlcontroldet.Controls.Add(this.articid);
     this.pnlcontroldet.Controls.Add(this.articname);
     this.pnlcontroldet.Location = new System.Drawing.Point(474, 304);
     this.pnlcontroldet.Name = "pnlcontroldet";
     this.pnlcontroldet.Size = new System.Drawing.Size(872, 296);
     this.pnlcontroldet.TabIndex = 121;
     //
     // btn_update
     //
     this.btn_update.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_update.Image = ((System.Drawing.Image)(resources.GetObject("btn_update.Image")));
     this.btn_update.Location = new System.Drawing.Point(494, 34);
     this.btn_update.Name = "btn_update";
     this.btn_update.Size = new System.Drawing.Size(70, 23);
     this.btn_update.TabIndex = 162;
     this.btn_update.Text = "&Modificar";
     this.btn_update.ToolTip = "Modificar";
     this.btn_update.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_update.Click += new System.EventHandler(this.btn_update_Click);
     //
     // btn_search
     //
     this.btn_search.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_search.Image = ((System.Drawing.Image)(resources.GetObject("btn_search.Image")));
     this.btn_search.Location = new System.Drawing.Point(208, 64);
     this.btn_search.Name = "btn_search";
     this.btn_search.Size = new System.Drawing.Size(25, 23);
     this.btn_search.TabIndex = 161;
     this.btn_search.ToolTip = "Buscar Codigo";
     this.btn_search.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     //
     // rollo_search
     //
     this.rollo_search.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.rollo_search.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rollo_search.ForeColor = System.Drawing.Color.Firebrick;
     this.rollo_search.Location = new System.Drawing.Point(233, 64);
     this.rollo_search.Name = "rollo_search";
     this.rollo_search.Size = new System.Drawing.Size(76, 21);
     this.rollo_search.TabIndex = 160;
     this.rollo_search.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rollo_search_KeyDown);
     //
     // btn_exportar
     //
     this.btn_exportar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_exportar.Image = ((System.Drawing.Image)(resources.GetObject("btn_exportar.Image")));
     this.btn_exportar.Location = new System.Drawing.Point(22, 62);
     this.btn_exportar.Name = "btn_exportar";
     this.btn_exportar.Size = new System.Drawing.Size(70, 23);
     this.btn_exportar.TabIndex = 159;
     this.btn_exportar.Text = "&Exportar";
     this.btn_exportar.ToolTip = "Exportar";
     this.btn_exportar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_exportar.Click += new System.EventHandler(this.btn_exportar_Click);
     //
     // btn_importar
     //
     this.btn_importar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_importar.Image = ((System.Drawing.Image)(resources.GetObject("btn_importar.Image")));
     this.btn_importar.Location = new System.Drawing.Point(98, 62);
     this.btn_importar.Name = "btn_importar";
     this.btn_importar.Size = new System.Drawing.Size(70, 23);
     this.btn_importar.TabIndex = 158;
     this.btn_importar.Text = "&Importar";
     this.btn_importar.ToolTip = "Importar";
     this.btn_importar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_importar.Click += new System.EventHandler(this.btn_importar_Click);
     //
     // chk_aldoc2
     //
     this.chk_aldoc2.Location = new System.Drawing.Point(10, 37);
     this.chk_aldoc2.MenuManager = this.barManager1;
     this.chk_aldoc2.Name = "chk_aldoc2";
     this.chk_aldoc2.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldoc2.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldoc2.Properties.Caption = "Al Documento ?";
     this.chk_aldoc2.Size = new System.Drawing.Size(97, 19);
     this.chk_aldoc2.TabIndex = 157;
     this.chk_aldoc2.CheckedChanged += new System.EventHandler(this.chk_aldoc2_CheckedChanged);
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_del.Location = new System.Drawing.Point(494, 61);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(70, 23);
     this.btn_del.TabIndex = 144;
     this.btn_del.Text = "Eliminar";
     this.btn_del.ToolTip = "Eliminar";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(417, 61);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(71, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "Adicionar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(341, 61);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(70, 23);
     this.btn_save.TabIndex = 154;
     this.btn_save.Text = "&Aceptar";
     this.btn_save.ToolTip = "Grabar";
     this.btn_save.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // precunit
     //
     this.precunit.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit.Location = new System.Drawing.Point(366, 34);
     this.precunit.Name = "precunit";
     this.precunit.Size = new System.Drawing.Size(80, 21);
     this.precunit.TabIndex = 153;
     this.precunit.Text = "0.00";
     this.precunit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // percdscto
     //
     this.percdscto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.percdscto.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.percdscto.Location = new System.Drawing.Point(173, 34);
     this.percdscto.Name = "percdscto";
     this.percdscto.Size = new System.Drawing.Size(80, 21);
     this.percdscto.TabIndex = 152;
     this.percdscto.Text = "0.00";
     this.percdscto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.percdscto.KeyDown += new System.Windows.Forms.KeyEventHandler(this.precunit1_KeyDown);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(304, 39);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 13);
     this.labelControl9.TabIndex = 151;
     this.labelControl9.Text = "» Precio :";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(111, 39);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(56, 13);
     this.labelControl8.TabIndex = 150;
     this.labelControl8.Text = "» % Dcto:";
     //
     // dgb_promodet
     //
     this.dgb_promodet.AllowUserToAddRows = false;
     this.dgb_promodet.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_promodet.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.@__promoid,
     this._articid,
     this._articidold,
     this._articname,
     this._es_dscto,
     this.@__percdscto,
     this._precunit,
     this.@__status,
     this.@__feact,
     this._usuarip,
     this._cantidad});
     this.dgb_promodet.EnableHeadersVisualStyles = false;
     this.dgb_promodet.Location = new System.Drawing.Point(2, 90);
     this.dgb_promodet.Name = "dgb_promodet";
     this.dgb_promodet.ReadOnly = true;
     this.dgb_promodet.RowHeadersVisible = false;
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.Black;
     this.dgb_promodet.RowsDefaultCellStyle = dataGridViewCellStyle8;
     this.dgb_promodet.Size = new System.Drawing.Size(562, 202);
     this.dgb_promodet.TabIndex = 149;
     this.dgb_promodet.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellClick);
     this.dgb_promodet.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellEnter);
     this.dgb_promodet.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_listaPrecios_KeyUp);
     //
     // __promoid
     //
     this.@__promoid.DataPropertyName = "promoid";
     this.@__promoid.HeaderText = "promoid";
     this.@__promoid.Name = "__promoid";
     this.@__promoid.ReadOnly = true;
     this.@__promoid.Visible = false;
     //
     // _articid
     //
     this._articid.DataPropertyName = "articid";
     this._articid.HeaderText = "articid";
     this._articid.Name = "_articid";
     this._articid.ReadOnly = true;
     this._articid.Visible = false;
     //
     // _articidold
     //
     this._articidold.DataPropertyName = "articidold";
     this._articidold.HeaderText = "Codigo";
     this._articidold.Name = "_articidold";
     this._articidold.ReadOnly = true;
     this._articidold.Width = 70;
     //
     // _articname
     //
     this._articname.DataPropertyName = "articname";
     this._articname.HeaderText = "Denominación";
     this._articname.Name = "_articname";
     this._articname.ReadOnly = true;
     this._articname.Width = 250;
     //
     // _es_dscto
     //
     this._es_dscto.DataPropertyName = "es_dscto";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._es_dscto.DefaultCellStyle = dataGridViewCellStyle5;
     this._es_dscto.HeaderText = "Desc ?";
     this._es_dscto.Name = "_es_dscto";
     this._es_dscto.ReadOnly = true;
     this._es_dscto.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._es_dscto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._es_dscto.Width = 65;
     //
     // __percdscto
     //
     this.@__percdscto.DataPropertyName = "percdscto";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N2";
     dataGridViewCellStyle6.NullValue = null;
     this.@__percdscto.DefaultCellStyle = dataGridViewCellStyle6;
     this.@__percdscto.HeaderText = "%";
     this.@__percdscto.Name = "__percdscto";
     this.@__percdscto.ReadOnly = true;
     this.@__percdscto.Width = 60;
     //
     // _precunit
     //
     this._precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this._precunit.DefaultCellStyle = dataGridViewCellStyle7;
     this._precunit.HeaderText = "Precio";
     this._precunit.Name = "_precunit";
     this._precunit.ReadOnly = true;
     this._precunit.Width = 80;
     //
     // __status
     //
     this.@__status.DataPropertyName = "status";
     this.@__status.HeaderText = "status";
     this.@__status.Name = "__status";
     this.@__status.ReadOnly = true;
     this.@__status.Visible = false;
     //
     // __feact
     //
     this.@__feact.DataPropertyName = "feact";
     this.@__feact.HeaderText = "feact";
     this.@__feact.Name = "__feact";
     this.@__feact.ReadOnly = true;
     this.@__feact.Visible = false;
     //
     // _usuarip
     //
     this._usuarip.DataPropertyName = "usuarip";
     this._usuarip.HeaderText = "usuarip";
     this._usuarip.Name = "_usuarip";
     this._usuarip.ReadOnly = true;
     this._usuarip.Visible = false;
     //
     // _cantidad
     //
     this._cantidad.DataPropertyName = "cantidad";
     this._cantidad.HeaderText = "cantidad";
     this._cantidad.Name = "_cantidad";
     this._cantidad.ReadOnly = true;
     this._cantidad.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(12, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 123;
     this.labelControl2.Text = "» Articulo:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.Group_chks);
     this.groupControl1.Controls.Add(this.cmb_perianio);
     this.groupControl1.Controls.Add(this.cmb_grupopromocion2);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.Mdi_dgv_promociones);
     this.groupControl1.Location = new System.Drawing.Point(0, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(471, 571);
     this.groupControl1.TabIndex = 142;
     this.groupControl1.Text = "Promociónes";
     //
     // Group_chks
     //
     this.Group_chks.Location = new System.Drawing.Point(31, 47);
     this.Group_chks.MenuManager = this.barManager1;
     this.Group_chks.Name = "Group_chks";
     this.Group_chks.Properties.Appearance.BackColor = System.Drawing.Color.Teal;
     this.Group_chks.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Group_chks.Properties.Appearance.ForeColor = System.Drawing.Color.White;
     this.Group_chks.Properties.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("Group_chks.Properties.Appearance.Image")));
     this.Group_chks.Properties.Appearance.Options.UseBackColor = true;
     this.Group_chks.Properties.Appearance.Options.UseFont = true;
     this.Group_chks.Properties.Appearance.Options.UseForeColor = true;
     this.Group_chks.Properties.Appearance.Options.UseImage = true;
     this.Group_chks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Group_chks.Properties.Columns = 3;
     this.Group_chks.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "Vigentes"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "Culminados"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("2", "Todos")});
     this.Group_chks.Size = new System.Drawing.Size(399, 21);
     this.Group_chks.TabIndex = 151;
     this.Group_chks.SelectedIndexChanged += new System.EventHandler(this.Group_chks_SelectedIndexChanged);
     //
     // cmb_perianio
     //
     this.cmb_perianio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_perianio.FormattingEnabled = true;
     this.cmb_perianio.Location = new System.Drawing.Point(52, 23);
     this.cmb_perianio.Name = "cmb_perianio";
     this.cmb_perianio.Size = new System.Drawing.Size(52, 21);
     this.cmb_perianio.TabIndex = 147;
     //
     // cmb_grupopromocion2
     //
     this.cmb_grupopromocion2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion2.FormattingEnabled = true;
     this.cmb_grupopromocion2.Location = new System.Drawing.Point(220, 23);
     this.cmb_grupopromocion2.Name = "cmb_grupopromocion2";
     this.cmb_grupopromocion2.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion2.TabIndex = 146;
     //
     // labelControl11
     //
     this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl11.Location = new System.Drawing.Point(133, 26);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(81, 13);
     this.labelControl11.TabIndex = 145;
     this.labelControl11.Text = "» Grupo Prom:";
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Location = new System.Drawing.Point(13, 26);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(36, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "» Año:";
     //
     // Mdi_dgv_promociones
     //
     this.Mdi_dgv_promociones.Location = new System.Drawing.Point(5, 71);
     this.Mdi_dgv_promociones.MainView = this.dgv_promociones;
     this.Mdi_dgv_promociones.Name = "Mdi_dgv_promociones";
     this.Mdi_dgv_promociones.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_promociones.Size = new System.Drawing.Size(461, 495);
     this.Mdi_dgv_promociones.TabIndex = 143;
     this.Mdi_dgv_promociones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_promociones});
     this.Mdi_dgv_promociones.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_promociones
     //
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_promociones.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_promociones.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_promociones.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_promociones.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_promociones.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_promociones.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_promociones.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.Row.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Row.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_promociones.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_promociones.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_promociones.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._promoid,
     this._prioridad,
     this._status,
     this._exclusivo,
     this._promoname,
     this._tiendalist,
     this._tarjgrupoid,
     this._tarjetaid,
     this._percdscto,
     this._al_docum,
     this._fechaini,
     this._fechafin,
     this._promotipoid,
     this._grupopromoid,
     this._campaniaid,
     this._usuar,
     this._fecre,
     this._feact,
     this._usuarap,
     this._fechap,
     this._solodias,
     this._dom,
     this._lun,
     this._mar,
     this._mie,
     this._jue,
     this._vie,
     this._sab,
     this._npack,
     this._impopack,
     this._aplicini,
     this._aplicfin,
     this._impodoc});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_promociones.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_promociones.GridControl = this.Mdi_dgv_promociones;
     this.dgv_promociones.Name = "dgv_promociones";
     this.dgv_promociones.OptionsSelection.MultiSelect = true;
     this.dgv_promociones.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_promociones.OptionsView.ShowGroupPanel = false;
     this.dgv_promociones.PaintStyleName = "Web";
     this.dgv_promociones.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // _promoid
     //
     this._promoid.Caption = "ID";
     this._promoid.FieldName = "promoid";
     this._promoid.Name = "_promoid";
     this._promoid.OptionsColumn.AllowEdit = false;
     this._promoid.Visible = true;
     this._promoid.VisibleIndex = 0;
     this._promoid.Width = 34;
     //
     // _prioridad
     //
     this._prioridad.Caption = "prioridad";
     this._prioridad.FieldName = "prioridad";
     this._prioridad.Name = "_prioridad";
     this._prioridad.OptionsColumn.AllowEdit = false;
     this._prioridad.Width = 281;
     //
     // _status
     //
     this._status.Caption = "status";
     this._status.FieldName = "status";
     this._status.Name = "_status";
     //
     // _exclusivo
     //
     this._exclusivo.Caption = "exclusivo";
     this._exclusivo.FieldName = "exclusivo";
     this._exclusivo.Name = "_exclusivo";
     //
     // _promoname
     //
     this._promoname.Caption = "Denominación";
     this._promoname.FieldName = "promoname";
     this._promoname.Name = "_promoname";
     this._promoname.OptionsColumn.AllowEdit = false;
     this._promoname.Visible = true;
     this._promoname.VisibleIndex = 1;
     this._promoname.Width = 252;
     //
     // _tiendalist
     //
     this._tiendalist.Caption = "tiendalist";
     this._tiendalist.FieldName = "tiendalist";
     this._tiendalist.Name = "_tiendalist";
     //
     // _tarjgrupoid
     //
     this._tarjgrupoid.Caption = "tarjgrupoid";
     this._tarjgrupoid.FieldName = "tarjgrupoid";
     this._tarjgrupoid.Name = "_tarjgrupoid";
     //
     // _tarjetaid
     //
     this._tarjetaid.Caption = "tarjetaid";
     this._tarjetaid.FieldName = "tarjetaid";
     this._tarjetaid.Name = "_tarjetaid";
     //
     // _percdscto
     //
     this._percdscto.Caption = "percdscto";
     this._percdscto.FieldName = "percdscto";
     this._percdscto.Name = "_percdscto";
     //
     // _al_docum
     //
     this._al_docum.Caption = "al_docum";
     this._al_docum.FieldName = "al_docum";
     this._al_docum.Name = "_al_docum";
     //
     // _fechaini
     //
     this._fechaini.Caption = "F.Ini";
     this._fechaini.FieldName = "fechaini";
     this._fechaini.Name = "_fechaini";
     this._fechaini.OptionsColumn.AllowEdit = false;
     this._fechaini.Visible = true;
     this._fechaini.VisibleIndex = 2;
     //
     // _fechafin
     //
     this._fechafin.Caption = "F.Fin";
     this._fechafin.FieldName = "fechafin";
     this._fechafin.Name = "_fechafin";
     this._fechafin.OptionsColumn.AllowEdit = false;
     this._fechafin.Visible = true;
     this._fechafin.VisibleIndex = 3;
     this._fechafin.Width = 85;
     //
     // _promotipoid
     //
     this._promotipoid.Caption = "promotipoid";
     this._promotipoid.FieldName = "promotipoid";
     this._promotipoid.Name = "_promotipoid";
     //
     // _grupopromoid
     //
     this._grupopromoid.Caption = "grupopromoid";
     this._grupopromoid.FieldName = "grupopromoid";
     this._grupopromoid.Name = "_grupopromoid";
     //
     // _campaniaid
     //
     this._campaniaid.Caption = "campaniaid";
     this._campaniaid.FieldName = "campaniaid";
     this._campaniaid.Name = "_campaniaid";
     //
     // _usuar
     //
     this._usuar.Caption = "usuar";
     this._usuar.FieldName = "usuar";
     this._usuar.Name = "_usuar";
     //
     // _fecre
     //
     this._fecre.Caption = "fecre";
     this._fecre.FieldName = "fecre";
     this._fecre.Name = "_fecre";
     //
     // _feact
     //
     this._feact.Caption = "feact";
     this._feact.FieldName = "feact";
     this._feact.Name = "_feact";
     //
     // _usuarap
     //
     this._usuarap.Caption = "gridColumn8";
     this._usuarap.Name = "_usuarap";
     //
     // _fechap
     //
     this._fechap.Caption = "fechap";
     this._fechap.FieldName = "fechap";
     this._fechap.Name = "_fechap";
     //
     // _solodias
     //
     this._solodias.Caption = "solodias";
     this._solodias.FieldName = "solodias";
     this._solodias.Name = "_solodias";
     //
     // _dom
     //
     this._dom.Caption = "dom";
     this._dom.FieldName = "dom";
     this._dom.Name = "_dom";
     //
     // _lun
     //
     this._lun.Caption = "lun";
     this._lun.FieldName = "lun";
     this._lun.Name = "_lun";
     //
     // _mar
     //
     this._mar.Caption = "mar";
     this._mar.FieldName = "mar";
     this._mar.Name = "_mar";
     //
     // _mie
     //
     this._mie.Caption = "mie";
     this._mie.FieldName = "mie";
     this._mie.Name = "_mie";
     //
     // _jue
     //
     this._jue.Caption = "jue";
     this._jue.FieldName = "jue";
     this._jue.Name = "_jue";
     //
     // _vie
     //
     this._vie.Caption = "vie";
     this._vie.FieldName = "vie";
     this._vie.Name = "_vie";
     //
     // _sab
     //
     this._sab.Caption = "sab";
     this._sab.FieldName = "sab";
     this._sab.Name = "_sab";
     //
     // _npack
     //
     this._npack.Caption = "npack";
     this._npack.FieldName = "npack";
     this._npack.Name = "_npack";
     //
     // _impopack
     //
     this._impopack.Caption = "impopack";
     this._impopack.FieldName = "impopack";
     this._impopack.Name = "_impopack";
     //
     // _aplicini
     //
     this._aplicini.Caption = "aplicini";
     this._aplicini.FieldName = "aplicini";
     this._aplicini.Name = "_aplicini";
     //
     // _aplicfin
     //
     this._aplicfin.Caption = "aplicfin";
     this._aplicfin.FieldName = "aplicfin";
     this._aplicfin.Name = "_aplicfin";
     //
     // _impodoc
     //
     this._impodoc.Caption = "impodoc";
     this._impodoc.FieldName = "impodoc";
     this._impodoc.Name = "_impodoc";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // Frm_promociones
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     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(1038, 595);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.pnlcontroldet);
     this.Controls.Add(this.pnl_01);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_promociones";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Lista de Promociónes";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).EndInit();
     this.pnl_01.ResumeLayout(false);
     this.pnl_01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).EndInit();
     this.pnl_dias.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).EndInit();
     this.pnlcontroldet.ResumeLayout(false);
     this.pnlcontroldet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 创建查询条件控件
        /// </summary>
        private void CreatSearchControl()
        {
            try
            {
                if (dtDetail != null && dtMain != null && dtMain.Rows.Count > 0)
                {
                    //每行控件数
                    int iControlColumn = Convert.ToInt32(dtMain.Rows[0]["iControlColumn"]);
                    //控件间距
                    int iControlSpace = Convert.ToInt32(dtMain.Rows[0]["iControlSpace"]);
                    //先计算需要生成查询的数据
                    DataRow[] dr = dtDetail.Select("bIsQuery=1");
                    //计算控件总共行数
                    int iRows = 0;
                    if (dr.Length > 0)
                    {
                        if (dr.Length % iControlColumn != 0)
                        {
                            iRows = (int)Math.Floor(Convert.ToDecimal(dr.Length / iControlColumn)) + 1;
                        }
                        else
                        {
                            iRows = Convert.ToInt32(dr.Length / iControlColumn);
                        }

                        //设置控件数计数
                        int iControl = 0;
                        for (int j = 0; j < iRows; j++)
                        {
                            for (int i = 0; i < iControlColumn; i++)
                            {
                                //控件类型
                                string sColumnType = dr[iControl]["sColumnType"].ToString();
                                //取得查询条件默认值
                                object oColumnDefaultValue = dr[iControl]["sDefaultValue"];
                                if (oColumnDefaultValue.ToString().ToLower() == "<userid>")
                                {
                                    oColumnDefaultValue = BWS.ERP.Security.SecurityCenter.CurrentUserID;
                                }
                                //默认值中日期类型解析
                                if (oColumnDefaultValue.ToString().ToLower().Contains("<getdate>") && sColumnType == "D")
                                {
                                    if (oColumnDefaultValue.ToString().Length == 9)
                                    {
                                        oColumnDefaultValue = DateTime.Now.ToShortDateString();
                                    }
                                    else if (oColumnDefaultValue.ToString().ToLower().Contains("+"))
                                    {
                                        int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
                                        oColumnDefaultValue = DateTime.Now.AddDays(iDays);
                                    }
                                    else if (oColumnDefaultValue.ToString().ToLower().Contains("-"))
                                    {
                                        int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
                                        oColumnDefaultValue = DateTime.Now.AddDays(-iDays);
                                    }
                                }
                                if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 1)
                                {
                                    oColumnDefaultValue = true;
                                }
                                else if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 0)
                                {
                                    oColumnDefaultValue = false;
                                }

                                //创建控件
                                //Lable大小控制为80X21,其他输入控件大小为120X21
                                Label lbl = new Label();
                                lbl.AutoSize = false;
                                lbl.Size = new Size(80, 21);
                                lbl.Location = new Point(10 + (80 + 120 + iControlSpace) * i, 25 + (21 + 10) * j);
                                //控件命名规则:lbl+字段名+数据行号
                                lbl.Name = "lbl" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                lbl.TextAlign = ContentAlignment.BottomLeft;
                                //当控件类型为复选框时不创建Lable控件
                                if (sColumnType != "K")
                                {
                                    lbl.Text = dr[iControl]["sColumnCaption"].ToString();
                                }
                                grbFilter.Controls.Add(lbl);
                                //不同类型创建不同控件
                                switch (sColumnType)
                                {
                                    //字符型,数字型
                                    case "S":
                                    case "N":
                                        {
                                            DevExpress.XtraEditors.TextEdit txt = new DevExpress.XtraEditors.TextEdit();
                                            txt.Size = new Size(120, 21);
                                            txt.Name = "txt" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            txt.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            txt.Text = oColumnDefaultValue.ToString();
                                            //用Tag来存储查询类型
                                            txt.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            grbFilter.Controls.Add(txt);
                                            break;
                                        }
                                    //ComboBox类型
                                    case "C":
                                        {
                                            DevExpress.XtraEditors.ComboBoxEdit cbx = new DevExpress.XtraEditors.ComboBoxEdit();
                                            cbx.Size = new Size(120, 21);
                                            cbx.Name = "cbx" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            cbx.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            cbx.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                                            //写入ComboBox选择值
                                            foreach (var item in dr[iControl]["sReturnValue"].ToString().Replace(",", ",").Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries))
                                            {
                                                cbx.Properties.Items.Add(item);
                                            }

                                            if (dr[iControl]["sReturnValue"].ToString() != "")
                                            {
                                                if (oColumnDefaultValue.ToString() != "" && dr[iControl]["sReturnValue"].ToString().Contains(oColumnDefaultValue.ToString()))
                                                {
                                                    cbx.Text = oColumnDefaultValue.ToString();
                                                }
                                                else
                                                {
                                                    cbx.SelectedIndex = -1;
                                                }
                                            }
                                            //用Tag来存储查询类型
                                            cbx.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            grbFilter.Controls.Add(cbx);
                                            break;
                                        }
                                    //日期型
                                    case "D":
                                        {
                                            DevExpress.XtraEditors.DateEdit det = new DevExpress.XtraEditors.DateEdit();
                                            det.Size = new Size(120, 21);
                                            det.Name = "det" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            det.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            det.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            if (oColumnDefaultValue.ToString() != "")
                                            {
                                                det.DateTime = Convert.ToDateTime(oColumnDefaultValue);
                                            }
                                            else
                                            {
                                                det.EditValue = null;
                                            }
                                            grbFilter.Controls.Add(det);
                                            break;
                                        }
                                    //复选框
                                    case "K":
                                        {
                                            DevExpress.XtraEditors.CheckEdit chk = new DevExpress.XtraEditors.CheckEdit();
                                            chk.Size = new Size(120, 21);
                                            chk.Name = "chk" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            chk.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            //CheckBox过滤条件特殊处理
                                            string sReturnValue = "";
                                            if (dr[iControl]["sSearchType"].ToString().Contains("LIKE"))
                                            {
                                                sReturnValue = " '%" + dr[iControl]["sReturnValue"].ToString() + "%'";
                                            }
                                            else
                                            {
                                                sReturnValue = " '" + dr[iControl]["sReturnValue"].ToString() + "'";
                                            }
                                            chk.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString() + sReturnValue;
                                            if (oColumnDefaultValue.ToString() != "")
                                            {
                                                chk.Checked = Convert.ToBoolean(oColumnDefaultValue);
                                            }
                                            else
                                            {
                                                chk.CheckState = CheckState.Unchecked;
                                            }
                                            chk.Text = dr[iControl]["sColumnCaption"].ToString();
                                            grbFilter.Controls.Add(chk);
                                            break;
                                        }

                                }
                                iControl++;
                                //当计数大于等于要创建的控件数量时则退出循环
                                if (iControl >= dr.Length)
                                {
                                    break;
                                }

                            }
                        }

                    }
                    //分组条件控件设置
                    grbGroup.Visible = IsGroup;
                    //grbGroup.Location = new Point(10, iRows * 31 + toolStrip1.Height);
                    grbGroup.Location = new Point(10, iRows * 31 + 30);
                    grbGroup.Controls.Clear();
                    for (int i = 0; i < dtDetail.Select("bIsGroup=1").Length; i++)
                    {
                        DevExpress.XtraEditors.CheckEdit chk = new DevExpress.XtraEditors.CheckEdit();
                        chk.Size = new Size(80, 21);
                        chk.Location = new Point(5 + (80 + 5) * i, 25);
                        chk.Name = "chkGrp" + dtDetail.Select("bIsGroup=1")[i]["sColumnFieldName"].ToString() + i.ToString();
                        chk.Text = dtDetail.Select("bIsGroup=1")[i]["sColumnCaption"].ToString();
                        chk.Tag = dtDetail.Select("bIsGroup=1")[i]["sColumnFieldName"].ToString();
                        chk.Checked = true;
                        grbGroup.Controls.Add(chk);
                    }
                    grbGroup.Height = 45;
                    grbGroup.Width = dtDetail.Select("bIsGroup=1").Length * 85 + 10;

                    //设置查询条件面板高度
                    grbFilter.Height = iRows * 31 + 55 + (IsGroup == true ? grbGroup.Height : 0);
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询条件控件错误!" + ex.Message, true);
            }
        }
Example #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.DocManagement_DocModify_TabContr = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_TabContr_BasicInfo = new DevExpress.XtraTab.XtraTabPage();
     this.btnCannel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ckAuto = new DevExpress.XtraEditors.CheckEdit();
     this.ckFlow = new DevExpress.XtraEditors.CheckEdit();
     this.cbxDocDense = new DevExpress.XtraEditors.ComboBoxEdit();
     this.DocManagement_DocModify_GroupControl_PartsRelated = new DevExpress.XtraEditors.GroupControl();
     this.listBoxControl1 = new DevExpress.XtraEditors.ListBoxControl();
     this.btnPartsDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnPartsAdd = new DevExpress.XtraEditors.SimpleButton();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_XtraTabPage_Remark = new DevExpress.XtraTab.XtraTabPage();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords = new DevExpress.XtraTab.XtraTabPage();
     this.txtKey = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_Summary = new DevExpress.XtraTab.XtraTabPage();
     this.txtAbstract = new DevExpress.XtraEditors.MemoEdit();
     this.txtDocModel = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocUpload = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocFlow = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocCategory = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocNumber = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManagement_DocModify_Label_SecurityLevel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_InValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocModel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocUpload = new DevExpress.XtraEditors.LabelControl();
     this.txtDocPage = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocPage = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocFlow = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ModifyTime = new DevExpress.XtraEditors.LabelControl();
     this.txtModifyTime = new DevExpress.XtraEditors.TextEdit();
     this.txtModifyCount = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_ModifyCount = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocCategory = new DevExpress.XtraEditors.LabelControl();
     this.txtDocFormat = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocFormat = new DevExpress.XtraEditors.LabelControl();
     this.txtEnName = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_EnglishName = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocName = new DevExpress.XtraEditors.LabelControl();
     this.txtDocName = new DevExpress.XtraEditors.TextEdit();
     this.txtDocVersion = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocVersion = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocNumber = new DevExpress.XtraEditors.LabelControl();
     this.txtInValidTime = new DevExpress.XtraEditors.DateEdit();
     this.txtValidTime = new DevExpress.XtraEditors.DateEdit();
     this.DocManagement_DocModify_tabContr_AdditionalInfor = new DevExpress.XtraTab.XtraTabPage();
     this.DocManagement_DocModify_TabContr_ApproInfo = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_TabContr_DocAssociated = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).BeginInit();
     this.DocManagement_DocModify_TabContr.SuspendLayout();
     this.DocManagement_DocModify_TabContr_BasicInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).BeginInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).BeginInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SuspendLayout();
     this.DocManagement_DocModify_XtraTabPage_Remark.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // DocManagement_DocModify_TabContr
     //
     this.DocManagement_DocModify_TabContr.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.DocManagement_DocModify_TabContr.Location = new System.Drawing.Point(-4, -2);
     this.DocManagement_DocModify_TabContr.Name = "DocManagement_DocModify_TabContr";
     this.DocManagement_DocModify_TabContr.SelectedTabPage = this.DocManagement_DocModify_TabContr_BasicInfo;
     this.DocManagement_DocModify_TabContr.Size = new System.Drawing.Size(777, 604);
     this.DocManagement_DocModify_TabContr.TabIndex = 0;
     this.DocManagement_DocModify_TabContr.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_TabContr_BasicInfo,
     this.DocManagement_DocModify_tabContr_AdditionalInfor,
     this.DocManagement_DocModify_TabContr_ApproInfo,
     this.DocManagement_DocModify_TabContr_DocAssociated});
     //
     // DocManagement_DocModify_TabContr_BasicInfo
     //
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnCannel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnSave);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckAuto);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.cbxDocDense);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_GroupControl_PartsRelated);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_SecurityLevel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_InValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtEnName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_EnglishName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtInValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Name = "DocManagement_DocModify_TabContr_BasicInfo";
     this.DocManagement_DocModify_TabContr_BasicInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_BasicInfo.Text = "文档基本信息";
     //
     // btnCannel
     //
     this.btnCannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCannel.Location = new System.Drawing.Point(646, 512);
     this.btnCannel.Name = "btnCannel";
     this.btnCannel.Size = new System.Drawing.Size(75, 23);
     this.btnCannel.TabIndex = 76;
     this.btnCannel.Text = "取消";
     this.btnCannel.Click += new System.EventHandler(this.btnCannel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSave.Location = new System.Drawing.Point(551, 512);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 75;
     this.btnSave.Text = "确定";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ckAuto
     //
     this.ckAuto.Location = new System.Drawing.Point(498, 199);
     this.ckAuto.Name = "ckAuto";
     this.ckAuto.Properties.Caption = "自动归档";
     this.ckAuto.Size = new System.Drawing.Size(87, 19);
     this.ckAuto.TabIndex = 74;
     //
     // ckFlow
     //
     this.ckFlow.Location = new System.Drawing.Point(300, 119);
     this.ckFlow.Name = "ckFlow";
     this.ckFlow.Properties.Caption = "不需要审签";
     this.ckFlow.Size = new System.Drawing.Size(87, 19);
     this.ckFlow.TabIndex = 73;
     //
     // cbxDocDense
     //
     this.cbxDocDense.Location = new System.Drawing.Point(108, 198);
     this.cbxDocDense.Name = "cbxDocDense";
     this.cbxDocDense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbxDocDense.Properties.Items.AddRange(new object[] {
     "绝密",
     "机密",
     "秘密",
     "一般"});
     this.cbxDocDense.Size = new System.Drawing.Size(279, 20);
     this.cbxDocDense.TabIndex = 72;
     //
     // DocManagement_DocModify_GroupControl_PartsRelated
     //
     this.DocManagement_DocModify_GroupControl_PartsRelated.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.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.listBoxControl1);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsDel);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsAdd);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Location = new System.Drawing.Point(32, 371);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Name = "DocManagement_DocModify_GroupControl_PartsRelated";
     this.DocManagement_DocModify_GroupControl_PartsRelated.Size = new System.Drawing.Size(731, 135);
     this.DocManagement_DocModify_GroupControl_PartsRelated.TabIndex = 38;
     this.DocManagement_DocModify_GroupControl_PartsRelated.Text = "关联零部件";
     //
     // listBoxControl1
     //
     this.listBoxControl1.Location = new System.Drawing.Point(10, 25);
     this.listBoxControl1.Name = "listBoxControl1";
     this.listBoxControl1.Size = new System.Drawing.Size(601, 105);
     this.listBoxControl1.TabIndex = 2;
     //
     // btnPartsDel
     //
     this.btnPartsDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsDel.Location = new System.Drawing.Point(649, 95);
     this.btnPartsDel.Name = "btnPartsDel";
     this.btnPartsDel.Size = new System.Drawing.Size(75, 23);
     this.btnPartsDel.TabIndex = 1;
     this.btnPartsDel.Text = "删除";
     this.btnPartsDel.Click += new System.EventHandler(this.btnPartsDel_Click);
     //
     // btnPartsAdd
     //
     this.btnPartsAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsAdd.Location = new System.Drawing.Point(649, 43);
     this.btnPartsAdd.Name = "btnPartsAdd";
     this.btnPartsAdd.Size = new System.Drawing.Size(75, 23);
     this.btnPartsAdd.TabIndex = 0;
     this.btnPartsAdd.Text = "添加";
     this.btnPartsAdd.Click += new System.EventHandler(this.btnPartsAdd_Click);
     //
     // DocManagement_DocModify_XtraTabControl_DocBasicInfo
     //
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.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.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Location = new System.Drawing.Point(32, 224);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Name = "DocManagement_DocModify_XtraTabControl_DocBasicInfo";
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SelectedTabPage = this.DocManagement_DocModify_XtraTabPage_Remark;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Size = new System.Drawing.Size(736, 144);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabIndex = 37;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_XtraTabPage_Remark,
     this.DocManagement_DocModify_XtraTabPage_KeyWords,
     this.DocManagement_DocModify_XtraTabPage_Summary});
     //
     // DocManagement_DocModify_XtraTabPage_Remark
     //
     this.DocManagement_DocModify_XtraTabPage_Remark.Controls.Add(this.txtRemark);
     this.DocManagement_DocModify_XtraTabPage_Remark.Name = "DocManagement_DocModify_XtraTabPage_Remark";
     this.DocManagement_DocModify_XtraTabPage_Remark.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Remark.Text = "备注";
     //
     // txtRemark
     //
     this.txtRemark.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRemark.Location = new System.Drawing.Point(0, 0);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(680, 138);
     this.txtRemark.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_KeyWords
     //
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Controls.Add(this.txtKey);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Name = "DocManagement_DocModify_XtraTabPage_KeyWords";
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Text = "关键字";
     //
     // txtKey
     //
     this.txtKey.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtKey.Location = new System.Drawing.Point(0, 0);
     this.txtKey.Name = "txtKey";
     this.txtKey.Size = new System.Drawing.Size(680, 138);
     this.txtKey.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_Summary
     //
     this.DocManagement_DocModify_XtraTabPage_Summary.Controls.Add(this.txtAbstract);
     this.DocManagement_DocModify_XtraTabPage_Summary.Name = "DocManagement_DocModify_XtraTabPage_Summary";
     this.DocManagement_DocModify_XtraTabPage_Summary.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Summary.Text = "摘要";
     //
     // txtAbstract
     //
     this.txtAbstract.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtAbstract.Location = new System.Drawing.Point(0, 0);
     this.txtAbstract.Name = "txtAbstract";
     this.txtAbstract.Size = new System.Drawing.Size(680, 138);
     this.txtAbstract.TabIndex = 0;
     //
     // txtDocModel
     //
     this.txtDocModel.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.txtDocModel.Location = new System.Drawing.Point(498, 140);
     this.txtDocModel.Name = "txtDocModel";
     this.txtDocModel.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocModel.Size = new System.Drawing.Size(265, 20);
     this.txtDocModel.TabIndex = 35;
     this.txtDocModel.Click += new System.EventHandler(this.txtDocModel_Click);
     //
     // txtDocUpload
     //
     this.txtDocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocUpload.Location = new System.Drawing.Point(108, 146);
     this.txtDocUpload.Name = "txtDocUpload";
     this.txtDocUpload.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocUpload.Size = new System.Drawing.Size(279, 20);
     this.txtDocUpload.TabIndex = 33;
     this.txtDocUpload.Click += new System.EventHandler(this.docUpload_ButtonClick);
     //
     // txtDocFlow
     //
     this.txtDocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFlow.Location = new System.Drawing.Point(108, 117);
     this.txtDocFlow.Name = "txtDocFlow";
     this.txtDocFlow.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocFlow.Size = new System.Drawing.Size(160, 20);
     this.txtDocFlow.TabIndex = 32;
     this.txtDocFlow.Click += new System.EventHandler(this.txtDocFlow_Click);
     //
     // txtDocCategory
     //
     this.txtDocCategory.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.txtDocCategory.Location = new System.Drawing.Point(498, 60);
     this.txtDocCategory.Name = "txtDocCategory";
     this.txtDocCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocCategory.Size = new System.Drawing.Size(265, 20);
     this.txtDocCategory.TabIndex = 31;
     this.txtDocCategory.Click += new System.EventHandler(this.txtDocCategory_Click);
     //
     // txtDocNumber
     //
     this.txtDocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocNumber.Location = new System.Drawing.Point(108, 6);
     this.txtDocNumber.Name = "txtDocNumber";
     this.txtDocNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocNumber.Size = new System.Drawing.Size(279, 20);
     this.txtDocNumber.TabIndex = 30;
     this.txtDocNumber.Click += new System.EventHandler(this.txtDocNumber_Click);
     //
     // DocManagement_DocModify_Label_SecurityLevel
     //
     this.DocManagement_DocModify_Label_SecurityLevel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_SecurityLevel.Location = new System.Drawing.Point(32, 201);
     this.DocManagement_DocModify_Label_SecurityLevel.Name = "DocManagement_DocModify_Label_SecurityLevel";
     this.DocManagement_DocModify_Label_SecurityLevel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_SecurityLevel.TabIndex = 28;
     this.DocManagement_DocModify_Label_SecurityLevel.Text = "文档密级:";
     //
     // DocManagement_DocModify_Label_InValidTime
     //
     this.DocManagement_DocModify_Label_InValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_InValidTime.Location = new System.Drawing.Point(427, 173);
     this.DocManagement_DocModify_Label_InValidTime.Name = "DocManagement_DocModify_Label_InValidTime";
     this.DocManagement_DocModify_Label_InValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_InValidTime.TabIndex = 26;
     this.DocManagement_DocModify_Label_InValidTime.Text = "失效时间:";
     //
     // DocManagement_DocModify_Label_ValidTime
     //
     this.DocManagement_DocModify_Label_ValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ValidTime.Location = new System.Drawing.Point(32, 175);
     this.DocManagement_DocModify_Label_ValidTime.Name = "DocManagement_DocModify_Label_ValidTime";
     this.DocManagement_DocModify_Label_ValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ValidTime.TabIndex = 24;
     this.DocManagement_DocModify_Label_ValidTime.Text = "生效时间:";
     //
     // DocManagement_DocModify_Label_DocModel
     //
     this.DocManagement_DocModify_Label_DocModel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocModel.Location = new System.Drawing.Point(427, 146);
     this.DocManagement_DocModify_Label_DocModel.Name = "DocManagement_DocModify_Label_DocModel";
     this.DocManagement_DocModify_Label_DocModel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocModel.TabIndex = 22;
     this.DocManagement_DocModify_Label_DocModel.Text = "文档模板:";
     //
     // DocManagement_DocModify_Label_DocUpload
     //
     this.DocManagement_DocModify_Label_DocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocUpload.Location = new System.Drawing.Point(32, 149);
     this.DocManagement_DocModify_Label_DocUpload.Name = "DocManagement_DocModify_Label_DocUpload";
     this.DocManagement_DocModify_Label_DocUpload.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocUpload.TabIndex = 19;
     this.DocManagement_DocModify_Label_DocUpload.Text = "上传文件:";
     //
     // txtDocPage
     //
     this.txtDocPage.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.txtDocPage.Location = new System.Drawing.Point(498, 115);
     this.txtDocPage.Name = "txtDocPage";
     this.txtDocPage.Size = new System.Drawing.Size(265, 20);
     this.txtDocPage.TabIndex = 18;
     //
     // DocManagement_DocModify_Label_DocPage
     //
     this.DocManagement_DocModify_Label_DocPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocPage.Location = new System.Drawing.Point(427, 120);
     this.DocManagement_DocModify_Label_DocPage.Name = "DocManagement_DocModify_Label_DocPage";
     this.DocManagement_DocModify_Label_DocPage.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocPage.TabIndex = 17;
     this.DocManagement_DocModify_Label_DocPage.Text = "文档页面:";
     //
     // DocManagement_DocModify_Label_DocFlow
     //
     this.DocManagement_DocModify_Label_DocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFlow.Location = new System.Drawing.Point(32, 120);
     this.DocManagement_DocModify_Label_DocFlow.Name = "DocManagement_DocModify_Label_DocFlow";
     this.DocManagement_DocModify_Label_DocFlow.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFlow.TabIndex = 16;
     this.DocManagement_DocModify_Label_DocFlow.Text = "文档流程:";
     //
     // DocManagement_DocModify_Label_ModifyTime
     //
     this.DocManagement_DocModify_Label_ModifyTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyTime.Location = new System.Drawing.Point(427, 92);
     this.DocManagement_DocModify_Label_ModifyTime.Name = "DocManagement_DocModify_Label_ModifyTime";
     this.DocManagement_DocModify_Label_ModifyTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyTime.TabIndex = 15;
     this.DocManagement_DocModify_Label_ModifyTime.Text = "修改时间:";
     //
     // txtModifyTime
     //
     this.txtModifyTime.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.txtModifyTime.Location = new System.Drawing.Point(499, 86);
     this.txtModifyTime.Name = "txtModifyTime";
     this.txtModifyTime.Size = new System.Drawing.Size(264, 20);
     this.txtModifyTime.TabIndex = 14;
     //
     // txtModifyCount
     //
     this.txtModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtModifyCount.Location = new System.Drawing.Point(108, 91);
     this.txtModifyCount.Name = "txtModifyCount";
     this.txtModifyCount.Size = new System.Drawing.Size(279, 20);
     this.txtModifyCount.TabIndex = 13;
     //
     // DocManagement_DocModify_Label_ModifyCount
     //
     this.DocManagement_DocModify_Label_ModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyCount.Location = new System.Drawing.Point(32, 94);
     this.DocManagement_DocModify_Label_ModifyCount.Name = "DocManagement_DocModify_Label_ModifyCount";
     this.DocManagement_DocModify_Label_ModifyCount.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyCount.TabIndex = 12;
     this.DocManagement_DocModify_Label_ModifyCount.Text = "修改次数:";
     //
     // DocManagement_DocModify_Label_DocCategory
     //
     this.DocManagement_DocModify_Label_DocCategory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocCategory.Location = new System.Drawing.Point(427, 63);
     this.DocManagement_DocModify_Label_DocCategory.Name = "DocManagement_DocModify_Label_DocCategory";
     this.DocManagement_DocModify_Label_DocCategory.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocCategory.TabIndex = 10;
     this.DocManagement_DocModify_Label_DocCategory.Text = "文档分类:";
     //
     // txtDocFormat
     //
     this.txtDocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFormat.Location = new System.Drawing.Point(108, 63);
     this.txtDocFormat.Name = "txtDocFormat";
     this.txtDocFormat.Size = new System.Drawing.Size(279, 20);
     this.txtDocFormat.TabIndex = 9;
     //
     // DocManagement_DocModify_Label_DocFormat
     //
     this.DocManagement_DocModify_Label_DocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFormat.Location = new System.Drawing.Point(32, 65);
     this.DocManagement_DocModify_Label_DocFormat.Name = "DocManagement_DocModify_Label_DocFormat";
     this.DocManagement_DocModify_Label_DocFormat.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFormat.TabIndex = 8;
     this.DocManagement_DocModify_Label_DocFormat.Text = "文档格式:";
     //
     // txtEnName
     //
     this.txtEnName.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.txtEnName.Location = new System.Drawing.Point(498, 34);
     this.txtEnName.Name = "txtEnName";
     this.txtEnName.Size = new System.Drawing.Size(265, 20);
     this.txtEnName.TabIndex = 7;
     //
     // DocManagement_DocModify_Label_EnglishName
     //
     this.DocManagement_DocModify_Label_EnglishName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_EnglishName.Location = new System.Drawing.Point(427, 37);
     this.DocManagement_DocModify_Label_EnglishName.Name = "DocManagement_DocModify_Label_EnglishName";
     this.DocManagement_DocModify_Label_EnglishName.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_EnglishName.TabIndex = 6;
     this.DocManagement_DocModify_Label_EnglishName.Text = "英文名称:";
     //
     // DocManagement_DocModify_Label_DocName
     //
     this.DocManagement_DocModify_Label_DocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocName.Location = new System.Drawing.Point(25, 40);
     this.DocManagement_DocModify_Label_DocName.Name = "DocManagement_DocModify_Label_DocName";
     this.DocManagement_DocModify_Label_DocName.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocName.TabIndex = 5;
     this.DocManagement_DocModify_Label_DocName.Text = "*文档名称:";
     //
     // txtDocName
     //
     this.txtDocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocName.Location = new System.Drawing.Point(108, 37);
     this.txtDocName.Name = "txtDocName";
     this.txtDocName.Size = new System.Drawing.Size(279, 20);
     this.txtDocName.TabIndex = 4;
     //
     // txtDocVersion
     //
     this.txtDocVersion.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.txtDocVersion.Location = new System.Drawing.Point(499, 7);
     this.txtDocVersion.Name = "txtDocVersion";
     this.txtDocVersion.Size = new System.Drawing.Size(264, 20);
     this.txtDocVersion.TabIndex = 3;
     //
     // DocManagement_DocModify_Label_DocVersion
     //
     this.DocManagement_DocModify_Label_DocVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocVersion.Location = new System.Drawing.Point(412, 10);
     this.DocManagement_DocModify_Label_DocVersion.Name = "DocManagement_DocModify_Label_DocVersion";
     this.DocManagement_DocModify_Label_DocVersion.Size = new System.Drawing.Size(67, 14);
     this.DocManagement_DocModify_Label_DocVersion.TabIndex = 2;
     this.DocManagement_DocModify_Label_DocVersion.Text = "*文档版本:";
     //
     // DocManagement_DocModify_Label_DocNumber
     //
     this.DocManagement_DocModify_Label_DocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocNumber.Location = new System.Drawing.Point(25, 10);
     this.DocManagement_DocModify_Label_DocNumber.Name = "DocManagement_DocModify_Label_DocNumber";
     this.DocManagement_DocModify_Label_DocNumber.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocNumber.TabIndex = 1;
     this.DocManagement_DocModify_Label_DocNumber.Text = "*文档编码:";
     //
     // txtInValidTime
     //
     this.txtInValidTime.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.txtInValidTime.EditValue = null;
     this.txtInValidTime.Location = new System.Drawing.Point(498, 167);
     this.txtInValidTime.Name = "txtInValidTime";
     this.txtInValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtInValidTime.Properties.Mask.EditMask = "F";
     this.txtInValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtInValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtInValidTime.Size = new System.Drawing.Size(265, 20);
     this.txtInValidTime.TabIndex = 36;
     //
     // txtValidTime
     //
     this.txtValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtValidTime.EditValue = null;
     this.txtValidTime.Location = new System.Drawing.Point(108, 172);
     this.txtValidTime.Name = "txtValidTime";
     this.txtValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtValidTime.Properties.Mask.EditMask = "F";
     this.txtValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtValidTime.Size = new System.Drawing.Size(279, 20);
     this.txtValidTime.TabIndex = 34;
     //
     // DocManagement_DocModify_tabContr_AdditionalInfor
     //
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Name = "DocManagement_DocModify_tabContr_AdditionalInfor";
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Text = "文档附加信息";
     //
     // DocManagement_DocModify_TabContr_ApproInfo
     //
     this.DocManagement_DocModify_TabContr_ApproInfo.Controls.Add(this.panelControl3);
     this.DocManagement_DocModify_TabContr_ApproInfo.Name = "DocManagement_DocModify_TabContr_ApproInfo";
     this.DocManagement_DocModify_TabContr_ApproInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_ApproInfo.Text = "文档审签信息";
     //
     // panelControl3
     //
     this.panelControl3.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.panelControl3.Controls.Add(this.panelControl4);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Query_SimpleButton);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit);
     this.panelControl3.Controls.Add(this.checkEdit4);
     this.panelControl3.Controls.Add(this.checkEdit3);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl);
     this.panelControl3.Location = new System.Drawing.Point(1, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(770, 531);
     this.panelControl3.TabIndex = 7;
     //
     // panelControl4
     //
     this.panelControl4.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.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl);
     this.panelControl4.Location = new System.Drawing.Point(218, 1);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(552, 530);
     this.panelControl4.TabIndex = 27;
     //
     // DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Location = new System.Drawing.Point(274, 502);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.TabIndex = 32;
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Text = "删除";
     //
     // DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Location = new System.Drawing.Point(331, 502);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.TabIndex = 31;
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Text = "修改";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.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.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Location = new System.Drawing.Point(2, 225);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Size = new System.Drawing.Size(550, 271);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Text = "文档审签详细信息";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.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.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Location = new System.Drawing.Point(-2, 22);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Size = new System.Drawing.Size(552, 249);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.TabIndex = 0;
     //
     // DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Location = new System.Drawing.Point(217, 502);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.TabIndex = 30;
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Text = "添加";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Location = new System.Drawing.Point(0, -1);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 220);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Text = "文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Location = new System.Drawing.Point(1, 21);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.MainView = this.gridView2;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Size = new System.Drawing.Size(551, 197);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this.gridView2.GridControl = this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "文档名称";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "文档编号";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "文档版本";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "审签状态";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "申请人";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 4;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "申请日期";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 5;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "审签人";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "审签日期";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 7;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "备注";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     //
     // DocManage_DocManageTool_DocModify_Query_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Location = new System.Drawing.Point(158, 204);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Name = "DocManage_DocManageTool_DocModify_Query_SimpleButton";
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Text = "查询(Q)";
     //
     // DocManage_DocManageTool_DocModify_Proposer_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Location = new System.Drawing.Point(70, 141);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Proposer_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Approver_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Location = new System.Drawing.Point(70, 178);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Approver_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.TabIndex = 19;
     //
     // checkEdit4
     //
     this.checkEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit4.Location = new System.Drawing.Point(2, 141);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "申请人:";
     this.checkEdit4.Size = new System.Drawing.Size(62, 19);
     this.checkEdit4.TabIndex = 11;
     //
     // checkEdit3
     //
     this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit3.Location = new System.Drawing.Point(2, 178);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "审签人:";
     this.checkEdit3.Size = new System.Drawing.Size(62, 19);
     this.checkEdit3.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_DocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl4);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl6);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Location = new System.Drawing.Point(5, 5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Text = "文档信息";
     //
     // DocManage_DocManageTool_DocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.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.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_DocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.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.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_DocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl4
     //
     this.labelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl4.Location = new System.Drawing.Point(7, 28);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(52, 14);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "文档名称:";
     //
     // labelControl5
     //
     this.labelControl5.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.labelControl5.Location = new System.Drawing.Point(7, 64);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(52, 14);
     this.labelControl5.TabIndex = 7;
     this.labelControl5.Text = "文档编号:";
     //
     // labelControl6
     //
     this.labelControl6.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.labelControl6.Location = new System.Drawing.Point(7, 99);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 14);
     this.labelControl6.TabIndex = 6;
     this.labelControl6.Text = "文档版本:";
     //
     // DocManagement_DocModify_TabContr_DocAssociated
     //
     this.DocManagement_DocModify_TabContr_DocAssociated.Controls.Add(this.panelControl1);
     this.DocManagement_DocModify_TabContr_DocAssociated.Name = "DocManagement_DocModify_TabContr_DocAssociated";
     this.DocManagement_DocModify_TabContr_DocAssociated.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_DocAssociated.Text = "关联文档";
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton);
     this.panelControl1.Controls.Add(this.panelControl2);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl);
     this.panelControl1.Location = new System.Drawing.Point(3, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(773, 531);
     this.panelControl1.TabIndex = 7;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Location = new System.Drawing.Point(156, 214);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.TabIndex = 25;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Text = "查询(Q)";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton_Click);
     //
     // panelControl2
     //
     this.panelControl2.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.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl);
     this.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl);
     this.panelControl2.Location = new System.Drawing.Point(218, 2);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(555, 529);
     this.panelControl2.TabIndex = 23;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Location = new System.Drawing.Point(5, 202);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Size = new System.Drawing.Size(550, 327);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Text = "关联文档列表区";
     //
     // DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(294, 299);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.TabIndex = 29;
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Text = "删除";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(221, 299);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Text = "添加";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.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.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4});
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Location = new System.Drawing.Point(0, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Size = new System.Drawing.Size(545, 273);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.TabIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "文档名称";
     this.treeListColumn1.FieldName = "cn_name";
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "文档编号";
     this.treeListColumn2.FieldName = "number";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "文档版本";
     this.treeListColumn3.FieldName = "version";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 2;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "文档类型";
     this.treeListColumn4.FieldName = "document_type_name";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Location = new System.Drawing.Point(3, 1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 195);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Text = "关联文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Location = new System.Drawing.Point(0, 21);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.MainView = this.gridView1;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Size = new System.Drawing.Size(547, 174);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.GridControl = this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "文档名称";
     this.gridColumn1.FieldName = "cn_name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "文档编号";
     this.gridColumn2.FieldName = "number";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "文档版本";
     this.gridColumn3.FieldName = "version";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "文档类型";
     this.gridColumn4.FieldName = "document_type_name";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_Creater_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Location = new System.Drawing.Point(68, 141);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Creater_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Modifier_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Location = new System.Drawing.Point(68, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.TabIndex = 19;
     //
     // DocManage_DocManageTool_DocModify_Creater_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Location = new System.Drawing.Point(1, 141);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Creater_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties.Caption = "创建人:";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_Modifier_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Location = new System.Drawing.Point(1, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties.Caption = "修改人:";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.TabIndex = 9;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl2);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Location = new System.Drawing.Point(3, 3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Text = "关联文档信息";
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl3.Location = new System.Drawing.Point(7, 28);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "文档名称:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(7, 64);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 14);
     this.labelControl2.TabIndex = 7;
     this.labelControl2.Text = "文档编号:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(7, 99);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 14);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "文档版本:";
     //
     // DocModify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(772, 567);
     this.Controls.Add(this.DocManagement_DocModify_TabContr);
     this.IsMdiContainer = true;
     this.Name = "DocModify";
     this.Text = "修改文档";
     this.Load += new System.EventHandler(this.docManagement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).EndInit();
     this.DocManagement_DocModify_TabContr.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).EndInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).EndInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_XtraTabPage_Remark.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #47
0
        protected void MarcarCambioEstadoPaso(object sender, EventArgs e)
        {
            var mail = new EnvioMailObject();

            DevExpress.XtraEditors.CheckEdit check = sender as DevExpress.XtraEditors.CheckEdit;
            if (check == null)
            {
                return;
            }

            PaperlessPasosEstado paso = ObtenerPasoSeleccionado();

            if (paso.Paso.NumPaso == 1 || paso.Paso.NumPaso == 2 || paso.Paso.NumPaso == 3)
            {
                paso.Estado = false;
                CargarPasos();
                return;
            }

            if (!ValidarPermiteCambiarPasoEstado(paso))
            {
                paso.Estado = false;
                CargarPasos();
                return;
            }

            if (paso.Estado)
            {
                CargarPasos();
                return;
            }


            paso.Estado = check.Checked;

            if (paso != null)
            {
                Cursor.Current = Cursors.WaitCursor;
                PaperlessAsignacionActual.Estado = Enums.EstadoPaperless.ProcesoTerminado;

                PaperlessProcesoRegistroTiempo termino = new PaperlessProcesoRegistroTiempo();
                termino.IdAsignacion    = PaperlessAsignacionActual.Id;
                termino.TerminoUsuario2 = DateTime.Now;

                Entidades.GlobalObject.ResultadoTransaccion resultado =
                    LogicaNegocios.Paperless.Paperless.Usuario2TerminaProceso(PaperlessAsignacionActual, paso, termino);
                if (resultado.Estado == Enums.EstadoTransaccion.Rechazada)
                {
                    Cursor.Current = Cursors.Default;
                    MessageBox.Show("Error al cambiar estado del paso. \n" + resultado.Descripcion, "Paperless",
                                    MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
                else
                {
                    PaperlessUsuario1HouseBLInfo info =
                        LogicaNegocios.Paperless.Paperless.Usuario1ObtenerHousesBLInfo(PaperlessAsignacionActual.Id);
                    resultado = mail.EnviarMailPaperlessUsuario2TerminaProceso(PaperlessAsignacionActual, info);
                    //resultado = Utils.EnvioEmail.EnviarMailPaperlessUsuario2TerminaProceso(PaperlessAsignacionActual,info);

                    if (resultado.Estado == Enums.EstadoTransaccion.Rechazada)
                    {
                        Cursor.Current = Cursors.Default;
                        MessageBox.Show("Error al enviar email de termino de proceso. \n" + resultado.Descripcion, "Paperless",
                                        MessageBoxButtons.OK, MessageBoxIcon.Error);
                    }
                    else
                    {
                        frmListarUsuario2 form = frmListarUsuario2.Instancia;
                        form.ObtenerAsignaciones();

                        Cursor.Current = Cursors.Default;
                        MessageBox.Show("Proceso ha sido finalizado con exito", "Paperless", MessageBoxButtons.OK,
                                        MessageBoxIcon.Information);

                        this.Close();
                    }
                    Cursor.Current = Cursors.Default;
                    //CargarPasos();
                }
            }
        }
 /// <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.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.printToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToHTMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToTXTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dataSet11 = new Scheduler.BusinessLayer.DataSet1();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClientName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProgramName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClassName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClassType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClientShortName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStartDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colEndDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colDayName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCalendarEventId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPaidHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colTeacherID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInstructorName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colScheduledHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colEventDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.colHomeworkMinutes = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.dateEditEndDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditStartDate = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     this.pnlBody.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEndDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditStartDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.DataMember = "viewInstructorPaymentDetails";
     this.gridControl1.DataSource = this.dataSet11;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(2, 2);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTimeEdit1,
     this.repositoryItemDateEdit1,
     this.repositoryItemTimeEdit2,
     this.repositoryItemDateEdit2,
     this.repositoryItemSpinEdit1,
     this.repositoryItemSpinEdit2});
     this.gridControl1.Size = new System.Drawing.Size(871, 547);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.printToolStripMenuItem,
     this.printPreviewToolStripMenuItem,
     this.exportToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(144, 70);
     //
     // printToolStripMenuItem
     //
     this.printToolStripMenuItem.Name = "printToolStripMenuItem";
     this.printToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.printToolStripMenuItem.Text = "Print";
     this.printToolStripMenuItem.Click += new System.EventHandler(this.printToolStripMenuItem_Click);
     //
     // printPreviewToolStripMenuItem
     //
     this.printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
     this.printPreviewToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.printPreviewToolStripMenuItem.Text = "Print Preview";
     this.printPreviewToolStripMenuItem.Click += new System.EventHandler(this.printPreviewToolStripMenuItem_Click);
     //
     // exportToolStripMenuItem
     //
     this.exportToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exportToolStripMenuItem1,
     this.exportToHTMLToolStripMenuItem,
     this.exportToXMLToolStripMenuItem,
     this.exportToTXTToolStripMenuItem});
     this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
     this.exportToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.exportToolStripMenuItem.Text = "Export";
     this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
     //
     // exportToolStripMenuItem1
     //
     this.exportToolStripMenuItem1.Name = "exportToolStripMenuItem1";
     this.exportToolStripMenuItem1.Size = new System.Drawing.Size(157, 22);
     this.exportToolStripMenuItem1.Text = "Export To Excel";
     this.exportToolStripMenuItem1.Click += new System.EventHandler(this.exportToolStripMenuItem1_Click);
     //
     // exportToHTMLToolStripMenuItem
     //
     this.exportToHTMLToolStripMenuItem.Name = "exportToHTMLToolStripMenuItem";
     this.exportToHTMLToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
     this.exportToHTMLToolStripMenuItem.Text = "Export to HTML";
     this.exportToHTMLToolStripMenuItem.Click += new System.EventHandler(this.exportToHTMLToolStripMenuItem_Click);
     //
     // exportToXMLToolStripMenuItem
     //
     this.exportToXMLToolStripMenuItem.Name = "exportToXMLToolStripMenuItem";
     this.exportToXMLToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
     this.exportToXMLToolStripMenuItem.Text = "Export to XML";
     this.exportToXMLToolStripMenuItem.Click += new System.EventHandler(this.exportToXMLToolStripMenuItem_Click);
     //
     // exportToTXTToolStripMenuItem
     //
     this.exportToTXTToolStripMenuItem.Name = "exportToTXTToolStripMenuItem";
     this.exportToTXTToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
     this.exportToTXTToolStripMenuItem.Text = "Export to TXT";
     this.exportToTXTToolStripMenuItem.Click += new System.EventHandler(this.exportToTXTToolStripMenuItem_Click);
     //
     // dataSet11
     //
     this.dataSet11.DataSetName = "DataSet1";
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDepartment,
     this.colClientName,
     this.colProgramName,
     this.colClassName,
     this.colClassType,
     this.colClientShortName,
     this.colStartDateTime,
     this.colEndDateTime,
     this.colDayName,
     this.colCalendarEventId,
     this.colPaidHours,
     this.colTeacherID,
     this.colInstructorName,
     this.colScheduledHours,
     this.colEventDate,
     this.colHomeworkMinutes});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.GroupCount = 1;
     this.gridView1.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "ScheduledHours", null, "Scheduled Hours = {0}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "PaidHours", null, "Total Paid Hours = {0}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "ScheduledHours", this.colScheduledHours, "Scheduled Hours = {0}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "PaidHours", this.colPaidHours, "Total Paid Hours = {0}")});
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.OptionsView.ShowGroupedColumns = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colInstructorName, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartment
     //
     this.colDepartment.Caption = "Department";
     this.colDepartment.FieldName = "Department";
     this.colDepartment.Name = "colDepartment";
     this.colDepartment.OptionsColumn.AllowEdit = false;
     this.colDepartment.OptionsColumn.ReadOnly = true;
     this.colDepartment.Width = 69;
     //
     // colClientName
     //
     this.colClientName.Caption = "ClientName";
     this.colClientName.FieldName = "ClientName";
     this.colClientName.Name = "colClientName";
     this.colClientName.OptionsColumn.AllowEdit = false;
     this.colClientName.OptionsColumn.ReadOnly = true;
     this.colClientName.Width = 66;
     //
     // colProgramName
     //
     this.colProgramName.Caption = "Program";
     this.colProgramName.FieldName = "ProgramName";
     this.colProgramName.Name = "colProgramName";
     this.colProgramName.OptionsColumn.AllowEdit = false;
     this.colProgramName.OptionsColumn.ReadOnly = true;
     this.colProgramName.Visible = true;
     this.colProgramName.VisibleIndex = 6;
     this.colProgramName.Width = 62;
     //
     // colClassName
     //
     this.colClassName.Caption = "Class";
     this.colClassName.FieldName = "Class";
     this.colClassName.Name = "colClassName";
     this.colClassName.OptionsColumn.AllowEdit = false;
     this.colClassName.OptionsColumn.ReadOnly = true;
     this.colClassName.Visible = true;
     this.colClassName.VisibleIndex = 7;
     this.colClassName.Width = 47;
     //
     // colClassType
     //
     this.colClassType.Caption = "Job Type";
     this.colClassType.FieldName = "JobType";
     this.colClassType.Name = "colClassType";
     this.colClassType.OptionsColumn.AllowEdit = false;
     this.colClassType.OptionsColumn.ReadOnly = true;
     this.colClassType.Visible = true;
     this.colClassType.VisibleIndex = 8;
     this.colClassType.Width = 66;
     //
     // colClientShortName
     //
     this.colClientShortName.Caption = "Client";
     this.colClientShortName.FieldName = "ClientNickName";
     this.colClientShortName.Name = "colClientShortName";
     this.colClientShortName.OptionsColumn.AllowEdit = false;
     this.colClientShortName.OptionsColumn.ReadOnly = true;
     this.colClientShortName.Visible = true;
     this.colClientShortName.VisibleIndex = 5;
     this.colClientShortName.Width = 49;
     //
     // colStartDateTime
     //
     this.colStartDateTime.Caption = "Start Time";
     this.colStartDateTime.ColumnEdit = this.repositoryItemTimeEdit1;
     this.colStartDateTime.FieldName = "StartDateTime";
     this.colStartDateTime.Name = "colStartDateTime";
     this.colStartDateTime.OptionsColumn.AllowEdit = false;
     this.colStartDateTime.OptionsColumn.ReadOnly = true;
     this.colStartDateTime.Visible = true;
     this.colStartDateTime.VisibleIndex = 3;
     this.colStartDateTime.Width = 71;
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit1.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.repositoryItemTimeEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit1.Mask.EditMask = "hh:mm:ss tt";
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // colEndDateTime
     //
     this.colEndDateTime.Caption = "End Time";
     this.colEndDateTime.ColumnEdit = this.repositoryItemTimeEdit2;
     this.colEndDateTime.FieldName = "EndDateTime";
     this.colEndDateTime.Name = "colEndDateTime";
     this.colEndDateTime.OptionsColumn.AllowEdit = false;
     this.colEndDateTime.OptionsColumn.ReadOnly = true;
     this.colEndDateTime.Visible = true;
     this.colEndDateTime.VisibleIndex = 4;
     this.colEndDateTime.Width = 65;
     //
     // repositoryItemTimeEdit2
     //
     this.repositoryItemTimeEdit2.AutoHeight = false;
     this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit2.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.repositoryItemTimeEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2";
     //
     // colDayName
     //
     this.colDayName.Caption = "Day";
     this.colDayName.FieldName = "DayName";
     this.colDayName.Name = "colDayName";
     this.colDayName.OptionsColumn.AllowEdit = false;
     this.colDayName.OptionsColumn.ReadOnly = true;
     this.colDayName.Visible = true;
     this.colDayName.VisibleIndex = 2;
     this.colDayName.Width = 41;
     //
     // colCalendarEventId
     //
     this.colCalendarEventId.Caption = "CalendarEventId";
     this.colCalendarEventId.FieldName = "CalendarEventId";
     this.colCalendarEventId.Name = "colCalendarEventId";
     this.colCalendarEventId.OptionsColumn.AllowEdit = false;
     this.colCalendarEventId.OptionsColumn.ReadOnly = true;
     this.colCalendarEventId.Width = 93;
     //
     // colPaidHours
     //
     this.colPaidHours.Caption = "Paid Hours";
     this.colPaidHours.ColumnEdit = this.repositoryItemSpinEdit2;
     this.colPaidHours.FieldName = "PaidHours";
     this.colPaidHours.Name = "colPaidHours";
     this.colPaidHours.OptionsColumn.AllowEdit = false;
     this.colPaidHours.OptionsColumn.ReadOnly = true;
     this.colPaidHours.SummaryItem.DisplayFormat = "Paid Hours = {0}";
     this.colPaidHours.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colPaidHours.Visible = true;
     this.colPaidHours.VisibleIndex = 10;
     this.colPaidHours.Width = 172;
     //
     // repositoryItemSpinEdit2
     //
     this.repositoryItemSpinEdit2.AutoHeight = false;
     this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit2.DisplayFormat.FormatString = "n";
     this.repositoryItemSpinEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemSpinEdit2.Mask.EditMask = "n";
     this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
     //
     // colTeacherID
     //
     this.colTeacherID.Caption = "TeacherID";
     this.colTeacherID.FieldName = "TeacherId";
     this.colTeacherID.Name = "colTeacherID";
     this.colTeacherID.OptionsColumn.AllowEdit = false;
     this.colTeacherID.OptionsColumn.ReadOnly = true;
     this.colTeacherID.Width = 62;
     //
     // colInstructorName
     //
     this.colInstructorName.Caption = "Instructor Name";
     this.colInstructorName.FieldName = "InstructorName";
     this.colInstructorName.Name = "colInstructorName";
     this.colInstructorName.OptionsColumn.AllowEdit = false;
     this.colInstructorName.OptionsColumn.ReadOnly = true;
     this.colInstructorName.Visible = true;
     this.colInstructorName.VisibleIndex = 0;
     this.colInstructorName.Width = 113;
     //
     // colScheduledHours
     //
     this.colScheduledHours.Caption = "Scheduled Hours";
     this.colScheduledHours.ColumnEdit = this.repositoryItemSpinEdit1;
     this.colScheduledHours.FieldName = "ScheduledHours";
     this.colScheduledHours.Name = "colScheduledHours";
     this.colScheduledHours.OptionsColumn.AllowEdit = false;
     this.colScheduledHours.OptionsColumn.ReadOnly = true;
     this.colScheduledHours.SummaryItem.DisplayFormat = "Scheduled Hours = {0}";
     this.colScheduledHours.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colScheduledHours.Visible = true;
     this.colScheduledHours.VisibleIndex = 9;
     this.colScheduledHours.Width = 162;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.DisplayFormat.FormatString = "n";
     this.repositoryItemSpinEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemSpinEdit1.Mask.EditMask = "n";
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // colEventDate
     //
     this.colEventDate.Caption = "Date";
     this.colEventDate.ColumnEdit = this.repositoryItemDateEdit2;
     this.colEventDate.FieldName = "StartDateTime";
     this.colEventDate.Name = "colEventDate";
     this.colEventDate.OptionsColumn.AllowEdit = false;
     this.colEventDate.OptionsColumn.ReadOnly = true;
     this.colEventDate.Visible = true;
     this.colEventDate.VisibleIndex = 1;
     this.colEventDate.Width = 45;
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.DisplayFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit2.Mask.EditMask = "MM/dd/yyyy";
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     //
     // colHomeworkMinutes
     //
     this.colHomeworkMinutes.Caption = "HomeworkMinutes";
     this.colHomeworkMinutes.FieldName = "HomeworkMinutes";
     this.colHomeworkMinutes.Name = "colHomeworkMinutes";
     this.colHomeworkMinutes.OptionsColumn.AllowEdit = false;
     this.colHomeworkMinutes.OptionsColumn.ReadOnly = true;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.panelControl2);
     this.pnlBody.Controls.Add(this.panelControl1);
     this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Location = new System.Drawing.Point(0, 0);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(875, 642);
     this.pnlBody.TabIndex = 1;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.gridControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 91);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(875, 551);
     this.panelControl2.TabIndex = 2;
     this.panelControl2.Text = "panelControl2";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.checkEdit2);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.dateEditEndDate);
     this.panelControl1.Controls.Add(this.dateEditStartDate);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(875, 91);
     this.panelControl1.TabIndex = 1;
     this.panelControl1.Text = "panelControl1";
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(23, 49);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "End Date:";
     this.checkEdit2.Size = new System.Drawing.Size(75, 19);
     this.checkEdit2.TabIndex = 12;
     this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(23, 24);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Start Date:";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 11;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(305, 24);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(81, 44);
     this.simpleButton1.TabIndex = 10;
     this.simpleButton1.Text = "Search";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // dateEditEndDate
     //
     this.dateEditEndDate.EditValue = new System.DateTime(2007, 3, 22, 7, 25, 31, 171);
     this.dateEditEndDate.Enabled = false;
     this.dateEditEndDate.Location = new System.Drawing.Point(130, 49);
     this.dateEditEndDate.Name = "dateEditEndDate";
     this.dateEditEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEndDate.Properties.DisplayFormat.FormatString = "D";
     this.dateEditEndDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEndDate.Size = new System.Drawing.Size(169, 20);
     this.dateEditEndDate.TabIndex = 9;
     //
     // dateEditStartDate
     //
     this.dateEditStartDate.EditValue = new System.DateTime(2007, 3, 22, 7, 25, 23, 234);
     this.dateEditStartDate.Enabled = false;
     this.dateEditStartDate.Location = new System.Drawing.Point(130, 24);
     this.dateEditStartDate.Name = "dateEditStartDate";
     this.dateEditStartDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditStartDate.Properties.DisplayFormat.FormatString = "D";
     this.dateEditStartDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditStartDate.Size = new System.Drawing.Size(169, 20);
     this.dateEditStartDate.TabIndex = 8;
     //
     // frmInstructorPayroll
     //
     this.ClientSize = new System.Drawing.Size(875, 642);
     this.Controls.Add(this.pnlBody);
     this.Name = "frmInstructorPayroll";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Pay Details By Instructor";
     this.Load += new System.EventHandler(this.frmInstructorPayroll_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     this.pnlBody.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEndDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditStartDate.Properties)).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();
     this.patientDocBgWorker = new System.ComponentModel.BackgroundWorker();
     this.searchTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeBgWorker = new System.ComponentModel.BackgroundWorker();
     this.loadBarTimer = new System.Windows.Forms.Timer(this.components);
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.commentTextBox = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.removeClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.addClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.claimantListBox = new System.Windows.Forms.ListBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.MedicalConditionsComboBoxEdit = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.SmokerNoCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.SmokerYesCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.patientDetailsGroupBox = new System.Windows.Forms.GroupBox();
     this.claimNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.physioComboBox = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.dvaTextBox = new DevExpress.XtraEditors.TextEdit();
     this.findPostCodeBtn = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.TitleComboBox = new System.Windows.Forms.ComboBox();
     this.postCodeTextBox = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.stateTextBox = new DevExpress.XtraEditors.TextEdit();
     this.genderFemaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.genderMaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.suburbComboBox = new System.Windows.Forms.ComboBox();
     this.addressTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.doBDateEdit = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.givenNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.surnameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.applyBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchResultProgressBar = new System.Windows.Forms.ProgressBar();
     this.newPatientBtn = new DevExpress.XtraEditors.SimpleButton();
     this.cancelBtn = new DevExpress.XtraEditors.SimpleButton();
     this.okBtn = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.displayGridControl = new DevExpress.XtraGrid.GridControl();
     this.displayGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.goBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchFieldTextBox = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.homePhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.mobileTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.workPhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.emailTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).BeginInit();
     this.patientDetailsGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // patientDocBgWorker
     //
     this.patientDocBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PatientBgWorkerDoWork);
     this.patientDocBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PatientBgWorkerRunWorkerCompleted);
     //
     // searchTimer
     //
     this.searchTimer.Interval = 1500;
     this.searchTimer.Tick += new System.EventHandler(this.SearchTimerTick);
     //
     // postCodeTimer
     //
     this.postCodeTimer.Interval = 1500;
     this.postCodeTimer.Tick += new System.EventHandler(this.PostCodeTimerTick);
     //
     // postCodeBgWorker
     //
     this.postCodeBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PostCodeBgWorkerDoWork);
     this.postCodeBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PostCodeBgWorkerRunWorkerCompleted);
     //
     // loadBarTimer
     //
     this.loadBarTimer.Interval = 300;
     this.loadBarTimer.Tick += new System.EventHandler(this.LoadTimerTick);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.commentTextBox);
     this.groupBox4.Location = new System.Drawing.Point(2, 498);
     this.groupBox4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Size = new System.Drawing.Size(326, 81);
     this.groupBox4.TabIndex = 65;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Comments";
     //
     // commentTextBox
     //
     this.commentTextBox.Location = new System.Drawing.Point(9, 18);
     this.commentTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.commentTextBox.Multiline = true;
     this.commentTextBox.Name = "commentTextBox";
     this.commentTextBox.Size = new System.Drawing.Size(310, 59);
     this.commentTextBox.TabIndex = 21;
     this.commentTextBox.TextChanged += new System.EventHandler(this.CommentTextBoxTextChanged);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.removeClaimantBtn);
     this.groupBox3.Controls.Add(this.addClaimantBtn);
     this.groupBox3.Controls.Add(this.claimantListBox);
     this.groupBox3.Location = new System.Drawing.Point(341, 404);
     this.groupBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Size = new System.Drawing.Size(228, 176);
     this.groupBox3.TabIndex = 64;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Claimants";
     //
     // removeClaimantBtn
     //
     this.removeClaimantBtn.Location = new System.Drawing.Point(150, 152);
     this.removeClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.removeClaimantBtn.Name = "removeClaimantBtn";
     this.removeClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.removeClaimantBtn.TabIndex = 40;
     this.removeClaimantBtn.TabStop = false;
     this.removeClaimantBtn.Text = "Remove";
     this.removeClaimantBtn.Click += new System.EventHandler(this.RemoveClaimantBtnClick);
     //
     // addClaimantBtn
     //
     this.addClaimantBtn.Location = new System.Drawing.Point(81, 152);
     this.addClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addClaimantBtn.Name = "addClaimantBtn";
     this.addClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.addClaimantBtn.TabIndex = 39;
     this.addClaimantBtn.TabStop = false;
     this.addClaimantBtn.Text = "Add";
     this.addClaimantBtn.Click += new System.EventHandler(this.AddClaimantBtnClick);
     //
     // claimantListBox
     //
     this.claimantListBox.DisplayMember = "LastName";
     this.claimantListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.claimantListBox.FormattingEnabled = true;
     this.claimantListBox.Location = new System.Drawing.Point(5, 18);
     this.claimantListBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimantListBox.Name = "claimantListBox";
     this.claimantListBox.Size = new System.Drawing.Size(210, 134);
     this.claimantListBox.TabIndex = 38;
     this.claimantListBox.TabStop = false;
     this.claimantListBox.ValueMember = "ClaimantID";
     this.claimantListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ClaimantListBoxDrawItem);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.MedicalConditionsComboBoxEdit);
     this.groupBox2.Controls.Add(this.labelControl14);
     this.groupBox2.Controls.Add(this.labelControl13);
     this.groupBox2.Controls.Add(this.SmokerNoCheckEdit);
     this.groupBox2.Controls.Add(this.SmokerYesCheckEdit);
     this.groupBox2.Location = new System.Drawing.Point(2, 404);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Size = new System.Drawing.Size(326, 89);
     this.groupBox2.TabIndex = 63;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Patient Medical Details";
     //
     // MedicalConditionsComboBoxEdit
     //
     this.MedicalConditionsComboBoxEdit.EditValue = "";
     this.MedicalConditionsComboBoxEdit.Location = new System.Drawing.Point(154, 20);
     this.MedicalConditionsComboBoxEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.MedicalConditionsComboBoxEdit.Name = "MedicalConditionsComboBoxEdit";
     this.MedicalConditionsComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MedicalConditionsComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Cardiac Pacemaker"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Loss of Weight"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Heart Condition"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Dizziness"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Artificial joint"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Epilepsy"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Surgery in the past 3 months")});
     this.MedicalConditionsComboBoxEdit.Size = new System.Drawing.Size(165, 20);
     this.MedicalConditionsComboBoxEdit.TabIndex = 19;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(11, 25);
     this.labelControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(88, 13);
     this.labelControl14.TabIndex = 30;
     this.labelControl14.Text = "Medical Conditions";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 67);
     this.labelControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(117, 13);
     this.labelControl13.TabIndex = 29;
     this.labelControl13.Text = "Is the Patient a Smoker?";
     //
     // SmokerNoCheckEdit
     //
     this.SmokerNoCheckEdit.Location = new System.Drawing.Point(199, 66);
     this.SmokerNoCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerNoCheckEdit.Name = "SmokerNoCheckEdit";
     this.SmokerNoCheckEdit.Properties.Caption = "no";
     this.SmokerNoCheckEdit.Size = new System.Drawing.Size(38, 19);
     this.SmokerNoCheckEdit.TabIndex = 16;
     //
     // SmokerYesCheckEdit
     //
     this.SmokerYesCheckEdit.Location = new System.Drawing.Point(153, 66);
     this.SmokerYesCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerYesCheckEdit.Name = "SmokerYesCheckEdit";
     this.SmokerYesCheckEdit.Properties.Caption = "Yes";
     this.SmokerYesCheckEdit.Size = new System.Drawing.Size(41, 19);
     this.SmokerYesCheckEdit.TabIndex = 15;
     //
     // patientDetailsGroupBox
     //
     this.patientDetailsGroupBox.Controls.Add(this.claimNoTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl1);
     this.patientDetailsGroupBox.Controls.Add(this.physioComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl12);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl11);
     this.patientDetailsGroupBox.Controls.Add(this.dvaTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.findPostCodeBtn);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl17);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl19);
     this.patientDetailsGroupBox.Controls.Add(this.emailTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl18);
     this.patientDetailsGroupBox.Controls.Add(this.TitleComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.postCodeTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl2);
     this.patientDetailsGroupBox.Controls.Add(this.stateTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderFemaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderMaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.suburbComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.addressTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl10);
     this.patientDetailsGroupBox.Controls.Add(this.workPhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl9);
     this.patientDetailsGroupBox.Controls.Add(this.mobileTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl8);
     this.patientDetailsGroupBox.Controls.Add(this.homePhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl7);
     this.patientDetailsGroupBox.Controls.Add(this.doBDateEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl6);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl5);
     this.patientDetailsGroupBox.Controls.Add(this.givenNameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl4);
     this.patientDetailsGroupBox.Controls.Add(this.surnameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl3);
     this.patientDetailsGroupBox.Location = new System.Drawing.Point(2, 205);
     this.patientDetailsGroupBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Name = "patientDetailsGroupBox";
     this.patientDetailsGroupBox.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Size = new System.Drawing.Size(567, 194);
     this.patientDetailsGroupBox.TabIndex = 3;
     this.patientDetailsGroupBox.TabStop = false;
     this.patientDetailsGroupBox.Text = "Enter new Patient";
     //
     // claimNoTextEdit
     //
     this.claimNoTextEdit.Location = new System.Drawing.Point(449, 160);
     this.claimNoTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimNoTextEdit.Name = "claimNoTextEdit";
     this.claimNoTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.claimNoTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.claimNoTextEdit.Properties.Mask.PlaceHolder = '*';
     this.claimNoTextEdit.Size = new System.Drawing.Size(104, 20);
     this.claimNoTextEdit.TabIndex = 67;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(387, 163);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(36, 13);
     this.labelControl1.TabIndex = 66;
     this.labelControl1.Text = "Claim #";
     //
     // physioComboBox
     //
     this.physioComboBox.DisplayMember = "PhysioID";
     this.physioComboBox.FormattingEnabled = true;
     this.physioComboBox.Location = new System.Drawing.Point(433, 51);
     this.physioComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.physioComboBox.Name = "physioComboBox";
     this.physioComboBox.Size = new System.Drawing.Size(86, 21);
     this.physioComboBox.TabIndex = 14;
     this.physioComboBox.ValueMember = "PhysioID";
     this.physioComboBox.TextChanged += new System.EventHandler(this.PhysioComboBoxTextChanged);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(391, 56);
     this.labelControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(31, 13);
     this.labelControl12.TabIndex = 65;
     this.labelControl12.Text = "Physio";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(243, 163);
     this.labelControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(28, 13);
     this.labelControl11.TabIndex = 64;
     this.labelControl11.Text = "DVA#";
     //
     // dvaTextBox
     //
     this.dvaTextBox.Location = new System.Drawing.Point(285, 158);
     this.dvaTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.dvaTextBox.Name = "dvaTextBox";
     this.dvaTextBox.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.dvaTextBox.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.dvaTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.dvaTextBox.Properties.Mask.PlaceHolder = '*';
     this.dvaTextBox.Size = new System.Drawing.Size(86, 20);
     this.dvaTextBox.TabIndex = 18;
     this.dvaTextBox.EditValueChanged += new System.EventHandler(this.DvaTextBoxEditValueChanged);
     //
     // findPostCodeBtn
     //
     this.findPostCodeBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.findPostCodeBtn.Appearance.Options.UseFont = true;
     this.findPostCodeBtn.Location = new System.Drawing.Point(475, 104);
     this.findPostCodeBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.findPostCodeBtn.Name = "findPostCodeBtn";
     this.findPostCodeBtn.Size = new System.Drawing.Size(79, 19);
     this.findPostCodeBtn.TabIndex = 17;
     this.findPostCodeBtn.Text = "Find Post Code";
     this.findPostCodeBtn.Click += new System.EventHandler(this.FindPostCodeBtnClick);
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(185, 136);
     this.labelControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(85, 13);
     this.labelControl19.TabIndex = 62;
     this.labelControl19.Text = "State / Post Code";
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(235, 110);
     this.labelControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(34, 13);
     this.labelControl18.TabIndex = 60;
     this.labelControl18.Text = "Suburb";
     //
     // TitleComboBox
     //
     this.TitleComboBox.FormattingEnabled = true;
     this.TitleComboBox.Items.AddRange(new object[] {
     "Mr",
     "Ms",
     "Miss",
     "Mrs",
     "Doctor"});
     this.TitleComboBox.Location = new System.Drawing.Point(285, 25);
     this.TitleComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.TitleComboBox.Name = "TitleComboBox";
     this.TitleComboBox.Size = new System.Drawing.Size(86, 21);
     this.TitleComboBox.TabIndex = 10;
     this.TitleComboBox.TextChanged += new System.EventHandler(this.TitleComboBoxTextChanged);
     //
     // postCodeTextBox
     //
     this.postCodeTextBox.Location = new System.Drawing.Point(387, 132);
     this.postCodeTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.postCodeTextBox.Name = "postCodeTextBox";
     this.postCodeTextBox.Size = new System.Drawing.Size(86, 20);
     this.postCodeTextBox.TabIndex = 61;
     this.postCodeTextBox.TabStop = false;
     this.postCodeTextBox.EditValueChanged += new System.EventHandler(this.PostCodeTextBoxEditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(391, 29);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(35, 13);
     this.labelControl2.TabIndex = 56;
     this.labelControl2.Text = "Gender";
     //
     // stateTextBox
     //
     this.stateTextBox.EditValue = "";
     this.stateTextBox.Location = new System.Drawing.Point(285, 132);
     this.stateTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.stateTextBox.Name = "stateTextBox";
     this.stateTextBox.Size = new System.Drawing.Size(86, 20);
     this.stateTextBox.TabIndex = 60;
     this.stateTextBox.TabStop = false;
     this.stateTextBox.EditValueChanged += new System.EventHandler(this.StateTextBoxEditValueChanged);
     //
     // genderFemaleTickBox
     //
     this.genderFemaleTickBox.Location = new System.Drawing.Point(477, 28);
     this.genderFemaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderFemaleTickBox.Name = "genderFemaleTickBox";
     this.genderFemaleTickBox.Properties.Caption = "Female";
     this.genderFemaleTickBox.Size = new System.Drawing.Size(57, 19);
     this.genderFemaleTickBox.TabIndex = 12;
     this.genderFemaleTickBox.CheckedChanged += new System.EventHandler(this.GenderFemaleTickBoxCheckedChanged);
     //
     // genderMaleTickBox
     //
     this.genderMaleTickBox.Location = new System.Drawing.Point(431, 28);
     this.genderMaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderMaleTickBox.Name = "genderMaleTickBox";
     this.genderMaleTickBox.Properties.Caption = "Male";
     this.genderMaleTickBox.Size = new System.Drawing.Size(41, 19);
     this.genderMaleTickBox.TabIndex = 11;
     this.genderMaleTickBox.CheckedChanged += new System.EventHandler(this.GenderMaleTickBoxCheckedChanged);
     //
     // suburbComboBox
     //
     this.suburbComboBox.DisplayMember = "Location";
     this.suburbComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.suburbComboBox.FormattingEnabled = true;
     this.suburbComboBox.Location = new System.Drawing.Point(285, 104);
     this.suburbComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.suburbComboBox.Name = "suburbComboBox";
     this.suburbComboBox.Size = new System.Drawing.Size(187, 22);
     this.suburbComboBox.TabIndex = 16;
     this.suburbComboBox.ValueMember = "PostCodeID";
     this.suburbComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.SuburbComboBoxDrawItem);
     this.suburbComboBox.TextChanged += new System.EventHandler(this.SuburbComboBoxTextChanged);
     this.suburbComboBox.Leave += new System.EventHandler(this.SuburbComboBoxLeave);
     //
     // addressTextEdit
     //
     this.addressTextEdit.Location = new System.Drawing.Point(285, 79);
     this.addressTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addressTextEdit.Name = "addressTextEdit";
     this.addressTextEdit.Size = new System.Drawing.Size(268, 20);
     this.addressTextEdit.TabIndex = 15;
     this.addressTextEdit.EditValueChanged += new System.EventHandler(this.AddressTextEditEditValueChanged);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(231, 81);
     this.labelControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(39, 13);
     this.labelControl10.TabIndex = 48;
     this.labelControl10.Text = "Address";
     //
     // doBDateEdit
     //
     this.doBDateEdit.EditValue = null;
     this.doBDateEdit.Location = new System.Drawing.Point(285, 51);
     this.doBDateEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.doBDateEdit.Name = "doBDateEdit";
     this.doBDateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.doBDateEdit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.doBDateEdit.Size = new System.Drawing.Size(86, 20);
     this.doBDateEdit.TabIndex = 13;
     this.doBDateEdit.EditValueChanged += new System.EventHandler(this.DoBDateEditEditValueChanged);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(210, 56);
     this.labelControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(61, 13);
     this.labelControl6.TabIndex = 40;
     this.labelControl6.Text = "Date of Birth";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(249, 30);
     this.labelControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(20, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Title";
     //
     // givenNameTextEdit
     //
     this.givenNameTextEdit.Location = new System.Drawing.Point(89, 51);
     this.givenNameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.givenNameTextEdit.Name = "givenNameTextEdit";
     this.givenNameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.givenNameTextEdit.TabIndex = 5;
     this.givenNameTextEdit.EditValueChanged += new System.EventHandler(this.GivenNameTextEditEditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(9, 54);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 37;
     this.labelControl4.Text = "Given Names";
     //
     // surnameTextEdit
     //
     this.surnameTextEdit.Location = new System.Drawing.Point(89, 25);
     this.surnameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.surnameTextEdit.Name = "surnameTextEdit";
     this.surnameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.surnameTextEdit.TabIndex = 4;
     this.surnameTextEdit.EditValueChanged += new System.EventHandler(this.SurnameTextEditEditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(27, 30);
     this.labelControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 35;
     this.labelControl3.Text = "Surname";
     //
     // applyBtn
     //
     this.applyBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.applyBtn.Appearance.Options.UseFont = true;
     this.applyBtn.Location = new System.Drawing.Point(407, 586);
     this.applyBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.applyBtn.Name = "applyBtn";
     this.applyBtn.Size = new System.Drawing.Size(79, 19);
     this.applyBtn.TabIndex = 75;
     this.applyBtn.Text = "Apply(F12)";
     this.applyBtn.Click += new System.EventHandler(this.ApplyBtnClick);
     //
     // searchResultProgressBar
     //
     this.searchResultProgressBar.Location = new System.Drawing.Point(91, 586);
     this.searchResultProgressBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchResultProgressBar.Name = "searchResultProgressBar";
     this.searchResultProgressBar.Size = new System.Drawing.Size(198, 19);
     this.searchResultProgressBar.TabIndex = 74;
     //
     // newPatientBtn
     //
     this.newPatientBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.newPatientBtn.Appearance.Options.UseFont = true;
     this.newPatientBtn.Location = new System.Drawing.Point(2, 586);
     this.newPatientBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.newPatientBtn.Name = "newPatientBtn";
     this.newPatientBtn.Size = new System.Drawing.Size(80, 19);
     this.newPatientBtn.TabIndex = 73;
     this.newPatientBtn.TabStop = false;
     this.newPatientBtn.Text = "NEW(CTRL+N)";
     this.newPatientBtn.Click += new System.EventHandler(this.NewPatientBtnClick);
     //
     // cancelBtn
     //
     this.cancelBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.cancelBtn.Appearance.Options.UseFont = true;
     this.cancelBtn.Location = new System.Drawing.Point(491, 586);
     this.cancelBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cancelBtn.Name = "cancelBtn";
     this.cancelBtn.Size = new System.Drawing.Size(79, 19);
     this.cancelBtn.TabIndex = 72;
     this.cancelBtn.TabStop = false;
     this.cancelBtn.Text = "Cancel(ESC)";
     this.cancelBtn.Click += new System.EventHandler(this.BtnCancelClick);
     //
     // okBtn
     //
     this.okBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.okBtn.Appearance.Options.UseFont = true;
     this.okBtn.Location = new System.Drawing.Point(323, 586);
     this.okBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.okBtn.Name = "okBtn";
     this.okBtn.Size = new System.Drawing.Size(79, 19);
     this.okBtn.TabIndex = 71;
     this.okBtn.Text = "OK(F2)";
     this.okBtn.Click += new System.EventHandler(this.BtnOkClick);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.displayGridControl);
     this.groupBox5.Controls.Add(this.goBtn);
     this.groupBox5.Controls.Add(this.searchFieldTextBox);
     this.groupBox5.Controls.Add(this.label1);
     this.groupBox5.Location = new System.Drawing.Point(2, 2);
     this.groupBox5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Size = new System.Drawing.Size(567, 198);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select a Doctor";
     //
     // displayGridControl
     //
     this.displayGridControl.Location = new System.Drawing.Point(0, 33);
     this.displayGridControl.MainView = this.displayGridView;
     this.displayGridControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.displayGridControl.Name = "displayGridControl";
     this.displayGridControl.Size = new System.Drawing.Size(562, 162);
     this.displayGridControl.TabIndex = 2;
     this.displayGridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.displayGridView});
     this.displayGridControl.Click += new System.EventHandler(this.DisplayGridControlClick);
     //
     // displayGridView
     //
     this.displayGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.displayGridView.GridControl = this.displayGridControl;
     this.displayGridView.Name = "displayGridView";
     this.displayGridView.OptionsBehavior.Editable = false;
     this.displayGridView.OptionsBehavior.FocusLeaveOnTab = true;
     this.displayGridView.OptionsBehavior.ReadOnly = true;
     this.displayGridView.OptionsNavigation.UseTabKey = false;
     this.displayGridView.OptionsView.ShowGroupPanel = false;
     this.displayGridView.ViewCaption = "Results:";
     this.displayGridView.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.DisplayGridViewRowCellClick);
     this.displayGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DisplayGridViewKeyDown);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "First Name";
     this.gridColumn1.FieldName = "FirstNames";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Last Name";
     this.gridColumn2.FieldName = "LastName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Gender";
     this.gridColumn3.FieldName = "Sex";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "DVA #";
     this.gridColumn4.FieldName = "DVANumber";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // goBtn
     //
     this.goBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.goBtn.Appearance.Options.UseFont = true;
     this.goBtn.Location = new System.Drawing.Point(539, 9);
     this.goBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.goBtn.Name = "goBtn";
     this.goBtn.Size = new System.Drawing.Size(23, 19);
     this.goBtn.TabIndex = 0;
     this.goBtn.TabStop = false;
     this.goBtn.Text = "go";
     this.goBtn.Click += new System.EventHandler(this.GoBtnClick);
     //
     // searchFieldTextBox
     //
     this.searchFieldTextBox.Location = new System.Drawing.Point(279, 10);
     this.searchFieldTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchFieldTextBox.Name = "searchFieldTextBox";
     this.searchFieldTextBox.Size = new System.Drawing.Size(256, 21);
     this.searchFieldTextBox.TabIndex = 1;
     this.searchFieldTextBox.TextChanged += new System.EventHandler(this.SearchFieldTextBoxTextChanged);
     this.searchFieldTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchFieldTextBoxKeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(228, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 13);
     this.label1.TabIndex = 7;
     this.label1.Text = "Search";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(11, 81);
     this.labelControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(60, 13);
     this.labelControl7.TabIndex = 42;
     this.labelControl7.Text = "Home Phone";
     //
     // homePhoneTextEdit
     //
     this.homePhoneTextEdit.Location = new System.Drawing.Point(89, 79);
     this.homePhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.homePhoneTextEdit.Name = "homePhoneTextEdit";
     this.homePhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.homePhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.homePhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.homePhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.homePhoneTextEdit.TabIndex = 6;
     this.homePhoneTextEdit.EditValueChanged += new System.EventHandler(this.HomePhoneTextEditEditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 134);
     this.labelControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(30, 13);
     this.labelControl8.TabIndex = 44;
     this.labelControl8.Text = "Mobile";
     //
     // mobileTextEdit
     //
     this.mobileTextEdit.Location = new System.Drawing.Point(89, 129);
     this.mobileTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.mobileTextEdit.Name = "mobileTextEdit";
     this.mobileTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.mobileTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.mobileTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.mobileTextEdit.Properties.Mask.PlaceHolder = '*';
     this.mobileTextEdit.Size = new System.Drawing.Size(86, 20);
     this.mobileTextEdit.TabIndex = 8;
     this.mobileTextEdit.EditValueChanged += new System.EventHandler(this.MobileTextEditEditValueChanged);
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(14, 106);
     this.labelControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(58, 13);
     this.labelControl9.TabIndex = 46;
     this.labelControl9.Text = "Work Phone";
     //
     // workPhoneTextEdit
     //
     this.workPhoneTextEdit.Location = new System.Drawing.Point(89, 104);
     this.workPhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.workPhoneTextEdit.Name = "workPhoneTextEdit";
     this.workPhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.workPhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.workPhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.workPhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.workPhoneTextEdit.TabIndex = 7;
     this.workPhoneTextEdit.EditValueChanged += new System.EventHandler(this.WorkPhoneTextEditEditValueChanged);
     //
     // emailTextEdit
     //
     this.emailTextEdit.Location = new System.Drawing.Point(89, 156);
     this.emailTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.emailTextEdit.Name = "emailTextEdit";
     this.emailTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.emailTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.emailTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.emailTextEdit.Properties.Mask.PlaceHolder = '*';
     this.emailTextEdit.Size = new System.Drawing.Size(86, 20);
     this.emailTextEdit.TabIndex = 9;
     this.emailTextEdit.EditValueChanged += new System.EventHandler(this.EmailTextEditEditValueChanged);
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(46, 161);
     this.labelControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(24, 13);
     this.labelControl17.TabIndex = 59;
     this.labelControl17.Text = "Email";
     //
     // patientViewForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(571, 607);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.applyBtn);
     this.Controls.Add(this.searchResultProgressBar);
     this.Controls.Add(this.newPatientBtn);
     this.Controls.Add(this.cancelBtn);
     this.Controls.Add(this.okBtn);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.patientDetailsGroupBox);
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "patientViewForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "NewPatientViewForm";
     this.Load += new System.EventHandler(this.PatientViewFormLoad);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatientViewFormKeyDown);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).EndInit();
     this.patientDetailsGroupBox.ResumeLayout(false);
     this.patientDetailsGroupBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddSPark = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddDoor = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddPark = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.trvParkStall = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.grpFee = new DevExpress.XtraEditors.GroupControl();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rdofeed2 = new System.Windows.Forms.RadioButton();
     this.rdofeed6 = new System.Windows.Forms.RadioButton();
     this.rdofeed1 = new System.Windows.Forms.RadioButton();
     this.rdofeed5 = new System.Windows.Forms.RadioButton();
     this.rdofeed3 = new System.Windows.Forms.RadioButton();
     this.rdofeed4 = new System.Windows.Forms.RadioButton();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
     this.tabFeeStd = new System.Windows.Forms.TabControl();
     this.tabpgFee1 = new System.Windows.Forms.TabPage();
     this.RemarkLab = new System.Windows.Forms.Label();
     this.tbDayOut = new System.Windows.Forms.TextBox();
     this.DayOutLab = new System.Windows.Forms.Label();
     this.tbBasicFee = new System.Windows.Forms.TextBox();
     this.BasicFeeLab = new System.Windows.Forms.Label();
     this.tbFreeTlen = new System.Windows.Forms.TextBox();
     this.FreeTimeLab = new System.Windows.Forms.Label();
     this.tabpgFee2 = new System.Windows.Forms.TabPage();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.ChargeRateTxt2 = new System.Windows.Forms.TextBox();
     this.ChargeTimeTxt2 = new System.Windows.Forms.TextBox();
     this.AftFreeTxt2 = new System.Windows.Forms.TextBox();
     this.BasicFeeTxt2 = new System.Windows.Forms.TextBox();
     this.BasicTimeTxt2 = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt2 = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.InfomationLab2 = new System.Windows.Forms.Label();
     this.ChargeRateLab2 = new System.Windows.Forms.Label();
     this.ChargeTimeLab2 = new System.Windows.Forms.Label();
     this.AftFreeLab2 = new System.Windows.Forms.Label();
     this.BasicFeeLab2 = new System.Windows.Forms.Label();
     this.BasicTimeLab2 = new System.Windows.Forms.Label();
     this.FreeTimeLab2 = new System.Windows.Forms.Label();
     this.tabpgFee3 = new System.Windows.Forms.TabPage();
     this.Infomation31 = new System.Windows.Forms.Label();
     this.Infomation3 = new System.Windows.Forms.Label();
     this.LoopFeeTxt5 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt5 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt4 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt4 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt3 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt3 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt2 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt2 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt1 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt1 = new System.Windows.Forms.TextBox();
     this.LoopNoTxt = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt3 = new System.Windows.Forms.TextBox();
     this.LoopFeeLab5 = new System.Windows.Forms.Label();
     this.LoopTimeLab5 = new System.Windows.Forms.Label();
     this.LoopFeeLab4 = new System.Windows.Forms.Label();
     this.LoopTimeLab4 = new System.Windows.Forms.Label();
     this.LoopFeeLab3 = new System.Windows.Forms.Label();
     this.LoopTimeLab3 = new System.Windows.Forms.Label();
     this.LoopFeeLab2 = new System.Windows.Forms.Label();
     this.LoopTimeLab2 = new System.Windows.Forms.Label();
     this.LoopFeeLab1 = new System.Windows.Forms.Label();
     this.LoopTimeLab1 = new System.Windows.Forms.Label();
     this.LoopNoLab = new System.Windows.Forms.Label();
     this.FreeTimeLab3 = new System.Windows.Forms.Label();
     this.tabpgFee4 = new System.Windows.Forms.TabPage();
     this.maskedTextBox13 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox12 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox11 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox10 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox9 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox8 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox7 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox6 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox5 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox4 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox3 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox2 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.OutStageLab5 = new System.Windows.Forms.Label();
     this.TimePointLab5 = new System.Windows.Forms.Label();
     this.OutStageLab4 = new System.Windows.Forms.Label();
     this.TimePointLab4 = new System.Windows.Forms.Label();
     this.OutStageLab3 = new System.Windows.Forms.Label();
     this.TimePointLab3 = new System.Windows.Forms.Label();
     this.OutStageLab2 = new System.Windows.Forms.Label();
     this.TimePointLab2 = new System.Windows.Forms.Label();
     this.OutStageLab1 = new System.Windows.Forms.Label();
     this.TimePointLab1 = new System.Windows.Forms.Label();
     this.BasicFeeLab4 = new System.Windows.Forms.Label();
     this.FreeTimeLab4 = new System.Windows.Forms.Label();
     this.TimeCountLab = new System.Windows.Forms.Label();
     this.tabpgFee5 = new System.Windows.Forms.TabPage();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.ChargeRateTxt6 = new System.Windows.Forms.TextBox();
     this.ChargeRateLab6 = new System.Windows.Forms.Label();
     this.ChargeTimeTxt6 = new System.Windows.Forms.TextBox();
     this.ChargeTimeLab6 = new System.Windows.Forms.Label();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.ChargeRateTxt5 = new System.Windows.Forms.TextBox();
     this.ChargeRateLab5 = new System.Windows.Forms.Label();
     this.ChargeTimeTxt5 = new System.Windows.Forms.TextBox();
     this.ChargeTimeLab5 = new System.Windows.Forms.Label();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.TimePoint4 = new System.Windows.Forms.DateTimePicker();
     this.TimePoint4Lab = new System.Windows.Forms.Label();
     this.TimePoint3 = new System.Windows.Forms.DateTimePicker();
     this.TimePoint3Lab = new System.Windows.Forms.Label();
     this.AftFreeTxt5 = new System.Windows.Forms.TextBox();
     this.BasicFeeTxt5 = new System.Windows.Forms.TextBox();
     this.BasicTimeTxt5 = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt5 = new System.Windows.Forms.TextBox();
     this.AftFreeLab5 = new System.Windows.Forms.Label();
     this.BasicFeeLab5 = new System.Windows.Forms.Label();
     this.BasicTimeLab5 = new System.Windows.Forms.Label();
     this.FreeTimeLab5 = new System.Windows.Forms.Label();
     this.tabpgFee6 = new System.Windows.Forms.TabPage();
     this.HourFeeTxt24 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt23 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt22 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt21 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt20 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt19 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt18 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt17 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt16 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt15 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt14 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt13 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt12 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt11 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt10 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt9 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt8 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt7 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt6 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt5 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt4 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt3 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt2 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt1 = new System.Windows.Forms.TextBox();
     this.LimitAccTxt = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt6 = new System.Windows.Forms.TextBox();
     this.HourFeeLab24 = new System.Windows.Forms.Label();
     this.HourFeeLab23 = new System.Windows.Forms.Label();
     this.HourFeeLab22 = new System.Windows.Forms.Label();
     this.HourFeeLab21 = new System.Windows.Forms.Label();
     this.HourFeeLab20 = new System.Windows.Forms.Label();
     this.HourFeeLab19 = new System.Windows.Forms.Label();
     this.HourFeeLab18 = new System.Windows.Forms.Label();
     this.HourFeeLab17 = new System.Windows.Forms.Label();
     this.HourFeeLab16 = new System.Windows.Forms.Label();
     this.HourFeeLab15 = new System.Windows.Forms.Label();
     this.HourFeeLab14 = new System.Windows.Forms.Label();
     this.HourFeeLab13 = new System.Windows.Forms.Label();
     this.HourFeeLab12 = new System.Windows.Forms.Label();
     this.HourFeeLab11 = new System.Windows.Forms.Label();
     this.HourFeeLab10 = new System.Windows.Forms.Label();
     this.HourFeeLab9 = new System.Windows.Forms.Label();
     this.HourFeeLab8 = new System.Windows.Forms.Label();
     this.HourFeeLab7 = new System.Windows.Forms.Label();
     this.HourFeeLab6 = new System.Windows.Forms.Label();
     this.HourFeeLab5 = new System.Windows.Forms.Label();
     this.HourFeeLab4 = new System.Windows.Forms.Label();
     this.HourFeeLab3 = new System.Windows.Forms.Label();
     this.HourFeeLab2 = new System.Windows.Forms.Label();
     this.HourFeeLab1 = new System.Windows.Forms.Label();
     this.LimitAccLab = new System.Windows.Forms.Label();
     this.FreeTimeLab6 = new System.Windows.Forms.Label();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.btnbigCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnMiCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnTimeCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnSmallCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnMoCar = new DevExpress.XtraEditors.SimpleButton();
     this.grpParam = new DevExpress.XtraEditors.GroupControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.dbDev = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
     this.btnAddDev = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelDev = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveDev = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.grpbChannel = new System.Windows.Forms.GroupBox();
     this.plCarType = new System.Windows.Forms.Panel();
     this.checkEdit13 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit14 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit15 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit16 = new DevExpress.XtraEditors.CheckEdit();
     this.plCardType = new System.Windows.Forms.Panel();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.checkBox5 = new System.Windows.Forms.CheckBox();
     this.radChannelCard = new System.Windows.Forms.RadioButton();
     this.radChannelCar = new System.Windows.Forms.RadioButton();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.grpbCardType = new System.Windows.Forms.GroupBox();
     this.checkBox17 = new DevExpress.XtraEditors.CheckEdit();
     this.GbkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.CzkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.LskChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.SdkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.MfkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.LmkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.QkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.checkBox1 = new DevExpress.XtraEditors.CheckEdit();
     this.checkBox2 = new DevExpress.XtraEditors.CheckEdit();
     this.grpbAccept = new System.Windows.Forms.GroupBox();
     this.checkBox16 = new DevExpress.XtraEditors.CheckEdit();
     this.GbkChk = new DevExpress.XtraEditors.CheckEdit();
     this.CzkChk = new DevExpress.XtraEditors.CheckEdit();
     this.LskChk = new DevExpress.XtraEditors.CheckEdit();
     this.SdkChk = new DevExpress.XtraEditors.CheckEdit();
     this.MfkChk = new DevExpress.XtraEditors.CheckEdit();
     this.LmkChk = new DevExpress.XtraEditors.CheckEdit();
     this.QkChk = new DevExpress.XtraEditors.CheckEdit();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.LsCardTpComb = new DevExpress.XtraEditors.LookUpEdit();
     this.CarTypeComb = new DevExpress.XtraEditors.LookUpEdit();
     this.LsCardTpLab = new System.Windows.Forms.Label();
     this.CarTypeLab = new System.Windows.Forms.Label();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.MulInOutChk = new DevExpress.XtraEditors.CheckEdit();
     this.IsOutComChk = new DevExpress.XtraEditors.CheckEdit();
     this.SmaPrkLogComb = new DevExpress.XtraEditors.LookUpEdit();
     this.DevAddrTxt = new DevExpress.XtraEditors.TextEdit();
     this.ValDayAlmTxt = new DevExpress.XtraEditors.TextEdit();
     this.comboBox1 = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.DevAddrLab = new System.Windows.Forms.Label();
     this.SmaPrkLogLab = new System.Windows.Forms.Label();
     this.CardBalAlmLab = new System.Windows.Forms.Label();
     this.ValDayAlmLab = new System.Windows.Forms.Label();
     this.panBaseInfo = new DevExpress.XtraEditors.GroupControl();
     this.panelControl16 = new DevExpress.XtraEditors.PanelControl();
     this.RetainStaTxt = new DevExpress.XtraEditors.TextEdit();
     this.TypeCombo = new System.Windows.Forms.ComboBox();
     this.AllNoTxt = new DevExpress.XtraEditors.TextEdit();
     this.RetainStaLab = new System.Windows.Forms.Label();
     this.AllNoLab = new System.Windows.Forms.Label();
     this.StallNoTxt = new DevExpress.XtraEditors.TextEdit();
     this.ComIpTxt = new DevExpress.XtraEditors.TextEdit();
     this.TxtStalname = new DevExpress.XtraEditors.TextEdit();
     this.ComIpLab = new System.Windows.Forms.Label();
     this.TypeLab = new System.Windows.Forms.Label();
     this.StallNameLab = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.radfee2 = new System.Windows.Forms.RadioButton();
     this.radfee6 = new System.Windows.Forms.RadioButton();
     this.radfee1 = new System.Windows.Forms.RadioButton();
     this.radfee5 = new System.Windows.Forms.RadioButton();
     this.radfee3 = new System.Windows.Forms.RadioButton();
     this.radfee4 = new System.Windows.Forms.RadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trvParkStall)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpFee)).BeginInit();
     this.grpFee.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
     this.panelControl8.SuspendLayout();
     this.tabFeeStd.SuspendLayout();
     this.tabpgFee1.SuspendLayout();
     this.tabpgFee2.SuspendLayout();
     this.tabpgFee3.SuspendLayout();
     this.tabpgFee4.SuspendLayout();
     this.tabpgFee5.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.tabpgFee6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpParam)).BeginInit();
     this.grpParam.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbDev)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
     this.panelControl9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     this.groupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     this.grpbChannel.SuspendLayout();
     this.plCarType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit15.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit16.Properties)).BeginInit();
     this.plCardType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.grpbCardType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox17.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk1.Properties)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox2.Properties)).BeginInit();
     this.grpbAccept.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox16.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LsCardTpComb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CarTypeComb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MulInOutChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsOutComChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmaPrkLogComb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DevAddrTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ValDayAlmTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panBaseInfo)).BeginInit();
     this.panBaseInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).BeginInit();
     this.panelControl16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RetainStaTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AllNoTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StallNoTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ComIpTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStalname.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.simpleButton6);
     this.panelControl1.Controls.Add(this.btnSave);
     this.panelControl1.Controls.Add(this.btnAddSPark);
     this.panelControl1.Controls.Add(this.btnAddDoor);
     this.panelControl1.Controls.Add(this.btnDel);
     this.panelControl1.Controls.Add(this.btnAddPark);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(852, 45);
     this.panelControl1.TabIndex = 0;
     //
     // simpleButton6
     //
     this.simpleButton6.Location = new System.Drawing.Point(383, 9);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(64, 30);
     this.simpleButton6.TabIndex = 5;
     this.simpleButton6.Text = "退出";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(309, 10);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(64, 30);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "保存";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnAddSPark
     //
     this.btnAddSPark.Location = new System.Drawing.Point(95, 8);
     this.btnAddSPark.Name = "btnAddSPark";
     this.btnAddSPark.Size = new System.Drawing.Size(64, 30);
     this.btnAddSPark.TabIndex = 3;
     this.btnAddSPark.Text = "增加内场";
     this.btnAddSPark.Click += new System.EventHandler(this.btnAddSPark_Click);
     //
     // btnAddDoor
     //
     this.btnAddDoor.Location = new System.Drawing.Point(165, 8);
     this.btnAddDoor.Name = "btnAddDoor";
     this.btnAddDoor.Size = new System.Drawing.Size(64, 30);
     this.btnAddDoor.TabIndex = 2;
     this.btnAddDoor.Text = "增加门岗";
     this.btnAddDoor.Click += new System.EventHandler(this.btnAddDoor_Click);
     //
     // btnDel
     //
     this.btnDel.Location = new System.Drawing.Point(238, 9);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(64, 30);
     this.btnDel.TabIndex = 1;
     this.btnDel.Text = "删除";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnAddPark
     //
     this.btnAddPark.Location = new System.Drawing.Point(25, 8);
     this.btnAddPark.Name = "btnAddPark";
     this.btnAddPark.Size = new System.Drawing.Size(64, 30);
     this.btnAddPark.TabIndex = 0;
     this.btnAddPark.Text = "增加车场";
     this.btnAddPark.Click += new System.EventHandler(this.btnAddPark_Click);
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 45);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.trvParkStall);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.grpFee);
     this.splitContainerControl1.Panel2.Controls.Add(this.grpParam);
     this.splitContainerControl1.Panel2.Controls.Add(this.panBaseInfo);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(852, 682);
     this.splitContainerControl1.SplitterPosition = 199;
     this.splitContainerControl1.TabIndex = 1;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // trvParkStall
     //
     this.trvParkStall.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Blue;
     this.trvParkStall.Appearance.FocusedCell.Options.UseForeColor = true;
     this.trvParkStall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.trvParkStall.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.trvParkStall.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn1});
     this.trvParkStall.Dock = System.Windows.Forms.DockStyle.Fill;
     this.trvParkStall.FixedLineWidth = 1;
     this.trvParkStall.Location = new System.Drawing.Point(0, 0);
     this.trvParkStall.Name = "trvParkStall";
     this.trvParkStall.OptionsBehavior.Editable = false;
     this.trvParkStall.OptionsBehavior.KeepSelectedOnClick = false;
     this.trvParkStall.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.trvParkStall.OptionsView.ShowHorzLines = false;
     this.trvParkStall.OptionsView.ShowVertLines = false;
     this.trvParkStall.Size = new System.Drawing.Size(199, 682);
     this.trvParkStall.TabIndex = 57;
     this.trvParkStall.Tag = "@db=门禁管理";
     this.trvParkStall.AfterFocusNode += new DevExpress.XtraTreeList.NodeEventHandler(this.trvParkStall_AfterFocusNode);
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "停车场信息";
     this.treeListColumn2.FieldName = "名称";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "id";
     this.treeListColumn1.FieldName = "id";
     this.treeListColumn1.Name = "treeListColumn1";
     //
     // grpFee
     //
     this.grpFee.Controls.Add(this.groupBox2);
     this.grpFee.Controls.Add(this.panelControl3);
     this.grpFee.Location = new System.Drawing.Point(2, 638);
     this.grpFee.Name = "grpFee";
     this.grpFee.Size = new System.Drawing.Size(578, 41);
     this.grpFee.TabIndex = 12;
     this.grpFee.Tag = "";
     this.grpFee.Text = "收费标准";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rdofeed2);
     this.groupBox2.Controls.Add(this.rdofeed6);
     this.groupBox2.Controls.Add(this.rdofeed1);
     this.groupBox2.Controls.Add(this.rdofeed5);
     this.groupBox2.Controls.Add(this.rdofeed3);
     this.groupBox2.Controls.Add(this.rdofeed4);
     this.groupBox2.Location = new System.Drawing.Point(0, 53);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(629, 33);
     this.groupBox2.TabIndex = 61;
     this.groupBox2.TabStop = false;
     //
     // rdofeed2
     //
     this.rdofeed2.AutoSize = true;
     this.rdofeed2.Location = new System.Drawing.Point(94, 12);
     this.rdofeed2.Name = "rdofeed2";
     this.rdofeed2.Size = new System.Drawing.Size(61, 18);
     this.rdofeed2.TabIndex = 4;
     this.rdofeed2.Tag = "@pm=方式代码,@val=2";
     this.rdofeed2.Text = "收费二";
     this.rdofeed2.UseVisualStyleBackColor = true;
     this.rdofeed2.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed6
     //
     this.rdofeed6.AutoSize = true;
     this.rdofeed6.Location = new System.Drawing.Point(399, 11);
     this.rdofeed6.Name = "rdofeed6";
     this.rdofeed6.Size = new System.Drawing.Size(61, 18);
     this.rdofeed6.TabIndex = 8;
     this.rdofeed6.Tag = "@pm=方式代码,@val=6";
     this.rdofeed6.Text = "收费六";
     this.rdofeed6.UseVisualStyleBackColor = true;
     this.rdofeed6.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed1
     //
     this.rdofeed1.AutoSize = true;
     this.rdofeed1.Checked = true;
     this.rdofeed1.Location = new System.Drawing.Point(21, 11);
     this.rdofeed1.Name = "rdofeed1";
     this.rdofeed1.Size = new System.Drawing.Size(61, 18);
     this.rdofeed1.TabIndex = 3;
     this.rdofeed1.TabStop = true;
     this.rdofeed1.Tag = "@pm=方式代码,@val=1";
     this.rdofeed1.Text = "收费一";
     this.rdofeed1.UseVisualStyleBackColor = true;
     this.rdofeed1.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed5
     //
     this.rdofeed5.AutoSize = true;
     this.rdofeed5.Location = new System.Drawing.Point(334, 11);
     this.rdofeed5.Name = "rdofeed5";
     this.rdofeed5.Size = new System.Drawing.Size(61, 18);
     this.rdofeed5.TabIndex = 7;
     this.rdofeed5.Tag = "@pm=方式代码,@val=5";
     this.rdofeed5.Text = "收费五";
     this.rdofeed5.UseVisualStyleBackColor = true;
     this.rdofeed5.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed3
     //
     this.rdofeed3.AutoSize = true;
     this.rdofeed3.Location = new System.Drawing.Point(179, 12);
     this.rdofeed3.Name = "rdofeed3";
     this.rdofeed3.Size = new System.Drawing.Size(61, 18);
     this.rdofeed3.TabIndex = 5;
     this.rdofeed3.Tag = "@pm=方式代码,@val=3";
     this.rdofeed3.Text = "收费三";
     this.rdofeed3.UseVisualStyleBackColor = true;
     this.rdofeed3.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed4
     //
     this.rdofeed4.AutoSize = true;
     this.rdofeed4.Location = new System.Drawing.Point(254, 12);
     this.rdofeed4.Name = "rdofeed4";
     this.rdofeed4.Size = new System.Drawing.Size(61, 18);
     this.rdofeed4.TabIndex = 6;
     this.rdofeed4.Tag = "@pm=方式代码,@val=4";
     this.rdofeed4.Text = "收费四";
     this.rdofeed4.UseVisualStyleBackColor = true;
     this.rdofeed4.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.panelControl7);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(2, 21);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(574, 18);
     this.panelControl3.TabIndex = 1;
     this.panelControl3.Tag = "@db=用户信息";
     //
     // panelControl7
     //
     this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl7.Controls.Add(this.panelControl8);
     this.panelControl7.Controls.Add(this.panelControl6);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl7.Location = new System.Drawing.Point(0, 0);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(574, 18);
     this.panelControl7.TabIndex = 10;
     //
     // panelControl8
     //
     this.panelControl8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl8.Controls.Add(this.tabFeeStd);
     this.panelControl8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl8.Location = new System.Drawing.Point(0, 35);
     this.panelControl8.Name = "panelControl8";
     this.panelControl8.Size = new System.Drawing.Size(574, 0);
     this.panelControl8.TabIndex = 62;
     //
     // tabFeeStd
     //
     this.tabFeeStd.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabFeeStd.Controls.Add(this.tabpgFee1);
     this.tabFeeStd.Controls.Add(this.tabpgFee2);
     this.tabFeeStd.Controls.Add(this.tabpgFee3);
     this.tabFeeStd.Controls.Add(this.tabpgFee4);
     this.tabFeeStd.Controls.Add(this.tabpgFee5);
     this.tabFeeStd.Controls.Add(this.tabpgFee6);
     this.tabFeeStd.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabFeeStd.Location = new System.Drawing.Point(0, 0);
     this.tabFeeStd.Name = "tabFeeStd";
     this.tabFeeStd.SelectedIndex = 0;
     this.tabFeeStd.ShowToolTips = true;
     this.tabFeeStd.Size = new System.Drawing.Size(574, 0);
     this.tabFeeStd.TabIndex = 62;
     this.tabFeeStd.Tag = "@tb=收费标准";
     //
     // tabpgFee1
     //
     this.tabpgFee1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee1.Controls.Add(this.RemarkLab);
     this.tabpgFee1.Controls.Add(this.tbDayOut);
     this.tabpgFee1.Controls.Add(this.DayOutLab);
     this.tabpgFee1.Controls.Add(this.tbBasicFee);
     this.tabpgFee1.Controls.Add(this.BasicFeeLab);
     this.tabpgFee1.Controls.Add(this.tbFreeTlen);
     this.tabpgFee1.Controls.Add(this.FreeTimeLab);
     this.tabpgFee1.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee1.Name = "tabpgFee1";
     this.tabpgFee1.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee1.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee1.TabIndex = 0;
     this.tabpgFee1.Tag = "";
     this.tabpgFee1.Text = "收费方式1";
     //
     // RemarkLab
     //
     this.RemarkLab.AutoSize = true;
     this.RemarkLab.Location = new System.Drawing.Point(116, 190);
     this.RemarkLab.Name = "RemarkLab";
     this.RemarkLab.Size = new System.Drawing.Size(419, 14);
     this.RemarkLab.TabIndex = 6;
     this.RemarkLab.Text = "计算方法:在T0内免费,超过T0而为跨天收费F1,以后每跨一天加一次收费F2 ";
     //
     // tbDayOut
     //
     this.tbDayOut.Location = new System.Drawing.Point(136, 106);
     this.tbDayOut.Name = "tbDayOut";
     this.tbDayOut.Size = new System.Drawing.Size(145, 22);
     this.tbDayOut.TabIndex = 5;
     this.tbDayOut.Tag = "@pm=金额";
     //
     // DayOutLab
     //
     this.DayOutLab.AutoSize = true;
     this.DayOutLab.Location = new System.Drawing.Point(37, 110);
     this.DayOutLab.Name = "DayOutLab";
     this.DayOutLab.Size = new System.Drawing.Size(96, 14);
     this.DayOutLab.TabIndex = 4;
     this.DayOutLab.Text = "跨天收费金额F2:";
     //
     // tbBasicFee
     //
     this.tbBasicFee.Location = new System.Drawing.Point(434, 40);
     this.tbBasicFee.Name = "tbBasicFee";
     this.tbBasicFee.Size = new System.Drawing.Size(131, 22);
     this.tbBasicFee.TabIndex = 3;
     this.tbBasicFee.Tag = "@pm=基本费";
     //
     // BasicFeeLab
     //
     this.BasicFeeLab.AutoSize = true;
     this.BasicFeeLab.Location = new System.Drawing.Point(327, 44);
     this.BasicFeeLab.Name = "BasicFeeLab";
     this.BasicFeeLab.Size = new System.Drawing.Size(96, 14);
     this.BasicFeeLab.TabIndex = 2;
     this.BasicFeeLab.Text = "基本收费金额F1:";
     //
     // tbFreeTlen
     //
     this.tbFreeTlen.Location = new System.Drawing.Point(136, 41);
     this.tbFreeTlen.Name = "tbFreeTlen";
     this.tbFreeTlen.Size = new System.Drawing.Size(149, 22);
     this.tbFreeTlen.TabIndex = 1;
     this.tbFreeTlen.Tag = "@pm=免费时长";
     //
     // FreeTimeLab
     //
     this.FreeTimeLab.AutoSize = true;
     this.FreeTimeLab.Location = new System.Drawing.Point(57, 43);
     this.FreeTimeLab.Name = "FreeTimeLab";
     this.FreeTimeLab.Size = new System.Drawing.Size(74, 14);
     this.FreeTimeLab.TabIndex = 0;
     this.FreeTimeLab.Text = "免费时长T0:";
     //
     // tabpgFee2
     //
     this.tabpgFee2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee2.Controls.Add(this.textBox1);
     this.tabpgFee2.Controls.Add(this.textBox2);
     this.tabpgFee2.Controls.Add(this.ChargeRateTxt2);
     this.tabpgFee2.Controls.Add(this.ChargeTimeTxt2);
     this.tabpgFee2.Controls.Add(this.AftFreeTxt2);
     this.tabpgFee2.Controls.Add(this.BasicFeeTxt2);
     this.tabpgFee2.Controls.Add(this.BasicTimeTxt2);
     this.tabpgFee2.Controls.Add(this.FreeTimeTxt2);
     this.tabpgFee2.Controls.Add(this.label13);
     this.tabpgFee2.Controls.Add(this.label5);
     this.tabpgFee2.Controls.Add(this.InfomationLab2);
     this.tabpgFee2.Controls.Add(this.ChargeRateLab2);
     this.tabpgFee2.Controls.Add(this.ChargeTimeLab2);
     this.tabpgFee2.Controls.Add(this.AftFreeLab2);
     this.tabpgFee2.Controls.Add(this.BasicFeeLab2);
     this.tabpgFee2.Controls.Add(this.BasicTimeLab2);
     this.tabpgFee2.Controls.Add(this.FreeTimeLab2);
     this.tabpgFee2.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee2.Name = "tabpgFee2";
     this.tabpgFee2.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee2.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee2.TabIndex = 1;
     this.tabpgFee2.Tag = "";
     this.tabpgFee2.Text = "收费方式2";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(434, 142);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(126, 22);
     this.textBox1.TabIndex = 19;
     this.textBox1.Tag = "@pm=日限额";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(434, 105);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(126, 22);
     this.textBox2.TabIndex = 17;
     this.textBox2.Tag = "@pm=廿四时限额";
     //
     // ChargeRateTxt2
     //
     this.ChargeRateTxt2.Location = new System.Drawing.Point(122, 149);
     this.ChargeRateTxt2.Name = "ChargeRateTxt2";
     this.ChargeRateTxt2.Size = new System.Drawing.Size(136, 22);
     this.ChargeRateTxt2.TabIndex = 11;
     this.ChargeRateTxt2.Tag = "@pm=金额,@num=1";
     //
     // ChargeTimeTxt2
     //
     this.ChargeTimeTxt2.Location = new System.Drawing.Point(122, 112);
     this.ChargeTimeTxt2.Name = "ChargeTimeTxt2";
     this.ChargeTimeTxt2.Size = new System.Drawing.Size(136, 22);
     this.ChargeTimeTxt2.TabIndex = 9;
     this.ChargeTimeTxt2.Tag = "@pm=时长,@num=1";
     //
     // AftFreeTxt2
     //
     this.AftFreeTxt2.Location = new System.Drawing.Point(434, 72);
     this.AftFreeTxt2.Name = "AftFreeTxt2";
     this.AftFreeTxt2.Size = new System.Drawing.Size(126, 22);
     this.AftFreeTxt2.TabIndex = 7;
     this.AftFreeTxt2.Tag = "@pm=基本费延时";
     //
     // BasicFeeTxt2
     //
     this.BasicFeeTxt2.Location = new System.Drawing.Point(122, 72);
     this.BasicFeeTxt2.Name = "BasicFeeTxt2";
     this.BasicFeeTxt2.Size = new System.Drawing.Size(136, 22);
     this.BasicFeeTxt2.TabIndex = 5;
     this.BasicFeeTxt2.Tag = "@pm=基本费";
     //
     // BasicTimeTxt2
     //
     this.BasicTimeTxt2.Location = new System.Drawing.Point(435, 36);
     this.BasicTimeTxt2.Name = "BasicTimeTxt2";
     this.BasicTimeTxt2.Size = new System.Drawing.Size(125, 22);
     this.BasicTimeTxt2.TabIndex = 3;
     this.BasicTimeTxt2.Tag = "@pm=基本时长";
     //
     // FreeTimeTxt2
     //
     this.FreeTimeTxt2.Location = new System.Drawing.Point(122, 36);
     this.FreeTimeTxt2.Name = "FreeTimeTxt2";
     this.FreeTimeTxt2.Size = new System.Drawing.Size(136, 22);
     this.FreeTimeTxt2.TabIndex = 1;
     this.FreeTimeTxt2.Tag = "@pm=免费时长";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(369, 152);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(59, 14);
     this.label13.TabIndex = 18;
     this.label13.Text = "每日限额:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(347, 115);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 14);
     this.label5.TabIndex = 16;
     this.label5.Text = "24小时限额FL:";
     //
     // InfomationLab2
     //
     this.InfomationLab2.AutoSize = true;
     this.InfomationLab2.Location = new System.Drawing.Point(119, 209);
     this.InfomationLab2.Name = "InfomationLab2";
     this.InfomationLab2.Size = new System.Drawing.Size(382, 42);
     this.InfomationLab2.TabIndex = 12;
     this.InfomationLab2.Text = "在T0内免费,超过T0而未超过T1收费F1,\r\n超过基本费时长T1而未超过基本费后的免费时长T2,不加收费用;\r\n如果超过T2,则以后每T3时长收费F2,且每个限" +
         "额时间内收费不超过FL。";
     //
     // ChargeRateLab2
     //
     this.ChargeRateLab2.AutoSize = true;
     this.ChargeRateLab2.Location = new System.Drawing.Point(60, 152);
     this.ChargeRateLab2.Name = "ChargeRateLab2";
     this.ChargeRateLab2.Size = new System.Drawing.Size(60, 14);
     this.ChargeRateLab2.TabIndex = 10;
     this.ChargeRateLab2.Text = "计费率F2:";
     //
     // ChargeTimeLab2
     //
     this.ChargeTimeLab2.AutoSize = true;
     this.ChargeTimeLab2.Location = new System.Drawing.Point(24, 119);
     this.ChargeTimeLab2.Name = "ChargeTimeLab2";
     this.ChargeTimeLab2.Size = new System.Drawing.Size(96, 14);
     this.ChargeTimeLab2.TabIndex = 8;
     this.ChargeTimeLab2.Text = "计费时长T3(分):";
     //
     // AftFreeLab2
     //
     this.AftFreeLab2.AutoSize = true;
     this.AftFreeLab2.Location = new System.Drawing.Point(276, 79);
     this.AftFreeLab2.Name = "AftFreeLab2";
     this.AftFreeLab2.Size = new System.Drawing.Size(156, 14);
     this.AftFreeLab2.TabIndex = 6;
     this.AftFreeLab2.Text = "基本费后的免费时长T2(分):";
     //
     // BasicFeeLab2
     //
     this.BasicFeeLab2.AutoSize = true;
     this.BasicFeeLab2.Location = new System.Drawing.Point(60, 76);
     this.BasicFeeLab2.Name = "BasicFeeLab2";
     this.BasicFeeLab2.Size = new System.Drawing.Size(60, 14);
     this.BasicFeeLab2.TabIndex = 4;
     this.BasicFeeLab2.Text = "基本费F1:";
     //
     // BasicTimeLab2
     //
     this.BasicTimeLab2.AutoSize = true;
     this.BasicTimeLab2.Location = new System.Drawing.Point(320, 36);
     this.BasicTimeLab2.Name = "BasicTimeLab2";
     this.BasicTimeLab2.Size = new System.Drawing.Size(108, 14);
     this.BasicTimeLab2.TabIndex = 2;
     this.BasicTimeLab2.Text = "基本费时长T1(分):";
     //
     // FreeTimeLab2
     //
     this.FreeTimeLab2.AutoSize = true;
     this.FreeTimeLab2.Location = new System.Drawing.Point(24, 39);
     this.FreeTimeLab2.Name = "FreeTimeLab2";
     this.FreeTimeLab2.Size = new System.Drawing.Size(96, 14);
     this.FreeTimeLab2.TabIndex = 0;
     this.FreeTimeLab2.Text = "免费时长T0(分):";
     //
     // tabpgFee3
     //
     this.tabpgFee3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee3.Controls.Add(this.Infomation31);
     this.tabpgFee3.Controls.Add(this.Infomation3);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt5);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt5);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt4);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt4);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt3);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt3);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt2);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt2);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt1);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt1);
     this.tabpgFee3.Controls.Add(this.LoopNoTxt);
     this.tabpgFee3.Controls.Add(this.FreeTimeTxt3);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab5);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab5);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab4);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab4);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab3);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab3);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab2);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab2);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab1);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab1);
     this.tabpgFee3.Controls.Add(this.LoopNoLab);
     this.tabpgFee3.Controls.Add(this.FreeTimeLab3);
     this.tabpgFee3.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee3.Name = "tabpgFee3";
     this.tabpgFee3.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee3.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee3.TabIndex = 2;
     this.tabpgFee3.Tag = "";
     this.tabpgFee3.Text = "收费方式3";
     //
     // Infomation31
     //
     this.Infomation31.AutoSize = true;
     this.Infomation31.Location = new System.Drawing.Point(101, 305);
     this.Infomation31.Name = "Infomation31";
     this.Infomation31.Size = new System.Drawing.Size(386, 14);
     this.Infomation31.TabIndex = 25;
     this.Infomation31.Text = "如果超过T2,则以后每T3时长收费F2,且每个限额时间内收费不超过FL。 ";
     //
     // Infomation3
     //
     this.Infomation3.AutoSize = true;
     this.Infomation3.Location = new System.Drawing.Point(103, 273);
     this.Infomation3.Name = "Infomation3";
     this.Infomation3.Size = new System.Drawing.Size(353, 28);
     this.Infomation3.TabIndex = 24;
     this.Infomation3.Text = "在T0内免费,超过T0而未超过T1收费F1,\r\n超过基本费时长T1而未超过基本费后的免费时长T2,不加收费用。";
     //
     // LoopFeeTxt5
     //
     this.LoopFeeTxt5.Location = new System.Drawing.Point(452, 211);
     this.LoopFeeTxt5.Name = "LoopFeeTxt5";
     this.LoopFeeTxt5.Size = new System.Drawing.Size(113, 22);
     this.LoopFeeTxt5.TabIndex = 23;
     this.LoopFeeTxt5.Tag = "@num=5,@pm=金额";
     //
     // LoopTimeTxt5
     //
     this.LoopTimeTxt5.Location = new System.Drawing.Point(166, 208);
     this.LoopTimeTxt5.Name = "LoopTimeTxt5";
     this.LoopTimeTxt5.Size = new System.Drawing.Size(119, 22);
     this.LoopTimeTxt5.TabIndex = 21;
     this.LoopTimeTxt5.Tag = "@num=5,@pm=时长";
     //
     // LoopFeeTxt4
     //
     this.LoopFeeTxt4.Location = new System.Drawing.Point(453, 175);
     this.LoopFeeTxt4.Name = "LoopFeeTxt4";
     this.LoopFeeTxt4.Size = new System.Drawing.Size(112, 22);
     this.LoopFeeTxt4.TabIndex = 19;
     this.LoopFeeTxt4.Tag = "@num=4,@pm=金额";
     //
     // LoopTimeTxt4
     //
     this.LoopTimeTxt4.Location = new System.Drawing.Point(166, 176);
     this.LoopTimeTxt4.Name = "LoopTimeTxt4";
     this.LoopTimeTxt4.Size = new System.Drawing.Size(119, 22);
     this.LoopTimeTxt4.TabIndex = 17;
     this.LoopTimeTxt4.Tag = "@num=4,@pm=时长";
     //
     // LoopFeeTxt3
     //
     this.LoopFeeTxt3.Location = new System.Drawing.Point(452, 142);
     this.LoopFeeTxt3.Name = "LoopFeeTxt3";
     this.LoopFeeTxt3.Size = new System.Drawing.Size(113, 22);
     this.LoopFeeTxt3.TabIndex = 15;
     this.LoopFeeTxt3.Tag = "@num=3,@pm=金额";
     //
     // LoopTimeTxt3
     //
     this.LoopTimeTxt3.Location = new System.Drawing.Point(166, 144);
     this.LoopTimeTxt3.Name = "LoopTimeTxt3";
     this.LoopTimeTxt3.Size = new System.Drawing.Size(119, 22);
     this.LoopTimeTxt3.TabIndex = 13;
     this.LoopTimeTxt3.Tag = "@num=3,@pm=时长";
     //
     // LoopFeeTxt2
     //
     this.LoopFeeTxt2.Location = new System.Drawing.Point(451, 111);
     this.LoopFeeTxt2.Name = "LoopFeeTxt2";
     this.LoopFeeTxt2.Size = new System.Drawing.Size(114, 22);
     this.LoopFeeTxt2.TabIndex = 11;
     this.LoopFeeTxt2.Tag = "@num=2,@pm=金额";
     //
     // LoopTimeTxt2
     //
     this.LoopTimeTxt2.Location = new System.Drawing.Point(168, 111);
     this.LoopTimeTxt2.Name = "LoopTimeTxt2";
     this.LoopTimeTxt2.Size = new System.Drawing.Size(117, 22);
     this.LoopTimeTxt2.TabIndex = 9;
     this.LoopTimeTxt2.Tag = "@num=2,@pm=时长";
     //
     // LoopFeeTxt1
     //
     this.LoopFeeTxt1.Location = new System.Drawing.Point(451, 77);
     this.LoopFeeTxt1.Name = "LoopFeeTxt1";
     this.LoopFeeTxt1.Size = new System.Drawing.Size(114, 22);
     this.LoopFeeTxt1.TabIndex = 7;
     this.LoopFeeTxt1.Tag = "@num=1,@pm=金额";
     //
     // LoopTimeTxt1
     //
     this.LoopTimeTxt1.Location = new System.Drawing.Point(168, 76);
     this.LoopTimeTxt1.Name = "LoopTimeTxt1";
     this.LoopTimeTxt1.Size = new System.Drawing.Size(117, 22);
     this.LoopTimeTxt1.TabIndex = 5;
     this.LoopTimeTxt1.Tag = "@num=1,@pm=时长";
     //
     // LoopNoTxt
     //
     this.LoopNoTxt.Location = new System.Drawing.Point(451, 43);
     this.LoopNoTxt.Name = "LoopNoTxt";
     this.LoopNoTxt.Size = new System.Drawing.Size(114, 22);
     this.LoopNoTxt.TabIndex = 3;
     this.LoopNoTxt.Tag = "@pm=循环计费";
     //
     // FreeTimeTxt3
     //
     this.FreeTimeTxt3.Location = new System.Drawing.Point(168, 41);
     this.FreeTimeTxt3.Name = "FreeTimeTxt3";
     this.FreeTimeTxt3.Size = new System.Drawing.Size(117, 22);
     this.FreeTimeTxt3.TabIndex = 1;
     this.FreeTimeTxt3.Tag = "@pm=免费时长";
     //
     // LoopFeeLab5
     //
     this.LoopFeeLab5.AutoSize = true;
     this.LoopFeeLab5.Location = new System.Drawing.Point(318, 213);
     this.LoopFeeLab5.Name = "LoopFeeLab5";
     this.LoopFeeLab5.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab5.TabIndex = 22;
     this.LoopFeeLab5.Text = "第五个循环时长收费F5:";
     //
     // LoopTimeLab5
     //
     this.LoopTimeLab5.AutoSize = true;
     this.LoopTimeLab5.Location = new System.Drawing.Point(54, 211);
     this.LoopTimeLab5.Name = "LoopTimeLab5";
     this.LoopTimeLab5.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab5.TabIndex = 20;
     this.LoopTimeLab5.Text = "第五个循环时长T5:";
     //
     // LoopFeeLab4
     //
     this.LoopFeeLab4.AutoSize = true;
     this.LoopFeeLab4.Location = new System.Drawing.Point(318, 183);
     this.LoopFeeLab4.Name = "LoopFeeLab4";
     this.LoopFeeLab4.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab4.TabIndex = 18;
     this.LoopFeeLab4.Text = "第四个循环时长收费F4:";
     //
     // LoopTimeLab4
     //
     this.LoopTimeLab4.AutoSize = true;
     this.LoopTimeLab4.Location = new System.Drawing.Point(54, 179);
     this.LoopTimeLab4.Name = "LoopTimeLab4";
     this.LoopTimeLab4.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab4.TabIndex = 16;
     this.LoopTimeLab4.Text = "第四个循环时长T4:";
     //
     // LoopFeeLab3
     //
     this.LoopFeeLab3.AutoSize = true;
     this.LoopFeeLab3.Location = new System.Drawing.Point(318, 150);
     this.LoopFeeLab3.Name = "LoopFeeLab3";
     this.LoopFeeLab3.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab3.TabIndex = 14;
     this.LoopFeeLab3.Text = "第三个循环时长收费F3:";
     //
     // LoopTimeLab3
     //
     this.LoopTimeLab3.AutoSize = true;
     this.LoopTimeLab3.Location = new System.Drawing.Point(54, 146);
     this.LoopTimeLab3.Name = "LoopTimeLab3";
     this.LoopTimeLab3.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab3.TabIndex = 12;
     this.LoopTimeLab3.Text = "第三个循环时长T3:";
     //
     // LoopFeeLab2
     //
     this.LoopFeeLab2.AutoSize = true;
     this.LoopFeeLab2.Location = new System.Drawing.Point(318, 119);
     this.LoopFeeLab2.Name = "LoopFeeLab2";
     this.LoopFeeLab2.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab2.TabIndex = 10;
     this.LoopFeeLab2.Text = "第二个循环时长收费F2:";
     //
     // LoopTimeLab2
     //
     this.LoopTimeLab2.AutoSize = true;
     this.LoopTimeLab2.Location = new System.Drawing.Point(54, 115);
     this.LoopTimeLab2.Name = "LoopTimeLab2";
     this.LoopTimeLab2.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab2.TabIndex = 8;
     this.LoopTimeLab2.Text = "第二个循环时长T2:";
     //
     // LoopFeeLab1
     //
     this.LoopFeeLab1.AutoSize = true;
     this.LoopFeeLab1.Location = new System.Drawing.Point(318, 83);
     this.LoopFeeLab1.Name = "LoopFeeLab1";
     this.LoopFeeLab1.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab1.TabIndex = 6;
     this.LoopFeeLab1.Text = "第一个循环时长收费F1:";
     //
     // LoopTimeLab1
     //
     this.LoopTimeLab1.AutoSize = true;
     this.LoopTimeLab1.Location = new System.Drawing.Point(54, 79);
     this.LoopTimeLab1.Name = "LoopTimeLab1";
     this.LoopTimeLab1.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab1.TabIndex = 4;
     this.LoopTimeLab1.Text = "第一个循环时长T1:";
     //
     // LoopNoLab
     //
     this.LoopNoLab.AutoSize = true;
     this.LoopNoLab.Location = new System.Drawing.Point(390, 49);
     this.LoopNoLab.Name = "LoopNoLab";
     this.LoopNoLab.Size = new System.Drawing.Size(59, 14);
     this.LoopNoLab.TabIndex = 2;
     this.LoopNoLab.Text = "循环段数:";
     //
     // FreeTimeLab3
     //
     this.FreeTimeLab3.AutoSize = true;
     this.FreeTimeLab3.Location = new System.Drawing.Point(90, 43);
     this.FreeTimeLab3.Name = "FreeTimeLab3";
     this.FreeTimeLab3.Size = new System.Drawing.Size(74, 14);
     this.FreeTimeLab3.TabIndex = 0;
     this.FreeTimeLab3.Text = "免费时长T0:";
     //
     // tabpgFee4
     //
     this.tabpgFee4.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee4.Controls.Add(this.maskedTextBox13);
     this.tabpgFee4.Controls.Add(this.maskedTextBox12);
     this.tabpgFee4.Controls.Add(this.maskedTextBox11);
     this.tabpgFee4.Controls.Add(this.maskedTextBox10);
     this.tabpgFee4.Controls.Add(this.maskedTextBox9);
     this.tabpgFee4.Controls.Add(this.maskedTextBox8);
     this.tabpgFee4.Controls.Add(this.maskedTextBox7);
     this.tabpgFee4.Controls.Add(this.maskedTextBox6);
     this.tabpgFee4.Controls.Add(this.maskedTextBox5);
     this.tabpgFee4.Controls.Add(this.maskedTextBox4);
     this.tabpgFee4.Controls.Add(this.maskedTextBox3);
     this.tabpgFee4.Controls.Add(this.maskedTextBox2);
     this.tabpgFee4.Controls.Add(this.maskedTextBox1);
     this.tabpgFee4.Controls.Add(this.label8);
     this.tabpgFee4.Controls.Add(this.label7);
     this.tabpgFee4.Controls.Add(this.label6);
     this.tabpgFee4.Controls.Add(this.label9);
     this.tabpgFee4.Controls.Add(this.OutStageLab5);
     this.tabpgFee4.Controls.Add(this.TimePointLab5);
     this.tabpgFee4.Controls.Add(this.OutStageLab4);
     this.tabpgFee4.Controls.Add(this.TimePointLab4);
     this.tabpgFee4.Controls.Add(this.OutStageLab3);
     this.tabpgFee4.Controls.Add(this.TimePointLab3);
     this.tabpgFee4.Controls.Add(this.OutStageLab2);
     this.tabpgFee4.Controls.Add(this.TimePointLab2);
     this.tabpgFee4.Controls.Add(this.OutStageLab1);
     this.tabpgFee4.Controls.Add(this.TimePointLab1);
     this.tabpgFee4.Controls.Add(this.BasicFeeLab4);
     this.tabpgFee4.Controls.Add(this.FreeTimeLab4);
     this.tabpgFee4.Controls.Add(this.TimeCountLab);
     this.tabpgFee4.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee4.Name = "tabpgFee4";
     this.tabpgFee4.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee4.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee4.TabIndex = 3;
     this.tabpgFee4.Tag = "";
     this.tabpgFee4.Text = "收费方式4";
     //
     // maskedTextBox13
     //
     this.maskedTextBox13.Location = new System.Drawing.Point(154, 53);
     this.maskedTextBox13.Mask = "999";
     this.maskedTextBox13.Name = "maskedTextBox13";
     this.maskedTextBox13.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox13.TabIndex = 75;
     this.maskedTextBox13.Tag = "@pm=免费时长:";
     //
     // maskedTextBox12
     //
     this.maskedTextBox12.Location = new System.Drawing.Point(154, 19);
     this.maskedTextBox12.Mask = "999";
     this.maskedTextBox12.Name = "maskedTextBox12";
     this.maskedTextBox12.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox12.TabIndex = 74;
     this.maskedTextBox12.Tag = "@pm=循环计费";
     //
     // maskedTextBox11
     //
     this.maskedTextBox11.Location = new System.Drawing.Point(400, 223);
     this.maskedTextBox11.Mask = "999";
     this.maskedTextBox11.Name = "maskedTextBox11";
     this.maskedTextBox11.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox11.TabIndex = 73;
     this.maskedTextBox11.Tag = "@num=5,@pm=金额";
     //
     // maskedTextBox10
     //
     this.maskedTextBox10.Location = new System.Drawing.Point(400, 192);
     this.maskedTextBox10.Mask = "999";
     this.maskedTextBox10.Name = "maskedTextBox10";
     this.maskedTextBox10.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox10.TabIndex = 72;
     this.maskedTextBox10.Tag = "@num=4,@pm=金额";
     //
     // maskedTextBox9
     //
     this.maskedTextBox9.Location = new System.Drawing.Point(400, 158);
     this.maskedTextBox9.Mask = "999";
     this.maskedTextBox9.Name = "maskedTextBox9";
     this.maskedTextBox9.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox9.TabIndex = 71;
     this.maskedTextBox9.Tag = "@num=3,@pm=金额";
     //
     // maskedTextBox8
     //
     this.maskedTextBox8.Location = new System.Drawing.Point(397, 54);
     this.maskedTextBox8.Mask = "999";
     this.maskedTextBox8.Name = "maskedTextBox8";
     this.maskedTextBox8.Size = new System.Drawing.Size(118, 22);
     this.maskedTextBox8.TabIndex = 70;
     this.maskedTextBox8.Tag = "@pm=基本费";
     //
     // maskedTextBox7
     //
     this.maskedTextBox7.Location = new System.Drawing.Point(399, 129);
     this.maskedTextBox7.Mask = "999";
     this.maskedTextBox7.Name = "maskedTextBox7";
     this.maskedTextBox7.Size = new System.Drawing.Size(116, 22);
     this.maskedTextBox7.TabIndex = 69;
     this.maskedTextBox7.Tag = "@num=2,@pm=金额";
     //
     // maskedTextBox6
     //
     this.maskedTextBox6.Location = new System.Drawing.Point(400, 95);
     this.maskedTextBox6.Mask = "999";
     this.maskedTextBox6.Name = "maskedTextBox6";
     this.maskedTextBox6.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox6.TabIndex = 68;
     this.maskedTextBox6.Tag = "@num=1,@pm=金额";
     //
     // maskedTextBox5
     //
     this.maskedTextBox5.Location = new System.Drawing.Point(154, 223);
     this.maskedTextBox5.Mask = "90:00";
     this.maskedTextBox5.Name = "maskedTextBox5";
     this.maskedTextBox5.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox5.TabIndex = 67;
     this.maskedTextBox5.Tag = "@num=5,@pm=截止";
     this.maskedTextBox5.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox4
     //
     this.maskedTextBox4.Location = new System.Drawing.Point(154, 189);
     this.maskedTextBox4.Mask = "90:00";
     this.maskedTextBox4.Name = "maskedTextBox4";
     this.maskedTextBox4.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox4.TabIndex = 66;
     this.maskedTextBox4.Tag = "@num=4,@pm=截止";
     this.maskedTextBox4.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox3
     //
     this.maskedTextBox3.Location = new System.Drawing.Point(154, 155);
     this.maskedTextBox3.Mask = "90:00";
     this.maskedTextBox3.Name = "maskedTextBox3";
     this.maskedTextBox3.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox3.TabIndex = 65;
     this.maskedTextBox3.Tag = "@num=3,@pm=截止";
     this.maskedTextBox3.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox2
     //
     this.maskedTextBox2.Location = new System.Drawing.Point(154, 121);
     this.maskedTextBox2.Mask = "90:00";
     this.maskedTextBox2.Name = "maskedTextBox2";
     this.maskedTextBox2.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox2.TabIndex = 64;
     this.maskedTextBox2.Tag = "@num=2,@pm=截止";
     this.maskedTextBox2.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox1
     //
     this.maskedTextBox1.Location = new System.Drawing.Point(154, 87);
     this.maskedTextBox1.Mask = "90:00";
     this.maskedTextBox1.Name = "maskedTextBox1";
     this.maskedTextBox1.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox1.TabIndex = 63;
     this.maskedTextBox1.Tag = "@num=1,@pm=截止";
     this.maskedTextBox1.ValidatingType = typeof(System.DateTime);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(182, 342);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(171, 14);
     this.label8.TabIndex = 57;
     this.label8.Text = " 超过时间点T5以后收跨段费F6";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(60, 323);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(533, 14);
     this.label7.TabIndex = 56;
     this.label7.Text = "超过时间点T3但是未到时间点T4,收跨段费F4; 超过时间点T4但是未到时间点T5,收跨段费F5; ";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(54, 300);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(525, 14);
     this.label6.TabIndex = 55;
     this.label6.Text = "  超过时间点T1但是未到时间点T2,收跨段费F2 超过时间点T2但是未到时间点T3,收跨段费F3;";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(123, 264);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(386, 28);
     this.label9.TabIndex = 54;
     this.label9.Text = "时段数(1-5):设定有效时段;\r\n在免费时长T0内免费,超过免费时长但是未到时间点T1,收基本费F1;";
     //
     // OutStageLab5
     //
     this.OutStageLab5.AutoSize = true;
     this.OutStageLab5.Location = new System.Drawing.Point(337, 223);
     this.OutStageLab5.Name = "OutStageLab5";
     this.OutStageLab5.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab5.TabIndex = 51;
     this.OutStageLab5.Text = "跨段费F6:";
     //
     // TimePointLab5
     //
     this.TimePointLab5.AutoSize = true;
     this.TimePointLab5.Location = new System.Drawing.Point(37, 231);
     this.TimePointLab5.Name = "TimePointLab5";
     this.TimePointLab5.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab5.TabIndex = 49;
     this.TimePointLab5.Text = "时间点T5(hh:mm):";
     //
     // OutStageLab4
     //
     this.OutStageLab4.AutoSize = true;
     this.OutStageLab4.Location = new System.Drawing.Point(338, 195);
     this.OutStageLab4.Name = "OutStageLab4";
     this.OutStageLab4.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab4.TabIndex = 47;
     this.OutStageLab4.Text = "跨段费F5:";
     //
     // TimePointLab4
     //
     this.TimePointLab4.AutoSize = true;
     this.TimePointLab4.Location = new System.Drawing.Point(37, 198);
     this.TimePointLab4.Name = "TimePointLab4";
     this.TimePointLab4.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab4.TabIndex = 45;
     this.TimePointLab4.Text = "时间点T4(hh:mm):";
     //
     // OutStageLab3
     //
     this.OutStageLab3.AutoSize = true;
     this.OutStageLab3.Location = new System.Drawing.Point(338, 163);
     this.OutStageLab3.Name = "OutStageLab3";
     this.OutStageLab3.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab3.TabIndex = 43;
     this.OutStageLab3.Text = "跨段费F4:";
     //
     // TimePointLab3
     //
     this.TimePointLab3.AutoSize = true;
     this.TimePointLab3.Location = new System.Drawing.Point(37, 163);
     this.TimePointLab3.Name = "TimePointLab3";
     this.TimePointLab3.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab3.TabIndex = 41;
     this.TimePointLab3.Text = "时间点T3(hh:mm):";
     //
     // OutStageLab2
     //
     this.OutStageLab2.AutoSize = true;
     this.OutStageLab2.Location = new System.Drawing.Point(337, 135);
     this.OutStageLab2.Name = "OutStageLab2";
     this.OutStageLab2.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab2.TabIndex = 39;
     this.OutStageLab2.Text = "跨段费F3:";
     //
     // TimePointLab2
     //
     this.TimePointLab2.AutoSize = true;
     this.TimePointLab2.Location = new System.Drawing.Point(37, 130);
     this.TimePointLab2.Name = "TimePointLab2";
     this.TimePointLab2.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab2.TabIndex = 37;
     this.TimePointLab2.Text = "时间点T2(hh:mm):";
     //
     // OutStageLab1
     //
     this.OutStageLab1.AutoSize = true;
     this.OutStageLab1.Location = new System.Drawing.Point(337, 98);
     this.OutStageLab1.Name = "OutStageLab1";
     this.OutStageLab1.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab1.TabIndex = 35;
     this.OutStageLab1.Text = "跨段费F2:";
     //
     // TimePointLab1
     //
     this.TimePointLab1.AutoSize = true;
     this.TimePointLab1.Location = new System.Drawing.Point(37, 95);
     this.TimePointLab1.Name = "TimePointLab1";
     this.TimePointLab1.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab1.TabIndex = 33;
     this.TimePointLab1.Text = "时间点T1(hh:mm):";
     //
     // BasicFeeLab4
     //
     this.BasicFeeLab4.AutoSize = true;
     this.BasicFeeLab4.Location = new System.Drawing.Point(337, 61);
     this.BasicFeeLab4.Name = "BasicFeeLab4";
     this.BasicFeeLab4.Size = new System.Drawing.Size(60, 14);
     this.BasicFeeLab4.TabIndex = 31;
     this.BasicFeeLab4.Text = "基本费F1:";
     //
     // FreeTimeLab4
     //
     this.FreeTimeLab4.AutoSize = true;
     this.FreeTimeLab4.Location = new System.Drawing.Point(54, 62);
     this.FreeTimeLab4.Name = "FreeTimeLab4";
     this.FreeTimeLab4.Size = new System.Drawing.Size(96, 14);
     this.FreeTimeLab4.TabIndex = 29;
     this.FreeTimeLab4.Text = "免费时长T0(分):";
     //
     // TimeCountLab
     //
     this.TimeCountLab.AutoSize = true;
     this.TimeCountLab.Location = new System.Drawing.Point(72, 28);
     this.TimeCountLab.Name = "TimeCountLab";
     this.TimeCountLab.Size = new System.Drawing.Size(75, 14);
     this.TimeCountLab.TabIndex = 27;
     this.TimeCountLab.Text = "时段数(1-5):";
     //
     // tabpgFee5
     //
     this.tabpgFee5.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee5.Controls.Add(this.label11);
     this.tabpgFee5.Controls.Add(this.label10);
     this.tabpgFee5.Controls.Add(this.label12);
     this.tabpgFee5.Controls.Add(this.groupBox3);
     this.tabpgFee5.Controls.Add(this.groupBox6);
     this.tabpgFee5.Controls.Add(this.groupBox7);
     this.tabpgFee5.Controls.Add(this.AftFreeTxt5);
     this.tabpgFee5.Controls.Add(this.BasicFeeTxt5);
     this.tabpgFee5.Controls.Add(this.BasicTimeTxt5);
     this.tabpgFee5.Controls.Add(this.FreeTimeTxt5);
     this.tabpgFee5.Controls.Add(this.AftFreeLab5);
     this.tabpgFee5.Controls.Add(this.BasicFeeLab5);
     this.tabpgFee5.Controls.Add(this.BasicTimeLab5);
     this.tabpgFee5.Controls.Add(this.FreeTimeLab5);
     this.tabpgFee5.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee5.Name = "tabpgFee5";
     this.tabpgFee5.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee5.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee5.TabIndex = 4;
     this.tabpgFee5.Tag = "";
     this.tabpgFee5.Text = "收费方式5";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(124, 337);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(273, 14);
     this.label11.TabIndex = 13;
     this.label11.Text = "在时间段T3-T4之间,按每个计费时长T6,收费F3";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(57, 302);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(476, 14);
     this.label10.TabIndex = 12;
     this.label10.Text = " 如果查过T2,则按照循环时段收费。 在时间段T3-T4之间,每个计费时长T5,收费F2;";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(118, 258);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(349, 28);
     this.label12.TabIndex = 11;
     this.label12.Text = "超过免费时长但是未到时间点T1收基本费F1\r\n超过基本费时长T1但是未超过基本费后的免费时长T2不加收费用";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.ChargeRateTxt6);
     this.groupBox3.Controls.Add(this.ChargeRateLab6);
     this.groupBox3.Controls.Add(this.ChargeTimeTxt6);
     this.groupBox3.Controls.Add(this.ChargeTimeLab6);
     this.groupBox3.Location = new System.Drawing.Point(317, 152);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(245, 88);
     this.groupBox3.TabIndex = 10;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "T3-T4时段外";
     //
     // ChargeRateTxt6
     //
     this.ChargeRateTxt6.Location = new System.Drawing.Point(101, 54);
     this.ChargeRateTxt6.Name = "ChargeRateTxt6";
     this.ChargeRateTxt6.Size = new System.Drawing.Size(113, 22);
     this.ChargeRateTxt6.TabIndex = 17;
     this.ChargeRateTxt6.Tag = "@num=2,@pm=金额";
     //
     // ChargeRateLab6
     //
     this.ChargeRateLab6.AutoSize = true;
     this.ChargeRateLab6.Location = new System.Drawing.Point(42, 60);
     this.ChargeRateLab6.Name = "ChargeRateLab6";
     this.ChargeRateLab6.Size = new System.Drawing.Size(60, 14);
     this.ChargeRateLab6.TabIndex = 16;
     this.ChargeRateLab6.Text = "计费率F3:";
     //
     // ChargeTimeTxt6
     //
     this.ChargeTimeTxt6.Location = new System.Drawing.Point(101, 21);
     this.ChargeTimeTxt6.Name = "ChargeTimeTxt6";
     this.ChargeTimeTxt6.Size = new System.Drawing.Size(113, 22);
     this.ChargeTimeTxt6.TabIndex = 15;
     this.ChargeTimeTxt6.Tag = "@num=2,@pm=时长";
     //
     // ChargeTimeLab6
     //
     this.ChargeTimeLab6.AutoSize = true;
     this.ChargeTimeLab6.Location = new System.Drawing.Point(6, 24);
     this.ChargeTimeLab6.Name = "ChargeTimeLab6";
     this.ChargeTimeLab6.Size = new System.Drawing.Size(96, 14);
     this.ChargeTimeLab6.TabIndex = 14;
     this.ChargeTimeLab6.Text = "计费时长T6(分):";
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.ChargeRateTxt5);
     this.groupBox6.Controls.Add(this.ChargeRateLab5);
     this.groupBox6.Controls.Add(this.ChargeTimeTxt5);
     this.groupBox6.Controls.Add(this.ChargeTimeLab5);
     this.groupBox6.Location = new System.Drawing.Point(48, 148);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(258, 92);
     this.groupBox6.TabIndex = 9;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "T3-T4时段内";
     //
     // ChargeRateTxt5
     //
     this.ChargeRateTxt5.Location = new System.Drawing.Point(104, 54);
     this.ChargeRateTxt5.Name = "ChargeRateTxt5";
     this.ChargeRateTxt5.Size = new System.Drawing.Size(127, 22);
     this.ChargeRateTxt5.TabIndex = 13;
     this.ChargeRateTxt5.Tag = "@num=1,@pm=金额";
     //
     // ChargeRateLab5
     //
     this.ChargeRateLab5.AutoSize = true;
     this.ChargeRateLab5.Location = new System.Drawing.Point(39, 58);
     this.ChargeRateLab5.Name = "ChargeRateLab5";
     this.ChargeRateLab5.Size = new System.Drawing.Size(60, 14);
     this.ChargeRateLab5.TabIndex = 12;
     this.ChargeRateLab5.Text = "计费率F2:";
     //
     // ChargeTimeTxt5
     //
     this.ChargeTimeTxt5.Location = new System.Drawing.Point(104, 21);
     this.ChargeTimeTxt5.Name = "ChargeTimeTxt5";
     this.ChargeTimeTxt5.Size = new System.Drawing.Size(127, 22);
     this.ChargeTimeTxt5.TabIndex = 11;
     this.ChargeTimeTxt5.Tag = "@num=1,@pm=时长";
     //
     // ChargeTimeLab5
     //
     this.ChargeTimeLab5.AutoSize = true;
     this.ChargeTimeLab5.Location = new System.Drawing.Point(3, 24);
     this.ChargeTimeLab5.Name = "ChargeTimeLab5";
     this.ChargeTimeLab5.Size = new System.Drawing.Size(96, 14);
     this.ChargeTimeLab5.TabIndex = 10;
     this.ChargeTimeLab5.Text = "计费时长T5(分):";
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.TimePoint4);
     this.groupBox7.Controls.Add(this.TimePoint4Lab);
     this.groupBox7.Controls.Add(this.TimePoint3);
     this.groupBox7.Controls.Add(this.TimePoint3Lab);
     this.groupBox7.Location = new System.Drawing.Point(48, 82);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(514, 60);
     this.groupBox7.TabIndex = 8;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "时段设置";
     //
     // TimePoint4
     //
     this.TimePoint4.CustomFormat = "HH:mm";
     this.TimePoint4.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.TimePoint4.Location = new System.Drawing.Point(338, 23);
     this.TimePoint4.Name = "TimePoint4";
     this.TimePoint4.ShowUpDown = true;
     this.TimePoint4.Size = new System.Drawing.Size(136, 22);
     this.TimePoint4.TabIndex = 2;
     this.TimePoint4.Tag = "@num=1,@pm=截止";
     //
     // TimePoint4Lab
     //
     this.TimePoint4Lab.AutoSize = true;
     this.TimePoint4Lab.Location = new System.Drawing.Point(275, 27);
     this.TimePoint4Lab.Name = "TimePoint4Lab";
     this.TimePoint4Lab.Size = new System.Drawing.Size(62, 14);
     this.TimePoint4Lab.TabIndex = 1;
     this.TimePoint4Lab.Text = "时间点T4:";
     //
     // TimePoint3
     //
     this.TimePoint3.CustomFormat = "HH:mm";
     this.TimePoint3.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.TimePoint3.Location = new System.Drawing.Point(104, 21);
     this.TimePoint3.Name = "TimePoint3";
     this.TimePoint3.ShowUpDown = true;
     this.TimePoint3.Size = new System.Drawing.Size(127, 22);
     this.TimePoint3.TabIndex = 0;
     this.TimePoint3.Tag = "@num=1,@pm=起始";
     //
     // TimePoint3Lab
     //
     this.TimePoint3Lab.AutoSize = true;
     this.TimePoint3Lab.Location = new System.Drawing.Point(39, 25);
     this.TimePoint3Lab.Name = "TimePoint3Lab";
     this.TimePoint3Lab.Size = new System.Drawing.Size(62, 14);
     this.TimePoint3Lab.TabIndex = 0;
     this.TimePoint3Lab.Text = "时间点T3:";
     //
     // AftFreeTxt5
     //
     this.AftFreeTxt5.Location = new System.Drawing.Point(442, 53);
     this.AftFreeTxt5.Name = "AftFreeTxt5";
     this.AftFreeTxt5.Size = new System.Drawing.Size(120, 22);
     this.AftFreeTxt5.TabIndex = 7;
     this.AftFreeTxt5.Tag = "@pm=基本费延时";
     //
     // BasicFeeTxt5
     //
     this.BasicFeeTxt5.Location = new System.Drawing.Point(151, 55);
     this.BasicFeeTxt5.Name = "BasicFeeTxt5";
     this.BasicFeeTxt5.Size = new System.Drawing.Size(130, 22);
     this.BasicFeeTxt5.TabIndex = 5;
     this.BasicFeeTxt5.Tag = "@pm=基本费";
     //
     // BasicTimeTxt5
     //
     this.BasicTimeTxt5.Location = new System.Drawing.Point(442, 20);
     this.BasicTimeTxt5.Name = "BasicTimeTxt5";
     this.BasicTimeTxt5.Size = new System.Drawing.Size(120, 22);
     this.BasicTimeTxt5.TabIndex = 3;
     this.BasicTimeTxt5.Tag = "@pm=基本时长";
     //
     // FreeTimeTxt5
     //
     this.FreeTimeTxt5.Location = new System.Drawing.Point(151, 25);
     this.FreeTimeTxt5.Name = "FreeTimeTxt5";
     this.FreeTimeTxt5.Size = new System.Drawing.Size(130, 22);
     this.FreeTimeTxt5.TabIndex = 1;
     this.FreeTimeTxt5.Tag = "@pm=免费时长";
     //
     // AftFreeLab5
     //
     this.AftFreeLab5.AutoSize = true;
     this.AftFreeLab5.Location = new System.Drawing.Point(294, 58);
     this.AftFreeLab5.Name = "AftFreeLab5";
     this.AftFreeLab5.Size = new System.Drawing.Size(144, 14);
     this.AftFreeLab5.TabIndex = 6;
     this.AftFreeLab5.Text = "基本后的免费时长T2(分):";
     //
     // BasicFeeLab5
     //
     this.BasicFeeLab5.AutoSize = true;
     this.BasicFeeLab5.Location = new System.Drawing.Point(93, 58);
     this.BasicFeeLab5.Name = "BasicFeeLab5";
     this.BasicFeeLab5.Size = new System.Drawing.Size(60, 14);
     this.BasicFeeLab5.TabIndex = 4;
     this.BasicFeeLab5.Text = "基本费F1:";
     //
     // BasicTimeLab5
     //
     this.BasicTimeLab5.AutoSize = true;
     this.BasicTimeLab5.Location = new System.Drawing.Point(330, 23);
     this.BasicTimeLab5.Name = "BasicTimeLab5";
     this.BasicTimeLab5.Size = new System.Drawing.Size(108, 14);
     this.BasicTimeLab5.TabIndex = 2;
     this.BasicTimeLab5.Text = "基本费时长T1(分):";
     //
     // FreeTimeLab5
     //
     this.FreeTimeLab5.AutoSize = true;
     this.FreeTimeLab5.Location = new System.Drawing.Point(57, 28);
     this.FreeTimeLab5.Name = "FreeTimeLab5";
     this.FreeTimeLab5.Size = new System.Drawing.Size(96, 14);
     this.FreeTimeLab5.TabIndex = 0;
     this.FreeTimeLab5.Text = "免费时长T0(分):";
     //
     // tabpgFee6
     //
     this.tabpgFee6.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee6.Controls.Add(this.HourFeeTxt24);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt23);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt22);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt21);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt20);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt19);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt18);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt17);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt16);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt15);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt14);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt13);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt12);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt11);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt10);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt9);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt8);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt7);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt6);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt5);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt4);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt3);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt2);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt1);
     this.tabpgFee6.Controls.Add(this.LimitAccTxt);
     this.tabpgFee6.Controls.Add(this.FreeTimeTxt6);
     this.tabpgFee6.Controls.Add(this.HourFeeLab24);
     this.tabpgFee6.Controls.Add(this.HourFeeLab23);
     this.tabpgFee6.Controls.Add(this.HourFeeLab22);
     this.tabpgFee6.Controls.Add(this.HourFeeLab21);
     this.tabpgFee6.Controls.Add(this.HourFeeLab20);
     this.tabpgFee6.Controls.Add(this.HourFeeLab19);
     this.tabpgFee6.Controls.Add(this.HourFeeLab18);
     this.tabpgFee6.Controls.Add(this.HourFeeLab17);
     this.tabpgFee6.Controls.Add(this.HourFeeLab16);
     this.tabpgFee6.Controls.Add(this.HourFeeLab15);
     this.tabpgFee6.Controls.Add(this.HourFeeLab14);
     this.tabpgFee6.Controls.Add(this.HourFeeLab13);
     this.tabpgFee6.Controls.Add(this.HourFeeLab12);
     this.tabpgFee6.Controls.Add(this.HourFeeLab11);
     this.tabpgFee6.Controls.Add(this.HourFeeLab10);
     this.tabpgFee6.Controls.Add(this.HourFeeLab9);
     this.tabpgFee6.Controls.Add(this.HourFeeLab8);
     this.tabpgFee6.Controls.Add(this.HourFeeLab7);
     this.tabpgFee6.Controls.Add(this.HourFeeLab6);
     this.tabpgFee6.Controls.Add(this.HourFeeLab5);
     this.tabpgFee6.Controls.Add(this.HourFeeLab4);
     this.tabpgFee6.Controls.Add(this.HourFeeLab3);
     this.tabpgFee6.Controls.Add(this.HourFeeLab2);
     this.tabpgFee6.Controls.Add(this.HourFeeLab1);
     this.tabpgFee6.Controls.Add(this.LimitAccLab);
     this.tabpgFee6.Controls.Add(this.FreeTimeLab6);
     this.tabpgFee6.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee6.Name = "tabpgFee6";
     this.tabpgFee6.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee6.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee6.TabIndex = 5;
     this.tabpgFee6.Tag = "";
     this.tabpgFee6.Text = "收费方式6";
     //
     // HourFeeTxt24
     //
     this.HourFeeTxt24.Location = new System.Drawing.Point(287, 276);
     this.HourFeeTxt24.Name = "HourFeeTxt24";
     this.HourFeeTxt24.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt24.TabIndex = 51;
     this.HourFeeTxt24.Tag = "@num=24,@pm=金额";
     //
     // HourFeeTxt23
     //
     this.HourFeeTxt23.Location = new System.Drawing.Point(97, 276);
     this.HourFeeTxt23.Name = "HourFeeTxt23";
     this.HourFeeTxt23.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt23.TabIndex = 49;
     this.HourFeeTxt23.Tag = "@num=23,@pm=金额";
     //
     // HourFeeTxt22
     //
     this.HourFeeTxt22.Location = new System.Drawing.Point(486, 244);
     this.HourFeeTxt22.Name = "HourFeeTxt22";
     this.HourFeeTxt22.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt22.TabIndex = 47;
     this.HourFeeTxt22.Tag = "@num=22,@pm=金额";
     //
     // HourFeeTxt21
     //
     this.HourFeeTxt21.Location = new System.Drawing.Point(287, 245);
     this.HourFeeTxt21.Name = "HourFeeTxt21";
     this.HourFeeTxt21.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt21.TabIndex = 45;
     this.HourFeeTxt21.Tag = "@num=21,@pm=金额";
     //
     // HourFeeTxt20
     //
     this.HourFeeTxt20.Location = new System.Drawing.Point(97, 242);
     this.HourFeeTxt20.Name = "HourFeeTxt20";
     this.HourFeeTxt20.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt20.TabIndex = 43;
     this.HourFeeTxt20.Tag = "@num=20,@pm=金额";
     //
     // HourFeeTxt19
     //
     this.HourFeeTxt19.Location = new System.Drawing.Point(486, 213);
     this.HourFeeTxt19.Name = "HourFeeTxt19";
     this.HourFeeTxt19.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt19.TabIndex = 41;
     this.HourFeeTxt19.Tag = "@num=19,@pm=金额";
     //
     // HourFeeTxt18
     //
     this.HourFeeTxt18.Location = new System.Drawing.Point(287, 211);
     this.HourFeeTxt18.Name = "HourFeeTxt18";
     this.HourFeeTxt18.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt18.TabIndex = 39;
     this.HourFeeTxt18.Tag = "@num=18,@pm=金额";
     //
     // HourFeeTxt17
     //
     this.HourFeeTxt17.Location = new System.Drawing.Point(97, 211);
     this.HourFeeTxt17.Name = "HourFeeTxt17";
     this.HourFeeTxt17.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt17.TabIndex = 37;
     this.HourFeeTxt17.Tag = "@num=17,@pm=金额";
     //
     // HourFeeTxt16
     //
     this.HourFeeTxt16.Location = new System.Drawing.Point(486, 181);
     this.HourFeeTxt16.Name = "HourFeeTxt16";
     this.HourFeeTxt16.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt16.TabIndex = 35;
     this.HourFeeTxt16.Tag = "@num=16,@pm=金额";
     //
     // HourFeeTxt15
     //
     this.HourFeeTxt15.Location = new System.Drawing.Point(287, 177);
     this.HourFeeTxt15.Name = "HourFeeTxt15";
     this.HourFeeTxt15.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt15.TabIndex = 33;
     this.HourFeeTxt15.Tag = "@num=15,@pm=金额";
     //
     // HourFeeTxt14
     //
     this.HourFeeTxt14.Location = new System.Drawing.Point(97, 177);
     this.HourFeeTxt14.Name = "HourFeeTxt14";
     this.HourFeeTxt14.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt14.TabIndex = 31;
     this.HourFeeTxt14.Tag = "@num=14,@pm=金额";
     //
     // HourFeeTxt13
     //
     this.HourFeeTxt13.Location = new System.Drawing.Point(486, 148);
     this.HourFeeTxt13.Name = "HourFeeTxt13";
     this.HourFeeTxt13.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt13.TabIndex = 29;
     this.HourFeeTxt13.Tag = "@num=13,@pm=金额";
     //
     // HourFeeTxt12
     //
     this.HourFeeTxt12.Location = new System.Drawing.Point(287, 146);
     this.HourFeeTxt12.Name = "HourFeeTxt12";
     this.HourFeeTxt12.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt12.TabIndex = 27;
     this.HourFeeTxt12.Tag = "@num=12,@pm=金额";
     //
     // HourFeeTxt11
     //
     this.HourFeeTxt11.Location = new System.Drawing.Point(97, 146);
     this.HourFeeTxt11.Name = "HourFeeTxt11";
     this.HourFeeTxt11.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt11.TabIndex = 25;
     this.HourFeeTxt11.Tag = "@num=11,@pm=金额";
     //
     // HourFeeTxt10
     //
     this.HourFeeTxt10.Location = new System.Drawing.Point(486, 114);
     this.HourFeeTxt10.Name = "HourFeeTxt10";
     this.HourFeeTxt10.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt10.TabIndex = 23;
     this.HourFeeTxt10.Tag = "@num=10,@pm=金额";
     //
     // HourFeeTxt9
     //
     this.HourFeeTxt9.Location = new System.Drawing.Point(287, 113);
     this.HourFeeTxt9.Name = "HourFeeTxt9";
     this.HourFeeTxt9.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt9.TabIndex = 21;
     this.HourFeeTxt9.Tag = "@num=9,@pm=金额";
     //
     // HourFeeTxt8
     //
     this.HourFeeTxt8.Location = new System.Drawing.Point(97, 113);
     this.HourFeeTxt8.Name = "HourFeeTxt8";
     this.HourFeeTxt8.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt8.TabIndex = 19;
     this.HourFeeTxt8.Tag = "@num=8,@pm=金额";
     //
     // HourFeeTxt7
     //
     this.HourFeeTxt7.Location = new System.Drawing.Point(486, 81);
     this.HourFeeTxt7.Name = "HourFeeTxt7";
     this.HourFeeTxt7.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt7.TabIndex = 17;
     this.HourFeeTxt7.Tag = "@num=7,@pm=金额";
     //
     // HourFeeTxt6
     //
     this.HourFeeTxt6.Location = new System.Drawing.Point(287, 81);
     this.HourFeeTxt6.Name = "HourFeeTxt6";
     this.HourFeeTxt6.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt6.TabIndex = 15;
     this.HourFeeTxt6.Tag = "@num=6,@pm=金额";
     //
     // HourFeeTxt5
     //
     this.HourFeeTxt5.Location = new System.Drawing.Point(97, 81);
     this.HourFeeTxt5.Name = "HourFeeTxt5";
     this.HourFeeTxt5.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt5.TabIndex = 13;
     this.HourFeeTxt5.Tag = "@num=5,@pm=金额";
     //
     // HourFeeTxt4
     //
     this.HourFeeTxt4.Location = new System.Drawing.Point(486, 49);
     this.HourFeeTxt4.Name = "HourFeeTxt4";
     this.HourFeeTxt4.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt4.TabIndex = 11;
     this.HourFeeTxt4.Tag = "@num=4,@pm=金额";
     //
     // HourFeeTxt3
     //
     this.HourFeeTxt3.Location = new System.Drawing.Point(287, 48);
     this.HourFeeTxt3.Name = "HourFeeTxt3";
     this.HourFeeTxt3.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt3.TabIndex = 9;
     this.HourFeeTxt3.Tag = "@num=3,@pm=金额";
     //
     // HourFeeTxt2
     //
     this.HourFeeTxt2.Location = new System.Drawing.Point(97, 48);
     this.HourFeeTxt2.Name = "HourFeeTxt2";
     this.HourFeeTxt2.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt2.TabIndex = 7;
     this.HourFeeTxt2.Tag = "@num=2,@pm=金额";
     //
     // HourFeeTxt1
     //
     this.HourFeeTxt1.Location = new System.Drawing.Point(486, 16);
     this.HourFeeTxt1.Name = "HourFeeTxt1";
     this.HourFeeTxt1.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt1.TabIndex = 5;
     this.HourFeeTxt1.Tag = "@num=1,@pm=金额";
     //
     // LimitAccTxt
     //
     this.LimitAccTxt.Location = new System.Drawing.Point(287, 15);
     this.LimitAccTxt.Name = "LimitAccTxt";
     this.LimitAccTxt.Size = new System.Drawing.Size(91, 22);
     this.LimitAccTxt.TabIndex = 3;
     this.LimitAccTxt.Tag = "@pm=廿四时限额";
     //
     // FreeTimeTxt6
     //
     this.FreeTimeTxt6.Location = new System.Drawing.Point(97, 15);
     this.FreeTimeTxt6.Name = "FreeTimeTxt6";
     this.FreeTimeTxt6.Size = new System.Drawing.Size(91, 22);
     this.FreeTimeTxt6.TabIndex = 1;
     this.FreeTimeTxt6.Tag = "@pm=免费时长";
     //
     // HourFeeLab24
     //
     this.HourFeeLab24.AutoSize = true;
     this.HourFeeLab24.Location = new System.Drawing.Point(216, 282);
     this.HourFeeLab24.Name = "HourFeeLab24";
     this.HourFeeLab24.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab24.TabIndex = 50;
     this.HourFeeLab24.Text = "24小时收费:";
     //
     // HourFeeLab23
     //
     this.HourFeeLab23.AutoSize = true;
     this.HourFeeLab23.Location = new System.Drawing.Point(26, 279);
     this.HourFeeLab23.Name = "HourFeeLab23";
     this.HourFeeLab23.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab23.TabIndex = 48;
     this.HourFeeLab23.Text = "23小时收费:";
     //
     // HourFeeLab22
     //
     this.HourFeeLab22.AutoSize = true;
     this.HourFeeLab22.Location = new System.Drawing.Point(417, 250);
     this.HourFeeLab22.Name = "HourFeeLab22";
     this.HourFeeLab22.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab22.TabIndex = 46;
     this.HourFeeLab22.Text = "22小时收费:";
     //
     // HourFeeLab21
     //
     this.HourFeeLab21.AutoSize = true;
     this.HourFeeLab21.Location = new System.Drawing.Point(216, 250);
     this.HourFeeLab21.Name = "HourFeeLab21";
     this.HourFeeLab21.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab21.TabIndex = 44;
     this.HourFeeLab21.Text = "21小时收费:";
     //
     // HourFeeLab20
     //
     this.HourFeeLab20.AutoSize = true;
     this.HourFeeLab20.Location = new System.Drawing.Point(26, 247);
     this.HourFeeLab20.Name = "HourFeeLab20";
     this.HourFeeLab20.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab20.TabIndex = 42;
     this.HourFeeLab20.Text = "20小时收费:";
     //
     // HourFeeLab19
     //
     this.HourFeeLab19.AutoSize = true;
     this.HourFeeLab19.Location = new System.Drawing.Point(417, 218);
     this.HourFeeLab19.Name = "HourFeeLab19";
     this.HourFeeLab19.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab19.TabIndex = 40;
     this.HourFeeLab19.Text = "19小时收费:";
     //
     // HourFeeLab18
     //
     this.HourFeeLab18.AutoSize = true;
     this.HourFeeLab18.Location = new System.Drawing.Point(216, 216);
     this.HourFeeLab18.Name = "HourFeeLab18";
     this.HourFeeLab18.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab18.TabIndex = 38;
     this.HourFeeLab18.Text = "18小时收费:";
     //
     // HourFeeLab17
     //
     this.HourFeeLab17.AutoSize = true;
     this.HourFeeLab17.Location = new System.Drawing.Point(26, 216);
     this.HourFeeLab17.Name = "HourFeeLab17";
     this.HourFeeLab17.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab17.TabIndex = 36;
     this.HourFeeLab17.Text = "17小时收费:";
     //
     // HourFeeLab16
     //
     this.HourFeeLab16.AutoSize = true;
     this.HourFeeLab16.Location = new System.Drawing.Point(417, 186);
     this.HourFeeLab16.Name = "HourFeeLab16";
     this.HourFeeLab16.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab16.TabIndex = 34;
     this.HourFeeLab16.Text = "16小时收费:";
     //
     // HourFeeLab15
     //
     this.HourFeeLab15.AutoSize = true;
     this.HourFeeLab15.Location = new System.Drawing.Point(216, 183);
     this.HourFeeLab15.Name = "HourFeeLab15";
     this.HourFeeLab15.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab15.TabIndex = 32;
     this.HourFeeLab15.Text = "15小时收费:";
     //
     // HourFeeLab14
     //
     this.HourFeeLab14.AutoSize = true;
     this.HourFeeLab14.Location = new System.Drawing.Point(26, 181);
     this.HourFeeLab14.Name = "HourFeeLab14";
     this.HourFeeLab14.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab14.TabIndex = 30;
     this.HourFeeLab14.Text = "14小时收费:";
     //
     // HourFeeLab13
     //
     this.HourFeeLab13.AutoSize = true;
     this.HourFeeLab13.Location = new System.Drawing.Point(417, 151);
     this.HourFeeLab13.Name = "HourFeeLab13";
     this.HourFeeLab13.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab13.TabIndex = 28;
     this.HourFeeLab13.Text = "13小时收费:";
     //
     // HourFeeLab12
     //
     this.HourFeeLab12.AutoSize = true;
     this.HourFeeLab12.Location = new System.Drawing.Point(216, 149);
     this.HourFeeLab12.Name = "HourFeeLab12";
     this.HourFeeLab12.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab12.TabIndex = 26;
     this.HourFeeLab12.Text = "12小时收费:";
     //
     // HourFeeLab11
     //
     this.HourFeeLab11.AutoSize = true;
     this.HourFeeLab11.Location = new System.Drawing.Point(26, 151);
     this.HourFeeLab11.Name = "HourFeeLab11";
     this.HourFeeLab11.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab11.TabIndex = 24;
     this.HourFeeLab11.Text = "11小时收费:";
     //
     // HourFeeLab10
     //
     this.HourFeeLab10.AutoSize = true;
     this.HourFeeLab10.Location = new System.Drawing.Point(417, 120);
     this.HourFeeLab10.Name = "HourFeeLab10";
     this.HourFeeLab10.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab10.TabIndex = 22;
     this.HourFeeLab10.Text = "10小时收费:";
     //
     // HourFeeLab9
     //
     this.HourFeeLab9.AutoSize = true;
     this.HourFeeLab9.Location = new System.Drawing.Point(222, 120);
     this.HourFeeLab9.Name = "HourFeeLab9";
     this.HourFeeLab9.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab9.TabIndex = 20;
     this.HourFeeLab9.Text = "9小时收费:";
     //
     // HourFeeLab8
     //
     this.HourFeeLab8.AutoSize = true;
     this.HourFeeLab8.Location = new System.Drawing.Point(32, 118);
     this.HourFeeLab8.Name = "HourFeeLab8";
     this.HourFeeLab8.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab8.TabIndex = 18;
     this.HourFeeLab8.Text = "8小时收费:";
     //
     // HourFeeLab7
     //
     this.HourFeeLab7.AutoSize = true;
     this.HourFeeLab7.Location = new System.Drawing.Point(423, 87);
     this.HourFeeLab7.Name = "HourFeeLab7";
     this.HourFeeLab7.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab7.TabIndex = 16;
     this.HourFeeLab7.Text = "7小时收费:";
     //
     // HourFeeLab6
     //
     this.HourFeeLab6.AutoSize = true;
     this.HourFeeLab6.Location = new System.Drawing.Point(222, 87);
     this.HourFeeLab6.Name = "HourFeeLab6";
     this.HourFeeLab6.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab6.TabIndex = 14;
     this.HourFeeLab6.Text = "6小时收费:";
     //
     // HourFeeLab5
     //
     this.HourFeeLab5.AutoSize = true;
     this.HourFeeLab5.Location = new System.Drawing.Point(32, 85);
     this.HourFeeLab5.Name = "HourFeeLab5";
     this.HourFeeLab5.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab5.TabIndex = 12;
     this.HourFeeLab5.Text = "5小时收费:";
     //
     // HourFeeLab4
     //
     this.HourFeeLab4.AutoSize = true;
     this.HourFeeLab4.Location = new System.Drawing.Point(423, 57);
     this.HourFeeLab4.Name = "HourFeeLab4";
     this.HourFeeLab4.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab4.TabIndex = 10;
     this.HourFeeLab4.Text = "4小时收费:";
     //
     // HourFeeLab3
     //
     this.HourFeeLab3.AutoSize = true;
     this.HourFeeLab3.Location = new System.Drawing.Point(222, 54);
     this.HourFeeLab3.Name = "HourFeeLab3";
     this.HourFeeLab3.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab3.TabIndex = 8;
     this.HourFeeLab3.Text = "3小时收费:";
     //
     // HourFeeLab2
     //
     this.HourFeeLab2.AutoSize = true;
     this.HourFeeLab2.Location = new System.Drawing.Point(32, 55);
     this.HourFeeLab2.Name = "HourFeeLab2";
     this.HourFeeLab2.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab2.TabIndex = 6;
     this.HourFeeLab2.Text = "2小时收费:";
     //
     // HourFeeLab1
     //
     this.HourFeeLab1.AutoSize = true;
     this.HourFeeLab1.Location = new System.Drawing.Point(423, 22);
     this.HourFeeLab1.Name = "HourFeeLab1";
     this.HourFeeLab1.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab1.TabIndex = 4;
     this.HourFeeLab1.Text = "1小时收费:";
     //
     // LimitAccLab
     //
     this.LimitAccLab.AutoSize = true;
     this.LimitAccLab.Location = new System.Drawing.Point(216, 22);
     this.LimitAccLab.Name = "LimitAccLab";
     this.LimitAccLab.Size = new System.Drawing.Size(73, 14);
     this.LimitAccLab.TabIndex = 2;
     this.LimitAccLab.Text = "24小时限额:";
     //
     // FreeTimeLab6
     //
     this.FreeTimeLab6.AutoSize = true;
     this.FreeTimeLab6.Location = new System.Drawing.Point(26, 22);
     this.FreeTimeLab6.Name = "FreeTimeLab6";
     this.FreeTimeLab6.Size = new System.Drawing.Size(74, 14);
     this.FreeTimeLab6.TabIndex = 0;
     this.FreeTimeLab6.Text = "免费时长T0:";
     //
     // panelControl6
     //
     this.panelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl6.Controls.Add(this.btnbigCar);
     this.panelControl6.Controls.Add(this.btnMiCar);
     this.panelControl6.Controls.Add(this.btnTimeCar);
     this.panelControl6.Controls.Add(this.btnSmallCar);
     this.panelControl6.Controls.Add(this.btnMoCar);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl6.Location = new System.Drawing.Point(0, 0);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(574, 35);
     this.panelControl6.TabIndex = 61;
     //
     // btnbigCar
     //
     this.btnbigCar.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnbigCar.Appearance.Options.UseForeColor = true;
     this.btnbigCar.Location = new System.Drawing.Point(0, 4);
     this.btnbigCar.Name = "btnbigCar";
     this.btnbigCar.Size = new System.Drawing.Size(64, 28);
     this.btnbigCar.TabIndex = 70;
     this.btnbigCar.Tag = "@val=1";
     this.btnbigCar.Text = "A类车";
     this.btnbigCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnMiCar
     //
     this.btnMiCar.Location = new System.Drawing.Point(63, 4);
     this.btnMiCar.Name = "btnMiCar";
     this.btnMiCar.Size = new System.Drawing.Size(64, 28);
     this.btnMiCar.TabIndex = 69;
     this.btnMiCar.Tag = "@val=2";
     this.btnMiCar.Text = "B类车";
     this.btnMiCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnTimeCar
     //
     this.btnTimeCar.Location = new System.Drawing.Point(126, 4);
     this.btnTimeCar.Name = "btnTimeCar";
     this.btnTimeCar.Size = new System.Drawing.Size(64, 28);
     this.btnTimeCar.TabIndex = 68;
     this.btnTimeCar.Tag = "@val=3";
     this.btnTimeCar.Text = "C类车";
     this.btnTimeCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnSmallCar
     //
     this.btnSmallCar.Location = new System.Drawing.Point(190, 4);
     this.btnSmallCar.Name = "btnSmallCar";
     this.btnSmallCar.Size = new System.Drawing.Size(64, 28);
     this.btnSmallCar.TabIndex = 67;
     this.btnSmallCar.Tag = "@val=4";
     this.btnSmallCar.Text = "D类车";
     this.btnSmallCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnMoCar
     //
     this.btnMoCar.Location = new System.Drawing.Point(253, 4);
     this.btnMoCar.Name = "btnMoCar";
     this.btnMoCar.Size = new System.Drawing.Size(64, 28);
     this.btnMoCar.TabIndex = 66;
     this.btnMoCar.Tag = "@val=5";
     this.btnMoCar.Text = "E类车";
     this.btnMoCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // grpParam
     //
     this.grpParam.Controls.Add(this.panelControl2);
     this.grpParam.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpParam.Location = new System.Drawing.Point(0, 65);
     this.grpParam.Name = "grpParam";
     this.grpParam.Size = new System.Drawing.Size(647, 567);
     this.grpParam.TabIndex = 10;
     this.grpParam.Tag = "";
     this.grpParam.Text = "控制参数";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.groupControl2);
     this.panelControl2.Controls.Add(this.panelControl9);
     this.panelControl2.Controls.Add(this.panelControl5);
     this.panelControl2.Controls.Add(this.panelControl4);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 21);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(643, 541);
     this.panelControl2.TabIndex = 1;
     this.panelControl2.Tag = "@db=用户信息";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.dbDev);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl2.Location = new System.Drawing.Point(0, 388);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(643, 153);
     this.groupControl2.TabIndex = 90;
     this.groupControl2.Text = "设备信息";
     //
     // dbDev
     //
     this.dbDev.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbDev.Location = new System.Drawing.Point(2, 21);
     this.dbDev.MainView = this.gridView1;
     this.dbDev.Name = "dbDev";
     this.dbDev.Size = new System.Drawing.Size(639, 130);
     this.dbDev.TabIndex = 92;
     this.dbDev.Tag = "@db=设备定义";
     this.dbDev.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12});
     this.gridView1.GridControl = this.dbDev;
     this.gridView1.GroupPanelText = "设备信息";
     this.gridView1.HorzScrollStep = 1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged_1);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "ID";
     this.gridColumn1.FieldName = "ID";
     this.gridColumn1.Name = "gridColumn1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "名称";
     this.gridColumn2.FieldName = "名称";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "电脑";
     this.gridColumn3.FieldName = "电脑";
     this.gridColumn3.Name = "gridColumn3";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "IP地址";
     this.gridColumn4.FieldName = "IP地址";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "设备地址";
     this.gridColumn5.FieldName = "站址";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "串口";
     this.gridColumn6.FieldName = "串口";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "波特率";
     this.gridColumn7.FieldName = "波特率";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "数据位";
     this.gridColumn8.FieldName = "数据位";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "停止位";
     this.gridColumn9.FieldName = "停止位";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "通讯类别";
     this.gridColumn10.FieldName = "通讯类别";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 3;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "编号";
     this.gridColumn11.FieldName = "编号";
     this.gridColumn11.Name = "gridColumn11";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "端口";
     this.gridColumn12.FieldName = "端口";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 5;
     //
     // panelControl9
     //
     this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl9.Controls.Add(this.btnAddDev);
     this.panelControl9.Controls.Add(this.btnDelDev);
     this.panelControl9.Controls.Add(this.btnSaveDev);
     this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl9.Location = new System.Drawing.Point(0, 351);
     this.panelControl9.Name = "panelControl9";
     this.panelControl9.Size = new System.Drawing.Size(643, 37);
     this.panelControl9.TabIndex = 89;
     //
     // btnAddDev
     //
     this.btnAddDev.Location = new System.Drawing.Point(12, 6);
     this.btnAddDev.Name = "btnAddDev";
     this.btnAddDev.Size = new System.Drawing.Size(64, 28);
     this.btnAddDev.TabIndex = 3;
     this.btnAddDev.Text = "增加设备";
     this.btnAddDev.Click += new System.EventHandler(this.btnAddDev_Click);
     //
     // btnDelDev
     //
     this.btnDelDev.Location = new System.Drawing.Point(91, 6);
     this.btnDelDev.Name = "btnDelDev";
     this.btnDelDev.Size = new System.Drawing.Size(64, 28);
     this.btnDelDev.TabIndex = 2;
     this.btnDelDev.Text = "删除设备";
     this.btnDelDev.Click += new System.EventHandler(this.btnDelDev_Click);
     //
     // btnSaveDev
     //
     this.btnSaveDev.Location = new System.Drawing.Point(172, 6);
     this.btnSaveDev.Name = "btnSaveDev";
     this.btnSaveDev.Size = new System.Drawing.Size(64, 28);
     this.btnSaveDev.TabIndex = 1;
     this.btnSaveDev.Text = "保存";
     this.btnSaveDev.Click += new System.EventHandler(this.btnSaveDev_Click);
     //
     // panelControl5
     //
     this.panelControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl5.Controls.Add(this.groupBox8);
     this.panelControl5.Controls.Add(this.grpbChannel);
     this.panelControl5.Controls.Add(this.groupBox5);
     this.panelControl5.Controls.Add(this.grpbCardType);
     this.panelControl5.Controls.Add(this.groupBox4);
     this.panelControl5.Controls.Add(this.grpbAccept);
     this.panelControl5.Controls.Add(this.groupBox1);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 78);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(643, 273);
     this.panelControl5.TabIndex = 88;
     this.panelControl5.Tag = "@db=停车场管理";
     //
     // groupBox8
     //
     this.groupBox8.Controls.Add(this.checkEdit10);
     this.groupBox8.Controls.Add(this.checkEdit2);
     this.groupBox8.Location = new System.Drawing.Point(466, 173);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(174, 94);
     this.groupBox8.TabIndex = 95;
     this.groupBox8.TabStop = false;
     this.groupBox8.Tag = "@db=停车场管理";
     this.groupBox8.Text = "出入场地感";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(5, 56);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "出场地感";
     this.checkEdit10.Size = new System.Drawing.Size(100, 19);
     this.checkEdit10.TabIndex = 112;
     this.checkEdit10.Tag = "@fld=出场地感";
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(5, 31);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "入场地感";
     this.checkEdit2.Size = new System.Drawing.Size(70, 19);
     this.checkEdit2.TabIndex = 111;
     this.checkEdit2.Tag = "@fld=入场地感";
     //
     // grpbChannel
     //
     this.grpbChannel.Controls.Add(this.plCarType);
     this.grpbChannel.Controls.Add(this.plCardType);
     this.grpbChannel.Controls.Add(this.checkBox5);
     this.grpbChannel.Controls.Add(this.radChannelCard);
     this.grpbChannel.Controls.Add(this.radChannelCar);
     this.grpbChannel.Location = new System.Drawing.Point(299, 1);
     this.grpbChannel.Name = "grpbChannel";
     this.grpbChannel.Size = new System.Drawing.Size(341, 84);
     this.grpbChannel.TabIndex = 94;
     this.grpbChannel.TabStop = false;
     this.grpbChannel.Tag = "";
     this.grpbChannel.Text = "通道选择";
     //
     // plCarType
     //
     this.plCarType.Controls.Add(this.checkEdit13);
     this.plCarType.Controls.Add(this.checkEdit14);
     this.plCarType.Controls.Add(this.checkEdit15);
     this.plCarType.Controls.Add(this.checkEdit16);
     this.plCarType.Location = new System.Drawing.Point(144, 19);
     this.plCarType.Name = "plCarType";
     this.plCarType.Size = new System.Drawing.Size(175, 52);
     this.plCarType.TabIndex = 140;
     this.plCarType.Tag = "@db=停车场管理";
     //
     // checkEdit13
     //
     this.checkEdit13.Location = new System.Drawing.Point(223, 26);
     this.checkEdit13.Name = "checkEdit13";
     this.checkEdit13.Properties.Caption = "D类车";
     this.checkEdit13.Size = new System.Drawing.Size(65, 19);
     this.checkEdit13.TabIndex = 132;
     this.checkEdit13.Tag = "@val=4,@grp=通道内容";
     //
     // checkEdit14
     //
     this.checkEdit14.Location = new System.Drawing.Point(159, 26);
     this.checkEdit14.Name = "checkEdit14";
     this.checkEdit14.Properties.Caption = "C类车";
     this.checkEdit14.Size = new System.Drawing.Size(58, 19);
     this.checkEdit14.TabIndex = 131;
     this.checkEdit14.Tag = "@val=3,@grp=通道内容";
     //
     // checkEdit15
     //
     this.checkEdit15.Location = new System.Drawing.Point(91, 26);
     this.checkEdit15.Name = "checkEdit15";
     this.checkEdit15.Properties.Caption = "B类车";
     this.checkEdit15.Size = new System.Drawing.Size(62, 19);
     this.checkEdit15.TabIndex = 130;
     this.checkEdit15.Tag = "@val=2,@grp=通道内容";
     //
     // checkEdit16
     //
     this.checkEdit16.Location = new System.Drawing.Point(20, 29);
     this.checkEdit16.Name = "checkEdit16";
     this.checkEdit16.Properties.Caption = "A类车";
     this.checkEdit16.Size = new System.Drawing.Size(59, 19);
     this.checkEdit16.TabIndex = 129;
     this.checkEdit16.Tag = "@val=1,@grp=通道内容";
     //
     // plCardType
     //
     this.plCardType.Controls.Add(this.checkEdit3);
     this.plCardType.Controls.Add(this.checkEdit4);
     this.plCardType.Controls.Add(this.checkEdit5);
     this.plCardType.Controls.Add(this.checkEdit6);
     this.plCardType.Controls.Add(this.checkEdit7);
     this.plCardType.Controls.Add(this.checkEdit8);
     this.plCardType.Controls.Add(this.checkEdit9);
     this.plCardType.Location = new System.Drawing.Point(6, 15);
     this.plCardType.Name = "plCardType";
     this.plCardType.Size = new System.Drawing.Size(132, 64);
     this.plCardType.TabIndex = 12;
     this.plCardType.Tag = "@db=停车场管理";
     this.plCardType.Visible = false;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(73, 36);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "贵宾卡";
     this.checkEdit3.Size = new System.Drawing.Size(65, 19);
     this.checkEdit3.TabIndex = 139;
     this.checkEdit3.Tag = "@val=8,@grp=通道内容";
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(153, 36);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "储值卡";
     this.checkEdit4.Size = new System.Drawing.Size(58, 19);
     this.checkEdit4.TabIndex = 138;
     this.checkEdit4.Tag = "@val=9,@grp=通道内容";
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(153, 10);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "临时卡";
     this.checkEdit5.Size = new System.Drawing.Size(58, 19);
     this.checkEdit5.TabIndex = 137;
     this.checkEdit5.Tag = "@val=5,@grp=通道内容";
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(73, 10);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "时段卡";
     this.checkEdit6.Size = new System.Drawing.Size(62, 19);
     this.checkEdit6.TabIndex = 136;
     this.checkEdit6.Tag = "@val=4,@grp=通道内容";
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(15, 36);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "免费卡";
     this.checkEdit7.Size = new System.Drawing.Size(61, 19);
     this.checkEdit7.TabIndex = 135;
     this.checkEdit7.Tag = "@val=6,@grp=通道内容";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(236, 10);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "临免卡";
     this.checkEdit8.Size = new System.Drawing.Size(64, 19);
     this.checkEdit8.TabIndex = 134;
     this.checkEdit8.Tag = "@val=7,@grp=通道内容";
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 11);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "期卡";
     this.checkEdit9.Size = new System.Drawing.Size(48, 19);
     this.checkEdit9.TabIndex = 133;
     this.checkEdit9.Tag = "@val=3,@grp=通道内容";
     //
     // checkBox5
     //
     this.checkBox5.AutoSize = true;
     this.checkBox5.Location = new System.Drawing.Point(101, 155);
     this.checkBox5.Name = "checkBox5";
     this.checkBox5.Size = new System.Drawing.Size(50, 18);
     this.checkBox5.TabIndex = 2;
     this.checkBox5.Text = "大车";
     this.checkBox5.UseVisualStyleBackColor = true;
     //
     // radChannelCard
     //
     this.radChannelCard.AutoSize = true;
     this.radChannelCard.Location = new System.Drawing.Point(119, 0);
     this.radChannelCard.Name = "radChannelCard";
     this.radChannelCard.Size = new System.Drawing.Size(61, 18);
     this.radChannelCard.TabIndex = 1;
     this.radChannelCard.Text = "按卡类";
     this.radChannelCard.UseVisualStyleBackColor = true;
     this.radChannelCard.CheckedChanged += new System.EventHandler(this.radChannel_CheckedChanged);
     //
     // radChannelCar
     //
     this.radChannelCar.AutoSize = true;
     this.radChannelCar.Checked = true;
     this.radChannelCar.Location = new System.Drawing.Point(60, 0);
     this.radChannelCar.Name = "radChannelCar";
     this.radChannelCar.Size = new System.Drawing.Size(61, 18);
     this.radChannelCar.TabIndex = 0;
     this.radChannelCar.TabStop = true;
     this.radChannelCar.Text = "按车型";
     this.radChannelCar.UseVisualStyleBackColor = true;
     this.radChannelCar.CheckedChanged += new System.EventHandler(this.radChannel_CheckedChanged);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.textEdit1);
     this.groupBox5.Controls.Add(this.label3);
     this.groupBox5.Controls.Add(this.checkEdit1);
     this.groupBox5.Location = new System.Drawing.Point(3, 172);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(293, 95);
     this.groupBox5.TabIndex = 93;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "中央收费";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(187, 41);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(101, 21);
     this.textEdit1.TabIndex = 27;
     this.textEdit1.Tag = "@fld=有效期报警";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(103, 44);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(81, 14);
     this.label3.TabIndex = 120;
     this.label3.Text = "有效时间(分):";
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(7, 43);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "是否中央收费";
     this.checkEdit1.Size = new System.Drawing.Size(97, 19);
     this.checkEdit1.TabIndex = 26;
     this.checkEdit1.Tag = "@fld=允许车辆入场";
     //
     // grpbCardType
     //
     this.grpbCardType.Controls.Add(this.checkBox17);
     this.grpbCardType.Controls.Add(this.GbkChk1);
     this.grpbCardType.Controls.Add(this.CzkChk1);
     this.grpbCardType.Controls.Add(this.LskChk1);
     this.grpbCardType.Controls.Add(this.SdkChk1);
     this.grpbCardType.Controls.Add(this.MfkChk1);
     this.grpbCardType.Controls.Add(this.LmkChk1);
     this.grpbCardType.Controls.Add(this.QkChk1);
     this.grpbCardType.Location = new System.Drawing.Point(299, 86);
     this.grpbCardType.Name = "grpbCardType";
     this.grpbCardType.Size = new System.Drawing.Size(341, 84);
     this.grpbCardType.TabIndex = 92;
     this.grpbCardType.TabStop = false;
     this.grpbCardType.Tag = "@db=停车场管理";
     this.grpbCardType.Text = "卡类允许(允许该卡类入场)";
     //
     // checkBox17
     //
     this.checkBox17.Location = new System.Drawing.Point(240, 58);
     this.checkBox17.Name = "checkBox17";
     this.checkBox17.Properties.Caption = "一卡通";
     this.checkBox17.Size = new System.Drawing.Size(70, 19);
     this.checkBox17.TabIndex = 125;
     this.checkBox17.Tag = "@val=10,@grp=卡类允许";
     //
     // GbkChk1
     //
     this.GbkChk1.Location = new System.Drawing.Point(90, 58);
     this.GbkChk1.Name = "GbkChk1";
     this.GbkChk1.Properties.Caption = "贵宾卡";
     this.GbkChk1.Size = new System.Drawing.Size(65, 19);
     this.GbkChk1.TabIndex = 124;
     this.GbkChk1.Tag = "@val=8,@grp=卡类允许";
     //
     // CzkChk1
     //
     this.CzkChk1.Location = new System.Drawing.Point(167, 58);
     this.CzkChk1.Name = "CzkChk1";
     this.CzkChk1.Properties.Caption = "储值卡";
     this.CzkChk1.Size = new System.Drawing.Size(58, 19);
     this.CzkChk1.TabIndex = 123;
     this.CzkChk1.Tag = "@val=9,@grp=卡类允许";
     //
     // LskChk1
     //
     this.LskChk1.Location = new System.Drawing.Point(167, 21);
     this.LskChk1.Name = "LskChk1";
     this.LskChk1.Properties.Caption = "临时卡";
     this.LskChk1.Size = new System.Drawing.Size(58, 19);
     this.LskChk1.TabIndex = 122;
     this.LskChk1.Tag = "@val=5,@grp=卡类允许";
     //
     // SdkChk1
     //
     this.SdkChk1.Location = new System.Drawing.Point(90, 21);
     this.SdkChk1.Name = "SdkChk1";
     this.SdkChk1.Properties.Caption = "时段卡";
     this.SdkChk1.Size = new System.Drawing.Size(62, 19);
     this.SdkChk1.TabIndex = 121;
     this.SdkChk1.Tag = "@val=4,@grp=卡类允许";
     //
     // MfkChk1
     //
     this.MfkChk1.Location = new System.Drawing.Point(19, 58);
     this.MfkChk1.Name = "MfkChk1";
     this.MfkChk1.Properties.Caption = "免费卡";
     this.MfkChk1.Size = new System.Drawing.Size(61, 19);
     this.MfkChk1.TabIndex = 120;
     this.MfkChk1.Tag = "@val=6,@grp=卡类允许";
     //
     // LmkChk1
     //
     this.LmkChk1.Location = new System.Drawing.Point(240, 21);
     this.LmkChk1.Name = "LmkChk1";
     this.LmkChk1.Properties.Caption = "临免卡";
     this.LmkChk1.Size = new System.Drawing.Size(64, 19);
     this.LmkChk1.TabIndex = 119;
     this.LmkChk1.Tag = "@val=7,@grp=卡类允许";
     //
     // QkChk1
     //
     this.QkChk1.Location = new System.Drawing.Point(19, 21);
     this.QkChk1.Name = "QkChk1";
     this.QkChk1.Properties.Caption = "期卡";
     this.QkChk1.Size = new System.Drawing.Size(48, 19);
     this.QkChk1.TabIndex = 118;
     this.QkChk1.Tag = "@val=3,@grp=卡类允许";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.checkBox1);
     this.groupBox4.Controls.Add(this.checkBox2);
     this.groupBox4.Location = new System.Drawing.Point(299, 173);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(161, 94);
     this.groupBox4.TabIndex = 91;
     this.groupBox4.TabStop = false;
     this.groupBox4.Tag = "@db=停车场管理";
     this.groupBox4.Text = "入口满位处理";
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(6, 31);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Properties.Caption = "允许车辆入场";
     this.checkBox1.Size = new System.Drawing.Size(100, 19);
     this.checkBox1.TabIndex = 111;
     this.checkBox1.Tag = "@fld=允许车辆入场";
     //
     // checkBox2
     //
     this.checkBox2.Location = new System.Drawing.Point(6, 56);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Properties.Caption = "允许出临时卡";
     this.checkBox2.Size = new System.Drawing.Size(100, 19);
     this.checkBox2.TabIndex = 110;
     this.checkBox2.Tag = "@fld=允许出临时卡";
     //
     // grpbAccept
     //
     this.grpbAccept.Controls.Add(this.checkBox16);
     this.grpbAccept.Controls.Add(this.GbkChk);
     this.grpbAccept.Controls.Add(this.CzkChk);
     this.grpbAccept.Controls.Add(this.LskChk);
     this.grpbAccept.Controls.Add(this.SdkChk);
     this.grpbAccept.Controls.Add(this.MfkChk);
     this.grpbAccept.Controls.Add(this.LmkChk);
     this.grpbAccept.Controls.Add(this.QkChk);
     this.grpbAccept.Location = new System.Drawing.Point(3, 86);
     this.grpbAccept.Name = "grpbAccept";
     this.grpbAccept.Size = new System.Drawing.Size(293, 84);
     this.grpbAccept.TabIndex = 90;
     this.grpbAccept.TabStop = false;
     this.grpbAccept.Tag = "@db=停车场管理";
     this.grpbAccept.Text = "放行控制(需要上位机确认)";
     //
     // checkBox16
     //
     this.checkBox16.Location = new System.Drawing.Point(223, 58);
     this.checkBox16.Name = "checkBox16";
     this.checkBox16.Properties.Caption = "一卡通";
     this.checkBox16.Size = new System.Drawing.Size(70, 19);
     this.checkBox16.TabIndex = 25;
     this.checkBox16.Tag = "@val=10,@grp=放行控制";
     //
     // GbkChk
     //
     this.GbkChk.Location = new System.Drawing.Point(75, 58);
     this.GbkChk.Name = "GbkChk";
     this.GbkChk.Properties.Caption = "贵宾卡";
     this.GbkChk.Size = new System.Drawing.Size(65, 19);
     this.GbkChk.TabIndex = 21;
     this.GbkChk.Tag = "@val=8,@grp=放行控制";
     //
     // CzkChk
     //
     this.CzkChk.Location = new System.Drawing.Point(146, 59);
     this.CzkChk.Name = "CzkChk";
     this.CzkChk.Properties.Caption = "储值卡";
     this.CzkChk.Size = new System.Drawing.Size(58, 19);
     this.CzkChk.TabIndex = 24;
     this.CzkChk.Tag = "@val=9,@grp=放行控制";
     //
     // LskChk
     //
     this.LskChk.Location = new System.Drawing.Point(146, 22);
     this.LskChk.Name = "LskChk";
     this.LskChk.Properties.Caption = "临时卡";
     this.LskChk.Size = new System.Drawing.Size(58, 19);
     this.LskChk.TabIndex = 18;
     this.LskChk.Tag = "@val=5,@grp=放行控制";
     //
     // SdkChk
     //
     this.SdkChk.Location = new System.Drawing.Point(75, 22);
     this.SdkChk.Name = "SdkChk";
     this.SdkChk.Properties.Caption = "时段卡";
     this.SdkChk.Size = new System.Drawing.Size(62, 19);
     this.SdkChk.TabIndex = 17;
     this.SdkChk.Tag = "@val=4,@grp=放行控制";
     //
     // MfkChk
     //
     this.MfkChk.Location = new System.Drawing.Point(17, 59);
     this.MfkChk.Name = "MfkChk";
     this.MfkChk.Properties.Caption = "免费卡";
     this.MfkChk.Size = new System.Drawing.Size(61, 19);
     this.MfkChk.TabIndex = 20;
     this.MfkChk.Tag = "@val=6,@grp=放行控制";
     //
     // LmkChk
     //
     this.LmkChk.Location = new System.Drawing.Point(223, 21);
     this.LmkChk.Name = "LmkChk";
     this.LmkChk.Properties.Caption = "临免卡";
     this.LmkChk.Size = new System.Drawing.Size(64, 19);
     this.LmkChk.TabIndex = 19;
     this.LmkChk.Tag = "@val=7,@grp=放行控制";
     //
     // QkChk
     //
     this.QkChk.Location = new System.Drawing.Point(17, 23);
     this.QkChk.Name = "QkChk";
     this.QkChk.Properties.Caption = "期卡";
     this.QkChk.Size = new System.Drawing.Size(48, 19);
     this.QkChk.TabIndex = 16;
     this.QkChk.Tag = "@val=3,@grp=放行控制";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.LsCardTpComb);
     this.groupBox1.Controls.Add(this.CarTypeComb);
     this.groupBox1.Controls.Add(this.LsCardTpLab);
     this.groupBox1.Controls.Add(this.CarTypeLab);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(296, 85);
     this.groupBox1.TabIndex = 89;
     this.groupBox1.TabStop = false;
     this.groupBox1.Tag = "@db=停车场管理";
     this.groupBox1.Text = "入口满位处理";
     //
     // LsCardTpComb
     //
     this.LsCardTpComb.Location = new System.Drawing.Point(102, 48);
     this.LsCardTpComb.Name = "LsCardTpComb";
     this.LsCardTpComb.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LsCardTpComb.Properties.NullText = "";
     this.LsCardTpComb.Size = new System.Drawing.Size(145, 21);
     this.LsCardTpComb.TabIndex = 15;
     this.LsCardTpComb.Tag = "@fld=临时卡方式";
     //
     // CarTypeComb
     //
     this.CarTypeComb.Location = new System.Drawing.Point(102, 21);
     this.CarTypeComb.Name = "CarTypeComb";
     this.CarTypeComb.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.CarTypeComb.Properties.NullText = "";
     this.CarTypeComb.Size = new System.Drawing.Size(145, 21);
     this.CarTypeComb.TabIndex = 14;
     this.CarTypeComb.Tag = "@fld=按键默认车型";
     //
     // LsCardTpLab
     //
     this.LsCardTpLab.AutoSize = true;
     this.LsCardTpLab.Location = new System.Drawing.Point(22, 51);
     this.LsCardTpLab.Name = "LsCardTpLab";
     this.LsCardTpLab.Size = new System.Drawing.Size(71, 14);
     this.LsCardTpLab.TabIndex = 119;
     this.LsCardTpLab.Text = "临时卡方式:";
     //
     // CarTypeLab
     //
     this.CarTypeLab.AutoSize = true;
     this.CarTypeLab.Location = new System.Drawing.Point(12, 24);
     this.CarTypeLab.Name = "CarTypeLab";
     this.CarTypeLab.Size = new System.Drawing.Size(83, 14);
     this.CarTypeLab.TabIndex = 118;
     this.CarTypeLab.Text = "按键默认车型:";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.comboBox2);
     this.panelControl4.Controls.Add(this.MulInOutChk);
     this.panelControl4.Controls.Add(this.IsOutComChk);
     this.panelControl4.Controls.Add(this.SmaPrkLogComb);
     this.panelControl4.Controls.Add(this.DevAddrTxt);
     this.panelControl4.Controls.Add(this.ValDayAlmTxt);
     this.panelControl4.Controls.Add(this.comboBox1);
     this.panelControl4.Controls.Add(this.label4);
     this.panelControl4.Controls.Add(this.DevAddrLab);
     this.panelControl4.Controls.Add(this.SmaPrkLogLab);
     this.panelControl4.Controls.Add(this.CardBalAlmLab);
     this.panelControl4.Controls.Add(this.ValDayAlmLab);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 0);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(643, 78);
     this.panelControl4.TabIndex = 87;
     this.panelControl4.Tag = "@db=停车场管理";
     //
     // comboBox2
     //
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
     "天敏卡",
     "MINI卡"});
     this.comboBox2.Location = new System.Drawing.Point(239, 51);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(83, 22);
     this.comboBox2.TabIndex = 103;
     this.comboBox2.Tag = "@fld=视频卡";
     //
     // MulInOutChk
     //
     this.MulInOutChk.Location = new System.Drawing.Point(328, 53);
     this.MulInOutChk.Name = "MulInOutChk";
     this.MulInOutChk.Properties.Caption = "进出场逻辑控制(多进多出)";
     this.MulInOutChk.Size = new System.Drawing.Size(177, 19);
     this.MulInOutChk.TabIndex = 12;
     this.MulInOutChk.Tag = "@fld=进出场逻辑控制";
     //
     // IsOutComChk
     //
     this.IsOutComChk.Location = new System.Drawing.Point(505, 52);
     this.IsOutComChk.Name = "IsOutComChk";
     this.IsOutComChk.Properties.Caption = "是否允许脱机";
     this.IsOutComChk.Size = new System.Drawing.Size(100, 19);
     this.IsOutComChk.TabIndex = 13;
     this.IsOutComChk.Tag = "@fld=允许脱机";
     //
     // SmaPrkLogComb
     //
     this.SmaPrkLogComb.Location = new System.Drawing.Point(74, 51);
     this.SmaPrkLogComb.Name = "SmaPrkLogComb";
     this.SmaPrkLogComb.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SmaPrkLogComb.Properties.NullText = "";
     this.SmaPrkLogComb.Size = new System.Drawing.Size(109, 21);
     this.SmaPrkLogComb.TabIndex = 11;
     this.SmaPrkLogComb.Tag = "@fld=场内场逻辑";
     //
     // DevAddrTxt
     //
     this.DevAddrTxt.Location = new System.Drawing.Point(74, 18);
     this.DevAddrTxt.Name = "DevAddrTxt";
     this.DevAddrTxt.Size = new System.Drawing.Size(109, 21);
     this.DevAddrTxt.TabIndex = 7;
     this.DevAddrTxt.Tag = "@fld=名称";
     //
     // ValDayAlmTxt
     //
     this.ValDayAlmTxt.Location = new System.Drawing.Point(500, 18);
     this.ValDayAlmTxt.Name = "ValDayAlmTxt";
     this.ValDayAlmTxt.Size = new System.Drawing.Size(101, 21);
     this.ValDayAlmTxt.TabIndex = 9;
     this.ValDayAlmTxt.Tag = "@fld=有效期报警";
     //
     // comboBox1
     //
     this.comboBox1.Location = new System.Drawing.Point(288, 18);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(108, 21);
     this.comboBox1.TabIndex = 8;
     this.comboBox1.Tag = "@fld=卡余额报警";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(189, 54);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 14);
     this.label4.TabIndex = 102;
     this.label4.Text = "视频卡:";
     //
     // DevAddrLab
     //
     this.DevAddrLab.AutoSize = true;
     this.DevAddrLab.Location = new System.Drawing.Point(9, 21);
     this.DevAddrLab.Name = "DevAddrLab";
     this.DevAddrLab.Size = new System.Drawing.Size(59, 14);
     this.DevAddrLab.TabIndex = 98;
     this.DevAddrLab.Text = "设备名称:";
     //
     // SmaPrkLogLab
     //
     this.SmaPrkLogLab.AutoSize = true;
     this.SmaPrkLogLab.Location = new System.Drawing.Point(8, 58);
     this.SmaPrkLogLab.Name = "SmaPrkLogLab";
     this.SmaPrkLogLab.Size = new System.Drawing.Size(71, 14);
     this.SmaPrkLogLab.TabIndex = 101;
     this.SmaPrkLogLab.Text = "场内场逻辑:";
     //
     // CardBalAlmLab
     //
     this.CardBalAlmLab.AutoSize = true;
     this.CardBalAlmLab.Location = new System.Drawing.Point(189, 21);
     this.CardBalAlmLab.Name = "CardBalAlmLab";
     this.CardBalAlmLab.Size = new System.Drawing.Size(93, 14);
     this.CardBalAlmLab.TabIndex = 100;
     this.CardBalAlmLab.Text = "卡余额报警(元):";
     //
     // ValDayAlmLab
     //
     this.ValDayAlmLab.AutoSize = true;
     this.ValDayAlmLab.Location = new System.Drawing.Point(401, 21);
     this.ValDayAlmLab.Name = "ValDayAlmLab";
     this.ValDayAlmLab.Size = new System.Drawing.Size(93, 14);
     this.ValDayAlmLab.TabIndex = 99;
     this.ValDayAlmLab.Text = "有效期报警(天):";
     //
     // panBaseInfo
     //
     this.panBaseInfo.Controls.Add(this.panelControl16);
     this.panBaseInfo.Dock = System.Windows.Forms.DockStyle.Top;
     this.panBaseInfo.Location = new System.Drawing.Point(0, 0);
     this.panBaseInfo.Name = "panBaseInfo";
     this.panBaseInfo.Size = new System.Drawing.Size(647, 65);
     this.panBaseInfo.TabIndex = 9;
     this.panBaseInfo.Tag = "@db=停车场管理";
     this.panBaseInfo.Text = "基本信息";
     //
     // panelControl16
     //
     this.panelControl16.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl16.Controls.Add(this.RetainStaTxt);
     this.panelControl16.Controls.Add(this.TypeCombo);
     this.panelControl16.Controls.Add(this.AllNoTxt);
     this.panelControl16.Controls.Add(this.RetainStaLab);
     this.panelControl16.Controls.Add(this.AllNoLab);
     this.panelControl16.Controls.Add(this.StallNoTxt);
     this.panelControl16.Controls.Add(this.ComIpTxt);
     this.panelControl16.Controls.Add(this.TxtStalname);
     this.panelControl16.Controls.Add(this.ComIpLab);
     this.panelControl16.Controls.Add(this.TypeLab);
     this.panelControl16.Controls.Add(this.StallNameLab);
     this.panelControl16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl16.Location = new System.Drawing.Point(2, 21);
     this.panelControl16.Name = "panelControl16";
     this.panelControl16.Size = new System.Drawing.Size(643, 42);
     this.panelControl16.TabIndex = 1;
     this.panelControl16.Tag = "@db=停车场管理";
     //
     // RetainStaTxt
     //
     this.RetainStaTxt.Location = new System.Drawing.Point(336, 15);
     this.RetainStaTxt.Name = "RetainStaTxt";
     this.RetainStaTxt.Size = new System.Drawing.Size(98, 21);
     this.RetainStaTxt.TabIndex = 5;
     this.RetainStaTxt.Tag = "@fld=保留车位";
     //
     // TypeCombo
     //
     this.TypeCombo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.TypeCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.TypeCombo.Enabled = false;
     this.TypeCombo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.TypeCombo.FormattingEnabled = true;
     this.TypeCombo.Items.AddRange(new object[] {
     "大场",
     "场内场",
     "门岗"});
     this.TypeCombo.Location = new System.Drawing.Point(179, 14);
     this.TypeCombo.Name = "TypeCombo";
     this.TypeCombo.Size = new System.Drawing.Size(88, 22);
     this.TypeCombo.TabIndex = 104;
     this.TypeCombo.Tag = "@fld=类型";
     //
     // AllNoTxt
     //
     this.AllNoTxt.Location = new System.Drawing.Point(488, 14);
     this.AllNoTxt.Name = "AllNoTxt";
     this.AllNoTxt.Size = new System.Drawing.Size(103, 21);
     this.AllNoTxt.TabIndex = 4;
     this.AllNoTxt.Tag = "@fld=总车位数";
     //
     // RetainStaLab
     //
     this.RetainStaLab.AutoSize = true;
     this.RetainStaLab.Location = new System.Drawing.Point(273, 18);
     this.RetainStaLab.Name = "RetainStaLab";
     this.RetainStaLab.Size = new System.Drawing.Size(59, 14);
     this.RetainStaLab.TabIndex = 86;
     this.RetainStaLab.Text = "保留车位:";
     //
     // AllNoLab
     //
     this.AllNoLab.AutoSize = true;
     this.AllNoLab.Location = new System.Drawing.Point(440, 17);
     this.AllNoLab.Name = "AllNoLab";
     this.AllNoLab.Size = new System.Drawing.Size(47, 14);
     this.AllNoLab.TabIndex = 85;
     this.AllNoLab.Text = "总车位:";
     //
     // StallNoTxt
     //
     this.StallNoTxt.Enabled = false;
     this.StallNoTxt.Location = new System.Drawing.Point(630, 50);
     this.StallNoTxt.Name = "StallNoTxt";
     this.StallNoTxt.Size = new System.Drawing.Size(10, 21);
     this.StallNoTxt.TabIndex = 3;
     this.StallNoTxt.Tag = "@fld=编号";
     //
     // ComIpTxt
     //
     this.ComIpTxt.Location = new System.Drawing.Point(336, 15);
     this.ComIpTxt.Name = "ComIpTxt";
     this.ComIpTxt.Size = new System.Drawing.Size(93, 21);
     this.ComIpTxt.TabIndex = 6;
     this.ComIpTxt.Tag = "@fld=电脑IP";
     this.ComIpTxt.TextChanged += new System.EventHandler(this.ComIpTxt_TextChanged);
     //
     // TxtStalname
     //
     this.TxtStalname.Location = new System.Drawing.Point(45, 15);
     this.TxtStalname.Name = "TxtStalname";
     this.TxtStalname.Size = new System.Drawing.Size(94, 21);
     this.TxtStalname.TabIndex = 1;
     this.TxtStalname.Tag = "@fld=名称";
     //
     // ComIpLab
     //
     this.ComIpLab.AutoSize = true;
     this.ComIpLab.Location = new System.Drawing.Point(274, 18);
     this.ComIpLab.Name = "ComIpLab";
     this.ComIpLab.Size = new System.Drawing.Size(46, 14);
     this.ComIpLab.TabIndex = 72;
     this.ComIpLab.Text = "电脑IP:";
     //
     // TypeLab
     //
     this.TypeLab.AutoSize = true;
     this.TypeLab.Location = new System.Drawing.Point(145, 18);
     this.TypeLab.Name = "TypeLab";
     this.TypeLab.Size = new System.Drawing.Size(35, 14);
     this.TypeLab.TabIndex = 71;
     this.TypeLab.Text = "类别:";
     //
     // StallNameLab
     //
     this.StallNameLab.AutoSize = true;
     this.StallNameLab.Location = new System.Drawing.Point(9, 18);
     this.StallNameLab.Name = "StallNameLab";
     this.StallNameLab.Size = new System.Drawing.Size(35, 14);
     this.StallNameLab.TabIndex = 70;
     this.StallNameLab.Text = "名称:";
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.radfee2);
     this.groupControl1.Controls.Add(this.radfee6);
     this.groupControl1.Controls.Add(this.radfee1);
     this.groupControl1.Controls.Add(this.radfee5);
     this.groupControl1.Controls.Add(this.radfee3);
     this.groupControl1.Controls.Add(this.radfee4);
     this.groupControl1.Location = new System.Drawing.Point(1, 1);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(557, 37);
     this.groupControl1.TabIndex = 6;
     this.groupControl1.Text = "groupControl1";
     //
     // radfee2
     //
     this.radfee2.AutoSize = true;
     this.radfee2.Location = new System.Drawing.Point(76, 6);
     this.radfee2.Name = "radfee2";
     this.radfee2.Size = new System.Drawing.Size(59, 16);
     this.radfee2.TabIndex = 10;
     this.radfee2.Tag = "@pm=方式代码,@val=2";
     this.radfee2.Text = "收费二";
     this.radfee2.UseVisualStyleBackColor = true;
     //
     // radfee6
     //
     this.radfee6.AutoSize = true;
     this.radfee6.Location = new System.Drawing.Point(381, 5);
     this.radfee6.Name = "radfee6";
     this.radfee6.Size = new System.Drawing.Size(59, 16);
     this.radfee6.TabIndex = 14;
     this.radfee6.Tag = "@pm=方式代码,@val=6";
     this.radfee6.Text = "收费六";
     this.radfee6.UseVisualStyleBackColor = true;
     //
     // radfee1
     //
     this.radfee1.AutoSize = true;
     this.radfee1.Checked = true;
     this.radfee1.Location = new System.Drawing.Point(3, 5);
     this.radfee1.Name = "radfee1";
     this.radfee1.Size = new System.Drawing.Size(59, 16);
     this.radfee1.TabIndex = 9;
     this.radfee1.TabStop = true;
     this.radfee1.Tag = "@pm=方式代码,@val=1";
     this.radfee1.Text = "收费一";
     this.radfee1.UseVisualStyleBackColor = true;
     //
     // radfee5
     //
     this.radfee5.AutoSize = true;
     this.radfee5.Location = new System.Drawing.Point(316, 5);
     this.radfee5.Name = "radfee5";
     this.radfee5.Size = new System.Drawing.Size(59, 16);
     this.radfee5.TabIndex = 13;
     this.radfee5.Tag = "@pm=方式代码,@val=5";
     this.radfee5.Text = "收费五";
     this.radfee5.UseVisualStyleBackColor = true;
     //
     // radfee3
     //
     this.radfee3.AutoSize = true;
     this.radfee3.Location = new System.Drawing.Point(161, 6);
     this.radfee3.Name = "radfee3";
     this.radfee3.Size = new System.Drawing.Size(59, 16);
     this.radfee3.TabIndex = 11;
     this.radfee3.Tag = "@pm=方式代码,@val=3";
     this.radfee3.Text = "收费三";
     this.radfee3.UseVisualStyleBackColor = true;
     //
     // radfee4
     //
     this.radfee4.AutoSize = true;
     this.radfee4.Location = new System.Drawing.Point(236, 6);
     this.radfee4.Name = "radfee4";
     this.radfee4.Size = new System.Drawing.Size(59, 16);
     this.radfee4.TabIndex = 12;
     this.radfee4.Tag = "@pm=方式代码,@val=4";
     this.radfee4.Text = "收费四";
     this.radfee4.UseVisualStyleBackColor = true;
     //
     // FrmParkStallSet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(852, 727);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.panelControl1);
     this.Name = "FrmParkStallSet";
     this.Text = "停车场设置";
     this.Load += new System.EventHandler(this.ParkStallSetFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trvParkStall)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpFee)).EndInit();
     this.grpFee.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
     this.panelControl8.ResumeLayout(false);
     this.tabFeeStd.ResumeLayout(false);
     this.tabpgFee1.ResumeLayout(false);
     this.tabpgFee1.PerformLayout();
     this.tabpgFee2.ResumeLayout(false);
     this.tabpgFee2.PerformLayout();
     this.tabpgFee3.ResumeLayout(false);
     this.tabpgFee3.PerformLayout();
     this.tabpgFee4.ResumeLayout(false);
     this.tabpgFee4.PerformLayout();
     this.tabpgFee5.ResumeLayout(false);
     this.tabpgFee5.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     this.groupBox7.ResumeLayout(false);
     this.groupBox7.PerformLayout();
     this.tabpgFee6.ResumeLayout(false);
     this.tabpgFee6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpParam)).EndInit();
     this.grpParam.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbDev)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
     this.panelControl9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     this.grpbChannel.ResumeLayout(false);
     this.grpbChannel.PerformLayout();
     this.plCarType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit15.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit16.Properties)).EndInit();
     this.plCardType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     this.grpbCardType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkBox17.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk1.Properties)).EndInit();
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox2.Properties)).EndInit();
     this.grpbAccept.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkBox16.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LsCardTpComb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CarTypeComb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     this.panelControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MulInOutChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsOutComChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmaPrkLogComb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DevAddrTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ValDayAlmTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panBaseInfo)).EndInit();
     this.panBaseInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).EndInit();
     this.panelControl16.ResumeLayout(false);
     this.panelControl16.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RetainStaTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AllNoTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StallNoTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ComIpTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStalname.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.treeList1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn3});
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Top;
     this.treeList1.KeyFieldName = "A";
     this.treeList1.Location = new System.Drawing.Point(3, 3);
     this.treeList1.Name = "treeList1";
     this.treeList1.ParentFieldName = "D";
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.treeList1.Size = new System.Drawing.Size(456, 300);
     this.treeList1.TabIndex = 3;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "名称";
     this.treeListColumn2.FieldName = "B";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.VisibleIndex = 0;
     this.treeListColumn2.Width = 96;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "是否选择";
     this.treeListColumn3.ColumnEdit = this.repositoryItemCheckEdit1;
     this.treeListColumn3.FieldName = "C";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.VisibleIndex = 1;
     this.treeListColumn3.Width = 96;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.Visible = false;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // FrmPicTreeSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmPicTreeSelect";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择图层";
     this.Load += new System.EventHandler(this.FrmPicTypeSelect_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).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(FormReception));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gcShowColumns = new DevExpress.XtraEditors.GroupControl();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.panel7 = new System.Windows.Forms.Panel();
     this.paDelete = new System.Windows.Forms.Panel();
     this.tbResidue = new DevExpress.XtraEditors.SpinEdit();
     this.tbAmortization = new DevExpress.XtraEditors.SpinEdit();
     this.panel5 = new System.Windows.Forms.Panel();
     this.tbTotalIgv = new DevExpress.XtraEditors.SpinEdit();
     this.tbTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.tbSubTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.gcReception = new DevExpress.XtraGrid.GridControl();
     this.gvReception = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRec_idrecep_sample_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_OrderSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDescription = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRec_Idmr_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Type_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Procedence = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProcedence = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRec_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Flag_envelope_sealed = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repEnvelope_sealed = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcRec_CantKg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Reject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Counter_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Days = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repSelect = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcDyn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Hour = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_matrix = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_campo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Ubigeo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_UTM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_plastic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_glass = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Volumen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repResult = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repSendReport = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repLink = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repDesLink = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repSample = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.tbFax = new DevExpress.XtraEditors.TextEdit();
     this.tbClientPhone = new DevExpress.XtraEditors.TextEdit();
     this.tbClientRuc = new DevExpress.XtraEditors.TextEdit();
     this.tbClientDomicile = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.gcContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCon_Idrecep_company_person = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idperson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idcompany = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Allname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Mail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Person_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPerson_type = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcCon_Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gcCon_Cellphone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCellPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repNum = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.ckDispatchFax = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchPerson = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchTransport = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchCurier = new DevExpress.XtraEditors.CheckEdit();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabOptionRight = new DevExpress.XtraTab.XtraTabControl();
     this.tpRightMethods = new DevExpress.XtraTab.XtraTabPage();
     this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit();
     this.gcMethods = new DevExpress.XtraGrid.GridControl();
     this.gvMethods = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcMet_Cod_template_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Cod_element = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Abbreviation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Name_type_analisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Title = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_TypeAnalisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Button = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAddColumn = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcMet_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit_Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idelement = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idtemplate_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Analisys_time = new DevExpress.XtraGrid.Columns.GridColumn();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.tpRightReports = new DevExpress.XtraTab.XtraTabPage();
     this.gcReport = new DevExpress.XtraGrid.GridControl();
     this.gvReport = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRep_idrecep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_report_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repStatusReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRep_type_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Option = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repReportOption = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRep_Str_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateReport = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repTimeReport = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repTypeReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btMakePartialReport = new DevExpress.XtraEditors.SimpleButton();
     this.btMakeFinalReport = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightAttach = new DevExpress.XtraTab.XtraTabPage();
     this.gcAttachFile = new DevExpress.XtraGrid.GridControl();
     this.gvAttachFile = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcAtt_Iddocument_recep = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_FileName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_file = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Attach_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_status = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Buttons = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repButtons = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcAtt_SourcePath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Order_file = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample_attach = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btNewFile = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightProgram = new DevExpress.XtraTab.XtraTabPage();
     this.gcProgram = new DevExpress.XtraGrid.GridControl();
     this.gvProgram = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcProg_Idrecep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Program_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramStatus = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramButton = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcProg_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateProgram = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gcProg_Time_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repTimeProgram = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gcProg_Str_cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btProgramSelection = new DevExpress.XtraEditors.SimpleButton();
     this.btPrintTicket = new System.Windows.Forms.Button();
     this.btDesignPrint = new System.Windows.Forms.Button();
     this.deReception = new DevExpress.XtraEditors.DateEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.deResult = new DevExpress.XtraEditors.DateEdit();
     this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
     this.tabDateRegRecep = new DevExpress.XtraTab.XtraTabPage();
     this.tbNumDays = new DevExpress.XtraEditors.SpinEdit();
     this.deHourResult = new DevExpress.XtraEditors.TimeEdit();
     this.deHourReception = new DevExpress.XtraEditors.TimeEdit();
     this.label27 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.btReportClient = new System.Windows.Forms.Button();
     this.txIdrecep_sample = new DevExpress.XtraEditors.TextEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.cbTypeSample = new LimsProject.MyLookUpEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.ofdRecepFileAttach = new System.Windows.Forms.OpenFileDialog();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.label14 = new System.Windows.Forms.Label();
     this.tbAdministrativeExpense = new DevExpress.XtraEditors.SpinEdit();
     this.tbCod_recep_sample = new DevExpress.XtraEditors.TextEdit();
     this.ucSignReception = new LimsProject.UcSign();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel11 = new System.Windows.Forms.Panel();
     this.paTypeSample = new System.Windows.Forms.Panel();
     this.paCodRegisterRecep = new System.Windows.Forms.Panel();
     this.ucTitleRegisterRecep = new LimsProject.UcTitle();
     this.ucToolStrip1 = new LimsProject.UcToolStrip();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ucGenerarA = new LimsProject.UcGenerar();
     this.ucGenerarDesde = new LimsProject.UcGenerar();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl3 = new DevExpress.XtraTab.XtraTabControl();
     this.tpMuestras = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.tpAnexos = new DevExpress.XtraTab.XtraTabPage();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tpReject = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.gcRejection = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_Code = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_NameSample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Date = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Hora = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_C1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.tpDecree = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl4 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gridDecretos = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcDec_Idmetodo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repMetodo = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Parametro = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Unidad_medida = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repUnidadMedida = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Result = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Criterio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCriterio = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Valor1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Valor2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Conclusion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit3 = new DevExpress.XtraEditors.MemoEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit4 = new DevExpress.XtraEditors.MemoEdit();
     this.label22 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.paSuperior.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     this.paSupBotones.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).BeginInit();
     this.gcShowColumns.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).BeginInit();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).BeginInit();
     this.tabOptionRight.SuspendLayout();
     this.tpRightMethods.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.tpRightReports.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.tpRightAttach.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.tpRightProgram.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
     this.xtraTabControl2.SuspendLayout();
     this.tabDateRegRecep.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel11.SuspendLayout();
     this.paTypeSample.SuspendLayout();
     this.paCodRegisterRecep.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).BeginInit();
     this.xtraTabControl3.SuspendLayout();
     this.tpMuestras.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     this.tpAnexos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.tpReject.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.tpDecree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).BeginInit();
     this.xtraTabControl4.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     this.imageList1.Images.SetKeyName(9, "uncheck16x16.png");
     this.imageList1.Images.SetKeyName(10, "check16x16.png");
     this.imageList1.Images.SetKeyName(11, "stock-copy.png");
     this.imageList1.Images.SetKeyName(12, "copy_blusky.png");
     this.imageList1.Images.SetKeyName(13, "copy_price.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Recepción de Muestras - Búsqueda";
     //
     // txtBuscar
     //
     this.txtBuscar.Location = new System.Drawing.Point(774, 56);
     this.txtBuscar.Size = new System.Drawing.Size(40, 21);
     this.txtBuscar.Visible = false;
     //
     // cbCampo
     //
     this.cbCampo.Location = new System.Drawing.Point(872, 56);
     this.cbCampo.Size = new System.Drawing.Size(35, 21);
     this.cbCampo.Visible = false;
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Controls.Add(this.ucGenerarDesde);
     this.paTopBasicButtons.Controls.Add(this.ucGenerarA);
     this.paTopBasicButtons.Controls.Add(this.ucSignReception);
     this.paTopBasicButtons.Size = new System.Drawing.Size(714, 46);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btEliminar2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btNuevo2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btGuardar, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucSignReception, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarA, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarDesde, 0);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     this.btSalir2.TabStop = false;
     //
     // btGuardar
     //
     this.btGuardar.Enabled = false;
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(138, 4);
     this.btGuardar.Size = new System.Drawing.Size(62, 25);
     this.btGuardar.Text = "&Firmar";
     this.btGuardar.Visible = false;
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(151, 10);
     this.btNuevo2.Visible = false;
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(138, 21);
     this.btEliminar2.Visible = false;
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 53);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 201);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     this.paBottomSearch.Visible = false;
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     this.btBuscar.Location = new System.Drawing.Point(12, 2);
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(927, 0);
     this.panel1.Size = new System.Drawing.Size(72, 46);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     this.btFiltroBuscar.Location = new System.Drawing.Point(495, 17);
     //
     // paSearchGen
     //
     this.paSearchGen.Location = new System.Drawing.Point(5, 2);
     this.paSearchGen.Size = new System.Drawing.Size(930, 49);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(823, 58);
     this.label3.Visible = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(656, 52);
     this.label2.Visible = false;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Location = new System.Drawing.Point(3, 93);
     this.paMiddleFind.Size = new System.Drawing.Size(526, 108);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.None;
     this.panel2.Size = new System.Drawing.Size(74, 21);
     //
     // paInferior
     //
     this.paInferior.Controls.Add(this.btReportClient);
     this.paInferior.Controls.Add(this.btDesignPrint);
     this.paInferior.Controls.Add(this.btPrintTicket);
     this.paInferior.Location = new System.Drawing.Point(3, 559);
     this.paInferior.Size = new System.Drawing.Size(999, 46);
     this.paInferior.Controls.SetChildIndex(this.panel1, 0);
     this.paInferior.Controls.SetChildIndex(this.paTopBasicButtons, 0);
     this.paInferior.Controls.SetChildIndex(this.btPrintTicket, 0);
     this.paInferior.Controls.SetChildIndex(this.btDesignPrint, 0);
     this.paInferior.Controls.SetChildIndex(this.btReportClient, 0);
     //
     // paTitulo
     //
     this.paTitulo.Controls.Add(this.ucTitleRegisterRecep);
     this.paTitulo.Size = new System.Drawing.Size(999, 27);
     this.paTitulo.Visible = false;
     this.paTitulo.Controls.SetChildIndex(this.panel2, 0);
     this.paTitulo.Controls.SetChildIndex(this.laTitulo, 0);
     this.paTitulo.Controls.SetChildIndex(this.ucTitleRegisterRecep, 0);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.panelControl2);
     this.paCentral.Location = new System.Drawing.Point(3, 176);
     this.paCentral.Size = new System.Drawing.Size(999, 383);
     //
     // paSuperior
     //
     this.paSuperior.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.paSuperior.Controls.Add(this.panelControl1);
     this.paSuperior.Location = new System.Drawing.Point(3, 30);
     this.paSuperior.Size = new System.Drawing.Size(999, 146);
     //
     // laTitulo
     //
     this.laTitulo.Dock = System.Windows.Forms.DockStyle.None;
     this.laTitulo.Size = new System.Drawing.Size(602, 27);
     this.laTitulo.Text = "Registro de Recepción";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Location = new System.Drawing.Point(0, 25);
     this.thePanelTab1.Size = new System.Drawing.Size(1013, 637);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1005, 608);
     //
     // paSupBotones
     //
     this.paSupBotones.Controls.Add(this.ucToolStrip1);
     this.paSupBotones.Padding = new System.Windows.Forms.Padding(0);
     this.paSupBotones.Size = new System.Drawing.Size(1013, 25);
     this.paSupBotones.Visible = true;
     //
     // gcShowColumns
     //
     this.gcShowColumns.Controls.Add(this.checkEdit10);
     this.gcShowColumns.Controls.Add(this.checkEdit9);
     this.gcShowColumns.Location = new System.Drawing.Point(230, 8);
     this.gcShowColumns.Name = "gcShowColumns";
     this.gcShowColumns.Size = new System.Drawing.Size(176, 46);
     this.gcShowColumns.TabIndex = 24;
     this.gcShowColumns.Text = "Mostrar columnas";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(96, 21);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "Métodos";
     this.checkEdit10.Size = new System.Drawing.Size(75, 19);
     this.checkEdit10.TabIndex = 23;
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 21);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "Datos";
     this.checkEdit9.Size = new System.Drawing.Size(75, 19);
     this.checkEdit9.TabIndex = 23;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.paDelete);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel7.Location = new System.Drawing.Point(492, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(53, 66);
     this.panel7.TabIndex = 22;
     //
     // paDelete
     //
     this.paDelete.AllowDrop = true;
     this.paDelete.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.paDelete.BackgroundImage = global::LimsProject.Properties.Resources.delete_column;
     this.paDelete.Location = new System.Drawing.Point(19, 2);
     this.paDelete.Name = "paDelete";
     this.paDelete.Size = new System.Drawing.Size(31, 32);
     this.paDelete.TabIndex = 21;
     this.paDelete.DragDrop += new System.Windows.Forms.DragEventHandler(this.paDelete_DragDrop);
     this.paDelete.DragEnter += new System.Windows.Forms.DragEventHandler(this.paDelete_DragEnter);
     //
     // tbResidue
     //
     this.tbResidue.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbResidue.Location = new System.Drawing.Point(82, 25);
     this.tbResidue.Name = "tbResidue";
     this.tbResidue.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbResidue.Properties.Appearance.Options.UseBackColor = true;
     this.tbResidue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbResidue.Properties.Mask.EditMask = "n2";
     this.tbResidue.Size = new System.Drawing.Size(87, 20);
     this.tbResidue.TabIndex = 17;
     //
     // tbAmortization
     //
     this.tbAmortization.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAmortization.Location = new System.Drawing.Point(82, 5);
     this.tbAmortization.Name = "tbAmortization";
     this.tbAmortization.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbAmortization.Properties.Appearance.Options.UseBackColor = true;
     this.tbAmortization.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAmortization.Properties.Mask.EditMask = "n2";
     this.tbAmortization.Size = new System.Drawing.Size(87, 20);
     this.tbAmortization.TabIndex = 17;
     this.tbAmortization.EditValueChanged += new System.EventHandler(this.tbAmortization_EditValueChanged);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.tbTotalIgv);
     this.panel5.Controls.Add(this.tbTotalAmount);
     this.panel5.Controls.Add(this.tbSubTotalAmount);
     this.panel5.Controls.Add(this.label7);
     this.panel5.Controls.Add(this.label5);
     this.panel5.Controls.Add(this.label4);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel5.Location = new System.Drawing.Point(545, 2);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(152, 66);
     this.panel5.TabIndex = 22;
     //
     // tbTotalIgv
     //
     this.tbTotalIgv.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalIgv.Location = new System.Drawing.Point(58, 23);
     this.tbTotalIgv.Name = "tbTotalIgv";
     this.tbTotalIgv.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalIgv.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalIgv.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalIgv.Properties.Mask.EditMask = "n2";
     this.tbTotalIgv.Properties.ReadOnly = true;
     this.tbTotalIgv.Size = new System.Drawing.Size(87, 20);
     this.tbTotalIgv.TabIndex = 17;
     this.tbTotalIgv.TabStop = false;
     //
     // tbTotalAmount
     //
     this.tbTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalAmount.Location = new System.Drawing.Point(58, 43);
     this.tbTotalAmount.Name = "tbTotalAmount";
     this.tbTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbTotalAmount.Properties.ReadOnly = true;
     this.tbTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbTotalAmount.TabIndex = 17;
     this.tbTotalAmount.TabStop = false;
     //
     // tbSubTotalAmount
     //
     this.tbSubTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbSubTotalAmount.Location = new System.Drawing.Point(58, 3);
     this.tbSubTotalAmount.Name = "tbSubTotalAmount";
     this.tbSubTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbSubTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbSubTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbSubTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbSubTotalAmount.Properties.ReadOnly = true;
     this.tbSubTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbSubTotalAmount.TabIndex = 17;
     this.tbSubTotalAmount.TabStop = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 46);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 13);
     this.label7.TabIndex = 16;
     this.label7.Text = "Total:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 26);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(25, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Igv:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 6);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(52, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Sub total:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(10, 8);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Amortización:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(12, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(37, 13);
     this.label10.TabIndex = 16;
     this.label10.Text = "Saldo:";
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(542, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(191, 77);
     this.panel6.TabIndex = 3;
     //
     // gcReception
     //
     this.gcReception.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReception.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Enabled = false;
     this.gcReception.EmbeddedNavigator.Name = "";
     this.gcReception.Location = new System.Drawing.Point(0, 0);
     this.gcReception.MainView = this.gvReception;
     this.gcReception.Name = "gcReception";
     this.gcReception.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repDescription,
     this.repSelect,
     this.repResult,
     this.repSendReport,
     this.repLink,
     this.repDesLink,
     this.repProcedence,
     this.repSample,
     this.repEnvelope_sealed});
     this.gcReception.Size = new System.Drawing.Size(699, 288);
     this.gcReception.TabIndex = 1;
     this.gcReception.UseEmbeddedNavigator = true;
     this.gcReception.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReception});
     this.gcReception.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseDown);
     this.gcReception.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseMove);
     //
     // gvReception
     //
     this.gvReception.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReception.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Empty.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReception.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReception.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvReception.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReception.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseFont = true;
     this.gvReception.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HeaderPanel.BackColor = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReception.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReception.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.Preview.Options.UseBackColor = true;
     this.gvReception.Appearance.Preview.Options.UseForeColor = true;
     this.gvReception.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.Row.Options.UseBackColor = true;
     this.gvReception.Appearance.Row.Options.UseForeColor = true;
     this.gvReception.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvReception.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReception.ColumnPanelRowHeight = 125;
     this.gvReception.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRec_idrecep_sample_detail,
     this.gcRec_OrderSample,
     this.gcRec_Description,
     this.gcRec_Idmr_detail,
     this.gcRec_Type_Sample,
     this.gcRec_Procedence,
     this.gcRec_Code,
     this.gcRec_Cod_interno,
     this.gcRec_NameSample,
     this.gcRec_Flag_envelope_sealed,
     this.gcRec_CantKg,
     this.gcRec_Reject,
     this.gcRec_Counter_Sample,
     this.gcRec_Days,
     this.gcRec_Cost,
     this.gcDyn1,
     this.gcDyn2,
     this.gcDyn3,
     this.gcDyn4,
     this.gcDyn5,
     this.gcDyn6,
     this.gcDyn7,
     this.gcDyn8,
     this.gcDyn9,
     this.gcDyn10,
     this.gcDyn11,
     this.gcDyn12,
     this.gcDyn13,
     this.gcDyn14,
     this.gcDyn15,
     this.gcDyn16,
     this.gcDyn17,
     this.gcDyn18,
     this.gcDyn19,
     this.gcDyn20,
     this.gcAgua_Code,
     this.gcAgua_Cod_interno,
     this.gcAgua_Date,
     this.gcAgua_Hour,
     this.gcAgua_Cod_matrix,
     this.gcAgua_Cod_campo,
     this.gcAgua_NameSample,
     this.gcAgua_Ubigeo,
     this.gcAgua_UTM,
     this.gcAgua_Num_bottle_plastic,
     this.gcAgua_Num_bottle_glass,
     this.gcAgua_Volumen});
     this.gvReception.GridControl = this.gcReception;
     this.gvReception.Images = this.imageList1;
     this.gvReception.Name = "gvReception";
     this.gvReception.OptionsCustomization.AllowColumnMoving = false;
     this.gvReception.OptionsCustomization.AllowSort = false;
     this.gvReception.OptionsFilter.AllowColumnMRUFilterList = false;
     this.gvReception.OptionsFilter.AllowMRUFilterList = false;
     this.gvReception.OptionsSelection.MultiSelect = true;
     this.gvReception.OptionsView.ColumnAutoWidth = false;
     this.gvReception.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReception.OptionsView.EnableAppearanceOddRow = true;
     this.gvReception.OptionsView.ShowFilterPanel = false;
     this.gvReception.OptionsView.ShowGroupPanel = false;
     this.gvReception.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gvReception_CustomDrawColumnHeader);
     this.gvReception.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReception_RowCellStyle);
     this.gvReception.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReception_InitNewRow);
     this.gvReception.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReception_FocusedRowChanged);
     this.gvReception.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvReception_CellValueChanging);
     this.gvReception.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gvReception_KeyDown);
     this.gvReception.Click += new System.EventHandler(this.gvReception_Click);
     this.gvReception.RowCountChanged += new System.EventHandler(this.gvReception_RowCountChanged);
     //
     // gcRec_idrecep_sample_detail
     //
     this.gcRec_idrecep_sample_detail.Caption = "gridColumn1";
     this.gcRec_idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gcRec_idrecep_sample_detail.Name = "gcRec_idrecep_sample_detail";
     //
     // gcRec_OrderSample
     //
     this.gcRec_OrderSample.Caption = "N°";
     this.gcRec_OrderSample.FieldName = "Order_sample";
     this.gcRec_OrderSample.Name = "gcRec_OrderSample";
     this.gcRec_OrderSample.OptionsColumn.AllowEdit = false;
     this.gcRec_OrderSample.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gcRec_OrderSample.Visible = true;
     this.gcRec_OrderSample.VisibleIndex = 0;
     this.gcRec_OrderSample.Width = 32;
     //
     // gcRec_Description
     //
     this.gcRec_Description.Caption = "Descripción";
     this.gcRec_Description.ColumnEdit = this.repDescription;
     this.gcRec_Description.FieldName = "Cod_des_sample";
     this.gcRec_Description.Name = "gcRec_Description";
     this.gcRec_Description.Visible = true;
     this.gcRec_Description.VisibleIndex = 1;
     this.gcRec_Description.Width = 108;
     //
     // repDescription
     //
     this.repDescription.AutoHeight = false;
     serializableAppearanceObject1.BackColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BackColor2 = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BorderColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.Options.UseBackColor = true;
     serializableAppearanceObject1.Options.UseBorderColor = true;
     this.repDescription.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1)});
     this.repDescription.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_des_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description")});
     this.repDescription.DisplayMember = "Description";
     this.repDescription.Name = "repDescription";
     this.repDescription.NullText = "Seleccionar";
     this.repDescription.ShowHeader = false;
     this.repDescription.ValueMember = "Cod_des_sample";
     this.repDescription.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repDescription_ButtonClick);
     this.repDescription.EditValueChanged += new System.EventHandler(this.repDescription_EditValueChanged);
     //
     // gcRec_Idmr_detail
     //
     this.gcRec_Idmr_detail.Caption = "Idmr_detail";
     this.gcRec_Idmr_detail.FieldName = "Idmr_detail";
     this.gcRec_Idmr_detail.Name = "gcRec_Idmr_detail";
     //
     // gcRec_Type_Sample
     //
     this.gcRec_Type_Sample.Caption = "Tipo de Muestra";
     this.gcRec_Type_Sample.FieldName = "Cod_type_sample";
     this.gcRec_Type_Sample.Name = "gcRec_Type_Sample";
     this.gcRec_Type_Sample.Width = 125;
     //
     // gcRec_Procedence
     //
     this.gcRec_Procedence.Caption = "Procedencia";
     this.gcRec_Procedence.ColumnEdit = this.repProcedence;
     this.gcRec_Procedence.FieldName = "Procedence";
     this.gcRec_Procedence.Name = "gcRec_Procedence";
     this.gcRec_Procedence.Visible = true;
     this.gcRec_Procedence.VisibleIndex = 2;
     this.gcRec_Procedence.Width = 113;
     //
     // repProcedence
     //
     this.repProcedence.AutoHeight = false;
     this.repProcedence.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar)});
     this.repProcedence.Name = "repProcedence";
     this.repProcedence.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProcedence_ButtonClick);
     //
     // gcRec_Code
     //
     this.gcRec_Code.Caption = "Código";
     this.gcRec_Code.FieldName = "Cod_sample";
     this.gcRec_Code.Name = "gcRec_Code";
     this.gcRec_Code.OptionsColumn.AllowEdit = false;
     this.gcRec_Code.Visible = true;
     this.gcRec_Code.VisibleIndex = 3;
     this.gcRec_Code.Width = 82;
     //
     // gcRec_Cod_interno
     //
     this.gcRec_Cod_interno.Caption = "Cod_interno";
     this.gcRec_Cod_interno.FieldName = "Cod_interno";
     this.gcRec_Cod_interno.Name = "gcRec_Cod_interno";
     //
     // gcRec_NameSample
     //
     this.gcRec_NameSample.Caption = "Nombre ";
     this.gcRec_NameSample.FieldName = "Name_sample";
     this.gcRec_NameSample.Name = "gcRec_NameSample";
     this.gcRec_NameSample.Visible = true;
     this.gcRec_NameSample.VisibleIndex = 4;
     this.gcRec_NameSample.Width = 114;
     //
     // gcRec_Flag_envelope_sealed
     //
     this.gcRec_Flag_envelope_sealed.Caption = "Sobre sellado";
     this.gcRec_Flag_envelope_sealed.ColumnEdit = this.repEnvelope_sealed;
     this.gcRec_Flag_envelope_sealed.FieldName = "Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Name = "gcRec_Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Visible = true;
     this.gcRec_Flag_envelope_sealed.VisibleIndex = 5;
     this.gcRec_Flag_envelope_sealed.Width = 41;
     //
     // repEnvelope_sealed
     //
     this.repEnvelope_sealed.AutoHeight = false;
     this.repEnvelope_sealed.Name = "repEnvelope_sealed";
     //
     // gcRec_CantKg
     //
     this.gcRec_CantKg.Caption = "Cant (kg)";
     this.gcRec_CantKg.FieldName = "Amount_weight";
     this.gcRec_CantKg.Name = "gcRec_CantKg";
     this.gcRec_CantKg.Visible = true;
     this.gcRec_CantKg.VisibleIndex = 6;
     this.gcRec_CantKg.Width = 52;
     //
     // gcRec_Reject
     //
     this.gcRec_Reject.Caption = "Rechazo";
     this.gcRec_Reject.FieldName = "Flag_reject";
     this.gcRec_Reject.ImageIndex = 9;
     this.gcRec_Reject.Name = "gcRec_Reject";
     this.gcRec_Reject.Visible = true;
     this.gcRec_Reject.VisibleIndex = 7;
     this.gcRec_Reject.Width = 50;
     //
     // gcRec_Counter_Sample
     //
     this.gcRec_Counter_Sample.Caption = "Contramuestra";
     this.gcRec_Counter_Sample.FieldName = "Flag_counter_sample";
     this.gcRec_Counter_Sample.Name = "gcRec_Counter_Sample";
     this.gcRec_Counter_Sample.Visible = true;
     this.gcRec_Counter_Sample.VisibleIndex = 8;
     this.gcRec_Counter_Sample.Width = 50;
     //
     // gcRec_Days
     //
     this.gcRec_Days.Caption = "Entrega(dias)";
     this.gcRec_Days.FieldName = "Analisys_time";
     this.gcRec_Days.Name = "gcRec_Days";
     this.gcRec_Days.Width = 41;
     //
     // gcRec_Cost
     //
     this.gcRec_Cost.Caption = "Costo";
     this.gcRec_Cost.FieldName = "Cost_sample";
     this.gcRec_Cost.Name = "gcRec_Cost";
     this.gcRec_Cost.Visible = true;
     this.gcRec_Cost.VisibleIndex = 9;
     this.gcRec_Cost.Width = 50;
     //
     // gcDyn1
     //
     this.gcDyn1.Caption = "gridColumn1";
     this.gcDyn1.ColumnEdit = this.repSelect;
     this.gcDyn1.FieldName = "rec1";
     this.gcDyn1.Name = "gcDyn1";
     this.gcDyn1.Width = 40;
     //
     // repSelect
     //
     this.repSelect.AutoHeight = false;
     this.repSelect.Name = "repSelect";
     //
     // gcDyn2
     //
     this.gcDyn2.Caption = "gridColumn2";
     this.gcDyn2.ColumnEdit = this.repSelect;
     this.gcDyn2.FieldName = "rec2";
     this.gcDyn2.Name = "gcDyn2";
     this.gcDyn2.Width = 40;
     //
     // gcDyn3
     //
     this.gcDyn3.Caption = "gridColumn3";
     this.gcDyn3.ColumnEdit = this.repSelect;
     this.gcDyn3.FieldName = "rec3";
     this.gcDyn3.Name = "gcDyn3";
     this.gcDyn3.Width = 35;
     //
     // gcDyn4
     //
     this.gcDyn4.Caption = "gridColumn4";
     this.gcDyn4.ColumnEdit = this.repSelect;
     this.gcDyn4.FieldName = "rec4";
     this.gcDyn4.Name = "gcDyn4";
     this.gcDyn4.Width = 35;
     //
     // gcDyn5
     //
     this.gcDyn5.Caption = "gridColumn5";
     this.gcDyn5.ColumnEdit = this.repSelect;
     this.gcDyn5.FieldName = "rec5";
     this.gcDyn5.Name = "gcDyn5";
     this.gcDyn5.Width = 35;
     //
     // gcDyn6
     //
     this.gcDyn6.Caption = "gridColumn6";
     this.gcDyn6.ColumnEdit = this.repSelect;
     this.gcDyn6.FieldName = "rec6";
     this.gcDyn6.Name = "gcDyn6";
     this.gcDyn6.Width = 35;
     //
     // gcDyn7
     //
     this.gcDyn7.Caption = "gridColumn7";
     this.gcDyn7.ColumnEdit = this.repSelect;
     this.gcDyn7.FieldName = "rec7";
     this.gcDyn7.Name = "gcDyn7";
     this.gcDyn7.Width = 35;
     //
     // gcDyn8
     //
     this.gcDyn8.Caption = "gridColumn8";
     this.gcDyn8.ColumnEdit = this.repSelect;
     this.gcDyn8.FieldName = "rec8";
     this.gcDyn8.Name = "gcDyn8";
     this.gcDyn8.Width = 35;
     //
     // gcDyn9
     //
     this.gcDyn9.Caption = "gridColumn9";
     this.gcDyn9.ColumnEdit = this.repSelect;
     this.gcDyn9.FieldName = "rec9";
     this.gcDyn9.Name = "gcDyn9";
     this.gcDyn9.Width = 35;
     //
     // gcDyn10
     //
     this.gcDyn10.Caption = "gridColumn10";
     this.gcDyn10.ColumnEdit = this.repSelect;
     this.gcDyn10.FieldName = "rec10";
     this.gcDyn10.Name = "gcDyn10";
     this.gcDyn10.Width = 35;
     //
     // gcDyn11
     //
     this.gcDyn11.Caption = "gridColumn11";
     this.gcDyn11.ColumnEdit = this.repSelect;
     this.gcDyn11.FieldName = "rec11";
     this.gcDyn11.Name = "gcDyn11";
     this.gcDyn11.Width = 35;
     //
     // gcDyn12
     //
     this.gcDyn12.Caption = "gridColumn12";
     this.gcDyn12.ColumnEdit = this.repSelect;
     this.gcDyn12.FieldName = "rec12";
     this.gcDyn12.Name = "gcDyn12";
     this.gcDyn12.Width = 35;
     //
     // gcDyn13
     //
     this.gcDyn13.Caption = "gridColumn13";
     this.gcDyn13.ColumnEdit = this.repSelect;
     this.gcDyn13.FieldName = "rec13";
     this.gcDyn13.Name = "gcDyn13";
     this.gcDyn13.Width = 35;
     //
     // gcDyn14
     //
     this.gcDyn14.Caption = "gridColumn14";
     this.gcDyn14.ColumnEdit = this.repSelect;
     this.gcDyn14.FieldName = "rec14";
     this.gcDyn14.Name = "gcDyn14";
     this.gcDyn14.Width = 35;
     //
     // gcDyn15
     //
     this.gcDyn15.Caption = "gridColumn15";
     this.gcDyn15.ColumnEdit = this.repSelect;
     this.gcDyn15.FieldName = "rec15";
     this.gcDyn15.Name = "gcDyn15";
     this.gcDyn15.Width = 35;
     //
     // gcDyn16
     //
     this.gcDyn16.Caption = "gridColumn16";
     this.gcDyn16.ColumnEdit = this.repSelect;
     this.gcDyn16.FieldName = "rec16";
     this.gcDyn16.Name = "gcDyn16";
     this.gcDyn16.Width = 35;
     //
     // gcDyn17
     //
     this.gcDyn17.Caption = "gridColumn17";
     this.gcDyn17.ColumnEdit = this.repSelect;
     this.gcDyn17.FieldName = "rec17";
     this.gcDyn17.Name = "gcDyn17";
     this.gcDyn17.Width = 35;
     //
     // gcDyn18
     //
     this.gcDyn18.Caption = "gridColumn18";
     this.gcDyn18.ColumnEdit = this.repSelect;
     this.gcDyn18.FieldName = "rec18";
     this.gcDyn18.Name = "gcDyn18";
     this.gcDyn18.Width = 35;
     //
     // gcDyn19
     //
     this.gcDyn19.Caption = "gridColumn19";
     this.gcDyn19.ColumnEdit = this.repSelect;
     this.gcDyn19.FieldName = "rec19";
     this.gcDyn19.Name = "gcDyn19";
     this.gcDyn19.Width = 35;
     //
     // gcDyn20
     //
     this.gcDyn20.Caption = "gridColumn20";
     this.gcDyn20.ColumnEdit = this.repSelect;
     this.gcDyn20.FieldName = "rec20";
     this.gcDyn20.Name = "gcDyn20";
     this.gcDyn20.Width = 35;
     //
     // gcAgua_Code
     //
     this.gcAgua_Code.Caption = "Código";
     this.gcAgua_Code.Name = "gcAgua_Code";
     //
     // gcAgua_Cod_interno
     //
     this.gcAgua_Cod_interno.Caption = "Cod_interno";
     this.gcAgua_Cod_interno.Name = "gcAgua_Cod_interno";
     //
     // gcAgua_Date
     //
     this.gcAgua_Date.Caption = "Fecha";
     this.gcAgua_Date.Name = "gcAgua_Date";
     //
     // gcAgua_Hour
     //
     this.gcAgua_Hour.Caption = "Hora";
     this.gcAgua_Hour.Name = "gcAgua_Hour";
     //
     // gcAgua_Cod_matrix
     //
     this.gcAgua_Cod_matrix.Caption = "Matriz";
     this.gcAgua_Cod_matrix.Name = "gcAgua_Cod_matrix";
     //
     // gcAgua_Cod_campo
     //
     this.gcAgua_Cod_campo.Caption = "Código de campo";
     this.gcAgua_Cod_campo.Name = "gcAgua_Cod_campo";
     //
     // gcAgua_NameSample
     //
     this.gcAgua_NameSample.Caption = "Nombre de muestra";
     this.gcAgua_NameSample.Name = "gcAgua_NameSample";
     //
     // gcAgua_Ubigeo
     //
     this.gcAgua_Ubigeo.Caption = "Zona, Urb, AAHH / Dist. / Prov. / Depart.";
     this.gcAgua_Ubigeo.Name = "gcAgua_Ubigeo";
     //
     // gcAgua_UTM
     //
     this.gcAgua_UTM.Caption = "Punto de muestreo y/o coordenadas UTM ";
     this.gcAgua_UTM.Name = "gcAgua_UTM";
     //
     // gcAgua_Num_bottle_plastic
     //
     this.gcAgua_Num_bottle_plastic.Caption = "N°Frascos de vidrio";
     this.gcAgua_Num_bottle_plastic.Name = "gcAgua_Num_bottle_plastic";
     //
     // gcAgua_Num_bottle_glass
     //
     this.gcAgua_Num_bottle_glass.Caption = "N°Frascos de plastico";
     this.gcAgua_Num_bottle_glass.Name = "gcAgua_Num_bottle_glass";
     //
     // gcAgua_Volumen
     //
     this.gcAgua_Volumen.Caption = "Volumen (L)";
     this.gcAgua_Volumen.Name = "gcAgua_Volumen";
     //
     // repResult
     //
     this.repResult.AutoHeight = false;
     this.repResult.Name = "repResult";
     //
     // repSendReport
     //
     this.repSendReport.AutoHeight = false;
     this.repSendReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Right)});
     this.repSendReport.Name = "repSendReport";
     //
     // repLink
     //
     this.repLink.AutoHeight = false;
     this.repLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.attach2)});
     this.repLink.Name = "repLink";
     this.repLink.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repLink_ButtonClick);
     //
     // repDesLink
     //
     this.repDesLink.AutoHeight = false;
     this.repDesLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDesLink.Name = "repDesLink";
     //
     // repSample
     //
     this.repSample.AutoHeight = false;
     this.repSample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repSample.Name = "repSample";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl1.Appearance.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl1.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl1.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Location = new System.Drawing.Point(11, 29);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.PaintStyleName = "PropertyView";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(534, 114);
     this.xtraTabControl1.TabIndex = 4;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3,
     this.xtraTabPage6,
     this.xtraTabPage1});
     this.xtraTabControl1.Text = "Anexos";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.tbFax);
     this.xtraTabPage3.Controls.Add(this.tbClientPhone);
     this.xtraTabPage3.Controls.Add(this.tbClientRuc);
     this.xtraTabPage3.Controls.Add(this.tbClientDomicile);
     this.xtraTabPage3.Controls.Add(this.label9);
     this.xtraTabPage3.Controls.Add(this.label28);
     this.xtraTabPage3.Controls.Add(this.label11);
     this.xtraTabPage3.Controls.Add(this.label8);
     this.xtraTabPage3.Controls.Add(this.label6);
     this.xtraTabPage3.Controls.Add(this.cbCompany);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage3.Text = "Cliente";
     //
     // tbFax
     //
     this.tbFax.Location = new System.Drawing.Point(176, 54);
     this.tbFax.Name = "tbFax";
     this.tbFax.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbFax.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbFax.Size = new System.Drawing.Size(74, 20);
     this.tbFax.TabIndex = 6;
     //
     // tbClientPhone
     //
     this.tbClientPhone.Location = new System.Drawing.Point(66, 54);
     this.tbClientPhone.Name = "tbClientPhone";
     this.tbClientPhone.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbClientPhone.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientPhone.Size = new System.Drawing.Size(74, 20);
     this.tbClientPhone.TabIndex = 6;
     //
     // tbClientRuc
     //
     this.tbClientRuc.Location = new System.Drawing.Point(367, 12);
     this.tbClientRuc.Name = "tbClientRuc";
     this.tbClientRuc.Properties.Mask.EditMask = "\\d{0,11}";
     this.tbClientRuc.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientRuc.Size = new System.Drawing.Size(123, 20);
     this.tbClientRuc.TabIndex = 3;
     //
     // tbClientDomicile
     //
     this.tbClientDomicile.Location = new System.Drawing.Point(66, 33);
     this.tbClientDomicile.Name = "tbClientDomicile";
     this.tbClientDomicile.Size = new System.Drawing.Size(424, 20);
     this.tbClientDomicile.TabIndex = 4;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(331, 15);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(30, 13);
     this.label9.TabIndex = 9;
     this.label9.Text = "Ruc:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(143, 57);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(27, 13);
     this.label28.TabIndex = 9;
     this.label28.Text = "Fax:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(11, 57);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(25, 13);
     this.label11.TabIndex = 9;
     this.label11.Text = "Tel:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(52, 13);
     this.label8.TabIndex = 9;
     this.label8.Text = "Domicilio:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(11, 15);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(47, 13);
     this.label6.TabIndex = 9;
     this.label6.Text = "Nombre:";
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(66, 12);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(259, 20);
     this.cbCompany.TabIndex = 2;
     this.cbCompany.ProcessNewValue += new DevExpress.XtraEditors.Controls.ProcessNewValueEventHandler(this.cbClientName_ProcessNewValue);
     this.cbCompany.EditValueChanged += new System.EventHandler(this.cbClientName_EditValueChanged);
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.gcContact);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage6.Text = "Contactos";
     //
     // gcContact
     //
     this.gcContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcContact.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Name = "";
     this.gcContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gcContact.Location = new System.Drawing.Point(0, 0);
     this.gcContact.MainView = this.gvContact;
     this.gcContact.Name = "gcContact";
     this.gcContact.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repPerson_type,
     this.repNum,
     this.repCellPhone,
     this.repPhone});
     this.gcContact.Size = new System.Drawing.Size(532, 93);
     this.gcContact.TabIndex = 0;
     this.gcContact.UseEmbeddedNavigator = true;
     this.gcContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCon_Idrecep_company_person,
     this.gcCon_Idperson,
     this.gcCon_Idcompany,
     this.gcCon_Idrecep_sample,
     this.gcCon_Allname,
     this.gcCon_Mail,
     this.gcCon_Person_type,
     this.gcCon_Phone,
     this.gcCon_Cellphone});
     this.gvContact.GridControl = this.gcContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsView.ShowGroupPanel = false;
     this.gvContact.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvContact_InitNewRow);
     //
     // gcCon_Idrecep_company_person
     //
     this.gcCon_Idrecep_company_person.Caption = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.FieldName = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.Name = "gcCon_Idrecep_company_person";
     //
     // gcCon_Idperson
     //
     this.gcCon_Idperson.Caption = "Idperson";
     this.gcCon_Idperson.FieldName = "Idperson";
     this.gcCon_Idperson.Name = "gcCon_Idperson";
     //
     // gcCon_Idcompany
     //
     this.gcCon_Idcompany.Caption = "Idcompany";
     this.gcCon_Idcompany.FieldName = "Idcompany";
     this.gcCon_Idcompany.Name = "gcCon_Idcompany";
     //
     // gcCon_Idrecep_sample
     //
     this.gcCon_Idrecep_sample.Caption = "Idrecep_sample";
     this.gcCon_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcCon_Idrecep_sample.Name = "gcCon_Idrecep_sample";
     //
     // gcCon_Allname
     //
     this.gcCon_Allname.Caption = "Nombre";
     this.gcCon_Allname.FieldName = "Allname";
     this.gcCon_Allname.Name = "gcCon_Allname";
     this.gcCon_Allname.Visible = true;
     this.gcCon_Allname.VisibleIndex = 0;
     this.gcCon_Allname.Width = 152;
     //
     // gcCon_Mail
     //
     this.gcCon_Mail.Caption = "Email";
     this.gcCon_Mail.FieldName = "Mail";
     this.gcCon_Mail.Name = "gcCon_Mail";
     this.gcCon_Mail.Visible = true;
     this.gcCon_Mail.VisibleIndex = 1;
     this.gcCon_Mail.Width = 122;
     //
     // gcCon_Person_type
     //
     this.gcCon_Person_type.Caption = "Tipo";
     this.gcCon_Person_type.ColumnEdit = this.repPerson_type;
     this.gcCon_Person_type.FieldName = "Person_type";
     this.gcCon_Person_type.Name = "gcCon_Person_type";
     this.gcCon_Person_type.Visible = true;
     this.gcCon_Person_type.VisibleIndex = 2;
     this.gcCon_Person_type.Width = 64;
     //
     // repPerson_type
     //
     this.repPerson_type.AutoHeight = false;
     this.repPerson_type.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPerson_type.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name")});
     this.repPerson_type.Name = "repPerson_type";
     this.repPerson_type.NullText = "";
     this.repPerson_type.ShowFooter = false;
     this.repPerson_type.ShowHeader = false;
     //
     // gcCon_Phone
     //
     this.gcCon_Phone.Caption = "Teléfono";
     this.gcCon_Phone.ColumnEdit = this.repPhone;
     this.gcCon_Phone.FieldName = "Phone";
     this.gcCon_Phone.Name = "gcCon_Phone";
     this.gcCon_Phone.Visible = true;
     this.gcCon_Phone.VisibleIndex = 3;
     this.gcCon_Phone.Width = 85;
     //
     // repPhone
     //
     this.repPhone.AutoHeight = false;
     this.repPhone.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,2}\\))\\d{1,10}";
     this.repPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repPhone.Name = "repPhone";
     //
     // gcCon_Cellphone
     //
     this.gcCon_Cellphone.Caption = "Celular";
     this.gcCon_Cellphone.ColumnEdit = this.repCellPhone;
     this.gcCon_Cellphone.FieldName = "Cellphone";
     this.gcCon_Cellphone.Name = "gcCon_Cellphone";
     this.gcCon_Cellphone.Visible = true;
     this.gcCon_Cellphone.VisibleIndex = 4;
     this.gcCon_Cellphone.Width = 88;
     //
     // repCellPhone
     //
     this.repCellPhone.AutoHeight = false;
     this.repCellPhone.Mask.EditMask = "(\\(\\d{1,3}\\))?\\d{1,3}-\\d{1,3}-\\d{1,6}";
     this.repCellPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repCellPhone.Name = "repCellPhone";
     //
     // repNum
     //
     this.repNum.AutoHeight = false;
     this.repNum.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repNum.IsFloatValue = false;
     this.repNum.Mask.EditMask = "N00";
     this.repNum.Name = "repNum";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.ckDispatchFax);
     this.xtraTabPage1.Controls.Add(this.ckDispatchPerson);
     this.xtraTabPage1.Controls.Add(this.ckDispatchTransport);
     this.xtraTabPage1.Controls.Add(this.ckDispatchCurier);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage1.Text = "Envío";
     //
     // ckDispatchFax
     //
     this.ckDispatchFax.Location = new System.Drawing.Point(141, 15);
     this.ckDispatchFax.Name = "ckDispatchFax";
     this.ckDispatchFax.Properties.Caption = "Fax";
     this.ckDispatchFax.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchFax.TabIndex = 0;
     //
     // ckDispatchPerson
     //
     this.ckDispatchPerson.Location = new System.Drawing.Point(20, 15);
     this.ckDispatchPerson.Name = "ckDispatchPerson";
     this.ckDispatchPerson.Properties.Caption = "Personal";
     this.ckDispatchPerson.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchPerson.TabIndex = 0;
     this.ckDispatchPerson.CheckedChanged += new System.EventHandler(this.ckDispatchPerson_CheckedChanged);
     //
     // ckDispatchTransport
     //
     this.ckDispatchTransport.Location = new System.Drawing.Point(20, 53);
     this.ckDispatchTransport.Name = "ckDispatchTransport";
     this.ckDispatchTransport.Properties.Caption = "Emp. Transporte";
     this.ckDispatchTransport.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchTransport.TabIndex = 0;
     this.ckDispatchTransport.CheckedChanged += new System.EventHandler(this.ckDispatchTransport_CheckedChanged);
     //
     // ckDispatchCurier
     //
     this.ckDispatchCurier.Location = new System.Drawing.Point(20, 34);
     this.ckDispatchCurier.Name = "ckDispatchCurier";
     this.ckDispatchCurier.Properties.Caption = "Curier";
     this.ckDispatchCurier.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchCurier.TabIndex = 0;
     this.ckDispatchCurier.CheckedChanged += new System.EventHandler(this.ckDispatchCurier_CheckedChanged);
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabOptionRight);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.Location = new System.Drawing.Point(699, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(294, 358);
     this.expandablePanel1.TabIndex = 2;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Métodos";
     //
     // tabOptionRight
     //
     this.tabOptionRight.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabOptionRight.Appearance.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tabOptionRight.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.tabOptionRight.AppearancePage.Header.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.tabOptionRight.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.tabOptionRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabOptionRight.Location = new System.Drawing.Point(0, 26);
     this.tabOptionRight.Name = "tabOptionRight";
     this.tabOptionRight.PaintStyleName = "PropertyView";
     this.tabOptionRight.SelectedTabPage = this.tpRightMethods;
     this.tabOptionRight.Size = new System.Drawing.Size(294, 332);
     this.tabOptionRight.TabIndex = 5;
     this.tabOptionRight.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpRightMethods,
     this.tpRightReports,
     this.tpRightAttach,
     this.tpRightProgram});
     this.tabOptionRight.Text = "Adjuntos";
     this.tabOptionRight.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabOptionRight_SelectedPageChanged);
     //
     // tpRightMethods
     //
     this.tpRightMethods.Controls.Add(this.lookUpEdit3);
     this.tpRightMethods.Controls.Add(this.gcMethods);
     this.tpRightMethods.Controls.Add(this.textEdit1);
     this.tpRightMethods.Name = "tpRightMethods";
     this.tpRightMethods.Size = new System.Drawing.Size(292, 311);
     this.tpRightMethods.Text = "Métodos";
     //
     // lookUpEdit3
     //
     this.lookUpEdit3.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit3.Name = "lookUpEdit3";
     this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit3.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit3.Properties.NullText = "Seleccionar";
     this.lookUpEdit3.Properties.ShowFooter = false;
     this.lookUpEdit3.Properties.ShowHeader = false;
     this.lookUpEdit3.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit3.TabIndex = 1;
     //
     // gcMethods
     //
     this.gcMethods.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcMethods.EmbeddedNavigator.Name = "";
     this.gcMethods.Location = new System.Drawing.Point(0, 0);
     this.gcMethods.MainView = this.gvMethods;
     this.gcMethods.Name = "gcMethods";
     this.gcMethods.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repAddColumn});
     this.gcMethods.Size = new System.Drawing.Size(292, 311);
     this.gcMethods.TabIndex = 1;
     this.gcMethods.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMethods});
     //
     // gvMethods
     //
     this.gvMethods.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvMethods.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Empty.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvMethods.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvMethods.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvMethods.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseFont = true;
     this.gvMethods.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvMethods.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.OddRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.Preview.Options.UseBackColor = true;
     this.gvMethods.Appearance.Preview.Options.UseForeColor = true;
     this.gvMethods.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.Row.Options.UseBackColor = true;
     this.gvMethods.Appearance.Row.Options.UseFont = true;
     this.gvMethods.Appearance.Row.Options.UseForeColor = true;
     this.gvMethods.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.VertLine.Options.UseBackColor = true;
     this.gvMethods.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcMet_Cod_template_method,
     this.gcMet_Cod_element,
     this.gcMet_Abbreviation,
     this.gcMet_Name_type_analisys,
     this.gcMet_Title,
     this.gcMet_TypeAnalisys,
     this.gcMet_Button,
     this.gcMet_Cost,
     this.gcMet_Unit1,
     this.gcMet_Unit_Name,
     this.gcMet_Idelement,
     this.gcMet_Idtemplate_method,
     this.gcMet_Analisys_time});
     this.gvMethods.GridControl = this.gcMethods;
     this.gvMethods.GroupCount = 1;
     this.gvMethods.Name = "gvMethods";
     this.gvMethods.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvMethods.OptionsView.ColumnAutoWidth = false;
     this.gvMethods.OptionsView.EnableAppearanceEvenRow = true;
     this.gvMethods.OptionsView.EnableAppearanceOddRow = true;
     this.gvMethods.OptionsView.ShowGroupPanel = false;
     this.gvMethods.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcMet_TypeAnalisys, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcMet_Cod_template_method
     //
     this.gcMet_Cod_template_method.Caption = "Cod.";
     this.gcMet_Cod_template_method.FieldName = "Cod_template_method";
     this.gcMet_Cod_template_method.Name = "gcMet_Cod_template_method";
     this.gcMet_Cod_template_method.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_template_method.Visible = true;
     this.gcMet_Cod_template_method.VisibleIndex = 1;
     this.gcMet_Cod_template_method.Width = 50;
     //
     // gcMet_Cod_element
     //
     this.gcMet_Cod_element.Caption = "Elemento";
     this.gcMet_Cod_element.FieldName = "Cod_element";
     this.gcMet_Cod_element.Name = "gcMet_Cod_element";
     this.gcMet_Cod_element.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_element.Visible = true;
     this.gcMet_Cod_element.VisibleIndex = 2;
     //
     // gcMet_Abbreviation
     //
     this.gcMet_Abbreviation.Caption = "Abreviación";
     this.gcMet_Abbreviation.FieldName = "Abbreviation";
     this.gcMet_Abbreviation.Name = "gcMet_Abbreviation";
     this.gcMet_Abbreviation.OptionsColumn.ReadOnly = true;
     this.gcMet_Abbreviation.Visible = true;
     this.gcMet_Abbreviation.VisibleIndex = 3;
     this.gcMet_Abbreviation.Width = 60;
     //
     // gcMet_Name_type_analisys
     //
     this.gcMet_Name_type_analisys.Caption = "Tipo de Análisis";
     this.gcMet_Name_type_analisys.FieldName = "Name_type_analisys";
     this.gcMet_Name_type_analisys.Name = "gcMet_Name_type_analisys";
     this.gcMet_Name_type_analisys.Visible = true;
     this.gcMet_Name_type_analisys.VisibleIndex = 5;
     //
     // gcMet_Title
     //
     this.gcMet_Title.Caption = "Título";
     this.gcMet_Title.FieldName = "Title";
     this.gcMet_Title.Name = "gcMet_Title";
     this.gcMet_Title.OptionsColumn.ReadOnly = true;
     this.gcMet_Title.Visible = true;
     this.gcMet_Title.VisibleIndex = 4;
     this.gcMet_Title.Width = 135;
     //
     // gcMet_TypeAnalisys
     //
     this.gcMet_TypeAnalisys.Caption = "Tipo de análisis";
     this.gcMet_TypeAnalisys.FieldName = "Name_type_analisys";
     this.gcMet_TypeAnalisys.Name = "gcMet_TypeAnalisys";
     //
     // gcMet_Button
     //
     this.gcMet_Button.Caption = "#";
     this.gcMet_Button.ColumnEdit = this.repAddColumn;
     this.gcMet_Button.Name = "gcMet_Button";
     this.gcMet_Button.Visible = true;
     this.gcMet_Button.VisibleIndex = 0;
     this.gcMet_Button.Width = 52;
     //
     // repAddColumn
     //
     this.repAddColumn.AutoHeight = false;
     this.repAddColumn.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Left)});
     this.repAddColumn.Name = "repAddColumn";
     this.repAddColumn.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repAddColumn.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repAddColumn_ButtonClick);
     //
     // gcMet_Cost
     //
     this.gcMet_Cost.Caption = "Cost";
     this.gcMet_Cost.FieldName = "Cost_method";
     this.gcMet_Cost.Name = "gcMet_Cost";
     //
     // gcMet_Unit1
     //
     this.gcMet_Unit1.Caption = "Unit";
     this.gcMet_Unit1.FieldName = "Idunit_result";
     this.gcMet_Unit1.Name = "gcMet_Unit1";
     //
     // gcMet_Unit_Name
     //
     this.gcMet_Unit_Name.Caption = "Name_unit";
     this.gcMet_Unit_Name.FieldName = "Name_unit";
     this.gcMet_Unit_Name.Name = "gcMet_Unit_Name";
     //
     // gcMet_Idelement
     //
     this.gcMet_Idelement.Caption = "Idelement";
     this.gcMet_Idelement.FieldName = "Idelement";
     this.gcMet_Idelement.Name = "gcMet_Idelement";
     //
     // gcMet_Idtemplate_method
     //
     this.gcMet_Idtemplate_method.Caption = "idtemplate_method";
     this.gcMet_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gcMet_Idtemplate_method.Name = "gcMet_Idtemplate_method";
     //
     // gcMet_Analisys_time
     //
     this.gcMet_Analisys_time.Caption = "Analysis_time";
     this.gcMet_Analisys_time.FieldName = "Analisys_time";
     this.gcMet_Analisys_time.Name = "gcMet_Analisys_time";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(452, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 3;
     //
     // tpRightReports
     //
     this.tpRightReports.Controls.Add(this.gcReport);
     this.tpRightReports.Controls.Add(this.groupControl1);
     this.tpRightReports.Name = "tpRightReports";
     this.tpRightReports.PageVisible = false;
     this.tpRightReports.Size = new System.Drawing.Size(292, 0);
     this.tpRightReports.Text = "Informes";
     //
     // gcReport
     //
     this.gcReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReport.EmbeddedNavigator.Name = "";
     this.gcReport.Location = new System.Drawing.Point(0, 53);
     this.gcReport.MainView = this.gvReport;
     this.gcReport.Name = "gcReport";
     this.gcReport.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repReportOption,
     this.repStatusReport,
     this.repDateReport,
     this.repTimeReport,
     this.repTypeReport});
     this.gcReport.Size = new System.Drawing.Size(292, 0);
     this.gcReport.TabIndex = 2;
     this.gcReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReport});
     //
     // gvReport
     //
     this.gvReport.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReport.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Empty.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReport.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReport.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReport.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseFont = true;
     this.gvReport.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReport.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReport.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReport.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.Preview.Options.UseBackColor = true;
     this.gvReport.Appearance.Preview.Options.UseForeColor = true;
     this.gvReport.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.Row.Options.UseBackColor = true;
     this.gvReport.Appearance.Row.Options.UseForeColor = true;
     this.gvReport.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReport.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRep_idrecep_sample_report,
     this.gcRep_order_report,
     this.gcRep_cod_recep_sample_report,
     this.gcRep_report_status,
     this.gcRep_type_report,
     this.gcRep_Option,
     this.gcRep_Str_cod_recep_sample_report,
     this.gcRep_Date_report});
     this.gvReport.GridControl = this.gcReport;
     this.gvReport.Name = "gvReport";
     this.gvReport.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReport.OptionsView.EnableAppearanceOddRow = true;
     this.gvReport.OptionsView.ShowGroupPanel = false;
     this.gvReport.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReport_RowCellStyle);
     this.gvReport.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReport_InitNewRow);
     this.gvReport.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReport_FocusedRowChanged);
     //
     // gcRep_idrecep_sample_report
     //
     this.gcRep_idrecep_sample_report.Caption = "idrecep_sample_report";
     this.gcRep_idrecep_sample_report.FieldName = "Idrecep_sample_report";
     this.gcRep_idrecep_sample_report.Name = "gcRep_idrecep_sample_report";
     //
     // gcRep_order_report
     //
     this.gcRep_order_report.Caption = "N°";
     this.gcRep_order_report.FieldName = "Order_report";
     this.gcRep_order_report.Name = "gcRep_order_report";
     this.gcRep_order_report.OptionsColumn.AllowEdit = false;
     this.gcRep_order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcRep_order_report.OptionsFilter.AllowFilter = false;
     this.gcRep_order_report.Visible = true;
     this.gcRep_order_report.VisibleIndex = 0;
     this.gcRep_order_report.Width = 23;
     //
     // gcRep_cod_recep_sample_report
     //
     this.gcRep_cod_recep_sample_report.Caption = "Código";
     this.gcRep_cod_recep_sample_report.FieldName = "Cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.Name = "gcRep_cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_cod_recep_sample_report.Width = 66;
     //
     // gcRep_report_status
     //
     this.gcRep_report_status.Caption = "Estado";
     this.gcRep_report_status.ColumnEdit = this.repStatusReport;
     this.gcRep_report_status.FieldName = "Report_status";
     this.gcRep_report_status.Name = "gcRep_report_status";
     this.gcRep_report_status.OptionsColumn.AllowEdit = false;
     this.gcRep_report_status.Visible = true;
     this.gcRep_report_status.VisibleIndex = 2;
     this.gcRep_report_status.Width = 74;
     //
     // repStatusReport
     //
     this.repStatusReport.AutoHeight = false;
     this.repStatusReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repStatusReport.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repStatusReport.Name = "repStatusReport";
     this.repStatusReport.NullText = "";
     this.repStatusReport.ShowFooter = false;
     this.repStatusReport.ShowHeader = false;
     //
     // gcRep_type_report
     //
     this.gcRep_type_report.Caption = "type_report";
     this.gcRep_type_report.FieldName = "Type_report";
     this.gcRep_type_report.Name = "gcRep_type_report";
     this.gcRep_type_report.Width = 69;
     //
     // gcRep_Option
     //
     this.gcRep_Option.Caption = "#";
     this.gcRep_Option.ColumnEdit = this.repReportOption;
     this.gcRep_Option.Name = "gcRep_Option";
     this.gcRep_Option.Visible = true;
     this.gcRep_Option.VisibleIndex = 3;
     this.gcRep_Option.Width = 81;
     //
     // repReportOption
     //
     this.repReportOption.AutoHeight = false;
     serializableAppearanceObject2.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject2.Options.UseFont = true;
     this.repReportOption.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "edit", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repReportOption.Name = "repReportOption";
     this.repReportOption.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repReportOption.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repReportOption_ButtonClick);
     //
     // gcRep_Str_cod_recep_sample_report
     //
     this.gcRep_Str_cod_recep_sample_report.Caption = "Cod. Interno";
     this.gcRep_Str_cod_recep_sample_report.FieldName = "Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.Name = "gcRep_Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_Str_cod_recep_sample_report.Visible = true;
     this.gcRep_Str_cod_recep_sample_report.VisibleIndex = 1;
     this.gcRep_Str_cod_recep_sample_report.Width = 123;
     //
     // gcRep_Date_report
     //
     this.gcRep_Date_report.Caption = "Date_report";
     this.gcRep_Date_report.FieldName = "Date_report";
     this.gcRep_Date_report.Name = "gcRep_Date_report";
     this.gcRep_Date_report.Width = 62;
     //
     // repDateReport
     //
     this.repDateReport.AutoHeight = false;
     this.repDateReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateReport.Name = "repDateReport";
     //
     // repTimeReport
     //
     this.repTimeReport.AutoHeight = false;
     this.repTimeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeReport.Name = "repTimeReport";
     //
     // repTypeReport
     //
     this.repTypeReport.AutoHeight = false;
     this.repTypeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repTypeReport.Name = "repTypeReport";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btMakePartialReport);
     this.groupControl1.Controls.Add(this.btMakeFinalReport);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(292, 53);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Crear Informe de Ensayo";
     //
     // btMakePartialReport
     //
     this.btMakePartialReport.AllowDrop = true;
     this.btMakePartialReport.Appearance.Options.UseTextOptions = true;
     this.btMakePartialReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakePartialReport.Location = new System.Drawing.Point(5, 23);
     this.btMakePartialReport.Name = "btMakePartialReport";
     this.btMakePartialReport.Size = new System.Drawing.Size(90, 25);
     this.btMakePartialReport.TabIndex = 0;
     this.btMakePartialReport.Text = "Informe Parcial";
     this.btMakePartialReport.Click += new System.EventHandler(this.btMakePartialReport_Click);
     //
     // btMakeFinalReport
     //
     this.btMakeFinalReport.AllowDrop = true;
     this.btMakeFinalReport.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btMakeFinalReport.Appearance.Options.UseForeColor = true;
     this.btMakeFinalReport.Appearance.Options.UseTextOptions = true;
     this.btMakeFinalReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakeFinalReport.Location = new System.Drawing.Point(101, 23);
     this.btMakeFinalReport.Name = "btMakeFinalReport";
     this.btMakeFinalReport.Size = new System.Drawing.Size(90, 25);
     this.btMakeFinalReport.TabIndex = 0;
     this.btMakeFinalReport.Text = "Informe Final";
     this.btMakeFinalReport.Click += new System.EventHandler(this.btMakeFinalReport_Click);
     //
     // tpRightAttach
     //
     this.tpRightAttach.Controls.Add(this.gcAttachFile);
     this.tpRightAttach.Controls.Add(this.groupControl2);
     this.tpRightAttach.Name = "tpRightAttach";
     this.tpRightAttach.PageVisible = false;
     this.tpRightAttach.Size = new System.Drawing.Size(292, 0);
     this.tpRightAttach.Text = "Adjuntar";
     //
     // gcAttachFile
     //
     this.gcAttachFile.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAttachFile.EmbeddedNavigator.Name = "";
     this.gcAttachFile.Location = new System.Drawing.Point(0, 53);
     this.gcAttachFile.MainView = this.gvAttachFile;
     this.gcAttachFile.Name = "gcAttachFile";
     this.gcAttachFile.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repButtons,
     this.repAttach_status,
     this.repAttach_file});
     this.gcAttachFile.Size = new System.Drawing.Size(292, 0);
     this.gcAttachFile.TabIndex = 4;
     this.gcAttachFile.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAttachFile});
     //
     // gvAttachFile
     //
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Empty.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvAttachFile.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvAttachFile.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvAttachFile.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseFont = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.OddRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.Preview.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Preview.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.Row.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Row.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvAttachFile.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAttachFile.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcAtt_Iddocument_recep,
     this.gcAtt_Idrecep_sample,
     this.gcAtt_FileName,
     this.gcAtt_Attach_status,
     this.gcAtt_Buttons,
     this.gcAtt_SourcePath,
     this.gcAtt_Order_file,
     this.gcAtt_Idrecep_sample_attach});
     this.gvAttachFile.GridControl = this.gcAttachFile;
     this.gvAttachFile.Name = "gvAttachFile";
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvAttachFile.OptionsView.EnableAppearanceEvenRow = true;
     this.gvAttachFile.OptionsView.EnableAppearanceOddRow = true;
     this.gvAttachFile.OptionsView.ShowGroupPanel = false;
     this.gvAttachFile.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvAttachFile_RowCellStyle);
     //
     // gcAtt_Iddocument_recep
     //
     this.gcAtt_Iddocument_recep.Caption = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.FieldName = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.Name = "gcAtt_Iddocument_recep";
     //
     // gcAtt_Idrecep_sample
     //
     this.gcAtt_Idrecep_sample.Caption = "gridColumn1";
     this.gcAtt_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcAtt_Idrecep_sample.Name = "gcAtt_Idrecep_sample";
     //
     // gcAtt_FileName
     //
     this.gcAtt_FileName.Caption = "Adjuntar Documento";
     this.gcAtt_FileName.ColumnEdit = this.repAttach_file;
     this.gcAtt_FileName.FieldName = "Name_file";
     this.gcAtt_FileName.Name = "gcAtt_FileName";
     this.gcAtt_FileName.Visible = true;
     this.gcAtt_FileName.VisibleIndex = 0;
     this.gcAtt_FileName.Width = 142;
     //
     // repAttach_file
     //
     this.repAttach_file.AutoHeight = false;
     serializableAppearanceObject3.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject3.Options.UseFont = true;
     this.repAttach_file.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Cargar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3)});
     this.repAttach_file.Name = "repAttach_file";
     this.repAttach_file.NullText = "";
     //
     // gcAtt_Attach_status
     //
     this.gcAtt_Attach_status.Caption = "Estado";
     this.gcAtt_Attach_status.ColumnEdit = this.repAttach_status;
     this.gcAtt_Attach_status.FieldName = "Attach_status";
     this.gcAtt_Attach_status.Name = "gcAtt_Attach_status";
     this.gcAtt_Attach_status.Visible = true;
     this.gcAtt_Attach_status.VisibleIndex = 1;
     this.gcAtt_Attach_status.Width = 99;
     //
     // repAttach_status
     //
     this.repAttach_status.AutoHeight = false;
     this.repAttach_status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repAttach_status.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Attach_status")});
     this.repAttach_status.Name = "repAttach_status";
     this.repAttach_status.NullText = "";
     this.repAttach_status.ShowFooter = false;
     this.repAttach_status.ShowHeader = false;
     //
     // gcAtt_Buttons
     //
     this.gcAtt_Buttons.Caption = "#";
     this.gcAtt_Buttons.ColumnEdit = this.repButtons;
     this.gcAtt_Buttons.Name = "gcAtt_Buttons";
     this.gcAtt_Buttons.Visible = true;
     this.gcAtt_Buttons.VisibleIndex = 2;
     this.gcAtt_Buttons.Width = 49;
     //
     // repButtons
     //
     this.repButtons.AutoHeight = false;
     serializableAppearanceObject4.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject4.Options.UseFont = true;
     this.repButtons.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4)});
     this.repButtons.Name = "repButtons";
     this.repButtons.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repButtons.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repButtons_ButtonClick);
     //
     // gcAtt_SourcePath
     //
     this.gcAtt_SourcePath.Caption = "Source path";
     this.gcAtt_SourcePath.FieldName = "Source_path";
     this.gcAtt_SourcePath.Name = "gcAtt_SourcePath";
     //
     // gcAtt_Order_file
     //
     this.gcAtt_Order_file.Caption = "Order_file";
     this.gcAtt_Order_file.FieldName = "Order_file";
     this.gcAtt_Order_file.Name = "gcAtt_Order_file";
     //
     // gcAtt_Idrecep_sample_attach
     //
     this.gcAtt_Idrecep_sample_attach.Caption = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.FieldName = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.Name = "gcAtt_Idrecep_sample_attach";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btNewFile);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(292, 53);
     this.groupControl2.TabIndex = 3;
     this.groupControl2.Text = "Adjuntar a partir de un archivo";
     //
     // btNewFile
     //
     this.btNewFile.AllowDrop = true;
     this.btNewFile.Appearance.Options.UseTextOptions = true;
     this.btNewFile.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btNewFile.Location = new System.Drawing.Point(5, 22);
     this.btNewFile.Name = "btNewFile";
     this.btNewFile.Size = new System.Drawing.Size(56, 25);
     this.btNewFile.TabIndex = 0;
     this.btNewFile.Text = "Nuevo";
     this.btNewFile.Click += new System.EventHandler(this.btNewFile_Click);
     //
     // tpRightProgram
     //
     this.tpRightProgram.Controls.Add(this.gcProgram);
     this.tpRightProgram.Controls.Add(this.groupControl3);
     this.tpRightProgram.Name = "tpRightProgram";
     this.tpRightProgram.PageVisible = false;
     this.tpRightProgram.Size = new System.Drawing.Size(292, 0);
     this.tpRightProgram.Text = "Programar";
     //
     // gcProgram
     //
     this.gcProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcProgram.EmbeddedNavigator.Name = "";
     this.gcProgram.Location = new System.Drawing.Point(0, 53);
     this.gcProgram.MainView = this.gvProgram;
     this.gcProgram.Name = "gcProgram";
     this.gcProgram.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repProgramButton,
     this.repProgramStatus,
     this.repDateProgram,
     this.repTimeProgram});
     this.gcProgram.Size = new System.Drawing.Size(292, 0);
     this.gcProgram.TabIndex = 4;
     this.gcProgram.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvProgram});
     //
     // gvProgram
     //
     this.gvProgram.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvProgram.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Empty.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvProgram.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvProgram.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvProgram.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvProgram.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseFont = true;
     this.gvProgram.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvProgram.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.OddRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.Preview.Options.UseBackColor = true;
     this.gvProgram.Appearance.Preview.Options.UseForeColor = true;
     this.gvProgram.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.Row.Options.UseBackColor = true;
     this.gvProgram.Appearance.Row.Options.UseForeColor = true;
     this.gvProgram.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvProgram.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.VertLine.Options.UseBackColor = true;
     this.gvProgram.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcProg_Idrecep_sample_program,
     this.gcProg_Order_report,
     this.gcProg_Cod_recep_sample_program,
     this.gcProg_Program_status,
     this.gridColumn6,
     this.gcProg_Date_report,
     this.gcProg_Time_report,
     this.gcProg_Str_cod_recep_sample_program});
     this.gvProgram.GridControl = this.gcProgram;
     this.gvProgram.Name = "gvProgram";
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvProgram.OptionsView.EnableAppearanceEvenRow = true;
     this.gvProgram.OptionsView.EnableAppearanceOddRow = true;
     this.gvProgram.OptionsView.ShowGroupPanel = false;
     this.gvProgram.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvProgram_RowCellStyle);
     this.gvProgram.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvProgram_InitNewRow);
     this.gvProgram.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvProgram_FocusedRowChanged);
     //
     // gcProg_Idrecep_sample_program
     //
     this.gcProg_Idrecep_sample_program.Caption = "idrecep_sample_report";
     this.gcProg_Idrecep_sample_program.FieldName = "Idrecep_sample_program";
     this.gcProg_Idrecep_sample_program.Name = "gcProg_Idrecep_sample_program";
     //
     // gcProg_Order_report
     //
     this.gcProg_Order_report.Caption = "N°";
     this.gcProg_Order_report.FieldName = "Order_report";
     this.gcProg_Order_report.Name = "gcProg_Order_report";
     this.gcProg_Order_report.OptionsColumn.AllowEdit = false;
     this.gcProg_Order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Order_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Order_report.Visible = true;
     this.gcProg_Order_report.VisibleIndex = 0;
     this.gcProg_Order_report.Width = 23;
     //
     // gcProg_Cod_recep_sample_program
     //
     this.gcProg_Cod_recep_sample_program.Caption = "Código";
     this.gcProg_Cod_recep_sample_program.FieldName = "Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.Name = "gcProg_Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Cod_recep_sample_program.Width = 63;
     //
     // gcProg_Program_status
     //
     this.gcProg_Program_status.Caption = "Estado";
     this.gcProg_Program_status.ColumnEdit = this.repProgramStatus;
     this.gcProg_Program_status.FieldName = "Program_status";
     this.gcProg_Program_status.Name = "gcProg_Program_status";
     this.gcProg_Program_status.OptionsColumn.AllowEdit = false;
     this.gcProg_Program_status.Width = 42;
     //
     // repProgramStatus
     //
     this.repProgramStatus.AutoHeight = false;
     this.repProgramStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProgramStatus.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repProgramStatus.Name = "repProgramStatus";
     this.repProgramStatus.NullText = "";
     this.repProgramStatus.ShowFooter = false;
     this.repProgramStatus.ShowHeader = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "#";
     this.gridColumn6.ColumnEdit = this.repProgramButton;
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 67;
     //
     // repProgramButton
     //
     this.repProgramButton.AutoHeight = false;
     this.repProgramButton.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Programar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repProgramButton.Name = "repProgramButton";
     this.repProgramButton.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repProgramButton.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProgramButton_ButtonClick);
     //
     // gcProg_Date_report
     //
     this.gcProg_Date_report.Caption = "Fecha";
     this.gcProg_Date_report.ColumnEdit = this.repDateProgram;
     this.gcProg_Date_report.FieldName = "Date_report";
     this.gcProg_Date_report.Name = "gcProg_Date_report";
     this.gcProg_Date_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Date_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Date_report.Visible = true;
     this.gcProg_Date_report.VisibleIndex = 2;
     this.gcProg_Date_report.Width = 67;
     //
     // repDateProgram
     //
     this.repDateProgram.AutoHeight = false;
     this.repDateProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateProgram.Name = "repDateProgram";
     //
     // gcProg_Time_report
     //
     this.gcProg_Time_report.Caption = "Hora";
     this.gcProg_Time_report.ColumnEdit = this.repTimeProgram;
     this.gcProg_Time_report.FieldName = "Time_report";
     this.gcProg_Time_report.Name = "gcProg_Time_report";
     this.gcProg_Time_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Time_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Time_report.Visible = true;
     this.gcProg_Time_report.VisibleIndex = 3;
     this.gcProg_Time_report.Width = 66;
     //
     // repTimeProgram
     //
     this.repTimeProgram.AutoHeight = false;
     this.repTimeProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeProgram.Mask.EditMask = "t";
     this.repTimeProgram.Name = "repTimeProgram";
     //
     // gcProg_Str_cod_recep_sample_program
     //
     this.gcProg_Str_cod_recep_sample_program.Caption = "Código";
     this.gcProg_Str_cod_recep_sample_program.FieldName = "Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.Name = "gcProg_Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowFilter = false;
     this.gcProg_Str_cod_recep_sample_program.Visible = true;
     this.gcProg_Str_cod_recep_sample_program.VisibleIndex = 1;
     this.gcProg_Str_cod_recep_sample_program.Width = 78;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.btProgramSelection);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(292, 53);
     this.groupControl3.TabIndex = 3;
     this.groupControl3.Text = "Crear Informe de Ensayo";
     //
     // btProgramSelection
     //
     this.btProgramSelection.AllowDrop = true;
     this.btProgramSelection.Appearance.Options.UseTextOptions = true;
     this.btProgramSelection.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btProgramSelection.Location = new System.Drawing.Point(5, 23);
     this.btProgramSelection.Name = "btProgramSelection";
     this.btProgramSelection.Size = new System.Drawing.Size(113, 25);
     this.btProgramSelection.TabIndex = 0;
     this.btProgramSelection.Text = "Agregar selección";
     this.btProgramSelection.Click += new System.EventHandler(this.btProgramSelection_Click);
     //
     // btPrintTicket
     //
     this.btPrintTicket.FlatAppearance.BorderSize = 0;
     this.btPrintTicket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btPrintTicket.Location = new System.Drawing.Point(729, 12);
     this.btPrintTicket.Name = "btPrintTicket";
     this.btPrintTicket.Size = new System.Drawing.Size(48, 23);
     this.btPrintTicket.TabIndex = 10;
     this.btPrintTicket.Text = "Imprimir Etiquetas";
     this.btPrintTicket.UseVisualStyleBackColor = true;
     this.btPrintTicket.Visible = false;
     this.btPrintTicket.Click += new System.EventHandler(this.btPrintTicket_Click_1);
     //
     // btDesignPrint
     //
     this.btDesignPrint.FlatAppearance.BorderSize = 0;
     this.btDesignPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btDesignPrint.Location = new System.Drawing.Point(772, 9);
     this.btDesignPrint.Name = "btDesignPrint";
     this.btDesignPrint.Size = new System.Drawing.Size(69, 23);
     this.btDesignPrint.TabIndex = 10;
     this.btDesignPrint.Text = "Diseñar Etiquetas";
     this.btDesignPrint.UseVisualStyleBackColor = true;
     this.btDesignPrint.Visible = false;
     this.btDesignPrint.Click += new System.EventHandler(this.btDesignPrint_Click);
     //
     // deReception
     //
     this.deReception.EditValue = null;
     this.deReception.Location = new System.Drawing.Point(75, 5);
     this.deReception.Name = "deReception";
     this.deReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deReception.Properties.ReadOnly = true;
     this.deReception.Size = new System.Drawing.Size(87, 20);
     this.deReception.TabIndex = 10;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(12, 8);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 13);
     this.label12.TabIndex = 9;
     this.label12.Text = "Recepción:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(12, 50);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(47, 13);
     this.label19.TabIndex = 9;
     this.label19.Text = "Entrega:";
     //
     // deResult
     //
     this.deResult.EditValue = null;
     this.deResult.Location = new System.Drawing.Point(75, 47);
     this.deResult.Name = "deResult";
     this.deResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deResult.Size = new System.Drawing.Size(87, 20);
     this.deResult.TabIndex = 10;
     //
     // xtraTabControl2
     //
     this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl2.Appearance.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl2.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl2.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl2.Location = new System.Drawing.Point(551, 29);
     this.xtraTabControl2.Name = "xtraTabControl2";
     this.xtraTabControl2.PaintStyleName = "PropertyView";
     this.xtraTabControl2.SelectedTabPage = this.tabDateRegRecep;
     this.xtraTabControl2.Size = new System.Drawing.Size(264, 114);
     this.xtraTabControl2.TabIndex = 4;
     this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabDateRegRecep});
     //
     // tabDateRegRecep
     //
     this.tabDateRegRecep.Controls.Add(this.tbNumDays);
     this.tabDateRegRecep.Controls.Add(this.deHourResult);
     this.tabDateRegRecep.Controls.Add(this.deHourReception);
     this.tabDateRegRecep.Controls.Add(this.label27);
     this.tabDateRegRecep.Controls.Add(this.deReception);
     this.tabDateRegRecep.Controls.Add(this.lookUpEdit1);
     this.tabDateRegRecep.Controls.Add(this.deResult);
     this.tabDateRegRecep.Controls.Add(this.label19);
     this.tabDateRegRecep.Controls.Add(this.textEdit3);
     this.tabDateRegRecep.Controls.Add(this.label12);
     this.tabDateRegRecep.Name = "tabDateRegRecep";
     this.tabDateRegRecep.Size = new System.Drawing.Size(262, 93);
     this.tabDateRegRecep.Text = "Fechas";
     //
     // tbNumDays
     //
     this.tbNumDays.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbNumDays.Location = new System.Drawing.Point(75, 26);
     this.tbNumDays.Name = "tbNumDays";
     this.tbNumDays.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbNumDays.Properties.IsFloatValue = false;
     this.tbNumDays.Properties.Mask.EditMask = "N00";
     this.tbNumDays.Size = new System.Drawing.Size(42, 20);
     this.tbNumDays.TabIndex = 12;
     this.tbNumDays.EditValueChanged += new System.EventHandler(this.tbNumDays_EditValueChanged);
     //
     // deHourResult
     //
     this.deHourResult.EditValue = null;
     this.deHourResult.Location = new System.Drawing.Point(164, 47);
     this.deHourResult.Name = "deHourResult";
     this.deHourResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourResult.Properties.Mask.EditMask = "t";
     this.deHourResult.Size = new System.Drawing.Size(91, 20);
     this.deHourResult.TabIndex = 11;
     //
     // deHourReception
     //
     this.deHourReception.EditValue = null;
     this.deHourReception.Location = new System.Drawing.Point(164, 5);
     this.deHourReception.Name = "deHourReception";
     this.deHourReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourReception.Properties.Mask.EditMask = "t";
     this.deHourReception.Size = new System.Drawing.Size(91, 20);
     this.deHourReception.TabIndex = 1;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(12, 29);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(45, 13);
     this.label27.TabIndex = 9;
     this.label27.Text = "N°Días:";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit1.Properties.NullText = "Seleccionar";
     this.lookUpEdit1.Properties.ShowFooter = false;
     this.lookUpEdit1.Properties.ShowHeader = false;
     this.lookUpEdit1.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit1.TabIndex = 1;
     //
     // textEdit3
     //
     this.textEdit3.Location = new System.Drawing.Point(452, 9);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Size = new System.Drawing.Size(100, 20);
     this.textEdit3.TabIndex = 3;
     //
     // btReportClient
     //
     this.btReportClient.FlatAppearance.BorderSize = 0;
     this.btReportClient.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btReportClient.Location = new System.Drawing.Point(847, 10);
     this.btReportClient.Name = "btReportClient";
     this.btReportClient.Size = new System.Drawing.Size(59, 23);
     this.btReportClient.TabIndex = 11;
     this.btReportClient.Text = "Repote por Cliente";
     this.btReportClient.UseVisualStyleBackColor = true;
     this.btReportClient.Visible = false;
     this.btReportClient.Click += new System.EventHandler(this.btReportClient_Click);
     //
     // txIdrecep_sample
     //
     this.txIdrecep_sample.Enabled = false;
     this.txIdrecep_sample.Location = new System.Drawing.Point(844, 117);
     this.txIdrecep_sample.Name = "txIdrecep_sample";
     this.txIdrecep_sample.Properties.Appearance.BackColor = System.Drawing.Color.Gainsboro;
     this.txIdrecep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.txIdrecep_sample.Size = new System.Drawing.Size(100, 20);
     this.txIdrecep_sample.TabIndex = 7;
     this.txIdrecep_sample.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(8, 7);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(43, 13);
     this.label25.TabIndex = 10;
     this.label25.Text = "Código:";
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(93, 4);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.NullText = "Seleccionar";
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbTypeSample.Size = new System.Drawing.Size(146, 20);
     this.cbTypeSample.TabIndex = 2;
     this.cbTypeSample.EditValueChanged += new System.EventHandler(this.cbTypeSample_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 7);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(86, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Tipo de muestra:";
     //
     // ofdRecepFileAttach
     //
     this.ofdRecepFileAttach.FileName = "openFileDialog1";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(834, 41);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(110, 13);
     this.label14.TabIndex = 9;
     this.label14.Text = "gastos administrativos";
     this.label14.Visible = false;
     //
     // tbAdministrativeExpense
     //
     this.tbAdministrativeExpense.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAdministrativeExpense.Location = new System.Drawing.Point(837, 57);
     this.tbAdministrativeExpense.Name = "tbAdministrativeExpense";
     this.tbAdministrativeExpense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbAdministrativeExpense.Size = new System.Drawing.Size(107, 20);
     this.tbAdministrativeExpense.TabIndex = 11;
     this.tbAdministrativeExpense.Visible = false;
     //
     // tbCod_recep_sample
     //
     this.tbCod_recep_sample.Location = new System.Drawing.Point(55, 4);
     this.tbCod_recep_sample.Name = "tbCod_recep_sample";
     this.tbCod_recep_sample.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tbCod_recep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.tbCod_recep_sample.Properties.ReadOnly = true;
     this.tbCod_recep_sample.Size = new System.Drawing.Size(100, 20);
     this.tbCod_recep_sample.TabIndex = 7;
     //
     // ucSignReception
     //
     this.ucSignReception.Location = new System.Drawing.Point(11, 2);
     this.ucSignReception.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignReception.Name = "ucSignReception";
     this.ucSignReception.Pwd = null;
     this.ucSignReception.Size = new System.Drawing.Size(158, 40);
     this.ucSignReception.TabIndex = 16;
     this.ucSignReception.Title = "Guardar";
     this.ucSignReception.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.panel9);
     this.panelControl1.Controls.Add(this.xtraTabControl2);
     this.panelControl1.Controls.Add(this.tbAdministrativeExpense);
     this.panelControl1.Controls.Add(this.label14);
     this.panelControl1.Controls.Add(this.xtraTabControl1);
     this.panelControl1.Controls.Add(this.txIdrecep_sample);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(999, 146);
     this.panelControl1.TabIndex = 12;
     this.panelControl1.Text = "panelControl1";
     //
     // panel9
     //
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Location = new System.Drawing.Point(13, 3);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(701, 27);
     this.panel9.TabIndex = 12;
     //
     // panel11
     //
     this.panel11.Controls.Add(this.paTypeSample);
     this.panel11.Controls.Add(this.paCodRegisterRecep);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel11.Location = new System.Drawing.Point(0, 0);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(701, 27);
     this.panel11.TabIndex = 1;
     //
     // paTypeSample
     //
     this.paTypeSample.Controls.Add(this.cbTypeSample);
     this.paTypeSample.Controls.Add(this.label26);
     this.paTypeSample.Dock = System.Windows.Forms.DockStyle.Left;
     this.paTypeSample.Location = new System.Drawing.Point(167, 0);
     this.paTypeSample.Name = "paTypeSample";
     this.paTypeSample.Size = new System.Drawing.Size(257, 27);
     this.paTypeSample.TabIndex = 12;
     //
     // paCodRegisterRecep
     //
     this.paCodRegisterRecep.Controls.Add(this.tbCod_recep_sample);
     this.paCodRegisterRecep.Controls.Add(this.label25);
     this.paCodRegisterRecep.Dock = System.Windows.Forms.DockStyle.Left;
     this.paCodRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.paCodRegisterRecep.Name = "paCodRegisterRecep";
     this.paCodRegisterRecep.Size = new System.Drawing.Size(167, 27);
     this.paCodRegisterRecep.TabIndex = 11;
     //
     // ucTitleRegisterRecep
     //
     this.ucTitleRegisterRecep.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ucTitleRegisterRecep.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTitleRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.ucTitleRegisterRecep.Name = "ucTitleRegisterRecep";
     this.ucTitleRegisterRecep.Size = new System.Drawing.Size(999, 27);
     this.ucTitleRegisterRecep.TabIndex = 8;
     this.ucTitleRegisterRecep.Title = "Title";
     //
     // ucToolStrip1
     //
     this.ucToolStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ucToolStrip1.Location = new System.Drawing.Point(0, 0);
     this.ucToolStrip1.Name = "ucToolStrip1";
     this.ucToolStrip1.Size = new System.Drawing.Size(1013, 25);
     this.ucToolStrip1.TabIndex = 0;
     this.ucToolStrip1.onFind += new LimsProject.Find(this.ucToolStrip1_onFind);
     this.ucToolStrip1.onNew += new LimsProject.New(this.ucToolStrip1_onNew);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(192, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(191, 22);
     this.toolStripMenuItem1.Text = "Registro de Recepción";
     //
     // ucGenerarA
     //
     this.ucGenerarA.Location = new System.Drawing.Point(476, 9);
     this.ucGenerarA.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarA.Name = "ucGenerarA";
     this.ucGenerarA.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarA.TabIndex = 19;
     this.ucGenerarA.Title = "Generar a";
     this.ucGenerarA.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarA_onSelectedIndex);
     //
     // ucGenerarDesde
     //
     this.ucGenerarDesde.Location = new System.Drawing.Point(580, 9);
     this.ucGenerarDesde.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarDesde.Name = "ucGenerarDesde";
     this.ucGenerarDesde.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarDesde.TabIndex = 19;
     this.ucGenerarDesde.Title = "Generar desde";
     this.ucGenerarDesde.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarDesde_onSelectedIndex);
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl3);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(999, 383);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text = "panelControl2";
     //
     // xtraTabControl3
     //
     this.xtraTabControl3.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl3.Appearance.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl3.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl3.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl3.Location = new System.Drawing.Point(2, 2);
     this.xtraTabControl3.Name = "xtraTabControl3";
     this.xtraTabControl3.PaintStyleName = "PropertyView";
     this.xtraTabControl3.SelectedTabPage = this.tpMuestras;
     this.xtraTabControl3.Size = new System.Drawing.Size(995, 379);
     this.xtraTabControl3.TabIndex = 4;
     this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpMuestras,
     this.tpAnexos,
     this.tpReject,
     this.tpDecree});
     //
     // tpMuestras
     //
     this.tpMuestras.Controls.Add(this.gcReception);
     this.tpMuestras.Controls.Add(this.panelControl7);
     this.tpMuestras.Controls.Add(this.expandablePanel1);
     this.tpMuestras.Name = "tpMuestras";
     this.tpMuestras.Size = new System.Drawing.Size(993, 358);
     this.tpMuestras.Text = "Muestras";
     //
     // panelControl7
     //
     this.panelControl7.Controls.Add(this.panel7);
     this.panelControl7.Controls.Add(this.panel5);
     this.panelControl7.Controls.Add(this.gcShowColumns);
     this.panelControl7.Controls.Add(this.tbAmortization);
     this.panelControl7.Controls.Add(this.label10);
     this.panelControl7.Controls.Add(this.tbResidue);
     this.panelControl7.Controls.Add(this.label13);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl7.Location = new System.Drawing.Point(0, 288);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(699, 70);
     this.panelControl7.TabIndex = 3;
     this.panelControl7.Text = "panelControl7";
     //
     // tpAnexos
     //
     this.tpAnexos.Controls.Add(this.checkEdit8);
     this.tpAnexos.Controls.Add(this.memoEdit1);
     this.tpAnexos.Controls.Add(this.checkEdit7);
     this.tpAnexos.Controls.Add(this.groupControl4);
     this.tpAnexos.Controls.Add(this.textEdit5);
     this.tpAnexos.Controls.Add(this.label21);
     this.tpAnexos.Controls.Add(this.label18);
     this.tpAnexos.Name = "tpAnexos";
     this.tpAnexos.Size = new System.Drawing.Size(520, 0);
     this.tpAnexos.Text = "Anexos";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(169, 35);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "Muestras de composito";
     this.checkEdit8.Size = new System.Drawing.Size(139, 18);
     this.checkEdit8.TabIndex = 12;
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(105, 63);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(548, 54);
     this.memoEdit1.TabIndex = 2;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(24, 35);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "Muestras puntuales";
     this.checkEdit7.Size = new System.Drawing.Size(139, 18);
     this.checkEdit7.TabIndex = 12;
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.textEdit2);
     this.groupControl4.Controls.Add(this.timeEdit1);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.dateEdit1);
     this.groupControl4.Controls.Add(this.checkEdit6);
     this.groupControl4.Controls.Add(this.checkEdit5);
     this.groupControl4.Controls.Add(this.checkEdit4);
     this.groupControl4.Controls.Add(this.checkEdit3);
     this.groupControl4.Controls.Add(this.checkEdit2);
     this.groupControl4.Controls.Add(this.checkEdit1);
     this.groupControl4.Location = new System.Drawing.Point(8, 130);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(645, 196);
     this.groupControl4.TabIndex = 1;
     this.groupControl4.Text = "Campos a llenar al recepcionar las muestras";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(161, 163);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(196, 20);
     this.textEdit2.TabIndex = 4;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = new System.DateTime(2013, 8, 7, 0, 0, 0, 0);
     this.timeEdit1.Location = new System.Drawing.Point(161, 138);
     this.timeEdit1.Name = "timeEdit1";
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Size = new System.Drawing.Size(100, 20);
     this.timeEdit1.TabIndex = 3;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(23, 166);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(133, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Condiciones de transporte:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(23, 141);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(98, 13);
     this.label16.TabIndex = 2;
     this.label16.Text = "Hora de recepción:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(23, 116);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(105, 13);
     this.label15.TabIndex = 2;
     this.label15.Text = "Fecha de recepción:";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(161, 113);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(201, 73);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "Duplicado";
     this.checkEdit6.Size = new System.Drawing.Size(75, 18);
     this.checkEdit6.TabIndex = 0;
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(201, 48);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "Blanco muestreo";
     this.checkEdit5.Size = new System.Drawing.Size(112, 18);
     this.checkEdit5.TabIndex = 0;
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(201, 23);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "Blanco viajero";
     this.checkEdit4.Size = new System.Drawing.Size(98, 18);
     this.checkEdit4.TabIndex = 0;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(26, 73);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Conservación de muestras";
     this.checkEdit3.Size = new System.Drawing.Size(160, 18);
     this.checkEdit3.TabIndex = 0;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(26, 48);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Muestras recibidas intactas";
     this.checkEdit2.Size = new System.Drawing.Size(160, 18);
     this.checkEdit2.TabIndex = 0;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(26, 23);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Recipiente adecuado";
     this.checkEdit1.Size = new System.Drawing.Size(128, 18);
     this.checkEdit1.TabIndex = 0;
     //
     // textEdit5
     //
     this.textEdit5.Location = new System.Drawing.Point(79, 10);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Size = new System.Drawing.Size(358, 20);
     this.textEdit5.TabIndex = 10;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(21, 13);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 11;
     this.label21.Text = "Proyecto:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(18, 74);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(81, 13);
     this.label18.TabIndex = 2;
     this.label18.Text = "Observaciones:";
     //
     // tpReject
     //
     this.tpReject.Controls.Add(this.memoEdit2);
     this.tpReject.Controls.Add(this.label20);
     this.tpReject.Controls.Add(this.gcRejection);
     this.tpReject.Name = "tpReject";
     this.tpReject.Size = new System.Drawing.Size(520, 0);
     this.tpReject.Text = "Rechazos";
     //
     // memoEdit2
     //
     this.memoEdit2.Location = new System.Drawing.Point(116, 288);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(529, 50);
     this.memoEdit2.TabIndex = 2;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(20, 299);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(90, 13);
     this.label20.TabIndex = 1;
     this.label20.Text = "Especificaciones:";
     //
     // gcRejection
     //
     this.gcRejection.EmbeddedNavigator.Name = "";
     this.gcRejection.Location = new System.Drawing.Point(21, 13);
     this.gcRejection.MainView = this.bandedGridView1;
     this.gcRejection.Name = "gcRejection";
     this.gcRejection.Size = new System.Drawing.Size(624, 251);
     this.gcRejection.TabIndex = 0;
     this.gcRejection.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1});
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gcRej_Code,
     this.gcRej_NameSample,
     this.gcRej_Date,
     this.gcRej_Hora,
     this.gcRej_Obs,
     this.gcRej_C1,
     this.gcRej_C2,
     this.gcRej_C3,
     this.gcRej_C4});
     this.bandedGridView1.GridControl = this.gcRejection;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.gcRej_Code);
     this.gridBand1.Columns.Add(this.gcRej_NameSample);
     this.gridBand1.Columns.Add(this.gcRej_Date);
     this.gridBand1.Columns.Add(this.gcRej_Hora);
     this.gridBand1.Columns.Add(this.gcRej_Obs);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 629;
     //
     // gcRej_Code
     //
     this.gcRej_Code.Caption = "Codigo";
     this.gcRej_Code.Name = "gcRej_Code";
     this.gcRej_Code.Visible = true;
     //
     // gcRej_NameSample
     //
     this.gcRej_NameSample.Caption = "Nombre de muestra";
     this.gcRej_NameSample.Name = "gcRej_NameSample";
     this.gcRej_NameSample.Visible = true;
     this.gcRej_NameSample.Width = 204;
     //
     // gcRej_Date
     //
     this.gcRej_Date.Caption = "Fecha";
     this.gcRej_Date.Name = "gcRej_Date";
     this.gcRej_Date.Visible = true;
     //
     // gcRej_Hora
     //
     this.gcRej_Hora.Caption = "Hora";
     this.gcRej_Hora.Name = "gcRej_Hora";
     this.gcRej_Hora.Visible = true;
     //
     // gcRej_Obs
     //
     this.gcRej_Obs.Caption = "Ensayos rechazados";
     this.gcRej_Obs.Name = "gcRej_Obs";
     this.gcRej_Obs.Visible = true;
     this.gcRej_Obs.Width = 200;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Criterio";
     this.gridBand2.Columns.Add(this.gcRej_C1);
     this.gridBand2.Columns.Add(this.gcRej_C2);
     this.gridBand2.Columns.Add(this.gcRej_C3);
     this.gridBand2.Columns.Add(this.gcRej_C4);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 150;
     //
     // gcRej_C1
     //
     this.gcRej_C1.Caption = "1";
     this.gcRej_C1.Name = "gcRej_C1";
     this.gcRej_C1.Visible = true;
     this.gcRej_C1.Width = 36;
     //
     // gcRej_C2
     //
     this.gcRej_C2.Caption = "2";
     this.gcRej_C2.Name = "gcRej_C2";
     this.gcRej_C2.Visible = true;
     this.gcRej_C2.Width = 36;
     //
     // gcRej_C3
     //
     this.gcRej_C3.Caption = "3";
     this.gcRej_C3.Name = "gcRej_C3";
     this.gcRej_C3.Visible = true;
     this.gcRej_C3.Width = 36;
     //
     // gcRej_C4
     //
     this.gcRej_C4.Caption = "4";
     this.gcRej_C4.Name = "gcRej_C4";
     this.gcRej_C4.Visible = true;
     this.gcRej_C4.Width = 42;
     //
     // tpDecree
     //
     this.tpDecree.Controls.Add(this.panelControl4);
     this.tpDecree.Controls.Add(this.panelControl3);
     this.tpDecree.Name = "tpDecree";
     this.tpDecree.Size = new System.Drawing.Size(520, 0);
     this.tpDecree.Text = "Decretos - Resultados";
     //
     // panelControl4
     //
     this.panelControl4.Controls.Add(this.xtraTabControl4);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 30);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Padding = new System.Windows.Forms.Padding(10);
     this.panelControl4.Size = new System.Drawing.Size(520, 0);
     this.panelControl4.TabIndex = 11;
     this.panelControl4.Text = "panelControl4";
     //
     // xtraTabControl4
     //
     this.xtraTabControl4.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl4.Appearance.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl4.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl4.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl4.Location = new System.Drawing.Point(12, 11);
     this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(10);
     this.xtraTabControl4.Name = "xtraTabControl4";
     this.xtraTabControl4.PaintStyleName = "PropertyView";
     this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4;
     this.xtraTabControl4.Size = new System.Drawing.Size(496, 0);
     this.xtraTabControl4.TabIndex = 5;
     this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5,
     this.xtraTabPage7});
     this.xtraTabControl4.Text = "Anexos";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gridDecretos);
     this.xtraTabPage4.Controls.Add(this.panelControl5);
     this.xtraTabPage4.Controls.Add(this.panelControl6);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(494, 0);
     this.xtraTabPage4.Text = "AG-03-00001 - NTP N° 214.003";
     //
     // gridDecretos
     //
     this.gridDecretos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDecretos.EmbeddedNavigator.Name = "";
     this.gridDecretos.Location = new System.Drawing.Point(0, 61);
     this.gridDecretos.MainView = this.gridView1;
     this.gridDecretos.Name = "gridDecretos";
     this.gridDecretos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repCriterio,
     this.repUnidadMedida,
     this.repMetodo});
     this.gridDecretos.Size = new System.Drawing.Size(494, 0);
     this.gridDecretos.TabIndex = 2;
     this.gridDecretos.UseEmbeddedNavigator = true;
     this.gridDecretos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcDec_Idmetodo,
     this.gcDec_Parametro,
     this.gcDec_Unidad_medida,
     this.gcDec_Result,
     this.gcDec_Criterio,
     this.gcDec_Valor1,
     this.gcDec_Valor2,
     this.gcDec_Conclusion});
     this.gridView1.GridControl = this.gridDecretos;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gcDec_Idmetodo
     //
     this.gcDec_Idmetodo.Caption = "Método";
     this.gcDec_Idmetodo.ColumnEdit = this.repMetodo;
     this.gcDec_Idmetodo.FieldName = "Idmetodo";
     this.gcDec_Idmetodo.Name = "gcDec_Idmetodo";
     this.gcDec_Idmetodo.Visible = true;
     this.gcDec_Idmetodo.VisibleIndex = 0;
     //
     // repMetodo
     //
     this.repMetodo.AutoHeight = false;
     this.repMetodo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repMetodo.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idmetodo", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre")});
     this.repMetodo.Name = "repMetodo";
     this.repMetodo.NullText = "";
     this.repMetodo.ShowFooter = false;
     this.repMetodo.ShowHeader = false;
     //
     // gcDec_Parametro
     //
     this.gcDec_Parametro.Caption = "Parametro";
     this.gcDec_Parametro.FieldName = "Parametro";
     this.gcDec_Parametro.Name = "gcDec_Parametro";
     this.gcDec_Parametro.Visible = true;
     this.gcDec_Parametro.VisibleIndex = 1;
     //
     // gcDec_Unidad_medida
     //
     this.gcDec_Unidad_medida.Caption = "Unidad_medida";
     this.gcDec_Unidad_medida.ColumnEdit = this.repUnidadMedida;
     this.gcDec_Unidad_medida.FieldName = "Unidad_medida";
     this.gcDec_Unidad_medida.Name = "gcDec_Unidad_medida";
     this.gcDec_Unidad_medida.Visible = true;
     this.gcDec_Unidad_medida.VisibleIndex = 2;
     //
     // repUnidadMedida
     //
     this.repUnidadMedida.AutoHeight = false;
     this.repUnidadMedida.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repUnidadMedida.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.repUnidadMedida.Name = "repUnidadMedida";
     this.repUnidadMedida.NullText = "";
     this.repUnidadMedida.ShowFooter = false;
     this.repUnidadMedida.ShowHeader = false;
     //
     // gcDec_Result
     //
     this.gcDec_Result.Caption = "Resultado";
     this.gcDec_Result.FieldName = "Result";
     this.gcDec_Result.Name = "gcDec_Result";
     this.gcDec_Result.Visible = true;
     this.gcDec_Result.VisibleIndex = 3;
     //
     // gcDec_Criterio
     //
     this.gcDec_Criterio.Caption = "Condición";
     this.gcDec_Criterio.ColumnEdit = this.repCriterio;
     this.gcDec_Criterio.FieldName = "Criterio";
     this.gcDec_Criterio.Name = "gcDec_Criterio";
     this.gcDec_Criterio.Visible = true;
     this.gcDec_Criterio.VisibleIndex = 4;
     //
     // repCriterio
     //
     this.repCriterio.AutoHeight = false;
     this.repCriterio.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repCriterio.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcriterio", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre_criterio")});
     this.repCriterio.Name = "repCriterio";
     this.repCriterio.NullText = "";
     this.repCriterio.ShowFooter = false;
     this.repCriterio.ShowHeader = false;
     //
     // gcDec_Valor1
     //
     this.gcDec_Valor1.Caption = "Valor1";
     this.gcDec_Valor1.FieldName = "Valor1";
     this.gcDec_Valor1.Name = "gcDec_Valor1";
     this.gcDec_Valor1.Visible = true;
     this.gcDec_Valor1.VisibleIndex = 5;
     //
     // gcDec_Valor2
     //
     this.gcDec_Valor2.Caption = "Valor2";
     this.gcDec_Valor2.FieldName = "Valor2";
     this.gcDec_Valor2.Name = "gcDec_Valor2";
     this.gcDec_Valor2.Visible = true;
     this.gcDec_Valor2.VisibleIndex = 6;
     //
     // gcDec_Conclusion
     //
     this.gcDec_Conclusion.Caption = "Conclusion";
     this.gcDec_Conclusion.FieldName = "Conclusion";
     this.gcDec_Conclusion.Name = "gcDec_Conclusion";
     this.gcDec_Conclusion.Visible = true;
     this.gcDec_Conclusion.VisibleIndex = 7;
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.memoEdit3);
     this.panelControl5.Controls.Add(this.label23);
     this.panelControl5.Controls.Add(this.label24);
     this.panelControl5.Controls.Add(this.label29);
     this.panelControl5.Controls.Add(this.textEdit4);
     this.panelControl5.Controls.Add(this.textEdit6);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 0);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(494, 61);
     this.panelControl5.TabIndex = 0;
     this.panelControl5.Text = "panelControl5";
     //
     // memoEdit3
     //
     this.memoEdit3.EditValue = resources.GetString("memoEdit3.EditValue");
     this.memoEdit3.Location = new System.Drawing.Point(426, 7);
     this.memoEdit3.Name = "memoEdit3";
     this.memoEdit3.Size = new System.Drawing.Size(523, 46);
     this.memoEdit3.TabIndex = 8;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(355, 9);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 5;
     this.label23.Text = "Descripción:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(9, 9);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(43, 13);
     this.label24.TabIndex = 6;
     this.label24.Text = "Codigo:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(9, 30);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(75, 13);
     this.label29.TabIndex = 7;
     this.label29.Text = "Denominación";
     //
     // textEdit4
     //
     this.textEdit4.EditValue = "DEC-13-001";
     this.textEdit4.Location = new System.Drawing.Point(90, 6);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Size = new System.Drawing.Size(107, 20);
     this.textEdit4.TabIndex = 3;
     //
     // textEdit6
     //
     this.textEdit6.EditValue = "NTP N° 214.003";
     this.textEdit6.Location = new System.Drawing.Point(90, 27);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Size = new System.Drawing.Size(230, 20);
     this.textEdit6.TabIndex = 4;
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.memoEdit4);
     this.panelControl6.Controls.Add(this.label22);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl6.Location = new System.Drawing.Point(0, -49);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(494, 49);
     this.panelControl6.TabIndex = 3;
     this.panelControl6.Text = "panelControl6";
     //
     // memoEdit4
     //
     this.memoEdit4.EditValue = "CUMPLE, NO CUMPLE, BLA BLA BLA";
     this.memoEdit4.Location = new System.Drawing.Point(77, 4);
     this.memoEdit4.Name = "memoEdit4";
     this.memoEdit4.Size = new System.Drawing.Size(872, 40);
     this.memoEdit4.TabIndex = 8;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(9, 9);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(62, 13);
     this.label22.TabIndex = 5;
     this.label22.Text = "Conclusión:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage5.Text = "AG-03-00001 - D.S. N° 031-2010";
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage7.Text = "AG-03-00001 - D.S. N° 002-2008";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.lookUpEdit2);
     this.panelControl3.Controls.Add(this.label31);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(520, 30);
     this.panelControl3.TabIndex = 10;
     this.panelControl3.Text = "panelControl3";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.Location = new System.Drawing.Point(86, 5);
     this.lookUpEdit2.Name = "lookUpEdit2";
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Properties.NullText = "AG-03-00001";
     this.lookUpEdit2.Size = new System.Drawing.Size(144, 20);
     this.lookUpEdit2.TabIndex = 10;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(32, 8);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(48, 13);
     this.label31.TabIndex = 9;
     this.label31.Text = "Muestra:";
     //
     // FormReception
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 662);
     this.Name = "FormReception";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Recepción de Muestras";
     this.Controls.SetChildIndex(this.paSupBotones, 0);
     this.Controls.SetChildIndex(this.thePanelTab1, 0);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.paSuperior.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     this.paSupBotones.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).EndInit();
     this.gcShowColumns.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).EndInit();
     this.tabOptionRight.ResumeLayout(false);
     this.tpRightMethods.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.tpRightReports.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.tpRightAttach.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.tpRightProgram.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
     this.xtraTabControl2.ResumeLayout(false);
     this.tabDateRegRecep.ResumeLayout(false);
     this.tabDateRegRecep.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel11.ResumeLayout(false);
     this.paTypeSample.ResumeLayout(false);
     this.paTypeSample.PerformLayout();
     this.paCodRegisterRecep.ResumeLayout(false);
     this.paCodRegisterRecep.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).EndInit();
     this.xtraTabControl3.ResumeLayout(false);
     this.tpMuestras.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     this.panelControl7.PerformLayout();
     this.tpAnexos.ResumeLayout(false);
     this.tpAnexos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit();
     this.tpReject.ResumeLayout(false);
     this.tpReject.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.tpDecree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).EndInit();
     this.xtraTabControl4.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     this.panelControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditForgetCard = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtMemberPackage = new DevExpress.XtraEditors.LookUpEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.ucMemberID1 = new ACMS.ucMemberID();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditForgetCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMemberPackage.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.ucMemberID1);
     this.panelControl1.Controls.Add(this.checkEditForgetCard);
     this.panelControl1.Controls.Add(this.simpleButtonCancel);
     this.panelControl1.Controls.Add(this.simpleButtonOK);
     this.panelControl1.Controls.Add(this.lkpEdtMemberPackage);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(360, 148);
     this.panelControl1.TabIndex = 0;
     //
     // checkEditForgetCard
     //
     this.checkEditForgetCard.Location = new System.Drawing.Point(134, 74);
     this.checkEditForgetCard.Name = "checkEditForgetCard";
     this.checkEditForgetCard.Properties.Caption = "Forget Card?";
     this.checkEditForgetCard.Size = new System.Drawing.Size(124, 19);
     this.checkEditForgetCard.TabIndex = 43;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(192, 116);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 42;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(88, 116);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 41;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // lkpEdtMemberPackage
     //
     this.lkpEdtMemberPackage.Location = new System.Drawing.Point(136, 42);
     this.lkpEdtMemberPackage.Name = "lkpEdtMemberPackage";
     this.lkpEdtMemberPackage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtMemberPackage.Size = new System.Drawing.Size(204, 20);
     this.lkpEdtMemberPackage.TabIndex = 3;
     this.lkpEdtMemberPackage.EditValueChanged += new System.EventHandler(this.lkpEdtMemberPackage_EditValueChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 42);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Member Package";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Member ID";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location = new System.Drawing.Point(134, 10);
     this.ucMemberID1.Name = "ucMemberID1";
     this.ucMemberID1.Size = new System.Drawing.Size(182, 20);
     this.ucMemberID1.StrBranchCode = null;
     this.ucMemberID1.TabIndex = 44;
     this.ucMemberID1.Load += new System.EventHandler(this.ucMemberID1_Load);
     //
     // FormNewClassAttendanceInClassAttendanceModule
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(360, 148);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormNewClassAttendanceInClassAttendanceModule";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Class Attendance";
     this.Load += new System.EventHandler(this.FormNewClassAttendanceInClassAttendanceModule_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditForgetCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMemberPackage.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 private void checkEdit_CheckedChanged(object sender, EventArgs e)
 {
     var target = (sender as DevExpress.XtraEditors.CheckEdit);
     if (target.Checked)
     {
         if (currentCheckEdit != null)
             currentCheckEdit.Checked = false;
         currentCheckEdit = target;
     }
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMuonTraQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ChuaTra = new DevExpress.XtraEditors.CheckEdit();
            this.ngayTra = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
            this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NgayMuon = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.MaPMT = new DevExpress.XtraEditors.TextEdit();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenChuongTrinh = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.CongTyMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.BoPhanMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.NguoiMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.NuocSX = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.label1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.Col_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
            this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_CongTy = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Category = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4});
            this.barManager1.MaxItemId = 37;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1000, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1000, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1000, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 139);
            this.dockPanel1.Size = new System.Drawing.Size(1000, 139);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(994, 111);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ChuaTra);
            this.popupControlContainerFilter.Controls.Add(this.ngayTra);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.gridControlDetail);
            this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
            this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel15);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.plLabel12);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NgayMuon);
            this.popupControlContainerFilter.Controls.Add(this.MaPMT);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenChuongTrinh);
            this.popupControlContainerFilter.Controls.Add(this.CongTyMuon);
            this.popupControlContainerFilter.Controls.Add(this.BoPhanMuon);
            this.popupControlContainerFilter.Controls.Add(this.NguoiMuon);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.NuocSX);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.label1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(994, 111);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // ChuaTra
            //
            this.ChuaTra.Location = new System.Drawing.Point(908, 84);
            this.ChuaTra.MenuManager = this.barManager1;
            this.ChuaTra.Name = "ChuaTra";
            this.ChuaTra.Properties.Caption = "Chưa trả";
            this.ChuaTra.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.ChuaTra.Size = new System.Drawing.Size(65, 19);
            this.ChuaTra.TabIndex = 243;
            //
            // ngayTra
            //
            this.ngayTra.Caption = "Từ ngày 4/16/2012 đến ngày 4/23/2012";
            this.ngayTra.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.FirstFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.FirstTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.FromDate = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.Location = new System.Drawing.Point(533, 83);
            this.ngayTra.Name = "ngayTra";
            this.ngayTra.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayTra.SecondFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.SecondTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.Size = new System.Drawing.Size(285, 21);
            this.ngayTra.TabIndex = 226;
            this.ngayTra.ToDate = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // label29
            //
            this.label29.Location = new System.Drawing.Point(485, 87);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(42, 13);
            this.label29.TabIndex = 217;
            this.label29.Text = "Ngày trả";

            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Location = new System.Drawing.Point(974, 138);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.MenuManager = this.barManager1;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(10, 10);
            this.gridControlDetail.TabIndex = 0;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            this.gridControlDetail.Visible = false;
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsBehavior.Editable = false;
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsSelection.MultiSelect = true;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.ViewCaption = "Biên mục (Cấp 3)";
            //
            // TapSoDen
            //
            this.TapSoDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoDen.Location = new System.Drawing.Point(925, 32);
            this.TapSoDen.Name = "TapSoDen";
            this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoDen.Size = new System.Drawing.Size(59, 20);
            this.TapSoDen.TabIndex = 241;
            //
            // TapSoTu
            //
            this.TapSoTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoTu.Location = new System.Drawing.Point(837, 32);
            this.TapSoTu.Name = "TapSoTu";
            this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoTu.Size = new System.Drawing.Size(56, 20);
            this.TapSoTu.TabIndex = 242;
            //
            // plLabel8
            //
            this.plLabel8.Location = new System.Drawing.Point(772, 33);
            this.plLabel8.Name = "plLabel8";
            this.plLabel8.Size = new System.Drawing.Size(46, 13);
            this.plLabel8.TabIndex = 239;
            this.plLabel8.Text = "Tập số từ";

            //
            // plLabel15
            //
            this.plLabel15.Location = new System.Drawing.Point(901, 37);
            this.plLabel15.Name = "plLabel15";
            this.plLabel15.Size = new System.Drawing.Size(18, 13);
            this.plLabel15.TabIndex = 239;
            this.plLabel15.Text = "đến";

            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(269, 60);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(40, 13);
            this.plLabel5.TabIndex = 240;
            this.plLabel5.Text = "Tiết mục";

            //
            // plLabel12
            //
            this.plLabel12.Location = new System.Drawing.Point(772, 63);
            this.plLabel12.Name = "plLabel12";
            this.plLabel12.Size = new System.Drawing.Size(51, 13);
            this.plLabel12.TabIndex = 240;
            this.plLabel12.Text = "Phòng ban";

            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(837, 59);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(147, 20);
            this.PhongBan.TabIndex = 10;
            //
            // NgayMuon
            //
            this.NgayMuon.Caption = "Từ ngày 4/16/2012 đến ngày 4/23/2012";
            this.NgayMuon.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayMuon.FirstFrom = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.FirstTo = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.FromDate = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.Location = new System.Drawing.Point(74, 83);
            this.NgayMuon.Name = "NgayMuon";
            this.NgayMuon.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.NgayMuon.SecondFrom = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.SecondTo = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayMuon.Size = new System.Drawing.Size(285, 21);
            this.NgayMuon.TabIndex = 226;
            this.NgayMuon.ToDate = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // MaPMT
            //
            this.MaPMT.Location = new System.Drawing.Point(74, 7);
            this.MaPMT.Name = "MaPMT";
            this.MaPMT.Size = new System.Drawing.Size(192, 20);
            this.MaPMT.TabIndex = 223;
            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(593, 6);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(173, 20);
            this.Category.TabIndex = 222;
            //
            // TenChuongTrinh
            //
            this.TenChuongTrinh._DataSource = null;
            this.TenChuongTrinh._GetField = null;
            this.TenChuongTrinh.Location = new System.Drawing.Point(339, 32);
            this.TenChuongTrinh.Name = "TenChuongTrinh";
            this.TenChuongTrinh.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenChuongTrinh.Size = new System.Drawing.Size(187, 20);
            this.TenChuongTrinh.TabIndex = 222;
            //
            // CongTyMuon
            //
            this.CongTyMuon._DataSource = null;
            this.CongTyMuon._GetField = null;
            this.CongTyMuon.Location = new System.Drawing.Point(340, 6);
            this.CongTyMuon.Name = "CongTyMuon";
            this.CongTyMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.CongTyMuon.Size = new System.Drawing.Size(187, 20);
            this.CongTyMuon.TabIndex = 222;
            //
            // BoPhanMuon
            //
            this.BoPhanMuon._DataSource = null;
            this.BoPhanMuon._GetField = null;
            this.BoPhanMuon.Location = new System.Drawing.Point(74, 56);
            this.BoPhanMuon.Name = "BoPhanMuon";
            this.BoPhanMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.BoPhanMuon.Size = new System.Drawing.Size(192, 20);
            this.BoPhanMuon.TabIndex = 222;
            //
            // NguoiMuon
            //
            this.NguoiMuon._DataSource = null;
            this.NguoiMuon._GetField = null;
            this.NguoiMuon.Location = new System.Drawing.Point(74, 31);
            this.NguoiMuon.Name = "NguoiMuon";
            this.NguoiMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.NguoiMuon.Size = new System.Drawing.Size(192, 20);
            this.NguoiMuon.TabIndex = 222;
            //
            // LoaiLuuTru
            //
            this.LoaiLuuTru.DataSource = null;
            this.LoaiLuuTru.DisplayField = null;
            this.LoaiLuuTru.Location = new System.Drawing.Point(837, 6);
            this.LoaiLuuTru.Name = "LoaiLuuTru";
            this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.LoaiLuuTru.Size = new System.Drawing.Size(147, 20);
            this.LoaiLuuTru.TabIndex = 220;
            this.LoaiLuuTru.ValueField = null;
            //
            // NuocSX
            //
            this.NuocSX.DataSource = null;
            this.NuocSX.DisplayField = null;
            this.NuocSX.Location = new System.Drawing.Point(593, 30);
            this.NuocSX.Name = "NuocSX";
            this.NuocSX.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.NuocSX.Size = new System.Drawing.Size(173, 20);
            this.NuocSX.TabIndex = 220;
            this.NuocSX.ValueField = null;
            //
            // PostMaster
            //
            this.PostMaster.DataSource = null;
            this.PostMaster.DisplayField = null;
            this.PostMaster.Location = new System.Drawing.Point(593, 56);
            this.PostMaster.Name = "PostMaster";
            this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.PostMaster.Size = new System.Drawing.Size(173, 20);
            this.PostMaster.TabIndex = 220;
            this.PostMaster.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(339, 56);
            this.TietMuc.Name = "TietMuc";
            this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.TietMuc.Size = new System.Drawing.Size(187, 20);
            this.TietMuc.TabIndex = 216;
            this.TietMuc.ValueField = null;
            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(772, 10);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(55, 13);
            this.plLabel2.TabIndex = 213;
            this.plLabel2.Text = "Loại lưu trữ";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(269, 35);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(34, 13);
            this.plLabel4.TabIndex = 213;
            this.plLabel4.Text = "Tên CT";

            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(532, 34);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(40, 13);
            this.plLabel7.TabIndex = 213;
            this.plLabel7.Text = "Nước SX";

            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(532, 12);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(45, 13);
            this.plLabel6.TabIndex = 213;
            this.plLabel6.Text = "Category";

            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(532, 59);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(58, 13);
            this.label10.TabIndex = 213;
            this.label10.Text = "Post/Master";

            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(4, 12);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(37, 13);
            this.label1.TabIndex = 214;
            this.label1.Text = "Mã PMT";

            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(269, 12);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(68, 13);
            this.plLabel3.TabIndex = 217;
            this.plLabel3.Text = "Công ty mượn";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(2, 87);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(55, 13);
            this.plLabel1.TabIndex = 217;
            this.plLabel1.Text = "Ngày mượn";

            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(3, 34);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(58, 13);
            this.label3.TabIndex = 218;
            this.label3.Text = "Người mượn";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(2, 60);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(69, 13);
            this.label5.TabIndex = 219;
            this.label5.Text = "Bộ phận mượn";

            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 163);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1000, 382);
            this.splitContainerControl1.SplitterPosition = 199;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(1000, 199);
            this.gridControlMaster.TabIndex = 10;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandChuongTrinh,
            this.gridBandPostMaster});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_MaPhieu,
            this.Col_NguoiMuon,
            this.Col_BoPhanMuon,
            this.Col_CongTyMuon,
            this.Col_NgayMuon,
            this.Col_MucDich,
            this.Col_NgayTra,
            this.Col_NguoiTao,
            this.Col_NgayTao,
            this.Col_PhongBan,
            this.Col_CongTy});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.ViewCaption = "Danh sách phiếu mượn/trả";
            //
            // Col_MaPhieu
            //
            this.Col_MaPhieu.Caption = "Mã PMT";
            this.Col_MaPhieu.Name = "Col_MaPhieu";
            this.Col_MaPhieu.ToolTip = "Mã phiếu mượn trả";
            this.Col_MaPhieu.Visible = true;
            this.Col_MaPhieu.Width = 49;
            //
            // Col_NguoiMuon
            //
            this.Col_NguoiMuon.Caption = "Người mượn";
            this.Col_NguoiMuon.Name = "Col_NguoiMuon";
            this.Col_NguoiMuon.Visible = true;
            this.Col_NguoiMuon.Width = 70;
            //
            // Col_BoPhanMuon
            //
            this.Col_BoPhanMuon.Caption = "Bộ phận mượn";
            this.Col_BoPhanMuon.Name = "Col_BoPhanMuon";
            this.Col_BoPhanMuon.Visible = true;
            this.Col_BoPhanMuon.Width = 81;
            //
            // Col_CongTyMuon
            //
            this.Col_CongTyMuon.Caption = "Công ty mượn";
            this.Col_CongTyMuon.Name = "Col_CongTyMuon";
            this.Col_CongTyMuon.Visible = true;
            this.Col_CongTyMuon.Width = 80;
            //
            // Col_NgayMuon
            //
            this.Col_NgayMuon.Caption = "Ngày mượn";
            this.Col_NgayMuon.Name = "Col_NgayMuon";
            this.Col_NgayMuon.Visible = true;
            this.Col_NgayMuon.Width = 67;
            //
            // Col_MucDich
            //
            this.Col_MucDich.Caption = "Mục đích mượn";
            this.Col_MucDich.Name = "Col_MucDich";
            this.Col_MucDich.Visible = true;
            this.Col_MucDich.Width = 83;
            //
            // Col_NgayTra
            //
            this.Col_NgayTra.Caption = "Ngày trả";
            this.Col_NgayTra.Name = "Col_NgayTra";
            this.Col_NgayTra.Visible = true;
            this.Col_NgayTra.Width = 54;
            //
            // Col_NguoiTao
            //
            this.Col_NguoiTao.Caption = "Người tạo";
            this.Col_NguoiTao.Name = "Col_NguoiTao";
            this.Col_NguoiTao.Visible = true;
            this.Col_NguoiTao.Width = 59;
            //
            // Col_NgayTao
            //
            this.Col_NgayTao.Caption = "Ngày tạo";
            this.Col_NgayTao.Name = "Col_NgayTao";
            this.Col_NgayTao.Visible = true;
            this.Col_NgayTao.Width = 56;
            //
            // Col_PhongBan
            //
            this.Col_PhongBan.Caption = "Phòng ban";
            this.Col_PhongBan.Name = "Col_PhongBan";
            this.Col_PhongBan.Visible = true;
            this.Col_PhongBan.Width = 63;
            //
            // Col_CongTy
            //
            this.Col_CongTy.Caption = "Công ty";
            this.Col_CongTy.Name = "Col_CongTy";
            this.Col_CongTy.Visible = true;
            this.Col_CongTy.Width = 50;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(1000, 177);
            this.xtraTabControlDetail.TabIndex = 10;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.TreeDes);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(993, 148);
            this.xtraTabPageDetail.Text = "Danh sách chương trình - post/master - biên mục mượn/trả của phiếu đang chọn";
            //
            // TreeDes
            //
            this.TreeDes.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.TreeDes.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.TreeDes.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.ColDes_Ten,
            this.treeListColumn2,
            this.ColDes_TenGoc,
            this.ColDes_NuocSX,
            this.ColDes_TietMuc,
            this.ColDes_SoTapGoc,
            this.ColDes_LoaiLuuTru,
            this.ColDes_Betacam,
            this.ColDes_File,
            this.ColDes_DVD,
            this.ColDes_Cap,
            this.ColDes_TenPM,
            this.ColDes_TenCT,
            this.ColDes_PhongBan,
            this.ColDes_CongTy,
            this.ColDes_Category});
            this.TreeDes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TreeDes.Location = new System.Drawing.Point(0, 0);
            this.TreeDes.Name = "TreeDes";
            this.TreeDes.OptionsBehavior.AllowExpandOnDblClick = false;
            this.TreeDes.OptionsBehavior.AutoFocusNewNode = true;
            this.TreeDes.OptionsBehavior.AutoMoveRowFocus = true;
            this.TreeDes.OptionsSelection.MultiSelect = true;
            this.TreeDes.OptionsView.EnableAppearanceEvenRow = true;
            this.TreeDes.OptionsView.EnableAppearanceOddRow = true;
            this.TreeDes.Size = new System.Drawing.Size(993, 148);
            this.TreeDes.TabIndex = 35;
            //
            // ColDes_Ten
            //
            this.ColDes_Ten.Caption = "Tên";
            this.ColDes_Ten.FieldName = "Được quyền xóa";
            this.ColDes_Ten.Name = "ColDes_Ten";
            this.ColDes_Ten.OptionsColumn.AllowEdit = false;
            this.ColDes_Ten.OptionsColumn.AllowFocus = false;
            this.ColDes_Ten.Visible = true;
            this.ColDes_Ten.VisibleIndex = 0;
            this.ColDes_Ten.Width = 80;
            //
            // treeListColumn2
            //
            this.treeListColumn2.Caption = "Là nhóm";
            this.treeListColumn2.FieldName = "Là nhóm";
            this.treeListColumn2.Name = "treeListColumn2";
            this.treeListColumn2.OptionsColumn.AllowEdit = false;
            this.treeListColumn2.OptionsColumn.ShowInCustomizationForm = false;
            //
            // ColDes_TenGoc
            //
            this.ColDes_TenGoc.Caption = "Tên gốc";
            this.ColDes_TenGoc.FieldName = "Tên gốc";
            this.ColDes_TenGoc.Name = "ColDes_TenGoc";
            this.ColDes_TenGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_TenGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_TenGoc.Visible = true;
            this.ColDes_TenGoc.VisibleIndex = 1;
            this.ColDes_TenGoc.Width = 55;
            //
            // ColDes_NuocSX
            //
            this.ColDes_NuocSX.Caption = "Nước SX";
            this.ColDes_NuocSX.FieldName = "Được quyền thêm";
            this.ColDes_NuocSX.Name = "ColDes_NuocSX";
            this.ColDes_NuocSX.OptionsColumn.AllowEdit = false;
            this.ColDes_NuocSX.OptionsColumn.AllowFocus = false;
            this.ColDes_NuocSX.Visible = true;
            this.ColDes_NuocSX.VisibleIndex = 3;
            this.ColDes_NuocSX.Width = 54;
            //
            // ColDes_TietMuc
            //
            this.ColDes_TietMuc.Caption = "Tiết mục";
            this.ColDes_TietMuc.FieldName = "Được quyền xem";
            this.ColDes_TietMuc.Name = "ColDes_TietMuc";
            this.ColDes_TietMuc.OptionsColumn.AllowEdit = false;
            this.ColDes_TietMuc.OptionsColumn.AllowFocus = false;
            this.ColDes_TietMuc.Visible = true;
            this.ColDes_TietMuc.VisibleIndex = 6;
            this.ColDes_TietMuc.Width = 55;
            //
            // ColDes_SoTapGoc
            //
            this.ColDes_SoTapGoc.Caption = "Số tập gốc/cắt";
            this.ColDes_SoTapGoc.FieldName = "Được quyền sửa";
            this.ColDes_SoTapGoc.Name = "ColDes_SoTapGoc";
            this.ColDes_SoTapGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_SoTapGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_SoTapGoc.Visible = true;
            this.ColDes_SoTapGoc.VisibleIndex = 9;
            this.ColDes_SoTapGoc.Width = 86;
            //
            // ColDes_LoaiLuuTru
            //
            this.ColDes_LoaiLuuTru.Caption = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.FieldName = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.Name = "ColDes_LoaiLuuTru";
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowEdit = false;
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowFocus = false;
            this.ColDes_LoaiLuuTru.Visible = true;
            this.ColDes_LoaiLuuTru.VisibleIndex = 8;
            this.ColDes_LoaiLuuTru.Width = 70;
            //
            // ColDes_Betacam
            //
            this.ColDes_Betacam.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_Betacam.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_Betacam.AppearanceHeader.Options.UseFont = true;
            this.ColDes_Betacam.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_Betacam.Caption = "Betacam";
            this.ColDes_Betacam.FieldName = "Betacam";
            this.ColDes_Betacam.Name = "ColDes_Betacam";
            this.ColDes_Betacam.Visible = true;
            this.ColDes_Betacam.VisibleIndex = 12;
            this.ColDes_Betacam.Width = 53;
            //
            // ColDes_File
            //
            this.ColDes_File.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_File.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_File.AppearanceHeader.Options.UseFont = true;
            this.ColDes_File.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_File.Caption = "File";
            this.ColDes_File.FieldName = "File";
            this.ColDes_File.Name = "ColDes_File";
            this.ColDes_File.Visible = true;
            this.ColDes_File.VisibleIndex = 13;
            this.ColDes_File.Width = 50;
            //
            // ColDes_DVD
            //
            this.ColDes_DVD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_DVD.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_DVD.AppearanceHeader.Options.UseFont = true;
            this.ColDes_DVD.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_DVD.Caption = "DVD";
            this.ColDes_DVD.FieldName = "DVD";
            this.ColDes_DVD.Name = "ColDes_DVD";
            this.ColDes_DVD.Visible = true;
            this.ColDes_DVD.VisibleIndex = 14;
            this.ColDes_DVD.Width = 49;
            //
            // ColDes_Cap
            //
            this.ColDes_Cap.Caption = "Cấp";
            this.ColDes_Cap.FieldName = "Cấp";
            this.ColDes_Cap.Name = "ColDes_Cap";
            this.ColDes_Cap.OptionsColumn.AllowEdit = false;
            this.ColDes_Cap.OptionsColumn.AllowFocus = false;
            this.ColDes_Cap.Visible = true;
            this.ColDes_Cap.VisibleIndex = 2;
            this.ColDes_Cap.Width = 79;
            //
            // ColDes_TenPM
            //
            this.ColDes_TenPM.Caption = "P/M";
            this.ColDes_TenPM.FieldName = "P/M";
            this.ColDes_TenPM.Name = "ColDes_TenPM";
            this.ColDes_TenPM.OptionsColumn.AllowEdit = false;
            this.ColDes_TenPM.OptionsColumn.AllowFocus = false;
            this.ColDes_TenPM.Visible = true;
            this.ColDes_TenPM.VisibleIndex = 5;
            this.ColDes_TenPM.Width = 79;
            //
            // ColDes_TenCT
            //
            this.ColDes_TenCT.Caption = "CT";
            this.ColDes_TenCT.FieldName = "CT";
            this.ColDes_TenCT.Name = "ColDes_TenCT";
            this.ColDes_TenCT.OptionsColumn.AllowEdit = false;
            this.ColDes_TenCT.OptionsColumn.AllowFocus = false;
            this.ColDes_TenCT.Visible = true;
            this.ColDes_TenCT.VisibleIndex = 4;
            this.ColDes_TenCT.Width = 79;
            //
            // ColDes_PhongBan
            //
            this.ColDes_PhongBan.Caption = "Phòng ban";
            this.ColDes_PhongBan.FieldName = "ColDes_PhongBan";
            this.ColDes_PhongBan.Name = "ColDes_PhongBan";
            this.ColDes_PhongBan.OptionsColumn.AllowEdit = false;
            this.ColDes_PhongBan.OptionsColumn.AllowFocus = false;
            this.ColDes_PhongBan.Visible = true;
            this.ColDes_PhongBan.VisibleIndex = 10;
            this.ColDes_PhongBan.Width = 79;
            //
            // ColDes_CongTy
            //
            this.ColDes_CongTy.Caption = "Công ty";
            this.ColDes_CongTy.FieldName = "Công ty";
            this.ColDes_CongTy.Name = "ColDes_CongTy";
            this.ColDes_CongTy.OptionsColumn.AllowEdit = false;
            this.ColDes_CongTy.OptionsColumn.AllowFocus = false;
            this.ColDes_CongTy.Visible = true;
            this.ColDes_CongTy.VisibleIndex = 11;
            this.ColDes_CongTy.Width = 79;
            //
            // ColDes_Category
            //
            this.ColDes_Category.Caption = "Category";
            this.ColDes_Category.FieldName = "Category";
            this.ColDes_Category.Name = "ColDes_Category";
            this.ColDes_Category.Visible = true;
            this.ColDes_Category.VisibleIndex = 7;
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin mượn/trả";
            this.gridBandChuongTrinh.Columns.Add(this.Col_MaPhieu);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NguoiMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_BoPhanMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_CongTyMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MucDich);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayTra);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 484;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin tạo phiếu";
            this.gridBandPostMaster.Columns.Add(this.Col_NguoiTao);
            this.gridBandPostMaster.Columns.Add(this.Col_NgayTao);
            this.gridBandPostMaster.Columns.Add(this.Col_PhongBan);
            this.gridBandPostMaster.Columns.Add(this.Col_CongTy);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 228;
            //
            // frmMuonTraQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1000, 545);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmMuonTraQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý phiếu mượn trả";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).EndInit();
            this.ResumeLayout(false);
        }
 public StandardizationConfigControl()
 {
     InitializeComponent();
     currentCheckEdit = this.checkEdit1;
 }
Example #57
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(frmZones));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.ZdatagridRegionalAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.ZtxtOtherGroup = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtManagerId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyGroupID = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.ZtxtManagerName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtSPOID = new DevExpress.XtraEditors.TextEdit();
     this.ZchkDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.ZchkMerck = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.ZPlManagerId = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyGroupID = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyId = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.ZPLSPOId = new DevExpress.XtraEditors.SimpleButton();
     this.ZtxtSPOName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.groupControl1);
     this.groupControl5.Controls.Add(this.ZtxtOtherGroup);
     this.groupControl5.Controls.Add(this.ZtxtManagerId);
     this.groupControl5.Controls.Add(this.ZtxtCompanyGroupID);
     this.groupControl5.Controls.Add(this.checkEdit2);
     this.groupControl5.Controls.Add(this.ZtxtManagerName);
     this.groupControl5.Controls.Add(this.ZtxtGroupName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyId);
     this.groupControl5.Controls.Add(this.ZtxtSPOID);
     this.groupControl5.Controls.Add(this.ZchkDiscontinue);
     this.groupControl5.Controls.Add(this.ZchkMerck);
     this.groupControl5.Controls.Add(this.labelControl14);
     this.groupControl5.Controls.Add(this.labelControl13);
     this.groupControl5.Controls.Add(this.labelControl15);
     this.groupControl5.Controls.Add(this.ZPlManagerId);
     this.groupControl5.Controls.Add(this.simpleButton5);
     this.groupControl5.Controls.Add(this.ZPLCompanyGroupID);
     this.groupControl5.Controls.Add(this.ZPLCompanyId);
     this.groupControl5.Controls.Add(this.labelControl11);
     this.groupControl5.Controls.Add(this.ZPLSPOId);
     this.groupControl5.Controls.Add(this.ZtxtSPOName);
     this.groupControl5.Controls.Add(this.labelControl12);
     this.groupControl5.Controls.Add(this.labelControl10);
     this.groupControl5.Controls.Add(this.labelControl8);
     this.groupControl5.Controls.Add(this.labelControl16);
     this.groupControl5.Controls.Add(this.labelControl9);
     this.groupControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(567, 390);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Zone Details";
     //
     // groupControl1
     //
     this.groupControl1.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.groupControl1.Controls.Add(this.ZdatagridRegionalAllocation);
     this.groupControl1.Location = new System.Drawing.Point(0, 130);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(567, 226);
     this.groupControl1.TabIndex = 124261;
     this.groupControl1.Text = "groupControl1";
     //
     // ZdatagridRegionalAllocation
     //
     this.ZdatagridRegionalAllocation.AllowAddNew = true;
     this.ZdatagridRegionalAllocation.CaptionHeight = 17;
     this.ZdatagridRegionalAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.ZdatagridRegionalAllocation.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ZdatagridRegionalAllocation.ExtendRightColumn = true;
     this.ZdatagridRegionalAllocation.FetchRowStyles = true;
     this.ZdatagridRegionalAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("ZdatagridRegionalAllocation.Images"))));
     this.ZdatagridRegionalAllocation.LinesPerRow = 1;
     this.ZdatagridRegionalAllocation.Location = new System.Drawing.Point(2, 2);
     this.ZdatagridRegionalAllocation.Name = "ZdatagridRegionalAllocation";
     this.ZdatagridRegionalAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.ZoomFactor = 75D;
     this.ZdatagridRegionalAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("ZdatagridRegionalAllocation.PrintInfo.PageSettings")));
     this.ZdatagridRegionalAllocation.RecordSelectors = false;
     this.ZdatagridRegionalAllocation.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.ZdatagridRegionalAllocation.RowHeight = 20;
     this.ZdatagridRegionalAllocation.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.Size = new System.Drawing.Size(563, 222);
     this.ZdatagridRegionalAllocation.TabIndex = 124255;
     this.ZdatagridRegionalAllocation.Text = "c1TrueDBGrid1";
     this.ZdatagridRegionalAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.ZdatagridRegionalAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.ZdatagridRegionalAllocation_AfterColUpdate);
     this.ZdatagridRegionalAllocation.PropBag = resources.GetString("ZdatagridRegionalAllocation.PropBag");
     //
     // ZtxtOtherGroup
     //
     this.ZtxtOtherGroup.Location = new System.Drawing.Point(98, 104);
     this.ZtxtOtherGroup.Name = "ZtxtOtherGroup";
     this.ZtxtOtherGroup.Size = new System.Drawing.Size(258, 20);
     this.ZtxtOtherGroup.TabIndex = 5;
     this.ZtxtOtherGroup.TabStop = false;
     this.ZtxtOtherGroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtOtherGroup_PreviewKeyDown);
     //
     // ZtxtManagerId
     //
     this.ZtxtManagerId.Location = new System.Drawing.Point(98, 85);
     this.ZtxtManagerId.Name = "ZtxtManagerId";
     this.ZtxtManagerId.Properties.MaxLength = 6;
     this.ZtxtManagerId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtManagerId.TabIndex = 4;
     this.ZtxtManagerId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtManagerId_KeyPress);
     this.ZtxtManagerId.Leave += new System.EventHandler(this.ZtxtManagerId_Leave);
     this.ZtxtManagerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtManagerId_PreviewKeyDown);
     //
     // ZtxtCompanyGroupID
     //
     this.ZtxtCompanyGroupID.Location = new System.Drawing.Point(98, 66);
     this.ZtxtCompanyGroupID.Name = "ZtxtCompanyGroupID";
     this.ZtxtCompanyGroupID.Properties.MaxLength = 6;
     this.ZtxtCompanyGroupID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyGroupID.TabIndex = 3;
     this.ZtxtCompanyGroupID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyGroupID_KeyPress);
     this.ZtxtCompanyGroupID.Leave += new System.EventHandler(this.ZtxtCompanyGroupID_Leave);
     this.ZtxtCompanyGroupID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyGroupID_PreviewKeyDown);
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit2.Location = new System.Drawing.Point(421, 84);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkEdit2.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.checkEdit2.Properties.Appearance.Options.UseFont = true;
     this.checkEdit2.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdit2.Properties.Caption = "Select/UnSelect All";
     this.checkEdit2.Size = new System.Drawing.Size(141, 19);
     this.checkEdit2.TabIndex = 8;
     this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     this.checkEdit2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.checkEdit2_KeyPress);
     //
     // ZtxtManagerName
     //
     this.ZtxtManagerName.Enabled = false;
     this.ZtxtManagerName.Location = new System.Drawing.Point(220, 85);
     this.ZtxtManagerName.Name = "ZtxtManagerName";
     this.ZtxtManagerName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtManagerName.TabIndex = 124251;
     this.ZtxtManagerName.TabStop = false;
     //
     // ZtxtGroupName
     //
     this.ZtxtGroupName.Enabled = false;
     this.ZtxtGroupName.Location = new System.Drawing.Point(220, 66);
     this.ZtxtGroupName.Name = "ZtxtGroupName";
     this.ZtxtGroupName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtGroupName.TabIndex = 124246;
     this.ZtxtGroupName.TabStop = false;
     //
     // ZtxtCompanyName
     //
     this.ZtxtCompanyName.Enabled = false;
     this.ZtxtCompanyName.Location = new System.Drawing.Point(220, 47);
     this.ZtxtCompanyName.Name = "ZtxtCompanyName";
     this.ZtxtCompanyName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtCompanyName.TabIndex = 100015;
     this.ZtxtCompanyName.TabStop = false;
     //
     // ZtxtCompanyId
     //
     this.ZtxtCompanyId.Location = new System.Drawing.Point(98, 47);
     this.ZtxtCompanyId.Name = "ZtxtCompanyId";
     this.ZtxtCompanyId.Properties.MaxLength = 3;
     this.ZtxtCompanyId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyId.TabIndex = 2;
     this.ZtxtCompanyId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyId_KeyPress);
     this.ZtxtCompanyId.Leave += new System.EventHandler(this.ZtxtCompanyId_Leave);
     this.ZtxtCompanyId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyId_PreviewKeyDown);
     //
     // ZtxtSPOID
     //
     this.ZtxtSPOID.Location = new System.Drawing.Point(98, 28);
     this.ZtxtSPOID.Name = "ZtxtSPOID";
     this.ZtxtSPOID.Properties.MaxLength = 6;
     this.ZtxtSPOID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtSPOID.TabIndex = 0;
     this.ZtxtSPOID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOID_PreviewKeyDown);
     //
     // ZchkDiscontinue
     //
     this.ZchkDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkDiscontinue.Location = new System.Drawing.Point(421, 34);
     this.ZchkDiscontinue.Name = "ZchkDiscontinue";
     this.ZchkDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.ZchkDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkDiscontinue.Properties.Caption = "Discontinue";
     this.ZchkDiscontinue.Size = new System.Drawing.Size(93, 19);
     this.ZchkDiscontinue.TabIndex = 6;
     this.ZchkDiscontinue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkDiscontinue_KeyPress);
     //
     // ZchkMerck
     //
     this.ZchkMerck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkMerck.Location = new System.Drawing.Point(421, 59);
     this.ZchkMerck.Name = "ZchkMerck";
     this.ZchkMerck.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkMerck.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkMerck.Properties.Appearance.Options.UseFont = true;
     this.ZchkMerck.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkMerck.Properties.Caption = "MERCK";
     this.ZchkMerck.Size = new System.Drawing.Size(58, 19);
     this.ZchkMerck.TabIndex = 7;
     this.ZchkMerck.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkMerck_KeyPress);
     //
     // labelControl14
     //
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.Location = new System.Drawing.Point(183, 87);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(51, 20);
     this.labelControl14.TabIndex = 124250;
     this.labelControl14.Text = "Name";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(183, 68);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(40, 20);
     this.labelControl13.TabIndex = 124245;
     this.labelControl13.Text = "Name";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(10, 86);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(95, 20);
     this.labelControl15.TabIndex = 124248;
     this.labelControl15.Text = "Manager Id";
     //
     // ZPlManagerId
     //
     this.ZPlManagerId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPlManagerId.Appearance.Options.UseFont = true;
     this.ZPlManagerId.Image = ((System.Drawing.Image)(resources.GetObject("ZPlManagerId.Image")));
     this.ZPlManagerId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPlManagerId.Location = new System.Drawing.Point(149, 85);
     this.ZPlManagerId.Name = "ZPlManagerId";
     this.ZPlManagerId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPlManagerId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.ZPlManagerId.SuperTip = superToolTip1;
     this.ZPlManagerId.TabIndex = 124249;
     this.ZPlManagerId.TabStop = false;
     this.ZPlManagerId.Click += new System.EventHandler(this.ZPlManagerId_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(70, 66);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(27, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip2.Items.Add(toolTipItem1);
     this.simpleButton5.SuperTip = superToolTip2;
     this.simpleButton5.TabIndex = 100019;
     this.simpleButton5.TabStop = false;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // ZPLCompanyGroupID
     //
     this.ZPLCompanyGroupID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyGroupID.Appearance.Options.UseFont = true;
     this.ZPLCompanyGroupID.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyGroupID.Image")));
     this.ZPLCompanyGroupID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyGroupID.Location = new System.Drawing.Point(149, 66);
     this.ZPLCompanyGroupID.Name = "ZPLCompanyGroupID";
     this.ZPLCompanyGroupID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyGroupID.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.ZPLCompanyGroupID.SuperTip = superToolTip3;
     this.ZPLCompanyGroupID.TabIndex = 100018;
     this.ZPLCompanyGroupID.TabStop = false;
     this.ZPLCompanyGroupID.Click += new System.EventHandler(this.ZPLCompanyGroupID_Click);
     //
     // ZPLCompanyId
     //
     this.ZPLCompanyId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyId.Appearance.Options.UseFont = true;
     this.ZPLCompanyId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyId.Image")));
     this.ZPLCompanyId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyId.Location = new System.Drawing.Point(149, 47);
     this.ZPLCompanyId.Name = "ZPLCompanyId";
     this.ZPLCompanyId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem3);
     this.ZPLCompanyId.SuperTip = superToolTip4;
     this.ZPLCompanyId.TabIndex = 100014;
     this.ZPLCompanyId.TabStop = false;
     this.ZPLCompanyId.Click += new System.EventHandler(this.ZPLCompanyId_Click);
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(183, 49);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(40, 20);
     this.labelControl11.TabIndex = 100011;
     this.labelControl11.Text = "Name";
     //
     // ZPLSPOId
     //
     this.ZPLSPOId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLSPOId.Appearance.Options.UseFont = true;
     this.ZPLSPOId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLSPOId.Image")));
     this.ZPLSPOId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLSPOId.Location = new System.Drawing.Point(149, 28);
     this.ZPLSPOId.Name = "ZPLSPOId";
     this.ZPLSPOId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLSPOId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem4);
     this.ZPLSPOId.SuperTip = superToolTip5;
     this.ZPLSPOId.TabIndex = 100009;
     this.ZPLSPOId.TabStop = false;
     this.ZPLSPOId.Click += new System.EventHandler(this.ZPLSPOId_Click);
     //
     // ZtxtSPOName
     //
     this.ZtxtSPOName.Location = new System.Drawing.Point(220, 28);
     this.ZtxtSPOName.Name = "ZtxtSPOName";
     this.ZtxtSPOName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtSPOName.TabIndex = 1;
     this.ZtxtSPOName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOName_PreviewKeyDown);
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(10, 67);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(95, 20);
     this.labelControl12.TabIndex = 100017;
     this.labelControl12.Text = "CGroup Id";
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(10, 47);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(95, 20);
     this.labelControl10.TabIndex = 100013;
     this.labelControl10.Text = "Company Id";
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(10, 28);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(95, 20);
     this.labelControl8.TabIndex = 100008;
     this.labelControl8.Text = "SPO Id";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(10, 104);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(95, 20);
     this.labelControl16.TabIndex = 124255;
     this.labelControl16.Text = "Other Groups";
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(183, 30);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(40, 20);
     this.labelControl9.TabIndex = 100006;
     this.labelControl9.Text = "Name";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(88, 6);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Cancel Current Operation";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnCancel.SuperTip = superToolTip6;
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(12, 6);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Add New Module";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnAdd.SuperTip = superToolTip7;
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 356);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(567, 34);
     this.groupControl2.TabIndex = 13;
     //
     // frmZones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(567, 390);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl5);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmZones";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Zones";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmZones_FormClosing);
     this.Load += new System.EventHandler(this.VendorEmployees_Load);
     this.Enter += new System.EventHandler(this.frmZones_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.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()
 {
     this.GC_Robot = new DevExpress.XtraEditors.GroupControl();
     this.CE_Link = new DevExpress.XtraEditors.CheckEdit();
     this.TE_Remark = new DevExpress.XtraEditors.TextEdit();
     this.LL_Remark = new DevExpress.XtraEditors.LabelControl();
     this.TE_Prog = new DevExpress.XtraEditors.TextEdit();
     this.LL_Prog = new DevExpress.XtraEditors.LabelControl();
     this.TE_Ip = new DevExpress.XtraEditors.TextEdit();
     this.LL_IP = new DevExpress.XtraEditors.LabelControl();
     this.LL_ID = new DevExpress.XtraEditors.LabelControl();
     this.CE_Server = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.GC_Robot)).BeginInit();
     this.GC_Robot.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CE_Link.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TE_Remark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TE_Prog.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TE_Ip.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GC_Robot
     //
     this.GC_Robot.Controls.Add(this.CE_Server);
     this.GC_Robot.Controls.Add(this.CE_Link);
     this.GC_Robot.Controls.Add(this.TE_Remark);
     this.GC_Robot.Controls.Add(this.LL_Remark);
     this.GC_Robot.Controls.Add(this.TE_Prog);
     this.GC_Robot.Controls.Add(this.LL_Prog);
     this.GC_Robot.Controls.Add(this.TE_Ip);
     this.GC_Robot.Controls.Add(this.LL_IP);
     this.GC_Robot.Controls.Add(this.LL_ID);
     this.GC_Robot.Location = new System.Drawing.Point(0, 2);
     this.GC_Robot.Name = "GC_Robot";
     this.GC_Robot.Size = new System.Drawing.Size(360, 218);
     this.GC_Robot.TabIndex = 6;
     this.GC_Robot.Text = "机器人信息";
     this.GC_Robot.Paint += new System.Windows.Forms.PaintEventHandler(this.GC_Robot_Paint);
     //
     // CE_Link
     //
     this.CE_Link.Location = new System.Drawing.Point(163, 26);
     this.CE_Link.Name = "CE_Link";
     this.CE_Link.Properties.Caption = "链接";
     this.CE_Link.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.CE_Link.Size = new System.Drawing.Size(75, 19);
     this.CE_Link.TabIndex = 13;
     //
     // TE_Remark
     //
     this.TE_Remark.Location = new System.Drawing.Point(70, 148);
     this.TE_Remark.Name = "TE_Remark";
     this.TE_Remark.Size = new System.Drawing.Size(252, 20);
     this.TE_Remark.TabIndex = 12;
     //
     // LL_Remark
     //
     this.LL_Remark.Location = new System.Drawing.Point(12, 150);
     this.LL_Remark.Name = "LL_Remark";
     this.LL_Remark.Size = new System.Drawing.Size(28, 13);
     this.LL_Remark.TabIndex = 11;
     this.LL_Remark.Text = "备注:";
     //
     // TE_Prog
     //
     this.TE_Prog.Location = new System.Drawing.Point(70, 103);
     this.TE_Prog.Name = "TE_Prog";
     this.TE_Prog.Size = new System.Drawing.Size(252, 20);
     this.TE_Prog.TabIndex = 8;
     //
     // LL_Prog
     //
     this.LL_Prog.Location = new System.Drawing.Point(12, 106);
     this.LL_Prog.Name = "LL_Prog";
     this.LL_Prog.Size = new System.Drawing.Size(48, 13);
     this.LL_Prog.TabIndex = 7;
     this.LL_Prog.Text = "程序名:";
     //
     // TE_Ip
     //
     this.TE_Ip.Location = new System.Drawing.Point(70, 58);
     this.TE_Ip.Name = "TE_Ip";
     this.TE_Ip.Size = new System.Drawing.Size(252, 20);
     this.TE_Ip.TabIndex = 6;
     //
     // LL_IP
     //
     this.LL_IP.Location = new System.Drawing.Point(12, 62);
     this.LL_IP.Name = "LL_IP";
     this.LL_IP.Size = new System.Drawing.Size(50, 13);
     this.LL_IP.TabIndex = 1;
     this.LL_IP.Text = "控制器IP:";
     //
     // LL_ID
     //
     this.LL_ID.Location = new System.Drawing.Point(12, 29);
     this.LL_ID.Name = "LL_ID";
     this.LL_ID.Size = new System.Drawing.Size(64, 13);
     this.LL_ID.TabIndex = 0;
     this.LL_ID.Text = "机器人序号:";
     //
     // CE_Server
     //
     this.CE_Server.AutoSize = true;
     this.CE_Server.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.CE_Server.Location = new System.Drawing.Point(12, 187);
     this.CE_Server.Name = "CE_Server";
     this.CE_Server.Size = new System.Drawing.Size(77, 17);
     this.CE_Server.TabIndex = 47;
     this.CE_Server.Text = " 作为主机";
     this.CE_Server.UseVisualStyleBackColor = true;
     //
     // UC_SysConfig
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.GC_Robot);
     this.Name = "UC_SysConfig";
     this.Size = new System.Drawing.Size(360, 220);
     ((System.ComponentModel.ISupportInitialize)(this.GC_Robot)).EndInit();
     this.GC_Robot.ResumeLayout(false);
     this.GC_Robot.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CE_Link.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TE_Remark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TE_Prog.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TE_Ip.Properties)).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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = 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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ventas));
     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();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btn_del = new System.Windows.Forms.Button();
     this.btn_add = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.telef = new System.Windows.Forms.TextBox();
     this.vendpername = new System.Windows.Forms.TextBox();
     this.vendperid = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txtvuelto = new System.Windows.Forms.TextBox();
     this.txtefectivo = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.dctoTda = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dctoTotal = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.dctoTarj = new System.Windows.Forms.TextBox();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.shapeContainer3 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.griddetallemov = new System.Windows.Forms.DataGridView();
     this.nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rollo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ubicacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
     this.cbo_incprec = new System.Windows.Forms.ComboBox();
     this.label20 = new System.Windows.Forms.Label();
     this.lbltitulo = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_upload = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_information = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.lblruc = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pdtimagen = new System.Windows.Forms.PictureBox();
     this.lstListaprec = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.canticombo = new DevExpress.XtraEditors.SpinEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.preccombo = new System.Windows.Forms.TextBox();
     this.princombo = new System.Windows.Forms.CheckBox();
     this.glosa = new System.Windows.Forms.TextBox();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.label23 = new System.Windows.Forms.Label();
     this.importtarj = new System.Windows.Forms.TextBox();
     this.lstTarjGroup = new System.Windows.Forms.ListBox();
     this.dgbtarjetas = new System.Windows.Forms.DataGridView();
     this._tarjetalogo = new System.Windows.Forms.DataGridViewImageColumn();
     this._tarjetaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetanum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaimpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ddnni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.numnotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.sernotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipnotac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.numguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipguia = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.numfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipfac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.recep_fecha = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.recep_dni = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.recep_name = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chkNC = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkGR = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkFA = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.fechnotac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechguia = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechfac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).BeginInit();
     this.SuspendLayout();
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_del.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_del.Location = new System.Drawing.Point(226, 34);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(21, 21);
     this.btn_del.TabIndex = 99;
     this.toolTip1.SetToolTip(this.btn_del, "Quitar");
     this.btn_del.UseVisualStyleBackColor = true;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_add.Image = global::BapFormulariosNet.Properties.Resources.go_add1;
     this.btn_add.Location = new System.Drawing.Point(226, 12);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(21, 21);
     this.btn_add.TabIndex = 98;
     this.toolTip1.SetToolTip(this.btn_add, "Agregar");
     this.btn_add.UseVisualStyleBackColor = true;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(302, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 13);
     this.label12.TabIndex = 92;
     this.label12.Text = "Telef:";
     //
     // telef
     //
     this.telef.Location = new System.Drawing.Point(338, 125);
     this.telef.MaxLength = 100;
     this.telef.Name = "telef";
     this.telef.Size = new System.Drawing.Size(86, 21);
     this.telef.TabIndex = 83;
     //
     // vendpername
     //
     this.vendpername.Location = new System.Drawing.Point(100, 183);
     this.vendpername.Name = "vendpername";
     this.vendpername.Size = new System.Drawing.Size(351, 21);
     this.vendpername.TabIndex = 81;
     //
     // vendperid
     //
     this.vendperid.Location = new System.Drawing.Point(64, 183);
     this.vendperid.MaxLength = 8;
     this.vendperid.Name = "vendperid";
     this.vendperid.Size = new System.Drawing.Size(35, 21);
     this.vendperid.TabIndex = 80;
     this.vendperid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.vendperid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.vendperid_KeyDown);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(3, 186);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 13);
     this.label11.TabIndex = 78;
     this.label11.Text = "Vendedor:";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(64, 83);
     this.ctacte.MaxLength = 7;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(53, 21);
     this.ctacte.TabIndex = 11;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txtvuelto);
     this.panel2.Controls.Add(this.txtefectivo);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.dctoTda);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dctoTotal);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.dctoTarj);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.shapeContainer3);
     this.panel2.Location = new System.Drawing.Point(0, 480);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(989, 80);
     this.panel2.TabIndex = 73;
     //
     // txtvuelto
     //
     this.txtvuelto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtvuelto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtvuelto.Location = new System.Drawing.Point(905, 52);
     this.txtvuelto.Name = "txtvuelto";
     this.txtvuelto.Size = new System.Drawing.Size(75, 20);
     this.txtvuelto.TabIndex = 101;
     this.txtvuelto.Text = "00.00";
     this.txtvuelto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtefectivo
     //
     this.txtefectivo.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtefectivo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtefectivo.Location = new System.Drawing.Point(904, 29);
     this.txtefectivo.Name = "txtefectivo";
     this.txtefectivo.Size = new System.Drawing.Size(75, 20);
     this.txtefectivo.TabIndex = 100;
     this.txtefectivo.Text = "00.00";
     this.txtefectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtefectivo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtefectivo_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(849, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 99;
     this.label19.Text = "Vuelto :";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(838, 33);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(62, 13);
     this.label18.TabIndex = 98;
     this.label18.Text = "Efectivo :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(669, 13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(508, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 92;
     this.label9.Text = "Dcto.Tda :";
     //
     // valventa
     //
     this.valventa.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.valventa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valventa.Location = new System.Drawing.Point(747, 8);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 20);
     this.valventa.TabIndex = 80;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dctoTda
     //
     this.dctoTda.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTda.Location = new System.Drawing.Point(577, 8);
     this.dctoTda.Name = "dctoTda";
     this.dctoTda.Size = new System.Drawing.Size(75, 20);
     this.dctoTda.TabIndex = 91;
     this.dctoTda.Text = "00.00";
     this.dctoTda.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(677, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 83;
     this.label4.Text = "Impuesto :";
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(173, 53);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(72, 13);
     this.lbl_valor.TabIndex = 87;
     this.lbl_valor.Text = "Cost.Prom :";
     //
     // totimporte
     //
     this.totimporte.BackColor = System.Drawing.Color.YellowGreen;
     this.totimporte.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimporte.Location = new System.Drawing.Point(747, 50);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 84;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(508, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(68, 13);
     this.label14.TabIndex = 94;
     this.label14.Text = "Dcto.Tarj :";
     //
     // totimpto
     //
     this.totimpto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.totimpto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimpto.Location = new System.Drawing.Point(747, 29);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 20);
     this.totimpto.TabIndex = 82;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(246, 49);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 86;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(699, 54);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 85;
     this.label3.Text = "Total :";
     //
     // dctoTotal
     //
     this.dctoTotal.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTotal.Location = new System.Drawing.Point(577, 50);
     this.dctoTotal.Name = "dctoTotal";
     this.dctoTotal.Size = new System.Drawing.Size(75, 21);
     this.dctoTotal.TabIndex = 95;
     this.dctoTotal.Text = "00.00";
     this.dctoTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(170, 31);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(76, 13);
     this.label39.TabIndex = 79;
     this.label39.Text = "Descuento :";
     //
     // dctoTarj
     //
     this.dctoTarj.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTarj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTarj.Location = new System.Drawing.Point(577, 29);
     this.dctoTarj.Name = "dctoTarj";
     this.dctoTarj.Size = new System.Drawing.Size(75, 20);
     this.dctoTarj.TabIndex = 93;
     this.dctoTarj.Text = "00.00";
     this.dctoTarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(246, 28);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 78;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(501, 53);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(75, 13);
     this.label17.TabIndex = 96;
     this.label17.Text = "Descto.TT :";
     //
     // 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(3, 51);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto :";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(76, 48);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 76;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(344, 52);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 89;
     this.label40.Text = "Stock :";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(6, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 75;
     this.label7.Text = "T. Piezas :";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(76, 26);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 74;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(392, 48);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 88;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(29, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 13);
     this.label1.TabIndex = 73;
     this.label1.Text = "Items :";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(77, 4);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 72;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // shapeContainer3
     //
     this.shapeContainer3.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer3.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer3.Name = "shapeContainer3";
     this.shapeContainer3.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer3.Size = new System.Drawing.Size(989, 80);
     this.shapeContainer3.TabIndex = 97;
     this.shapeContainer3.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderWidth = 2;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 482;
     this.lineShape4.X2 = 482;
     this.lineShape4.Y1 = 10;
     this.lineShape4.Y2 = 71;
     //
     // lineShape3
     //
     this.lineShape3.BorderWidth = 2;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 665;
     this.lineShape3.X2 = 665;
     this.lineShape3.Y1 = 10;
     this.lineShape3.Y2 = 71;
     //
     // griddetallemov
     //
     this.griddetallemov.AllowUserToAddRows = false;
     this.griddetallemov.AllowUserToDeleteRows = false;
     this.griddetallemov.AllowUserToResizeColumns = false;
     this.griddetallemov.AllowUserToResizeRows = false;
     this.griddetallemov.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     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.griddetallemov.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetallemov.ColumnHeadersHeight = 20;
     this.griddetallemov.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nostock,
     this.item,
     this.productid,
     this.productname,
     this.rollo,
     this.unmed,
     this.Ubicacion,
     this.stock_old,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.cantidad_old,
     this.precioanterior,
     this.precunit,
     this.valor,
     this.dtotimpto,
     this.importe,
     this.importfac,
     this.dalmacaccionid,
     this.cantidadcta});
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.griddetallemov.DefaultCellStyle = dataGridViewCellStyle8;
     this.griddetallemov.Location = new System.Drawing.Point(1, 214);
     this.griddetallemov.MultiSelect = false;
     this.griddetallemov.Name = "griddetallemov";
     this.griddetallemov.RowHeadersVisible = false;
     this.griddetallemov.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.NullValue = null;
     this.griddetallemov.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetallemov.RowTemplate.DefaultCellStyle.NullValue = null;
     this.griddetallemov.RowTemplate.Height = 20;
     this.griddetallemov.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetallemov.Size = new System.Drawing.Size(989, 266);
     this.griddetallemov.TabIndex = 71;
     this.griddetallemov.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEndEdit);
     this.griddetallemov.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEnter);
     this.griddetallemov.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellLeave);
     this.griddetallemov.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetallemov_EditingControlShowing);
     this.griddetallemov.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyDown);
     this.griddetallemov.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyUp);
     //
     // nostock
     //
     this.nostock.DataPropertyName = "nostock";
     this.nostock.FalseValue = "false";
     this.nostock.Frozen = true;
     this.nostock.HeaderText = "Aft";
     this.nostock.Name = "nostock";
     this.nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.nostock.TrueValue = "true";
     this.nostock.Width = 20;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.Frozen = true;
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.Frozen = true;
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.Frozen = true;
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 400;
     //
     // rollo
     //
     this.rollo.DataPropertyName = "rollo";
     this.rollo.Frozen = true;
     this.rollo.HeaderText = "Rollo";
     this.rollo.MaxInputLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.rollo.Visible = false;
     this.rollo.Width = 80;
     //
     // unmed
     //
     this.unmed.DataPropertyName = "unmed";
     this.unmed.Frozen = true;
     this.unmed.HeaderText = "UnMed";
     this.unmed.Name = "unmed";
     this.unmed.Width = 48;
     //
     // Ubicacion
     //
     this.Ubicacion.DataPropertyName = "ubicacion";
     dataGridViewCellStyle2.NullValue = null;
     this.Ubicacion.DefaultCellStyle = dataGridViewCellStyle2;
     this.Ubicacion.Frozen = true;
     this.Ubicacion.HeaderText = "Ubicacion";
     this.Ubicacion.MaxInputLength = 4;
     this.Ubicacion.Name = "Ubicacion";
     this.Ubicacion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Ubicacion.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.Frozen = true;
     this.stock_old.HeaderText = "stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle3.NullValue = null;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.Frozen = true;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.Frozen = true;
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.Frozen = true;
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.Frozen = true;
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.Frozen = true;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad.Width = 80;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.Frozen = true;
     this.cantidad_old.HeaderText = "cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.Frozen = true;
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.Frozen = true;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit.Width = 90;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importe.DefaultCellStyle = dataGridViewCellStyle6;
     this.importe.HeaderText = "Importe";
     this.importe.Name = "importe";
     this.importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importe.Visible = false;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle7;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(64, 125);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(233, 21);
     this.direc.TabIndex = 23;
     //
     // ctactename
     //
     this.ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactename.Location = new System.Drawing.Point(64, 104);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(387, 21);
     this.ctactename.TabIndex = 21;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(160, 82);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(90, 21);
     this.nmruc.TabIndex = 12;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.chkfijar);
     this.panel1.Controls.Add(this.cbo_incprec);
     this.panel1.Controls.Add(this.label20);
     this.panel1.Controls.Add(this.lbltitulo);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.fechdoc);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numdoc);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.tipodoc);
     this.panel1.Controls.Add(this.serdoc);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 29);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(993, 45);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(643, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 23;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // chkfijar
     //
     this.chkfijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chkfijar.Location = new System.Drawing.Point(137, 21);
     this.chkfijar.Name = "chkfijar";
     this.chkfijar.Properties.Caption = "Fijar";
     this.chkfijar.Size = new System.Drawing.Size(51, 19);
     this.chkfijar.TabIndex = 22;
     this.chkfijar.CheckedChanged += new System.EventHandler(this.chkfijar_CheckedChanged);
     //
     // cbo_incprec
     //
     this.cbo_incprec.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cbo_incprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_incprec.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbo_incprec.FormattingEnabled = true;
     this.cbo_incprec.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.cbo_incprec.Items.AddRange(new object[] {
     "SI",
     "NO"});
     this.cbo_incprec.Location = new System.Drawing.Point(946, 20);
     this.cbo_incprec.Name = "cbo_incprec";
     this.cbo_incprec.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cbo_incprec.Size = new System.Drawing.Size(40, 21);
     this.cbo_incprec.TabIndex = 21;
     this.cbo_incprec.SelectedIndexChanged += new System.EventHandler(this.cbo_incprec_SelectedIndexChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(947, 5);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 20;
     this.label20.Text = "Inclu.";
     //
     // lbltitulo
     //
     this.lbltitulo.AutoSize = true;
     this.lbltitulo.BackColor = System.Drawing.Color.Transparent;
     this.lbltitulo.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbltitulo.ForeColor = System.Drawing.Color.White;
     this.lbltitulo.Location = new System.Drawing.Point(422, 9);
     this.lbltitulo.Name = "lbltitulo";
     this.lbltitulo.Size = new System.Drawing.Size(151, 31);
     this.lbltitulo.TabIndex = 19;
     this.lbltitulo.Text = "FACTURA";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(928, 22);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 18;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(887, 20);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 17;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // fechdoc
     //
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.Location = new System.Drawing.Point(669, 21);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 7;
     this.fechdoc.Value = new System.DateTime(2014, 4, 14, 0, 0, 0, 0);
     this.fechdoc.ValueChanged += new System.EventHandler(this.fechdoc_ValueChanged);
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(756, 20);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 8;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Tipo Documento";
     //
     // numdoc
     //
     this.numdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(231, 20);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(87, 21);
     this.numdoc.TabIndex = 8;
     this.numdoc.Text = "000000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(828, 20);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 9;
     this.tcamb.Text = "3.420";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
     this.tipodoc.FormattingEnabled = true;
     this.tipodoc.Location = new System.Drawing.Point(7, 20);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(128, 20);
     this.tipodoc.TabIndex = 4;
     this.tipodoc.SelectedIndexChanged += new System.EventHandler(this.tipodoc_SelectedIndexChanged);
     //
     // serdoc
     //
     this.serdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(189, 20);
     this.serdoc.MaxLength = 5;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(40, 21);
     this.serdoc.TabIndex = 4;
     this.serdoc.Text = "2014";
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(761, 5);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 12;
     this.label21.Text = "Moneda";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(193, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Serie";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(883, 5);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Impuesto";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(247, 5);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 7;
     this.label8.Text = "Número";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(826, 5);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 14;
     this.label15.Text = "T Cambio";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(688, 5);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 10;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.BackColor = System.Drawing.SystemColors.Control;
     this.Botonera.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnImprimirNoval,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_Calculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_upload,
     this.btn_salir,
     this.btn_information});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(993, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     this.Botonera.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Botonera_ItemClicked);
     //
     // btn_nuevo
     //
     this.btn_nuevo.BackColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Image")));
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = global::BapFormulariosNet.Properties.Resources.btn_eliminar20;
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Image")));
     this.btn_imprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(24, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.ToolTipText = "Impresion Valorizada";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btnImprimirNoval
     //
     this.btnImprimirNoval.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnImprimirNoval.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btnImprimirNoval.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimirNoval.Name = "btnImprimirNoval";
     this.btnImprimirNoval.Size = new System.Drawing.Size(26, 26);
     this.btnImprimirNoval.ToolTipText = "Impresion No Valorizada";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = global::BapFormulariosNet.Properties.Resources.go_add;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(26, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_Calculadora
     //
     this.btn_Calculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Calculadora.Image = global::BapFormulariosNet.Properties.Resources.go_calc2;
     this.btn_Calculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Calculadora.Name = "btn_Calculadora";
     this.btn_Calculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_Calculadora.Text = "Calculadora";
     this.btn_Calculadora.Click += new System.EventHandler(this.btn_Calculadora_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_upload
     //
     this.btn_upload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_upload.Image = global::BapFormulariosNet.Properties.Resources.btn_barcode;
     this.btn_upload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_upload.Name = "btn_upload";
     this.btn_upload.Size = new System.Drawing.Size(26, 26);
     this.btn_upload.Text = "Leer Codigo Barras";
     this.btn_upload.ToolTipText = "Cargar";
     this.btn_upload.Click += new System.EventHandler(this.btn_upload_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_information
     //
     this.btn_information.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_information.Image = global::BapFormulariosNet.Properties.Resources.go_information;
     this.btn_information.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_information.Name = "btn_information";
     this.btn_information.Size = new System.Drawing.Size(26, 26);
     this.btn_information.Text = "Informacion";
     this.btn_information.Click += new System.EventHandler(this.btn_information_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(6, 86);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(42, 13);
     this.tipoclieprov.TabIndex = 18;
     this.tipoclieprov.Text = "Cliente:";
     //
     // lblruc
     //
     this.lblruc.AutoSize = true;
     this.lblruc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblruc.Location = new System.Drawing.Point(123, 85);
     this.lblruc.Name = "lblruc";
     this.lblruc.Size = new System.Drawing.Size(33, 13);
     this.lblruc.TabIndex = 75;
     this.lblruc.Text = "RUC:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(6, 128);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 22;
     this.label24.Text = "Dirección:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(993, 560);
     this.shapeContainer1.TabIndex = 82;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.SelectionColor = System.Drawing.SystemColors.HotTrack;
     this.lineShape2.X1 = 2;
     this.lineShape2.X2 = 453;
     this.lineShape2.Y1 = 176;
     this.lineShape2.Y2 = 176;
     //
     // pdtimagen
     //
     this.pdtimagen.BackColor = System.Drawing.Color.Transparent;
     this.pdtimagen.Image = global::BapFormulariosNet.Properties.Resources.anulado;
     this.pdtimagen.Location = new System.Drawing.Point(378, 286);
     this.pdtimagen.Name = "pdtimagen";
     this.pdtimagen.Size = new System.Drawing.Size(262, 135);
     this.pdtimagen.TabIndex = 96;
     this.pdtimagen.TabStop = false;
     //
     // lstListaprec
     //
     this.lstListaprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstListaprec.FormattingEnabled = true;
     this.lstListaprec.Location = new System.Drawing.Point(873, 99);
     this.lstListaprec.Name = "lstListaprec";
     this.lstListaprec.Size = new System.Drawing.Size(113, 21);
     this.lstListaprec.TabIndex = 98;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(870, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(85, 13);
     this.label22.TabIndex = 99;
     this.label22.Text = "Lista de Precios:";
     //
     // btnextraersunat
     //
     this.btnextraersunat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnextraersunat.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnextraersunat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnextraersunat.Image = global::BapFormulariosNet.Properties.Resources.go_sunat1;
     this.btnextraersunat.Location = new System.Drawing.Point(256, 80);
     this.btnextraersunat.Name = "btnextraersunat";
     this.btnextraersunat.Size = new System.Drawing.Size(90, 23);
     this.btnextraersunat.TabIndex = 100;
     this.btnextraersunat.ToolTip = "Extrae Datos";
     this.btnextraersunat.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnextraersunat.Click += new System.EventHandler(this.btnextraersunat_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(466, 76);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(401, 137);
     this.xtraTabControl1.TabIndex = 101;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.canticombo);
     this.xtraTabPage3.Controls.Add(this.label26);
     this.xtraTabPage3.Controls.Add(this.label25);
     this.xtraTabPage3.Controls.Add(this.preccombo);
     this.xtraTabPage3.Controls.Add(this.princombo);
     this.xtraTabPage3.Controls.Add(this.glosa);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage3.Text = "Observaciones";
     //
     // canticombo
     //
     this.canticombo.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.canticombo.Location = new System.Drawing.Point(295, 30);
     this.canticombo.Name = "canticombo";
     this.canticombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.canticombo.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.canticombo.Size = new System.Drawing.Size(67, 20);
     this.canticombo.TabIndex = 87;
     this.canticombo.EditValueChanged += new System.EventHandler(this.canticombo_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 64);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(55, 13);
     this.label26.TabIndex = 86;
     this.label26.Text = "Prec/Unit:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(210, 34);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(84, 13);
     this.label25.TabIndex = 85;
     this.label25.Text = "Nro de Combos:";
     //
     // preccombo
     //
     this.preccombo.Location = new System.Drawing.Point(295, 60);
     this.preccombo.Name = "preccombo";
     this.preccombo.ReadOnly = true;
     this.preccombo.Size = new System.Drawing.Size(67, 21);
     this.preccombo.TabIndex = 83;
     this.preccombo.Text = "0.00";
     this.preccombo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // princombo
     //
     this.princombo.AutoSize = true;
     this.princombo.Location = new System.Drawing.Point(219, 9);
     this.princombo.Name = "princombo";
     this.princombo.Size = new System.Drawing.Size(151, 17);
     this.princombo.TabIndex = 81;
     this.princombo.Text = "Imprimir en Detalle Combo";
     this.princombo.UseVisualStyleBackColor = true;
     this.princombo.CheckedChanged += new System.EventHandler(this.princombo_CheckedChanged);
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(18, 9);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(186, 72);
     this.glosa.TabIndex = 80;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.label23);
     this.xtraTabPage1.Controls.Add(this.importtarj);
     this.xtraTabPage1.Controls.Add(this.btn_del);
     this.xtraTabPage1.Controls.Add(this.btn_add);
     this.xtraTabPage1.Controls.Add(this.lstTarjGroup);
     this.xtraTabPage1.Controls.Add(this.dgbtarjetas);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage1.Text = "Pago con Tarjeta";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(73, 83);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 101;
     this.label23.Text = "Total >>";
     //
     // importtarj
     //
     this.importtarj.Location = new System.Drawing.Point(129, 80);
     this.importtarj.MaxLength = 8;
     this.importtarj.Name = "importtarj";
     this.importtarj.Size = new System.Drawing.Size(69, 21);
     this.importtarj.TabIndex = 100;
     this.importtarj.Text = "0.00";
     this.importtarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lstTarjGroup
     //
     this.lstTarjGroup.FormattingEnabled = true;
     this.lstTarjGroup.Location = new System.Drawing.Point(253, 12);
     this.lstTarjGroup.Name = "lstTarjGroup";
     this.lstTarjGroup.Size = new System.Drawing.Size(116, 56);
     this.lstTarjGroup.TabIndex = 97;
     //
     // dgbtarjetas
     //
     this.dgbtarjetas.AllowUserToAddRows = false;
     this.dgbtarjetas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbtarjetas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tarjetalogo,
     this._tarjetaid,
     this._tarjetaname,
     this._tarjetanum,
     this._tarjetaimpo,
     this._ddnni});
     this.dgbtarjetas.Location = new System.Drawing.Point(5, 12);
     this.dgbtarjetas.Name = "dgbtarjetas";
     this.dgbtarjetas.ReadOnly = true;
     this.dgbtarjetas.RowHeadersVisible = false;
     this.dgbtarjetas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgbtarjetas.Size = new System.Drawing.Size(214, 68);
     this.dgbtarjetas.TabIndex = 96;
     //
     // _tarjetalogo
     //
     this._tarjetalogo.DataPropertyName = "tarjetalogo";
     this._tarjetalogo.HeaderText = "TarJ";
     this._tarjetalogo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;
     this._tarjetalogo.Name = "_tarjetalogo";
     this._tarjetalogo.ReadOnly = true;
     this._tarjetalogo.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._tarjetalogo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._tarjetalogo.Width = 40;
     //
     // _tarjetaid
     //
     this._tarjetaid.DataPropertyName = "tarjetaid";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._tarjetaid.DefaultCellStyle = dataGridViewCellStyle10;
     this._tarjetaid.HeaderText = "Cod";
     this._tarjetaid.Name = "_tarjetaid";
     this._tarjetaid.ReadOnly = true;
     this._tarjetaid.Visible = false;
     this._tarjetaid.Width = 30;
     //
     // _tarjetaname
     //
     this._tarjetaname.DataPropertyName = "tarjetaname";
     this._tarjetaname.HeaderText = "Nom";
     this._tarjetaname.Name = "_tarjetaname";
     this._tarjetaname.ReadOnly = true;
     this._tarjetaname.Visible = false;
     //
     // _tarjetanum
     //
     this._tarjetanum.DataPropertyName = "tarjetanume";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this._tarjetanum.DefaultCellStyle = dataGridViewCellStyle11;
     this._tarjetanum.HeaderText = "Aprob.";
     this._tarjetanum.Name = "_tarjetanum";
     this._tarjetanum.ReadOnly = true;
     this._tarjetanum.Width = 80;
     //
     // _tarjetaimpo
     //
     this._tarjetaimpo.DataPropertyName = "tarjetaimpo";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle12.Format = "N2";
     dataGridViewCellStyle12.NullValue = null;
     this._tarjetaimpo.DefaultCellStyle = dataGridViewCellStyle12;
     this._tarjetaimpo.HeaderText = "Importe";
     this._tarjetaimpo.Name = "_tarjetaimpo";
     this._tarjetaimpo.ReadOnly = true;
     this._tarjetaimpo.Width = 80;
     //
     // _ddnni
     //
     this._ddnni.DataPropertyName = "ddnni";
     this._ddnni.HeaderText = "Dni";
     this._ddnni.Name = "_ddnni";
     this._ddnni.ReadOnly = true;
     this._ddnni.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.numnotac);
     this.xtraTabPage2.Controls.Add(this.sernotac);
     this.xtraTabPage2.Controls.Add(this.tipnotac);
     this.xtraTabPage2.Controls.Add(this.numguia);
     this.xtraTabPage2.Controls.Add(this.serguia);
     this.xtraTabPage2.Controls.Add(this.tipguia);
     this.xtraTabPage2.Controls.Add(this.numfac);
     this.xtraTabPage2.Controls.Add(this.serfac);
     this.xtraTabPage2.Controls.Add(this.tipfac);
     this.xtraTabPage2.Controls.Add(this.recep_fecha);
     this.xtraTabPage2.Controls.Add(this.recep_dni);
     this.xtraTabPage2.Controls.Add(this.recep_name);
     this.xtraTabPage2.Controls.Add(this.chkNC);
     this.xtraTabPage2.Controls.Add(this.chkGR);
     this.xtraTabPage2.Controls.Add(this.chkFA);
     this.xtraTabPage2.Controls.Add(this.fechnotac);
     this.xtraTabPage2.Controls.Add(this.fechguia);
     this.xtraTabPage2.Controls.Add(this.fechfac);
     this.xtraTabPage2.Controls.Add(this.label29);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Controls.Add(this.label27);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage2.Text = "Docs Referencia";
     //
     // numnotac
     //
     //
     //
     //
     this.numnotac.Border.Class = "TextBoxBorder";
     this.numnotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numnotac.ButtonCustom.Tooltip = "";
     this.numnotac.ButtonCustom2.Tooltip = "";
     this.numnotac.Location = new System.Drawing.Point(88, 60);
     this.numnotac.MaxLength = 10;
     this.numnotac.Name = "numnotac";
     this.numnotac.PreventEnterBeep = true;
     this.numnotac.Size = new System.Drawing.Size(79, 21);
     this.numnotac.TabIndex = 94;
     //
     // sernotac
     //
     //
     //
     //
     this.sernotac.Border.Class = "TextBoxBorder";
     this.sernotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sernotac.ButtonCustom.Tooltip = "";
     this.sernotac.ButtonCustom2.Tooltip = "";
     this.sernotac.Location = new System.Drawing.Point(49, 60);
     this.sernotac.MaxLength = 4;
     this.sernotac.Name = "sernotac";
     this.sernotac.PreventEnterBeep = true;
     this.sernotac.Size = new System.Drawing.Size(37, 21);
     this.sernotac.TabIndex = 93;
     //
     // tipnotac
     //
     this.tipnotac.DisplayMember = "Text";
     this.tipnotac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipnotac.FormattingEnabled = true;
     this.tipnotac.ItemHeight = 15;
     this.tipnotac.Items.AddRange(new object[] {
     this.comboItem5});
     this.tipnotac.Location = new System.Drawing.Point(6, 60);
     this.tipnotac.Name = "tipnotac";
     this.tipnotac.Size = new System.Drawing.Size(40, 21);
     this.tipnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipnotac.TabIndex = 92;
     this.tipnotac.Text = "NC";
     //
     // comboItem5
     //
     this.comboItem5.Text = "NC";
     //
     // numguia
     //
     //
     //
     //
     this.numguia.Border.Class = "TextBoxBorder";
     this.numguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numguia.ButtonCustom.Tooltip = "";
     this.numguia.ButtonCustom2.Tooltip = "";
     this.numguia.Location = new System.Drawing.Point(88, 36);
     this.numguia.MaxLength = 10;
     this.numguia.Name = "numguia";
     this.numguia.PreventEnterBeep = true;
     this.numguia.Size = new System.Drawing.Size(79, 21);
     this.numguia.TabIndex = 91;
     //
     // serguia
     //
     //
     //
     //
     this.serguia.Border.Class = "TextBoxBorder";
     this.serguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serguia.ButtonCustom.Tooltip = "";
     this.serguia.ButtonCustom2.Tooltip = "";
     this.serguia.Location = new System.Drawing.Point(49, 36);
     this.serguia.MaxLength = 4;
     this.serguia.Name = "serguia";
     this.serguia.PreventEnterBeep = true;
     this.serguia.Size = new System.Drawing.Size(37, 21);
     this.serguia.TabIndex = 90;
     //
     // tipguia
     //
     this.tipguia.DisplayMember = "Text";
     this.tipguia.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipguia.FormattingEnabled = true;
     this.tipguia.ItemHeight = 15;
     this.tipguia.Items.AddRange(new object[] {
     this.comboItem3});
     this.tipguia.Location = new System.Drawing.Point(6, 36);
     this.tipguia.Name = "tipguia";
     this.tipguia.Size = new System.Drawing.Size(40, 21);
     this.tipguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipguia.TabIndex = 89;
     this.tipguia.Text = "GR";
     //
     // comboItem3
     //
     this.comboItem3.Text = "GR";
     //
     // numfac
     //
     //
     //
     //
     this.numfac.Border.Class = "TextBoxBorder";
     this.numfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numfac.ButtonCustom.Tooltip = "";
     this.numfac.ButtonCustom2.Tooltip = "";
     this.numfac.Location = new System.Drawing.Point(88, 12);
     this.numfac.MaxLength = 10;
     this.numfac.Name = "numfac";
     this.numfac.PreventEnterBeep = true;
     this.numfac.Size = new System.Drawing.Size(79, 21);
     this.numfac.TabIndex = 88;
     this.numfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numfac_KeyDown);
     //
     // serfac
     //
     //
     //
     //
     this.serfac.Border.Class = "TextBoxBorder";
     this.serfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serfac.ButtonCustom.Tooltip = "";
     this.serfac.ButtonCustom2.Tooltip = "";
     this.serfac.Location = new System.Drawing.Point(49, 12);
     this.serfac.MaxLength = 4;
     this.serfac.Name = "serfac";
     this.serfac.PreventEnterBeep = true;
     this.serfac.Size = new System.Drawing.Size(37, 21);
     this.serfac.TabIndex = 87;
     this.serfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.serfac_KeyDown);
     //
     // tipfac
     //
     this.tipfac.DisplayMember = "Text";
     this.tipfac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipfac.FormattingEnabled = true;
     this.tipfac.ItemHeight = 15;
     this.tipfac.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.tipfac.Location = new System.Drawing.Point(6, 12);
     this.tipfac.Name = "tipfac";
     this.tipfac.Size = new System.Drawing.Size(40, 21);
     this.tipfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipfac.TabIndex = 86;
     //
     // comboItem1
     //
     this.comboItem1.Text = "FA";
     //
     // comboItem2
     //
     this.comboItem2.Text = "BV";
     //
     // recep_fecha
     //
     //
     //
     //
     this.recep_fecha.BackgroundStyle.Class = "DateTimeInputBackground";
     this.recep_fecha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.ButtonClear.Tooltip = "";
     this.recep_fecha.ButtonCustom.Tooltip = "";
     this.recep_fecha.ButtonCustom2.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.recep_fecha.ButtonDropDown.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Visible = true;
     this.recep_fecha.ButtonFreeText.Tooltip = "";
     this.recep_fecha.IsPopupCalendarOpen = false;
     this.recep_fecha.Location = new System.Drawing.Point(297, 79);
     //
     //
     //
     this.recep_fecha.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.recep_fecha.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.recep_fecha.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.recep_fecha.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.TodayButtonVisible = true;
     this.recep_fecha.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.recep_fecha.Name = "recep_fecha";
     this.recep_fecha.Size = new System.Drawing.Size(82, 21);
     this.recep_fecha.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.recep_fecha.TabIndex = 85;
     //
     // recep_dni
     //
     //
     //
     //
     this.recep_dni.Border.Class = "TextBoxBorder";
     this.recep_dni.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_dni.ButtonCustom.Tooltip = "";
     this.recep_dni.ButtonCustom2.Tooltip = "";
     this.recep_dni.Location = new System.Drawing.Point(297, 58);
     this.recep_dni.MaxLength = 8;
     this.recep_dni.Name = "recep_dni";
     this.recep_dni.PreventEnterBeep = true;
     this.recep_dni.Size = new System.Drawing.Size(83, 21);
     this.recep_dni.TabIndex = 84;
     //
     // recep_name
     //
     //
     //
     //
     this.recep_name.Border.Class = "TextBoxBorder";
     this.recep_name.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_name.ButtonCustom.Tooltip = "";
     this.recep_name.ButtonCustom2.Tooltip = "";
     this.recep_name.Location = new System.Drawing.Point(269, 21);
     this.recep_name.MaxLength = 100;
     this.recep_name.Multiline = true;
     this.recep_name.Name = "recep_name";
     this.recep_name.PreventEnterBeep = true;
     this.recep_name.Size = new System.Drawing.Size(111, 36);
     this.recep_name.TabIndex = 83;
     //
     // chkNC
     //
     //
     //
     //
     this.chkNC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkNC.Location = new System.Drawing.Point(247, 58);
     this.chkNC.Name = "chkNC";
     this.chkNC.Size = new System.Drawing.Size(16, 23);
     this.chkNC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkNC.TabIndex = 82;
     this.chkNC.CheckedChanged += new System.EventHandler(this.chkNC_CheckedChanged);
     //
     // chkGR
     //
     //
     //
     //
     this.chkGR.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkGR.Location = new System.Drawing.Point(247, 36);
     this.chkGR.Name = "chkGR";
     this.chkGR.Size = new System.Drawing.Size(16, 23);
     this.chkGR.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkGR.TabIndex = 81;
     this.chkGR.CheckedChanged += new System.EventHandler(this.chkGR_CheckedChanged);
     //
     // chkFA
     //
     //
     //
     //
     this.chkFA.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkFA.Location = new System.Drawing.Point(247, 12);
     this.chkFA.Name = "chkFA";
     this.chkFA.Size = new System.Drawing.Size(16, 23);
     this.chkFA.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkFA.TabIndex = 80;
     this.chkFA.CheckedChanged += new System.EventHandler(this.chkFA_CheckedChanged);
     //
     // fechnotac
     //
     //
     //
     //
     this.fechnotac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechnotac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.ButtonClear.Tooltip = "";
     this.fechnotac.ButtonCustom.Tooltip = "";
     this.fechnotac.ButtonCustom2.Tooltip = "";
     this.fechnotac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechnotac.ButtonDropDown.Tooltip = "";
     this.fechnotac.ButtonDropDown.Visible = true;
     this.fechnotac.ButtonFreeText.Tooltip = "";
     this.fechnotac.IsPopupCalendarOpen = false;
     this.fechnotac.Location = new System.Drawing.Point(168, 59);
     //
     //
     //
     this.fechnotac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechnotac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechnotac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechnotac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.TodayButtonVisible = true;
     this.fechnotac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechnotac.Name = "fechnotac";
     this.fechnotac.Size = new System.Drawing.Size(82, 21);
     this.fechnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechnotac.TabIndex = 79;
     //
     // fechguia
     //
     //
     //
     //
     this.fechguia.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechguia.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.ButtonClear.Tooltip = "";
     this.fechguia.ButtonCustom.Tooltip = "";
     this.fechguia.ButtonCustom2.Tooltip = "";
     this.fechguia.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechguia.ButtonDropDown.Tooltip = "";
     this.fechguia.ButtonDropDown.Visible = true;
     this.fechguia.ButtonFreeText.Tooltip = "";
     this.fechguia.IsPopupCalendarOpen = false;
     this.fechguia.Location = new System.Drawing.Point(168, 36);
     //
     //
     //
     this.fechguia.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechguia.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechguia.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechguia.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.TodayButtonVisible = true;
     this.fechguia.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechguia.Name = "fechguia";
     this.fechguia.Size = new System.Drawing.Size(82, 21);
     this.fechguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechguia.TabIndex = 78;
     //
     // fechfac
     //
     //
     //
     //
     this.fechfac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechfac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.ButtonClear.Tooltip = "";
     this.fechfac.ButtonCustom.Tooltip = "";
     this.fechfac.ButtonCustom2.Tooltip = "";
     this.fechfac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechfac.ButtonDropDown.Tooltip = "";
     this.fechfac.ButtonDropDown.Visible = true;
     this.fechfac.ButtonFreeText.Tooltip = "";
     this.fechfac.IsPopupCalendarOpen = false;
     this.fechfac.Location = new System.Drawing.Point(168, 12);
     //
     //
     //
     this.fechfac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechfac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechfac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechfac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.TodayButtonVisible = true;
     this.fechfac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechfac.Name = "fechfac";
     this.fechfac.Size = new System.Drawing.Size(82, 21);
     this.fechfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechfac.TabIndex = 77;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(225, 84);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 72;
     this.label29.Text = "Fecha Recep:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(269, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(29, 13);
     this.label28.TabIndex = 69;
     this.label28.Text = "DNI:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(271, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(55, 13);
     this.label27.TabIndex = 67;
     this.label27.Text = "Receptor:";
     //
     // Frm_ventas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     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(993, 560);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnextraersunat);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.lstListaprec);
     this.Controls.Add(this.pdtimagen);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.telef);
     this.Controls.Add(this.vendpername);
     this.Controls.Add(this.vendperid);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetallemov);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.lblruc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ventas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modulo de Ventas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_movimiento_FormClosing);
     this.Load += new System.EventHandler(this.Frm_ventas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_movimiento_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).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.groupControlInfo = new DevExpress.XtraEditors.GroupControl();
     this.ceWarasaExtra = new DevExpress.XtraEditors.CheckEdit();
     this.btnImport = new DevExpress.XtraEditors.SimpleButton();
     this.ceWarasa = new DevExpress.XtraEditors.CheckEdit();
     this.ceExtra = new DevExpress.XtraEditors.CheckEdit();
     this.lblCounter = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlOp = new DevExpress.XtraEditors.GroupControl();
     this.pbc = new DevExpress.XtraEditors.ProgressBarControl();
     this.dsdatam = new RetirementCenter.DataSources.dsdatam();
     this.replyTableAdapter = new RetirementCenter.DataSources.dsdatamTableAdapters.replyTableAdapter();
     this.reply_wTableAdapter = new RetirementCenter.DataSources.dsdatamTableAdapters.reply_wTableAdapter();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.ceUpdateNIDWarasa = new DevExpress.XtraEditors.CheckEdit();
     this.ceUpdateNIDMember = new DevExpress.XtraEditors.CheckEdit();
     this.btnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.lblWebWarasaCounter = new DevExpress.XtraEditors.LabelControl();
     this.lblWebMemberCounter = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.tblmemberTableAdapter = new RetirementCenter.DataSources.dsWebDataTableAdapters.tblmemberTableAdapter();
     this.dsWebData = new RetirementCenter.DataSources.dsWebData();
     this.tblwarasasonTableAdapter = new RetirementCenter.DataSources.dsWebDataTableAdapters.tblwarasasonTableAdapter();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnImportAccess = new DevExpress.XtraEditors.SimpleButton();
     this.ceImportAccsess = new DevExpress.XtraEditors.CheckEdit();
     this.lblAccessCount = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.tblMashatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLMashatTableAdapter();
     this.tblmRemarksTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLMRemarksTableAdapter();
     this.tblMashatTablebindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tblEdafatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLEdafatTableAdapter();
     this.tblWarasaTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLWarasaTableAdapter();
     this.tblEdafatWarsaTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLEdafatWarsaTableAdapter();
     this.fromAccessTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.FromAccessTableAdapter();
     this.accsessTableAdapter = new RetirementCenter.DataSources.dsdatamTableAdapters.accsessTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInfo)).BeginInit();
     this.groupControlInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceWarasaExtra.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceWarasa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceExtra.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlOp)).BeginInit();
     this.groupControlOp.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsdatam)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceUpdateNIDWarasa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceUpdateNIDMember.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsWebData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceImportAccsess.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblMashatTablebindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlInfo
     //
     this.groupControlInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlInfo.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlInfo.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.groupControlInfo.Controls.Add(this.ceWarasaExtra);
     this.groupControlInfo.Controls.Add(this.btnImport);
     this.groupControlInfo.Controls.Add(this.ceWarasa);
     this.groupControlInfo.Controls.Add(this.ceExtra);
     this.groupControlInfo.Controls.Add(this.lblCounter);
     this.groupControlInfo.Controls.Add(this.labelControl1);
     this.groupControlInfo.Location = new System.Drawing.Point(345, 12);
     this.groupControlInfo.Name = "groupControlInfo";
     this.groupControlInfo.Size = new System.Drawing.Size(327, 100);
     this.groupControlInfo.TabIndex = 0;
     this.groupControlInfo.Text = "استيراد بيانات";
     //
     // ceWarasaExtra
     //
     this.ceWarasaExtra.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ceWarasaExtra.Enabled = false;
     this.ceWarasaExtra.Location = new System.Drawing.Point(23, 76);
     this.ceWarasaExtra.Name = "ceWarasaExtra";
     this.ceWarasaExtra.Properties.Caption = "الحاق اضافات الورثة";
     this.ceWarasaExtra.Size = new System.Drawing.Size(114, 19);
     this.ceWarasaExtra.TabIndex = 1;
     //
     // btnImport
     //
     this.btnImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnImport.Location = new System.Drawing.Point(5, 24);
     this.btnImport.Name = "btnImport";
     this.btnImport.Size = new System.Drawing.Size(100, 23);
     this.btnImport.TabIndex = 0;
     this.btnImport.Text = "استيراد";
     this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
     //
     // ceWarasa
     //
     this.ceWarasa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ceWarasa.Location = new System.Drawing.Point(143, 76);
     this.ceWarasa.Name = "ceWarasa";
     this.ceWarasa.Properties.Caption = "الحاق الورثة";
     this.ceWarasa.Size = new System.Drawing.Size(77, 19);
     this.ceWarasa.TabIndex = 1;
     this.ceWarasa.CheckedChanged += new System.EventHandler(this.ceWarasa_CheckedChanged);
     //
     // ceExtra
     //
     this.ceExtra.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ceExtra.Location = new System.Drawing.Point(226, 76);
     this.ceExtra.Name = "ceExtra";
     this.ceExtra.Properties.Caption = "الحاق الاضافات";
     this.ceExtra.Size = new System.Drawing.Size(92, 19);
     this.ceExtra.TabIndex = 1;
     //
     // lblCounter
     //
     this.lblCounter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblCounter.Location = new System.Drawing.Point(212, 38);
     this.lblCounter.Name = "lblCounter";
     this.lblCounter.Size = new System.Drawing.Size(6, 13);
     this.lblCounter.TabIndex = 0;
     this.lblCounter.Text = "0";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.Location = new System.Drawing.Point(281, 38);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(23, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "العدد";
     //
     // groupControlOp
     //
     this.groupControlOp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlOp.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlOp.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.groupControlOp.Controls.Add(this.pbc);
     this.groupControlOp.Location = new System.Drawing.Point(12, 221);
     this.groupControlOp.Name = "groupControlOp";
     this.groupControlOp.Size = new System.Drawing.Size(660, 100);
     this.groupControlOp.TabIndex = 1;
     this.groupControlOp.Text = "العمليات";
     //
     // pbc
     //
     this.pbc.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pbc.Location = new System.Drawing.Point(2, 80);
     this.pbc.Name = "pbc";
     this.pbc.Size = new System.Drawing.Size(656, 18);
     this.pbc.TabIndex = 1;
     //
     // dsdatam
     //
     this.dsdatam.DataSetName = "dsdatam";
     this.dsdatam.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // replyTableAdapter
     //
     this.replyTableAdapter.ClearBeforeFill = true;
     //
     // reply_wTableAdapter
     //
     this.reply_wTableAdapter.ClearBeforeFill = true;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.groupControl1.Controls.Add(this.ceUpdateNIDWarasa);
     this.groupControl1.Controls.Add(this.ceUpdateNIDMember);
     this.groupControl1.Controls.Add(this.btnUpdate);
     this.groupControl1.Controls.Add(this.lblWebWarasaCounter);
     this.groupControl1.Controls.Add(this.lblWebMemberCounter);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Location = new System.Drawing.Point(14, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(327, 100);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "قاعدة بيانات الويب";
     //
     // ceUpdateNIDWarasa
     //
     this.ceUpdateNIDWarasa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ceUpdateNIDWarasa.Location = new System.Drawing.Point(8, 76);
     this.ceUpdateNIDWarasa.Name = "ceUpdateNIDWarasa";
     this.ceUpdateNIDWarasa.Properties.Caption = "تحديث الرقم القومي للورثة";
     this.ceUpdateNIDWarasa.Size = new System.Drawing.Size(152, 19);
     this.ceUpdateNIDWarasa.TabIndex = 1;
     //
     // ceUpdateNIDMember
     //
     this.ceUpdateNIDMember.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ceUpdateNIDMember.Location = new System.Drawing.Point(166, 76);
     this.ceUpdateNIDMember.Name = "ceUpdateNIDMember";
     this.ceUpdateNIDMember.Properties.Caption = "تحديث الرقم القومي للاعضاء";
     this.ceUpdateNIDMember.Size = new System.Drawing.Size(152, 19);
     this.ceUpdateNIDMember.TabIndex = 1;
     //
     // btnUpdate
     //
     this.btnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnUpdate.Location = new System.Drawing.Point(5, 24);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(100, 23);
     this.btnUpdate.TabIndex = 0;
     this.btnUpdate.Text = "استيراد";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // lblWebWarasaCounter
     //
     this.lblWebWarasaCounter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblWebWarasaCounter.Location = new System.Drawing.Point(31, 57);
     this.lblWebWarasaCounter.Name = "lblWebWarasaCounter";
     this.lblWebWarasaCounter.Size = new System.Drawing.Size(6, 13);
     this.lblWebWarasaCounter.TabIndex = 0;
     this.lblWebWarasaCounter.Text = "0";
     //
     // lblWebMemberCounter
     //
     this.lblWebMemberCounter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblWebMemberCounter.Location = new System.Drawing.Point(212, 57);
     this.lblWebMemberCounter.Name = "lblWebMemberCounter";
     this.lblWebMemberCounter.Size = new System.Drawing.Size(6, 13);
     this.lblWebMemberCounter.TabIndex = 0;
     this.lblWebMemberCounter.Text = "0";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.Location = new System.Drawing.Point(100, 57);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(23, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "العدد";
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl3.Location = new System.Drawing.Point(281, 57);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(23, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "العدد";
     //
     // tblmemberTableAdapter
     //
     this.tblmemberTableAdapter.ClearBeforeFill = true;
     //
     // dsWebData
     //
     this.dsWebData.DataSetName = "dsWebData";
     this.dsWebData.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tblwarasasonTableAdapter
     //
     this.tblwarasasonTableAdapter.ClearBeforeFill = true;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.groupControl2.Controls.Add(this.btnImportAccess);
     this.groupControl2.Controls.Add(this.ceImportAccsess);
     this.groupControl2.Controls.Add(this.lblAccessCount);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Location = new System.Drawing.Point(14, 115);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(658, 100);
     this.groupControl2.TabIndex = 0;
     this.groupControl2.Text = "استيراد مالي";
     //
     // btnImportAccess
     //
     this.btnImportAccess.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnImportAccess.Location = new System.Drawing.Point(336, 24);
     this.btnImportAccess.Name = "btnImportAccess";
     this.btnImportAccess.Size = new System.Drawing.Size(100, 23);
     this.btnImportAccess.TabIndex = 0;
     this.btnImportAccess.Text = "استيراد";
     this.btnImportAccess.Click += new System.EventHandler(this.btnImportAccess_Click);
     //
     // ceImportAccsess
     //
     this.ceImportAccsess.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ceImportAccsess.Location = new System.Drawing.Point(584, 76);
     this.ceImportAccsess.Name = "ceImportAccsess";
     this.ceImportAccsess.Properties.Caption = "الحــــاق";
     this.ceImportAccsess.Size = new System.Drawing.Size(65, 19);
     this.ceImportAccsess.TabIndex = 1;
     //
     // lblAccessCount
     //
     this.lblAccessCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblAccessCount.Location = new System.Drawing.Point(543, 38);
     this.lblAccessCount.Name = "lblAccessCount";
     this.lblAccessCount.Size = new System.Drawing.Size(6, 13);
     this.lblAccessCount.TabIndex = 0;
     this.lblAccessCount.Text = "0";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl5.Location = new System.Drawing.Point(612, 38);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(23, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "العدد";
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tblMashatTableAdapter
     //
     this.tblMashatTableAdapter.ClearBeforeFill = true;
     //
     // tblmRemarksTableAdapter
     //
     this.tblmRemarksTableAdapter.ClearBeforeFill = true;
     //
     // tblMashatTablebindingSource
     //
     this.tblMashatTablebindingSource.DataMember = "TBLMashat";
     this.tblMashatTablebindingSource.DataSource = this.dsRetirementCenter;
     //
     // tblEdafatTableAdapter
     //
     this.tblEdafatTableAdapter.ClearBeforeFill = true;
     //
     // tblWarasaTableAdapter
     //
     this.tblWarasaTableAdapter.ClearBeforeFill = true;
     //
     // tblEdafatWarsaTableAdapter
     //
     this.tblEdafatWarsaTableAdapter.ClearBeforeFill = true;
     //
     // fromAccessTableAdapter
     //
     this.fromAccessTableAdapter.ClearBeforeFill = true;
     //
     // accsessTableAdapter
     //
     this.accsessTableAdapter.ClearBeforeFill = true;
     //
     // ImportFromAccessFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(684, 333);
     this.Controls.Add(this.groupControlOp);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControlInfo);
     this.Name = "ImportFromAccessFrm";
     this.Text = "استيراد";
     this.Load += new System.EventHandler(this.ImportFromWebFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInfo)).EndInit();
     this.groupControlInfo.ResumeLayout(false);
     this.groupControlInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceWarasaExtra.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceWarasa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceExtra.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlOp)).EndInit();
     this.groupControlOp.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pbc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsdatam)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceUpdateNIDWarasa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceUpdateNIDMember.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsWebData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceImportAccsess.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblMashatTablebindingSource)).EndInit();
     this.ResumeLayout(false);
 }