コード例 #1
0
 private void Call_Goods_id_Format(DevExpress.XtraEditors.LookUpEdit sfm)
 {
     if (sfm.Text != "")
     {
         Set_Goods_id_Format();
     }
 }
コード例 #2
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
        public void Month(DevExpress.XtraEditors.LookUpEdit lookup)
        {
            DataTable dt = new DataTable();

            dt.Columns.Add("月份");
            for (int i = 1; i <= 12; i++)
            {
                DataRow dw = dt.NewRow();
                if (i < 10)
                {
                    dw[0] = "0" + i;
                }
                else
                {
                    dw[0] = i;
                }
                dt.Rows.Add(dw);
            }
            lookup.Properties.Columns.Clear();
            lookup.Properties.DataSource    = dt;
            lookup.Properties.ValueMember   = "月份";
            lookup.Properties.DisplayMember = "月份";
            lookup.Properties.NullText      = "";
            lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
                new DevExpress.XtraEditors.Controls.LookUpColumnInfo("月份", "月份")
            });
        }
コード例 #3
0
 private void repositoryItemLookUpEdit1_ProcessNewValue(object sender, DevExpress.XtraEditors.Controls.ProcessNewValueEventArgs e)
 {
     DevExpress.XtraEditors.LookUpEdit look = sender as DevExpress.XtraEditors.LookUpEdit;
     //DataRowView view = this.bindingSource1.Current as DataRowView;
     //if (view!=null)
     //{
     //    view.Row.BeginEdit();
     //    view.Row["Feature"]=look.Text;
     //    view.Row.EndEdit();
     //}
     if (string.IsNullOrEmpty(e.DisplayValue.ToString()))
     {
         Alert("请正确填写费用代码!");
     }
     else
     {
         if (this.Filter.Contains(e.DisplayValue.ToString()))
         {
             Alert("费用代码已经被使用!");
         }
         else
         {
             look.EditValue = e.DisplayValue;
         }
     }
 }
コード例 #4
0
ファイル: frmCheckList.cs プロジェクト: SDivyaprabha/CRM1
        void cboexec_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.LookUpEdit editor = (DevExpress.XtraEditors.LookUpEdit)sender;
            DataRowView dr = editor.Properties.GetDataSourceRowByKeyValue(editor.EditValue) as DataRowView;

            grdCheckView.SetRowCellValue(grdCheckView.FocusedRowHandle, "ExecutiveId", Convert.ToInt32(dr["ExecId"].ToString()));
        }
コード例 #5
0
ファイル: FAHAH07.cs プロジェクト: oopsha/eldorado-rms-backup
        /// <summary>
        /// 영업장 룩업컨트롤에 기초코드를 채웁니다.
        /// </summary>
        /// <param name="lookup">룩업컨트롤.</param>
        /// <param name="head">해더값.</param>
        /// <param name="style">구성스타일.</param>
        /// <example><code>
        /// //납부구분
        /// BizCommon.BasicCode.FillBasicCode(lupPlanPartitionCode, "A0015", BizCommon.BasicCode.BasicCodeReturnStyle.SelectStringCaption);
        /// </code></example>
        public static void FillFacilityBasicCode(DevExpress.XtraEditors.LookUpEdit lookup,
                                                 string head,
                                                 BasicCodeReturnStyle style
                                                 )
        {
            try
            {
                DataTable tmpdt = GetBasicCode(head, style);
                tmpdt.Columns[0].ColumnName = "코드";
                tmpdt.Columns[1].ColumnName = "코드명";

                lookup.Properties.SearchMode            = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
                lookup.Properties.DataSource            = tmpdt;
                lookup.Properties.DisplayMember         = "코드명";
                lookup.Properties.ValueMember           = "코드";
                lookup.Properties.AutoSearchColumnIndex = 0;

                if (style == BasicCodeReturnStyle.Default)
                {
                    lookup.EditValue = ((DataTable)(lookup.Properties.DataSource)).Rows.Count >= 1 ?
                                       ((DataTable)(lookup.Properties.DataSource)).Rows[0][0].ToString().Trim() :
                                       "";
                }
                else
                {
                    lookup.EditValue = "";
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #6
0
ファイル: JAAAI03.cs プロジェクト: oopsha/eldorado-rms-backup
        /// <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 LookupUser_EditValueChanged(object sender, EventArgs e)
        {
            try
            {   //ORG_PAY_CODE
                DevExpress.XtraEditors.LookUpEdit lup = sender as DevExpress.XtraEditors.LookUpEdit;
                string changepaycode = lup.EditValue.ToString().Trim();

                int    iRow       = gridViewResFacility.GetDataSourceRowIndex(gridViewResFacility.FocusedRowHandle);
                string orgpaycode = ((DataTable)gridResFacility.DataSource).Rows[iRow]["ORG_PAY_CODE"].ToString().Trim();

                int cnt = int.Parse(((DataTable)gridResFacility.DataSource).Compute("COUNT(PAY_CODE)", "PAY_CODE = '" + changepaycode + "'").ToString().Trim());

                this.gridViewResFacility.FocusedColumn = gridViewResFacility.Columns[0];
                this.gridViewResFacility.FocusedColumn = gridViewResFacility.Columns["PAY_CODE"];

                if (cnt > 0)
                {
                    Basic.ShowMessage(1, "이미 등록되어 있습니다.");
                    ((DataTable)gridResFacility.DataSource).Rows[iRow]["PAY_CODE"] = orgpaycode;
                    this.gridViewResFacility.FocusedColumn = gridViewResFacility.Columns[0];
                    this.gridViewResFacility.FocusedColumn = gridViewResFacility.Columns["PAY_CODE"];
                    gridViewResFacility.RefreshData();
                    return;
                }
            }
            catch
            {
            }
        }
コード例 #7
0
        /// <summary>
        /// 룩업컨트롤에 기초코드를 채움니다.
        /// </summary>
        /// <param name="lookup">룩업컨트롤.</param>
        /// <param name="head">해더값.</param>
        /// <param name="style">구성스타일.</param>
        /// <param name="selectedVale">초기값지정</param>
        /// <example><code>
        ///  //계약구분
        ///  BizCommon.BasicCode.FillBasicCode(lupContractCode, "A0011", BizCommon.BasicCode.BasicCodeReturnStyle.Default, "00", BizCommon.BasicCode.LookupSearchStyle.DisplayMember);
        /// </code></example>
        public static void FillBasicCode(DevExpress.XtraEditors.LookUpEdit lookup,
                                         string head,
                                         BasicCodeReturnStyle style,
                                         string selectedVale,
                                         LookupSearchStyle lupstyle
                                         )
        {
            try
            {
                DataTable dt = GetBasicCode(head, style);
                dt.Columns[0].ColumnName = "코드";
                dt.Columns[1].ColumnName = "코드명";

                lookup.Properties.SearchMode            = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
                lookup.Properties.DataSource            = dt;
                lookup.Properties.DisplayMember         = "코드명";
                lookup.Properties.ValueMember           = "코드";
                lookup.Properties.AutoSearchColumnIndex = lupstyle == LookupSearchStyle.DisplayMember ? 1 : 0;


                lookup.EditValue = selectedVale;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #8
0
        private void lkCustomerName_EditValueChanged(object sender, EventArgs e)
        {
            if (lkCustomerName.EditValue != null)
            {
                DevExpress.XtraEditors.LookUpEdit lkCustomer = (sender as DevExpress.XtraEditors.LookUpEdit);
                DataRowView row = lkCustomer.Properties.GetDataSourceRowByKeyValue(lkCustomer.EditValue) as DataRowView;
                if (!m_CashReceiptVoucherExecute.checkDebitsQuantity(lkCustomer.EditValue.ToString()))
                {
                    txtCustomerAddress.Text = row["DiaChi"].ToString();
                    txtCustomerEmail.Text   = row["Email"].ToString();
                    txtCustomerPhone.Text   = row["SoDienThoai"].ToString();
                    spDebitOld.EditValue    = row["TienNo"];
                }
                else
                {
                    lkCustomerName.EditValue = null;
                    txtCRVId.Text            = null;
                    txtCustomerAddress.Text  = null;
                    txtCustomerEmail.Text    = null;
                    txtCustomerPhone.Text    = null;
                    txtPaymentWord.Text      = null;
                    //
                    spDebitOld.EditValue       = 0;
                    spMoneyShouldPay.EditValue = 0;
                    spPayment.EditValue        = 0;
                    spPurchases.EditValue      = 0;
                    spRemain.EditValue         = 0;

                    XtraCustomMessageBox.Show("Khách hàng này không có tiền nợ!\nXin vui lòng chọn khách hàng khác!", "Thông báo", true);
                }
            }
        }
コード例 #9
0
ファイル: FormConvertUM.cs プロジェクト: gotowork/LimsProject
 private void repUm2_EditValueChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.LookUpEdit combo = (DevExpress.XtraEditors.LookUpEdit)sender;
     if (combo.EditValue != null)
     {
         gvConvertionUM.SetFocusedRowCellValue(gcUmc_idunit2, combo.EditValue);
     }
 }
コード例 #10
0
 private void cboCourse_EditValueChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.LookUpEdit _l = (DevExpress.XtraEditors.LookUpEdit)sender;
     if (_l.EditValue != null)
     {
         cboSeries.Properties.DataSource = tblSeries.Select("FKeyCourse = " + _l.EditValue).CopyToDataTable();
     }
 }
コード例 #11
0
        private void lueProductoID_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.LookUpEdit editor = (sender as DevExpress.XtraEditors.LookUpEdit);

            MuestradeProducto.ProductoID = int.Parse(editor.EditValue.ToString());

            // MessageBox.Show(MuestradeProducto.ProductoID.ToString(), "RedPacifico", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
        }
コード例 #12
0
 public void loadiimbrole(DevExpress.XtraEditors.LookUpEdit le, string ma)
 {
     if (ma != "")
     {
         DataTable da  = new DataTable();
         string    sql = "select * from InventoryItem where InventoryItemID='" + ma + "'";
         da           = gen.GetTable(sql);
         le.EditValue = da.Rows[0][2].ToString();
     }
 }
コード例 #13
0
        private void reMinerSelection_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.LookUpEdit editor = sender as DevExpress.XtraEditors.LookUpEdit;
            DataRowView row   = editor.Properties.GetDataSourceRowByKeyValue(editor.EditValue) as DataRowView;
            object      value = row["SectionID"];

            string ShiftBoss = PlanningClass.GetShiftBoss(value.ToString());

            viewPlanningStoping.SetRowCellValue(viewPlanningStoping.FocusedRowHandle, viewPlanningStoping.Columns["Sectionid_1"], ShiftBoss);
        }
コード例 #14
0
        private void lkCustomerName_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.LookUpEdit lkCustomer = (sender as DevExpress.XtraEditors.LookUpEdit);
            DataRowView row = lkCustomer.Properties.GetDataSourceRowByKeyValue(lkCustomer.EditValue) as DataRowView;

            txtCustomerAddress.Text = row["DiaChi"].ToString();
            txtCustomerEmail.Text   = row["Email"].ToString();
            txtCustomerPhone.Text   = row["SoDienThoai"].ToString();
            spDebitOld.EditValue    = row["TienNo"];
        }
コード例 #15
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void RdRecord(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpRdRecord();
     lookup.Properties.ValueMember   = "cRdCode";
     lookup.Properties.DisplayMember = "cRdCode";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cRdCode", "单据号")
     });
 }
コード例 #16
0
 public void SetupGUILabels(DevExpress.XtraEditors.LookUpEdit _list)
 {
     foreach (DevExpress.XtraEditors.Controls.LookUpColumnInfo item in _list.Properties.Columns)
     {
         var label = this.ObjectLabels.Where(x => x.ColumnName == item.FieldName).FirstOrDefault();
         if (label != null)
         {
             item.Caption = label.ChooseValueForCurrentLang(CoreLib.MyEnums.UILabelType.FieldCaption);
         }
     }
 }
コード例 #17
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public static void Door(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = Door();
     lookup.Properties.ValueMember   = "iDoor";
     lookup.Properties.DisplayMember = "iDoor";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("iDoor", "门号")
     });
 }
コード例 #18
0
ファイル: frmStageEntry.cs プロジェクト: SDivyaprabha/CRM1
 private void cboProj_EditValueChanged(object sender, EventArgs e)
 {
     if (Convert.ToInt32(cboProj.EditValue) != 0)
     {
         DevExpress.XtraEditors.LookUpEdit editor = (DevExpress.XtraEditors.LookUpEdit)sender;
         DataRowView dr = editor.Properties.GetDataSourceRowByKeyValue(editor.EditValue) as DataRowView;
         m_iCCId = Convert.ToInt32(dr["Id"]);
         cbosblock();
         cboslevel();
     }
 }
コード例 #19
0
        /// <summary>
        /// 룩업컨트롤에 쿼리를 받아 코드성데이타를 채움니다
        /// </summary>
        /// <param name="lookup">룩업컨트롤</param>
        /// <param name="Qry">조회할 쿼리</param>
        /// <param name="ValueName">Value 컬럼명</param>
        /// <param name="DisplayName">DisplayName 컬럼명</param>
        /// <param name="style">룩업스타일</param>
        /// <CODE><SAMPLE>
        /// /원장잔액/
        /// BizCommon.BasicCodeBO.FillQueryCode(LookUpEdit, "select code 코드,name 코드명 from sys0110 where sys='ACM' and code_type='88' and use_yn = 'Y' order by code,seq", "코드","코드명", BizCommon.BasicCode.BasicCodeReturnStyle.SelectStringCaption);
        /// </SAMPLE></CODE>
        public static void FillDataTableCode(DevExpress.XtraEditors.LookUpEdit lookup,
                                             DataTable dtCode,
                                             string ValueName, string DisplayName,
                                             BasicCodeReturnStyle style
                                             )
        {
            try
            {
                DataTable dt = new DataTable();
                dt.Columns.Add();
                dt.Columns.Add();
                dt.Columns[0].ColumnName = ValueName;
                dt.Columns[1].ColumnName = DisplayName;

                switch (style)
                {
                case BasicCodeReturnStyle.NullStringCaption:
                    dt.Rows.Add("", "");
                    break;

                case BasicCodeReturnStyle.SelectStringCaption:
                    dt.Rows.Add("", "선택하세요");
                    break;

                case BasicCodeReturnStyle.SelectAll:
                    dt.Rows.Add("%", "전체");
                    break;
                }


                //DataSet ds = Cls.DataLayer.DataLayer.ExecuteDataset(Qry, Cls.DataLayer.DataLayer.MessageEncoding.Default);

                if (dtCode != null)
                {
                    foreach (DataRow dRow in dtCode.Rows)
                    {
                        dt.Rows.Add(new object[] { dRow[ValueName].ToString().Trim(),
                                                   dRow[DisplayName].ToString().Trim() });
                    }
                }

                lookup.Properties.SearchMode            = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
                lookup.Properties.DataSource            = dt;
                lookup.Properties.DisplayMember         = DisplayName;
                lookup.Properties.ValueMember           = ValueName;
                lookup.Properties.AutoSearchColumnIndex = 0;

                lookup.EditValue = "";
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #20
0
ファイル: dcts.cs プロジェクト: PhanMaiChi/ClQLDD
        static public void LoadDL(DevExpress.XtraEditors.LookUpEdit luKQ, string value, string display, string sql)
        {
            DataTable dt = new DataTable();

            cmd = new OleDbCommand(sql, cnn);
            dr  = cmd.ExecuteReader();
            dt.Load(dr);
            luKQ.Properties.DataSource    = dt;
            luKQ.Properties.ValueMember   = value;
            luKQ.Properties.DisplayMember = display;
        }
コード例 #21
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void Project(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpProject();
     lookup.Properties.ValueMember   = "cCode";
     lookup.Properties.DisplayMember = "cName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cCode", "项目编号"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cName", "项目名称")
     });
 }
コード例 #22
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void UserInfo(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpUserInfo();
     lookup.Properties.ValueMember   = "vchrUid";
     lookup.Properties.DisplayMember = "vchrName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vchrUid", "用户编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vchrName", "用户名称")
     });
 }
コード例 #23
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void DistrictClass(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpDistrictClass();
     lookup.Properties.ValueMember   = "cDCCode";
     lookup.Properties.DisplayMember = "cDCName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cDCCode", "地区分类编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cDCName", "地区分类名称")
     });
 }
コード例 #24
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void ComputationUnit(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpComputationUnit();
     lookup.Properties.ValueMember   = "cComunitCode";
     lookup.Properties.DisplayMember = "cComunitName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cComunitCode", "主计量编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cComunitName", "主计量名称")
     });
 }
コード例 #25
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void Engineering(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpEngineering();
     lookup.Properties.ValueMember   = "cECode";
     lookup.Properties.DisplayMember = "cEName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cECode", "工程性质档案编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cEName", "工程性质档案名称")
     });
 }
コード例 #26
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void Quality(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpQuality();
     lookup.Properties.ValueMember   = "cQCode";
     lookup.Properties.DisplayMember = "cQName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cQCode", "质量标准档案编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cQName", "质量标准档案名称")
     });
 }
コード例 #27
0
 public static bool CheckLookupisSelected(DevExpress.XtraEditors.LookUpEdit cbo, string message)
 {
     if ((int)cbo.ItemIndex < 0)
     {
         MsgUtil.MessageThongBao(message);
         return(false);
     }
     else
     {
         return(true);
     }
 }
コード例 #28
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void Department(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpDepartment();
     lookup.Properties.ValueMember   = "cDepCode";
     lookup.Properties.DisplayMember = "cDepName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cDepCode", "部门编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cDepName", "部门名称")
     });
 }
コード例 #29
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void LoopUpData(DevExpress.XtraEditors.LookUpEdit lookup, string id)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpLoopUpData(id);
     lookup.Properties.ValueMember   = "iID";
     lookup.Properties.DisplayMember = "iText";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("iID", "类型编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("iText", "类型名称")
     });
 }
コード例 #30
0
ファイル: 通用参照.cs プロジェクト: chrgu000/DEMO
 public void Person(DevExpress.XtraEditors.LookUpEdit lookup)
 {
     lookup.Properties.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpPerson();
     lookup.Properties.ValueMember   = "PersonCode";
     lookup.Properties.DisplayMember = "PersonName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PersonCode", "人员编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PersonName", "人员名称")
     });
 }
コード例 #31
0
ファイル: frmContacts.cs プロジェクト: kimykunjun/test
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
     this.txtMobileNo = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.txtEmail = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.sbtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtBranchCode = new DevExpress.XtraEditors.TextEdit();
     this.rbFemale = new System.Windows.Forms.RadioButton();
     this.rbMale = new System.Windows.Forms.RadioButton();
     this.luedtMediaSource = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtMediaSourceCategory = new DevExpress.XtraEditors.LookUpEdit();
     this.label47 = new System.Windows.Forms.Label();
     this.txtNRICFIN = new DevExpress.XtraEditors.TextEdit();
     this.dateedtDOB = new DevExpress.XtraEditors.DateEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtMediaSource = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.luedtAssigntoStaff = new DevExpress.XtraEditors.LookUpEdit();
     this.rtxtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.cbStatus = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.cbPhoneCall = new System.Windows.Forms.CheckBox();
     this.cbSMS = new System.Windows.Forms.CheckBox();
     this.cbEmail = new System.Windows.Forms.CheckBox();
     this.label12 = new System.Windows.Forms.Label();
     this.rbDNCYes = new System.Windows.Forms.RadioButton();
     this.rbDNCNo = new System.Windows.Forms.RadioButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label13 = new System.Windows.Forms.Label();
     this.gbAppt = new System.Windows.Forms.GroupBox();
     this.luedtServedBy = new DevExpress.XtraEditors.LookUpEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.dateedtEndTime = new DevExpress.XtraEditors.DateEdit();
     this.dateedtStartTime = new DevExpress.XtraEditors.DateEdit();
     this.dateedtDate = new DevExpress.XtraEditors.DateEdit();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.chkMakeAppt = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSource.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSourceCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNRICFIN.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMediaSource.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtAssigntoStaff.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtxtRemarks.Properties)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.gbAppt.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtServedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 18);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(90, 18);
     this.label1.TabIndex = 214;
     this.label1.Text = "Contact Person:";
     //
     // txtContactPerson
     //
     this.txtContactPerson.EditValue = "";
     this.txtContactPerson.Location = new System.Drawing.Point(121, 15);
     this.txtContactPerson.Name = "txtContactPerson";
     this.txtContactPerson.Properties.MaxLength = 50;
     this.txtContactPerson.Size = new System.Drawing.Size(442, 20);
     this.txtContactPerson.TabIndex = 0;
     //
     // txtMobileNo
     //
     this.txtMobileNo.EditValue = "";
     this.txtMobileNo.Location = new System.Drawing.Point(121, 67);
     this.txtMobileNo.Name = "txtMobileNo";
     this.txtMobileNo.Properties.MaxLength = 50;
     this.txtMobileNo.Size = new System.Drawing.Size(148, 20);
     this.txtMobileNo.TabIndex = 2;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 70);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(90, 18);
     this.label2.TabIndex = 220;
     this.label2.Text = "Contact No:";
     //
     // txtEmail
     //
     this.txtEmail.EditValue = "";
     this.txtEmail.Location = new System.Drawing.Point(121, 93);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.txtEmail.Properties.Appearance.Options.UseBackColor = true;
     this.txtEmail.Properties.MaxLength = 50;
     this.txtEmail.Size = new System.Drawing.Size(280, 20);
     this.txtEmail.TabIndex = 3;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 96);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(90, 18);
     this.label3.TabIndex = 241;
     this.label3.Text = "Email Address:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(10, 308);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(90, 18);
     this.label5.TabIndex = 228;
     this.label5.Text = "Remarks:";
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnSave.Location = new System.Drawing.Point(121, 581);
     this.sbtnSave.Name = "sbtnSave";
     this.sbtnSave.Size = new System.Drawing.Size(75, 23);
     this.sbtnSave.TabIndex = 17;
     this.sbtnSave.Text = "Save";
     this.sbtnSave.Click += new System.EventHandler(this.sbtnSave_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(202, 581);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.Size = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex = 18;
     this.sbtnCancel.Text = "Cancel";
     //
     // txtBranchCode
     //
     this.txtBranchCode.EditValue = "";
     this.txtBranchCode.Enabled = false;
     this.txtBranchCode.Location = new System.Drawing.Point(121, 227);
     this.txtBranchCode.Name = "txtBranchCode";
     this.txtBranchCode.Properties.MaxLength = 50;
     this.txtBranchCode.Size = new System.Drawing.Size(100, 20);
     this.txtBranchCode.TabIndex = 12;
     //
     // rbFemale
     //
     this.rbFemale.AutoSize = true;
     this.rbFemale.Location = new System.Drawing.Point(55, 4);
     this.rbFemale.Name = "rbFemale";
     this.rbFemale.Size = new System.Drawing.Size(59, 17);
     this.rbFemale.TabIndex = 5;
     this.rbFemale.Text = "Female";
     this.rbFemale.UseVisualStyleBackColor = true;
     //
     // rbMale
     //
     this.rbMale.AutoSize = true;
     this.rbMale.Location = new System.Drawing.Point(1, 4);
     this.rbMale.Name = "rbMale";
     this.rbMale.Size = new System.Drawing.Size(48, 17);
     this.rbMale.TabIndex = 4;
     this.rbMale.Text = "Male";
     this.rbMale.UseVisualStyleBackColor = true;
     //
     // luedtMediaSource
     //
     this.luedtMediaSource.EditValue = "";
     this.luedtMediaSource.Location = new System.Drawing.Point(242, 252);
     this.luedtMediaSource.Name = "luedtMediaSource";
     this.luedtMediaSource.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtMediaSource.Properties.PopupWidth = 200;
     this.luedtMediaSource.Size = new System.Drawing.Size(120, 20);
     this.luedtMediaSource.TabIndex = 13;
     //
     // luedtMediaSourceCategory
     //
     this.luedtMediaSourceCategory.EditValue = "";
     this.luedtMediaSourceCategory.Location = new System.Drawing.Point(121, 252);
     this.luedtMediaSourceCategory.Name = "luedtMediaSourceCategory";
     this.luedtMediaSourceCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtMediaSourceCategory.Properties.PopupWidth = 200;
     this.luedtMediaSourceCategory.Size = new System.Drawing.Size(120, 20);
     this.luedtMediaSourceCategory.TabIndex = 13;
     this.luedtMediaSourceCategory.EditValueChanged += new System.EventHandler(this.luedtMediaSourceCategory_EditValueChanged);
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label47.Location = new System.Drawing.Point(10, 256);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(73, 13);
     this.label47.TabIndex = 107;
     this.label47.Text = "Media Source";
     //
     // txtNRICFIN
     //
     this.txtNRICFIN.EditValue = "";
     this.txtNRICFIN.Location = new System.Drawing.Point(121, 41);
     this.txtNRICFIN.Name = "txtNRICFIN";
     this.txtNRICFIN.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.txtNRICFIN.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNRICFIN.Properties.Appearance.Options.UseBackColor = true;
     this.txtNRICFIN.Properties.Appearance.Options.UseFont = true;
     this.txtNRICFIN.Properties.MaxLength = 50;
     this.txtNRICFIN.Size = new System.Drawing.Size(280, 20);
     this.txtNRICFIN.TabIndex = 1;
     //
     // dateedtDOB
     //
     this.dateedtDOB.EditValue = null;
     this.dateedtDOB.Location = new System.Drawing.Point(121, 202);
     this.dateedtDOB.Name = "dateedtDOB";
     this.dateedtDOB.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.dateedtDOB.Properties.Appearance.Options.UseBackColor = true;
     this.dateedtDOB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateedtDOB.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDOB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtDOB.Size = new System.Drawing.Size(98, 20);
     this.dateedtDOB.TabIndex = 11;
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(10, 203);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(98, 18);
     this.label4.TabIndex = 105;
     this.label4.Text = "Date-of-Birth:";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 44);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(98, 18);
     this.label6.TabIndex = 104;
     this.label6.Text = "NRIC/FIN No:";
     //
     // txtMediaSource
     //
     this.txtMediaSource.EditValue = "";
     this.txtMediaSource.Location = new System.Drawing.Point(247, 252);
     this.txtMediaSource.Name = "txtMediaSource";
     this.txtMediaSource.Properties.MaxLength = 50;
     this.txtMediaSource.Size = new System.Drawing.Size(154, 20);
     this.txtMediaSource.TabIndex = 108;
     this.txtMediaSource.Visible = false;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(10, 229);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(102, 18);
     this.label7.TabIndex = 109;
     this.label7.Text = "Branch Code :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label8.Location = new System.Drawing.Point(10, 283);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(75, 13);
     this.label8.TabIndex = 110;
     this.label8.Text = "Assign to Staff";
     //
     // luedtAssigntoStaff
     //
     this.luedtAssigntoStaff.EditValue = "";
     this.luedtAssigntoStaff.Location = new System.Drawing.Point(121, 279);
     this.luedtAssigntoStaff.Name = "luedtAssigntoStaff";
     this.luedtAssigntoStaff.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtAssigntoStaff.Properties.PopupWidth = 200;
     this.luedtAssigntoStaff.Size = new System.Drawing.Size(280, 20);
     this.luedtAssigntoStaff.TabIndex = 14;
     //
     // rtxtRemarks
     //
     this.rtxtRemarks.EditValue = "";
     this.rtxtRemarks.Location = new System.Drawing.Point(121, 305);
     this.rtxtRemarks.Name = "rtxtRemarks";
     this.rtxtRemarks.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.rtxtRemarks.Properties.Appearance.Options.UseBackColor = true;
     this.rtxtRemarks.Properties.MaxLength = 1000;
     this.rtxtRemarks.Size = new System.Drawing.Size(442, 93);
     this.rtxtRemarks.TabIndex = 15;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label9.Location = new System.Drawing.Point(12, 411);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(43, 13);
     this.label9.TabIndex = 112;
     this.label9.Text = "Status :";
     //
     // cbStatus
     //
     this.cbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbStatus.FormattingEnabled = true;
     this.cbStatus.Items.AddRange(new object[] {
     "Active",
     "InActive"});
     this.cbStatus.Location = new System.Drawing.Point(121, 406);
     this.cbStatus.Name = "cbStatus";
     this.cbStatus.Size = new System.Drawing.Size(121, 21);
     this.cbStatus.TabIndex = 16;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(10, 121);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(90, 18);
     this.label10.TabIndex = 114;
     this.label10.Text = "Gender:";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(10, 148);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(112, 18);
     this.label11.TabIndex = 115;
     this.label11.Text = "Media Preference:";
     //
     // cbPhoneCall
     //
     this.cbPhoneCall.AutoSize = true;
     this.cbPhoneCall.Location = new System.Drawing.Point(121, 147);
     this.cbPhoneCall.Name = "cbPhoneCall";
     this.cbPhoneCall.Size = new System.Drawing.Size(77, 17);
     this.cbPhoneCall.TabIndex = 6;
     this.cbPhoneCall.Text = "Phone Call";
     this.cbPhoneCall.UseVisualStyleBackColor = true;
     //
     // cbSMS
     //
     this.cbSMS.AutoSize = true;
     this.cbSMS.Location = new System.Drawing.Point(204, 147);
     this.cbSMS.Name = "cbSMS";
     this.cbSMS.Size = new System.Drawing.Size(49, 17);
     this.cbSMS.TabIndex = 7;
     this.cbSMS.Text = "SMS";
     this.cbSMS.UseVisualStyleBackColor = true;
     //
     // cbEmail
     //
     this.cbEmail.AutoSize = true;
     this.cbEmail.Location = new System.Drawing.Point(257, 147);
     this.cbEmail.Name = "cbEmail";
     this.cbEmail.Size = new System.Drawing.Size(51, 17);
     this.cbEmail.TabIndex = 8;
     this.cbEmail.Text = "Email";
     this.cbEmail.UseVisualStyleBackColor = true;
     //
     // label12
     //
     this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label12.Location = new System.Drawing.Point(10, 175);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(96, 18);
     this.label12.TabIndex = 119;
     this.label12.Text = "DNC Registrant?:";
     //
     // rbDNCYes
     //
     this.rbDNCYes.AutoSize = true;
     this.rbDNCYes.Location = new System.Drawing.Point(3, 3);
     this.rbDNCYes.Name = "rbDNCYes";
     this.rbDNCYes.Size = new System.Drawing.Size(43, 17);
     this.rbDNCYes.TabIndex = 9;
     this.rbDNCYes.Text = "Yes";
     this.rbDNCYes.UseVisualStyleBackColor = true;
     //
     // rbDNCNo
     //
     this.rbDNCNo.AutoSize = true;
     this.rbDNCNo.Location = new System.Drawing.Point(57, 3);
     this.rbDNCNo.Name = "rbDNCNo";
     this.rbDNCNo.Size = new System.Drawing.Size(39, 17);
     this.rbDNCNo.TabIndex = 10;
     this.rbDNCNo.TabStop = true;
     this.rbDNCNo.Text = "No";
     this.rbDNCNo.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.rbDNCYes);
     this.panel1.Controls.Add(this.rbDNCNo);
     this.panel1.Location = new System.Drawing.Point(121, 171);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(148, 22);
     this.panel1.TabIndex = 9;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.rbFemale);
     this.panel2.Controls.Add(this.rbMale);
     this.panel2.Location = new System.Drawing.Point(121, 114);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(200, 24);
     this.panel2.TabIndex = 4;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(273, 70);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(270, 18);
     this.label13.TabIndex = 124;
     this.label13.Text = "(eg. 81234567, 63366822)";
     //
     // gbAppt
     //
     this.gbAppt.Controls.Add(this.luedtServedBy);
     this.gbAppt.Controls.Add(this.label17);
     this.gbAppt.Controls.Add(this.dateedtEndTime);
     this.gbAppt.Controls.Add(this.dateedtStartTime);
     this.gbAppt.Controls.Add(this.dateedtDate);
     this.gbAppt.Controls.Add(this.label14);
     this.gbAppt.Controls.Add(this.label15);
     this.gbAppt.Controls.Add(this.label16);
     this.gbAppt.Location = new System.Drawing.Point(15, 454);
     this.gbAppt.Name = "gbAppt";
     this.gbAppt.Size = new System.Drawing.Size(548, 121);
     this.gbAppt.TabIndex = 248;
     this.gbAppt.TabStop = false;
     this.gbAppt.Visible = false;
     //
     // luedtServedBy
     //
     this.luedtServedBy.EditValue = "";
     this.luedtServedBy.Location = new System.Drawing.Point(222, 95);
     this.luedtServedBy.Name = "luedtServedBy";
     this.luedtServedBy.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtServedBy.Properties.PopupWidth = 200;
     this.luedtServedBy.Size = new System.Drawing.Size(280, 20);
     this.luedtServedBy.TabIndex = 254;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label17.Location = new System.Drawing.Point(106, 98);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(56, 13);
     this.label17.TabIndex = 255;
     this.label17.Text = "Served By";
     //
     // dateedtEndTime
     //
     this.dateedtEndTime.EditValue = new System.DateTime(2013, 1, 1, 13, 0, 0, 0);
     this.dateedtEndTime.Location = new System.Drawing.Point(222, 69);
     this.dateedtEndTime.Name = "dateedtEndTime";
     this.dateedtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null)});
     this.dateedtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dateedtEndTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtEndTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtEndTime.Size = new System.Drawing.Size(100, 20);
     this.dateedtEndTime.TabIndex = 253;
     //
     // dateedtStartTime
     //
     this.dateedtStartTime.EditValue = new System.DateTime(2013, 1, 1, 13, 0, 0, 0);
     this.dateedtStartTime.Location = new System.Drawing.Point(222, 41);
     this.dateedtStartTime.Name = "dateedtStartTime";
     this.dateedtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null)});
     this.dateedtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dateedtStartTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtStartTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtStartTime.Size = new System.Drawing.Size(100, 20);
     this.dateedtStartTime.TabIndex = 252;
     //
     // dateedtDate
     //
     this.dateedtDate.EditValue = new System.DateTime(2006, 1, 28, 0, 0, 0, 0);
     this.dateedtDate.Location = new System.Drawing.Point(222, 13);
     this.dateedtDate.Name = "dateedtDate";
     this.dateedtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateedtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtDate.Size = new System.Drawing.Size(152, 20);
     this.dateedtDate.TabIndex = 249;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(106, 71);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(100, 18);
     this.label14.TabIndex = 251;
     this.label14.Text = "End time:";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(106, 43);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(100, 18);
     this.label15.TabIndex = 250;
     this.label15.Text = "Start time:";
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(106, 15);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(100, 18);
     this.label16.TabIndex = 248;
     this.label16.Text = "Date:";
     //
     // chkMakeAppt
     //
     this.chkMakeAppt.AutoSize = true;
     this.chkMakeAppt.Location = new System.Drawing.Point(16, 441);
     this.chkMakeAppt.Name = "chkMakeAppt";
     this.chkMakeAppt.Size = new System.Drawing.Size(115, 17);
     this.chkMakeAppt.TabIndex = 249;
     this.chkMakeAppt.Text = "Make Appointment";
     this.chkMakeAppt.UseVisualStyleBackColor = true;
     this.chkMakeAppt.CheckedChanged += new System.EventHandler(this.chkMakeAppt_CheckedChanged);
     //
     // frmContacts
     //
     this.AcceptButton = this.sbtnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(571, 610);
     this.Controls.Add(this.chkMakeAppt);
     this.Controls.Add(this.gbAppt);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.cbEmail);
     this.Controls.Add(this.cbSMS);
     this.Controls.Add(this.cbPhoneCall);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.cbStatus);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.rtxtRemarks);
     this.Controls.Add(this.luedtAssigntoStaff);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtMediaSource);
     this.Controls.Add(this.luedtMediaSource);
     this.Controls.Add(this.luedtMediaSourceCategory);
     this.Controls.Add(this.label47);
     this.Controls.Add(this.txtNRICFIN);
     this.Controls.Add(this.dateedtDOB);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtBranchCode);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtEmail);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtMobileNo);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtContactPerson);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label7);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmContacts";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "{0} Call List";
     this.Load += new System.EventHandler(this.frmContacts_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSource.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSourceCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNRICFIN.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMediaSource.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtAssigntoStaff.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtxtRemarks.Properties)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.gbAppt.ResumeLayout(false);
     this.gbAppt.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtServedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #32
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(frmUpd_Companies));
     this.btnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.cboDisable = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.cboStatus = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lueCustomerType = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtTaxNumberCode = new DevExpress.XtraEditors.TextEdit();
     this.txtAddress = new DevExpress.XtraEditors.TextEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCustomerType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxNumberCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // btnUpdate
     //
     this.btnUpdate.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnUpdate.Appearance.Options.UseFont = true;
     this.btnUpdate.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnUpdate.Image = ((System.Drawing.Image)(resources.GetObject("btnUpdate.Image")));
     this.btnUpdate.Location = new System.Drawing.Point(121, 8);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(100, 28);
     this.btnUpdate.TabIndex = 15;
     this.btnUpdate.Text = "Cập nhật";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(20, 0, 20, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 79F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(330, 308);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
     this.tableLayoutPanel4.Controls.Add(this.labelControl13, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.txtName, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.labelControl8, 0, 5);
     this.tableLayoutPanel4.Controls.Add(this.cboDisable, 1, 5);
     this.tableLayoutPanel4.Controls.Add(this.labelControl16, 0, 4);
     this.tableLayoutPanel4.Controls.Add(this.cboStatus, 1, 4);
     this.tableLayoutPanel4.Controls.Add(this.labelControl1, 0, 3);
     this.tableLayoutPanel4.Controls.Add(this.lueCustomerType, 1, 3);
     this.tableLayoutPanel4.Controls.Add(this.labelControl2, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.labelControl3, 0, 2);
     this.tableLayoutPanel4.Controls.Add(this.txtTaxNumberCode, 1, 1);
     this.tableLayoutPanel4.Controls.Add(this.txtAddress, 1, 2);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 21);
     this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 6;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(330, 243);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl13.Location = new System.Drawing.Point(3, 11);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl13.Size = new System.Drawing.Size(86, 16);
     this.labelControl13.TabIndex = 2;
     this.labelControl13.Text = "Tên công ty";
     //
     // txtName
     //
     this.txtName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtName.Location = new System.Drawing.Point(102, 9);
     this.txtName.Name = "txtName";
     this.txtName.Properties.MaxLength = 200;
     this.txtName.Properties.NullValuePrompt = "Nhập tối đa 200  ký tự.";
     this.txtName.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtName.Size = new System.Drawing.Size(216, 20);
     this.txtName.TabIndex = 3;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl8.Location = new System.Drawing.Point(3, 213);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0);
     this.labelControl8.Size = new System.Drawing.Size(47, 16);
     this.labelControl8.TabIndex = 12;
     this.labelControl8.Text = "Khóa";
     //
     // cboDisable
     //
     this.cboDisable.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboDisable.EditValue = "False";
     this.cboDisable.Location = new System.Drawing.Point(102, 211);
     this.cboDisable.Name = "cboDisable";
     this.cboDisable.Properties.Appearance.Options.UseTextOptions = true;
     this.cboDisable.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboDisable.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboDisable.Properties.Items.AddRange(new object[] {
     "True",
     "False"});
     this.cboDisable.Size = new System.Drawing.Size(216, 20);
     this.cboDisable.TabIndex = 13;
     //
     // labelControl16
     //
     this.labelControl16.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl16.Location = new System.Drawing.Point(3, 170);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl16.Size = new System.Drawing.Size(81, 17);
     this.labelControl16.TabIndex = 10;
     this.labelControl16.Text = "Trạng thái";
     //
     // cboStatus
     //
     this.cboStatus.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboStatus.EditValue = "1";
     this.cboStatus.Location = new System.Drawing.Point(102, 168);
     this.cboStatus.Name = "cboStatus";
     this.cboStatus.Properties.Appearance.Options.UseTextOptions = true;
     this.cboStatus.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboStatus.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4"});
     this.cboStatus.Size = new System.Drawing.Size(216, 20);
     this.cboStatus.TabIndex = 11;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(3, 129);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0);
     this.labelControl1.Size = new System.Drawing.Size(43, 17);
     this.labelControl1.TabIndex = 8;
     this.labelControl1.Text = "Loại";
     //
     // lueCustomerType
     //
     this.lueCustomerType.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueCustomerType.Location = new System.Drawing.Point(102, 127);
     this.lueCustomerType.Name = "lueCustomerType";
     this.lueCustomerType.Properties.Appearance.Options.UseTextOptions = true;
     this.lueCustomerType.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueCustomerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCustomerType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Type")});
     this.lueCustomerType.Properties.NullText = "";
     this.lueCustomerType.Properties.NullValuePrompt = "Chọn loại";
     this.lueCustomerType.Properties.NullValuePromptShowForEmptyValue = true;
     this.lueCustomerType.Size = new System.Drawing.Size(216, 20);
     this.lueCustomerType.TabIndex = 9;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location = new System.Drawing.Point(3, 48);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl2.Size = new System.Drawing.Size(90, 17);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "Mã số thuế ";
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(3, 88);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl3.Size = new System.Drawing.Size(55, 17);
     this.labelControl3.TabIndex = 6;
     this.labelControl3.Text = "Địa chỉ";
     //
     // txtTaxNumberCode
     //
     this.txtTaxNumberCode.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtTaxNumberCode.Location = new System.Drawing.Point(102, 47);
     this.txtTaxNumberCode.Name = "txtTaxNumberCode";
     this.txtTaxNumberCode.Properties.MaxLength = 100;
     this.txtTaxNumberCode.Properties.NullValuePrompt = "Nhập tối đa 100  ký tự.";
     this.txtTaxNumberCode.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtTaxNumberCode.Size = new System.Drawing.Size(216, 20);
     this.txtTaxNumberCode.TabIndex = 5;
     //
     // txtAddress
     //
     this.txtAddress.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtAddress.Location = new System.Drawing.Point(102, 86);
     this.txtAddress.Name = "txtAddress";
     this.txtAddress.Properties.MaxLength = 250;
     this.txtAddress.Properties.NullValuePrompt = "Nhập tối đa 250  ký tự.";
     this.txtAddress.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtAddress.Size = new System.Drawing.Size(216, 20);
     this.txtAddress.TabIndex = 7;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 35.75758F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 64.24242F));
     this.tableLayoutPanel3.Controls.Add(this.btnUpdate, 1, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 264);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(330, 44);
     this.tableLayoutPanel3.TabIndex = 14;
     //
     // frmUpd_Companies
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(330, 308);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmUpd_Companies";
     this.Text = "Sửa công ty";
     this.Load += new System.EventHandler(this.frmEditCompany_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCustomerType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxNumberCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #33
0
ファイル: frmNewStockRequest.cs プロジェクト: kimykunjun/test
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtDate = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.btn_Save = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranchTo = new DevExpress.XtraEditors.LookUpEdit();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.rItem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Product = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.rQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Style = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.txtRequestedBy = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranchTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Product)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Style)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRequestedBy.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // txtDate
     //
     this.txtDate.Location = new System.Drawing.Point(8, 16);
     this.txtDate.Name = "txtDate";
     this.txtDate.Size = new System.Drawing.Size(48, 23);
     this.txtDate.TabIndex = 18;
     this.txtDate.Text = "Date";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 48);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 22;
     this.label2.Text = "To Branch";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2005, 10, 28, 0, 0, 0, 0);
     this.dateEdit1.Location = new System.Drawing.Point(80, 12);
     this.dateEdit1.Name = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEdit1.Size = new System.Drawing.Size(104, 20);
     this.dateEdit1.TabIndex = 17;
     //
     // btn_Save
     //
     this.btn_Save.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Save.Location = new System.Drawing.Point(30, 84);
     this.btn_Save.Name = "btn_Save";
     this.btn_Save.TabIndex = 36;
     this.btn_Save.Text = "Save";
     this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click);
     //
     // lkBranchTo
     //
     this.lkBranchTo.Location = new System.Drawing.Point(80, 42);
     this.lkBranchTo.Name = "lkBranchTo";
     //
     // lkBranchTo.Properties
     //
     this.lkBranchTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranchTo.Properties.NullText = "Select Branch";
     this.lkBranchTo.Size = new System.Drawing.Size(144, 20);
     this.lkBranchTo.TabIndex = 37;
     this.lkBranchTo.EditValueChanged += new System.EventHandler(this.BranchTo_EditValueChanged);
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(8, 132);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemTextEdit1,
                                                                                                           this.lk_Product,
                                                                                                           this.lk_Style});
     this.gridControl1.Size = new System.Drawing.Size(424, 216);
     this.gridControl1.TabIndex = 38;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.rItem,
                                                                                      this.rQty,
                                                                                      this.gridColumn2});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // rItem
     //
     this.rItem.Caption = "Item Code";
     this.rItem.ColumnEdit = this.lk_Product;
     this.rItem.FieldName = "strItemCode";
     this.rItem.Name = "rItem";
     this.rItem.Visible = true;
     this.rItem.VisibleIndex = 0;
     this.rItem.Width = 120;
     //
     // lk_Product
     //
     this.lk_Product.AutoHeight = false;
     this.lk_Product.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Product.Name = "lk_Product";
     //
     // rQty
     //
     this.rQty.Caption = "Quantity";
     this.rQty.ColumnEdit = this.repositoryItemTextEdit1;
     this.rQty.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.rQty.FieldName = "nQuantity";
     this.rQty.Name = "rQty";
     this.rQty.Visible = true;
     this.rQty.VisibleIndex = 1;
     this.rQty.Width = 198;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "nEntryID";
     this.gridColumn2.FieldName = "nEntryID";
     this.gridColumn2.Name = "gridColumn2";
     //
     // lk_Style
     //
     this.lk_Style.AutoHeight = false;
     this.lk_Style.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Style.Name = "lk_Style";
     //
     // btn_Add
     //
     this.btn_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Add.Location = new System.Drawing.Point(114, 84);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.TabIndex = 39;
     this.btn_Add.Text = "Add";
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton3.Location = new System.Drawing.Point(198, 84);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.TabIndex = 40;
     this.simpleButton3.Text = "Delete";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton4
     //
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton4.Location = new System.Drawing.Point(282, 84);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.TabIndex = 41;
     this.simpleButton4.Text = "Search";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(246, 42);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 23);
     this.label1.TabIndex = 42;
     this.label1.Text = "Request By";
     //
     // txtRequestedBy
     //
     this.txtRequestedBy.EditValue = "";
     this.txtRequestedBy.Location = new System.Drawing.Point(312, 42);
     this.txtRequestedBy.Name = "txtRequestedBy";
     //
     // txtRequestedBy.Properties
     //
     this.txtRequestedBy.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.txtRequestedBy.Size = new System.Drawing.Size(104, 20);
     this.txtRequestedBy.TabIndex = 43;
     //
     // frmNewStockRequest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(438, 353);
     this.Controls.Add(this.txtRequestedBy);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.simpleButton4);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.btn_Add);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.lkBranchTo);
     this.Controls.Add(this.btn_Save);
     this.Controls.Add(this.txtDate);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.dateEdit1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmNewStockRequest";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "New Stock Request";
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranchTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Product)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Style)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRequestedBy.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #34
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);
 }
 /// <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(frmLst_CustomerGroups_2));
     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.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerGroupName = new DevExpress.XtraEditors.TextEdit();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.lblCheckIn = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.lblCheckOut = new DevExpress.XtraEditors.LabelControl();
     this.btnAddNew = new DevExpress.XtraEditors.SimpleButton();
     this.dgvCustomerMember = new DevExpress.XtraGrid.GridControl();
     this.viewSelectCustomers = 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.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnRemoveSelectCustomers = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.dgvAvailableCustomerGroups = new DevExpress.XtraGrid.GridControl();
     this.viewAvailableCustomerGroups = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colEdit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnSelectIDCustomerGroups = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.lueFilterCompany = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerGroupName.Properties)).BeginInit();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewSelectCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRemoveSelectCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCustomerGroups)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCustomerGroups)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectIDCustomerGroups)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueFilterCompany.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.26612F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 85.73388F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel4.Controls.Add(this.labelControl13, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.labelControl1, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.txtCustomerGroupName, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel2, 1, 1);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(443, 3);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(780, 62);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl13.Location = new System.Drawing.Point(3, 7);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl13.Size = new System.Drawing.Size(72, 16);
     this.labelControl13.TabIndex = 2;
     this.labelControl13.Text = "Tên nhóm";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(30, 38);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl1.Size = new System.Drawing.Size(33, 17);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "Từ ";
     //
     // txtCustomerGroupName
     //
     this.txtCustomerGroupName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCustomerGroupName.Location = new System.Drawing.Point(114, 5);
     this.txtCustomerGroupName.Name = "txtCustomerGroupName";
     this.txtCustomerGroupName.Size = new System.Drawing.Size(596, 20);
     this.txtCustomerGroupName.TabIndex = 7;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 3;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 32.31018F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20.19386F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 47.33441F));
     this.tableLayoutPanel2.Controls.Add(this.lblCheckIn, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.labelControl4, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.lblCheckOut, 0, 0);
     this.tableLayoutPanel2.Location = new System.Drawing.Point(114, 34);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(622, 25);
     this.tableLayoutPanel2.TabIndex = 8;
     //
     // lblCheckIn
     //
     this.lblCheckIn.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblCheckIn.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCheckIn.Location = new System.Drawing.Point(30, 4);
     this.lblCheckIn.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.lblCheckIn.Name = "lblCheckIn";
     this.lblCheckIn.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.lblCheckIn.Size = new System.Drawing.Size(28, 16);
     this.lblCheckIn.TabIndex = 9;
     this.lblCheckIn.Text = "---";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl4.Location = new System.Drawing.Point(231, 4);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl4.Size = new System.Drawing.Size(38, 17);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "Đến";
     //
     // lblCheckOut
     //
     this.lblCheckOut.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblCheckOut.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCheckOut.Location = new System.Drawing.Point(356, 4);
     this.lblCheckOut.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.lblCheckOut.Name = "lblCheckOut";
     this.lblCheckOut.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.lblCheckOut.Size = new System.Drawing.Size(28, 16);
     this.lblCheckOut.TabIndex = 7;
     this.lblCheckOut.Text = "---";
     //
     // btnAddNew
     //
     this.btnAddNew.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnAddNew.Appearance.Options.UseFont = true;
     this.btnAddNew.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnAddNew.Image = ((System.Drawing.Image)(resources.GetObject("btnAddNew.Image")));
     this.btnAddNew.Location = new System.Drawing.Point(446, 459);
     this.btnAddNew.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.btnAddNew.Name = "btnAddNew";
     this.btnAddNew.Size = new System.Drawing.Size(122, 32);
     this.btnAddNew.TabIndex = 13;
     this.btnAddNew.Text = "In danh sách";
     this.btnAddNew.Click += new System.EventHandler(this.btnAddNew_Click);
     //
     // dgvCustomerMember
     //
     this.dgvCustomerMember.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvCustomerMember.Location = new System.Drawing.Point(443, 71);
     this.dgvCustomerMember.MainView = this.viewSelectCustomers;
     this.dgvCustomerMember.Name = "dgvCustomerMember";
     this.dgvCustomerMember.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.btnRemoveSelectCustomers});
     this.dgvCustomerMember.Size = new System.Drawing.Size(780, 378);
     this.dgvCustomerMember.TabIndex = 14;
     this.dgvCustomerMember.UseEmbeddedNavigator = true;
     this.dgvCustomerMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.viewSelectCustomers});
     //
     // viewSelectCustomers
     //
     this.viewSelectCustomers.ColumnPanelRowHeight = 45;
     this.viewSelectCustomers.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn10});
     this.viewSelectCustomers.GridControl = this.dgvCustomerMember;
     this.viewSelectCustomers.Name = "viewSelectCustomers";
     this.viewSelectCustomers.OptionsView.EnableAppearanceEvenRow = true;
     this.viewSelectCustomers.OptionsView.ShowFooter = true;
     this.viewSelectCustomers.OptionsView.ShowGroupPanel = false;
     this.viewSelectCustomers.OptionsView.ShowIndicator = false;
     this.viewSelectCustomers.RowHeight = 25;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn1.Caption = "Tên";
     this.gridColumn1.FieldName = "Customers_Name";
     this.gridColumn1.MinWidth = 15;
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 167;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn2.Caption = "Ngày sinh";
     this.gridColumn2.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "Customers_Birthday";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     this.gridColumn2.Width = 113;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn3.Caption = "CMT/PAS";
     this.gridColumn3.FieldName = "Customers_Identifier1";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 110;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn5.Caption = "CI";
     this.gridColumn5.DisplayFormat.FormatString = "d";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "BookingRooms_CheckInActual";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 77;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn6.Caption = "CO";
     this.gridColumn6.DisplayFormat.FormatString = "d";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "BookingRooms_CheckOutActual";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 85;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn7.Caption = "P";
     this.gridColumn7.FieldName = "Rooms_Sku";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 80;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn10.AppearanceHeader.Options.UseFont = true;
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn10.Caption = "ID BookingRoom";
     this.gridColumn10.CustomizationCaption = "BookingRooms_ID";
     this.gridColumn10.FieldName = "BookingRooms_ID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     this.gridColumn10.Width = 95;
     //
     // btnRemoveSelectCustomers
     //
     this.btnRemoveSelectCustomers.AutoHeight = false;
     this.btnRemoveSelectCustomers.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnRemoveSelectCustomers.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.btnRemoveSelectCustomers.Name = "btnRemoveSelectCustomers";
     this.btnRemoveSelectCustomers.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // dgvAvailableCustomerGroups
     //
     this.dgvAvailableCustomerGroups.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvAvailableCustomerGroups.Location = new System.Drawing.Point(3, 71);
     this.dgvAvailableCustomerGroups.MainView = this.viewAvailableCustomerGroups;
     this.dgvAvailableCustomerGroups.Name = "dgvAvailableCustomerGroups";
     this.dgvAvailableCustomerGroups.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.btnSelectIDCustomerGroups,
     this.btnDelete,
     this.btnEdit});
     this.dgvAvailableCustomerGroups.Size = new System.Drawing.Size(434, 378);
     this.dgvAvailableCustomerGroups.TabIndex = 3;
     this.dgvAvailableCustomerGroups.UseEmbeddedNavigator = true;
     this.dgvAvailableCustomerGroups.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.viewAvailableCustomerGroups});
     //
     // viewAvailableCustomerGroups
     //
     this.viewAvailableCustomerGroups.ColumnPanelRowHeight = 30;
     this.viewAvailableCustomerGroups.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDelete,
     this.colEdit,
     this.gridColumn4,
     this.gridColumn9});
     this.viewAvailableCustomerGroups.GridControl = this.dgvAvailableCustomerGroups;
     this.viewAvailableCustomerGroups.Name = "viewAvailableCustomerGroups";
     this.viewAvailableCustomerGroups.OptionsBehavior.AllowPixelScrolling = DevExpress.Utils.DefaultBoolean.True;
     this.viewAvailableCustomerGroups.OptionsFind.AlwaysVisible = true;
     this.viewAvailableCustomerGroups.OptionsView.EnableAppearanceEvenRow = true;
     this.viewAvailableCustomerGroups.OptionsView.ShowFooter = true;
     this.viewAvailableCustomerGroups.OptionsView.ShowGroupPanel = false;
     this.viewAvailableCustomerGroups.OptionsView.ShowIndicator = false;
     this.viewAvailableCustomerGroups.RowHeight = 25;
     this.viewAvailableCustomerGroups.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.viewAvailableCustomerGroups_RowCellClick);
     //
     // colDelete
     //
     this.colDelete.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.colDelete.AppearanceHeader.Options.UseFont = true;
     this.colDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.colDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDelete.ColumnEdit = this.btnDelete;
     this.colDelete.Name = "colDelete";
     this.colDelete.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colDelete.Visible = true;
     this.colDelete.VisibleIndex = 0;
     this.colDelete.Width = 33;
     //
     // btnDelete
     //
     this.btnDelete.AutoHeight = false;
     this.btnDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnDelete.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // colEdit
     //
     this.colEdit.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.colEdit.AppearanceHeader.Options.UseFont = true;
     this.colEdit.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdit.ColumnEdit = this.btnEdit;
     this.colEdit.Name = "colEdit";
     this.colEdit.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colEdit.Visible = true;
     this.colEdit.VisibleIndex = 1;
     this.colEdit.Width = 39;
     //
     // btnEdit
     //
     this.btnEdit.AutoHeight = false;
     this.btnEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnEdit.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.Caption = "ID";
     this.gridColumn4.FieldName = "ID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 41;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn9.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridColumn9.AppearanceHeader.Options.UseFont = true;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn9.Caption = "Tên";
     this.gridColumn9.FieldName = "Name";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.AllowFocus = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     this.gridColumn9.Width = 319;
     //
     // btnSelectIDCustomerGroups
     //
     this.btnSelectIDCustomerGroups.AutoHeight = false;
     this.btnSelectIDCustomerGroups.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnSelectIDCustomerGroups.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.btnSelectIDCustomerGroups.Name = "btnSelectIDCustomerGroups";
     this.btnSelectIDCustomerGroups.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 35.97063F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 64.02937F));
     this.tableLayoutPanel3.Controls.Add(this.btnAddNew, 1, 2);
     this.tableLayoutPanel3.Controls.Add(this.dgvAvailableCustomerGroups, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.dgvCustomerMember, 1, 1);
     this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel4, 1, 0);
     this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel1, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 3;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 15.04425F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 84.95575F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(1226, 498);
     this.tableLayoutPanel3.TabIndex = 3;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 26.80115F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 73.19884F));
     this.tableLayoutPanel1.Controls.Add(this.lueFilterCompany, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControl3, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 2);
     this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 27.61194F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(434, 64);
     this.tableLayoutPanel1.TabIndex = 15;
     //
     // lueFilterCompany
     //
     this.lueFilterCompany.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueFilterCompany.Location = new System.Drawing.Point(119, 22);
     this.lueFilterCompany.Name = "lueFilterCompany";
     this.lueFilterCompany.Properties.Appearance.Options.UseTextOptions = true;
     this.lueFilterCompany.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueFilterCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueFilterCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Name")});
     this.lueFilterCompany.Properties.NullText = "";
     this.lueFilterCompany.Size = new System.Drawing.Size(312, 20);
     this.lueFilterCompany.TabIndex = 6;
     this.lueFilterCompany.EditValueChanged += new System.EventHandler(this.lueFilterCompany_EditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(3, 24);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl3.Size = new System.Drawing.Size(60, 16);
     this.labelControl3.TabIndex = 5;
     this.labelControl3.Text = "Công ty";
     //
     // frmLst_CustomerGroups_2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1226, 498);
     this.Controls.Add(this.tableLayoutPanel3);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Location = new System.Drawing.Point(600, 150);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmLst_CustomerGroups_2";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Thêm mới nhóm khách hàng";
     this.Load += new System.EventHandler(this.frmIns_CustomerGroups_Load);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerGroupName.Properties)).EndInit();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewSelectCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRemoveSelectCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCustomerGroups)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCustomerGroups)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectIDCustomerGroups)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueFilterCompany.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(frmTsk_CheckIn_Goverment_Step2));
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel10 = new System.Windows.Forms.TableLayoutPanel();
     this.lueLevel = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txtSubject = new DevExpress.XtraEditors.TextEdit();
     this.txaDescription = new DevExpress.XtraEditors.MemoEdit();
     this.txaNote = new DevExpress.XtraEditors.MemoEdit();
     this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel();
     this.lueIDCompanies = new DevExpress.XtraEditors.LookUpEdit();
     this.btnAddCompanies = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearchCompanies = new DevExpress.XtraEditors.SimpleButton();
     this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
     this.lueIDCustomers = new DevExpress.XtraEditors.LookUpEdit();
     this.btnAddCustomers = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearchCustomers = new DevExpress.XtraEditors.SimpleButton();
     this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
     this.lueIDCustomerGroups = new DevExpress.XtraEditors.LookUpEdit();
     this.btnAddCustomerGroups = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearchCustomerGroups = new DevExpress.XtraEditors.SimpleButton();
     this.txtBookingMoney = new DevExpress.XtraEditors.TextEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.btnBack = new DevExpress.XtraEditors.SimpleButton();
     this.btNext = new DevExpress.XtraEditors.SimpleButton();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tableLayoutPanel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueLevel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txaDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txaNote.Properties)).BeginInit();
     this.tableLayoutPanel9.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tableLayoutPanel11.SuspendLayout();
     this.tableLayoutPanel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueIDCompanies.Properties)).BeginInit();
     this.tableLayoutPanel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueIDCustomers.Properties)).BeginInit();
     this.tableLayoutPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueIDCustomerGroups.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBookingMoney.Properties)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 6F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 84F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(876, 438);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.586F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 57.414F));
     this.tableLayoutPanel2.Controls.Add(this.groupBox2, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel9, 1, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 29);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(870, 361);
     this.tableLayoutPanel2.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.tableLayoutPanel10);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupBox2.Location = new System.Drawing.Point(3, 3);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(364, 355);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "   Thông tin chung  ";
     //
     // tableLayoutPanel10
     //
     this.tableLayoutPanel10.ColumnCount = 2;
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.27273F));
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 72.72727F));
     this.tableLayoutPanel10.Controls.Add(this.lueLevel, 1, 1);
     this.tableLayoutPanel10.Controls.Add(this.labelControl11, 0, 0);
     this.tableLayoutPanel10.Controls.Add(this.labelControl20, 0, 2);
     this.tableLayoutPanel10.Controls.Add(this.labelControl15, 0, 1);
     this.tableLayoutPanel10.Controls.Add(this.labelControl6, 0, 3);
     this.tableLayoutPanel10.Controls.Add(this.txtSubject, 1, 0);
     this.tableLayoutPanel10.Controls.Add(this.txaDescription, 1, 2);
     this.tableLayoutPanel10.Controls.Add(this.txaNote, 1, 3);
     this.tableLayoutPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel10.Location = new System.Drawing.Point(3, 20);
     this.tableLayoutPanel10.Name = "tableLayoutPanel10";
     this.tableLayoutPanel10.RowCount = 4;
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 38F));
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 38F));
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel10.Size = new System.Drawing.Size(358, 332);
     this.tableLayoutPanel10.TabIndex = 3;
     //
     // lueLevel
     //
     this.lueLevel.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueLevel.Location = new System.Drawing.Point(100, 48);
     this.lueLevel.Name = "lueLevel";
     this.lueLevel.Properties.Appearance.Options.UseTextOptions = true;
     this.lueLevel.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueLevel.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.lueLevel.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueLevel.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Cấp")});
     this.lueLevel.Properties.NullText = "--- Chọn lựa ---";
     this.lueLevel.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueLevel.Size = new System.Drawing.Size(245, 20);
     this.lueLevel.TabIndex = 7;
     //
     // labelControl11
     //
     this.labelControl11.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl11.Location = new System.Drawing.Point(3, 11);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl11.Size = new System.Drawing.Size(60, 17);
     this.labelControl11.TabIndex = 4;
     this.labelControl11.Text = "Tiêu đề";
     //
     // labelControl20
     //
     this.labelControl20.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl20.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl20.Location = new System.Drawing.Point(3, 132);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl20.Size = new System.Drawing.Size(49, 17);
     this.labelControl20.TabIndex = 8;
     this.labelControl20.Text = "Mô tả";
     //
     // labelControl15
     //
     this.labelControl15.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl15.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl15.Location = new System.Drawing.Point(3, 50);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl15.Size = new System.Drawing.Size(37, 17);
     this.labelControl15.TabIndex = 6;
     this.labelControl15.Text = "Cấp";
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl6.Location = new System.Drawing.Point(3, 260);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl6.Size = new System.Drawing.Size(56, 16);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "Ghi chú";
     //
     // txtSubject
     //
     this.txtSubject.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtSubject.Location = new System.Drawing.Point(100, 9);
     this.txtSubject.Name = "txtSubject";
     this.txtSubject.Properties.MaxLength = 150;
     this.txtSubject.Properties.NullValuePrompt = "Nhập tối đa 150 ký tự.";
     this.txtSubject.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtSubject.Size = new System.Drawing.Size(245, 20);
     this.txtSubject.TabIndex = 5;
     //
     // txaDescription
     //
     this.txaDescription.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txaDescription.Location = new System.Drawing.Point(100, 86);
     this.txaDescription.Name = "txaDescription";
     this.txaDescription.Properties.MaxLength = 250;
     this.txaDescription.Properties.NullValuePrompt = "Tối đa 250 ký tự.";
     this.txaDescription.Properties.NullValuePromptShowForEmptyValue = true;
     this.txaDescription.Size = new System.Drawing.Size(245, 110);
     this.txaDescription.TabIndex = 9;
     this.txaDescription.UseOptimizedRendering = true;
     //
     // txaNote
     //
     this.txaNote.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txaNote.Location = new System.Drawing.Point(100, 213);
     this.txaNote.Name = "txaNote";
     this.txaNote.Properties.MaxLength = 250;
     this.txaNote.Properties.NullValuePrompt = "Tối đa 250 ký tự.";
     this.txaNote.Properties.NullValuePromptShowForEmptyValue = true;
     this.txaNote.Size = new System.Drawing.Size(245, 110);
     this.txaNote.TabIndex = 11;
     this.txaNote.UseOptimizedRendering = true;
     //
     // tableLayoutPanel9
     //
     this.tableLayoutPanel9.ColumnCount = 1;
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel9.Controls.Add(this.groupBox1, 0, 0);
     this.tableLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel9.Location = new System.Drawing.Point(370, 0);
     this.tableLayoutPanel9.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel9.Name = "tableLayoutPanel9";
     this.tableLayoutPanel9.RowCount = 2;
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 37.77778F));
     this.tableLayoutPanel9.Size = new System.Drawing.Size(500, 361);
     this.tableLayoutPanel9.TabIndex = 12;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tableLayoutPanel11);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(494, 199);
     this.groupBox1.TabIndex = 13;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "   Thông tin khách đặt  ";
     //
     // tableLayoutPanel11
     //
     this.tableLayoutPanel11.ColumnCount = 2;
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 23.97541F));
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 76.02459F));
     this.tableLayoutPanel11.Controls.Add(this.labelControl3, 0, 2);
     this.tableLayoutPanel11.Controls.Add(this.labelControl1, 0, 3);
     this.tableLayoutPanel11.Controls.Add(this.labelControl2, 0, 1);
     this.tableLayoutPanel11.Controls.Add(this.labelControl7, 0, 0);
     this.tableLayoutPanel11.Controls.Add(this.tableLayoutPanel8, 1, 0);
     this.tableLayoutPanel11.Controls.Add(this.tableLayoutPanel7, 1, 2);
     this.tableLayoutPanel11.Controls.Add(this.tableLayoutPanel6, 1, 1);
     this.tableLayoutPanel11.Controls.Add(this.txtBookingMoney, 1, 3);
     this.tableLayoutPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel11.Location = new System.Drawing.Point(3, 20);
     this.tableLayoutPanel11.Name = "tableLayoutPanel11";
     this.tableLayoutPanel11.RowCount = 4;
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel11.Size = new System.Drawing.Size(488, 176);
     this.tableLayoutPanel11.TabIndex = 14;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(3, 101);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl3.Size = new System.Drawing.Size(109, 17);
     this.labelControl3.TabIndex = 25;
     this.labelControl3.Text = "Người đại diện";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(3, 145);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl1.Size = new System.Drawing.Size(77, 17);
     this.labelControl1.TabIndex = 30;
     this.labelControl1.Text = "Đặt trước";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location = new System.Drawing.Point(3, 58);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl2.Size = new System.Drawing.Size(45, 16);
     this.labelControl2.TabIndex = 20;
     this.labelControl2.Text = "Nhóm";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl7.Location = new System.Drawing.Point(3, 13);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl7.Size = new System.Drawing.Size(54, 17);
     this.labelControl7.TabIndex = 15;
     this.labelControl7.Text = "Đơn vị";
     //
     // tableLayoutPanel8
     //
     this.tableLayoutPanel8.ColumnCount = 3;
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 54.83871F));
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20.43011F));
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel8.Controls.Add(this.lueIDCompanies, 0, 0);
     this.tableLayoutPanel8.Controls.Add(this.btnAddCompanies, 1, 0);
     this.tableLayoutPanel8.Controls.Add(this.btnSearchCompanies, 2, 0);
     this.tableLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel8.Location = new System.Drawing.Point(120, 3);
     this.tableLayoutPanel8.Name = "tableLayoutPanel8";
     this.tableLayoutPanel8.RowCount = 1;
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel8.Size = new System.Drawing.Size(365, 38);
     this.tableLayoutPanel8.TabIndex = 16;
     //
     // lueIDCompanies
     //
     this.lueIDCompanies.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueIDCompanies.Location = new System.Drawing.Point(3, 9);
     this.lueIDCompanies.Name = "lueIDCompanies";
     this.lueIDCompanies.Properties.Appearance.Options.UseTextOptions = true;
     this.lueIDCompanies.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueIDCompanies.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.lueIDCompanies.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueIDCompanies.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Tên")});
     this.lueIDCompanies.Properties.NullText = "--- Chọn lựa ---";
     this.lueIDCompanies.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueIDCompanies.Size = new System.Drawing.Size(193, 20);
     this.lueIDCompanies.TabIndex = 17;
     this.lueIDCompanies.EditValueChanged += new System.EventHandler(this.lueIDCompanies_EditValueChanged);
     //
     // btnAddCompanies
     //
     this.btnAddCompanies.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddCompanies.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddCompanies.Appearance.Options.UseFont = true;
     this.btnAddCompanies.Image = ((System.Drawing.Image)(resources.GetObject("btnAddCompanies.Image")));
     this.btnAddCompanies.Location = new System.Drawing.Point(202, 7);
     this.btnAddCompanies.Name = "btnAddCompanies";
     this.btnAddCompanies.Size = new System.Drawing.Size(68, 23);
     this.btnAddCompanies.TabIndex = 18;
     this.btnAddCompanies.Text = "Thêm";
     this.btnAddCompanies.Click += new System.EventHandler(this.btnAddCompanies_Click);
     //
     // btnSearchCompanies
     //
     this.btnSearchCompanies.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSearchCompanies.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearchCompanies.Appearance.Options.UseFont = true;
     this.btnSearchCompanies.Image = ((System.Drawing.Image)(resources.GetObject("btnSearchCompanies.Image")));
     this.btnSearchCompanies.Location = new System.Drawing.Point(276, 7);
     this.btnSearchCompanies.Name = "btnSearchCompanies";
     this.btnSearchCompanies.Size = new System.Drawing.Size(86, 23);
     this.btnSearchCompanies.TabIndex = 19;
     this.btnSearchCompanies.Text = "Tìm kiếm";
     this.btnSearchCompanies.Click += new System.EventHandler(this.btnSearchCompanies_Click);
     //
     // tableLayoutPanel7
     //
     this.tableLayoutPanel7.ColumnCount = 3;
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 54.83871F));
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20.16129F));
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel7.Controls.Add(this.lueIDCustomers, 0, 0);
     this.tableLayoutPanel7.Controls.Add(this.btnAddCustomers, 1, 0);
     this.tableLayoutPanel7.Controls.Add(this.btnSearchCustomers, 2, 0);
     this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel7.Location = new System.Drawing.Point(120, 91);
     this.tableLayoutPanel7.Name = "tableLayoutPanel7";
     this.tableLayoutPanel7.RowCount = 1;
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel7.Size = new System.Drawing.Size(365, 38);
     this.tableLayoutPanel7.TabIndex = 26;
     //
     // lueIDCustomers
     //
     this.lueIDCustomers.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueIDCustomers.Location = new System.Drawing.Point(3, 9);
     this.lueIDCustomers.Name = "lueIDCustomers";
     this.lueIDCustomers.Properties.Appearance.Options.UseTextOptions = true;
     this.lueIDCustomers.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueIDCustomers.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.lueIDCustomers.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueIDCustomers.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Tên")});
     this.lueIDCustomers.Properties.NullText = "--- Chọn lựa ---";
     this.lueIDCustomers.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueIDCustomers.Size = new System.Drawing.Size(194, 20);
     this.lueIDCustomers.TabIndex = 27;
     //
     // btnAddCustomers
     //
     this.btnAddCustomers.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddCustomers.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddCustomers.Appearance.Options.UseFont = true;
     this.btnAddCustomers.Image = ((System.Drawing.Image)(resources.GetObject("btnAddCustomers.Image")));
     this.btnAddCustomers.Location = new System.Drawing.Point(203, 7);
     this.btnAddCustomers.Name = "btnAddCustomers";
     this.btnAddCustomers.Size = new System.Drawing.Size(67, 23);
     this.btnAddCustomers.TabIndex = 28;
     this.btnAddCustomers.Text = "Thêm";
     this.btnAddCustomers.Click += new System.EventHandler(this.btnAddCustomers_Click);
     //
     // btnSearchCustomers
     //
     this.btnSearchCustomers.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSearchCustomers.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearchCustomers.Appearance.Options.UseFont = true;
     this.btnSearchCustomers.Image = ((System.Drawing.Image)(resources.GetObject("btnSearchCustomers.Image")));
     this.btnSearchCustomers.Location = new System.Drawing.Point(276, 7);
     this.btnSearchCustomers.Name = "btnSearchCustomers";
     this.btnSearchCustomers.Size = new System.Drawing.Size(86, 23);
     this.btnSearchCustomers.TabIndex = 29;
     this.btnSearchCustomers.Text = "Tìm kiếm";
     this.btnSearchCustomers.Click += new System.EventHandler(this.btnSearchCustomers_Click);
     //
     // tableLayoutPanel6
     //
     this.tableLayoutPanel6.ColumnCount = 3;
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 54.83871F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 19.89247F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.26882F));
     this.tableLayoutPanel6.Controls.Add(this.lueIDCustomerGroups, 0, 0);
     this.tableLayoutPanel6.Controls.Add(this.btnAddCustomerGroups, 1, 0);
     this.tableLayoutPanel6.Controls.Add(this.btnSearchCustomerGroups, 2, 0);
     this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel6.Location = new System.Drawing.Point(120, 47);
     this.tableLayoutPanel6.Name = "tableLayoutPanel6";
     this.tableLayoutPanel6.RowCount = 1;
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel6.Size = new System.Drawing.Size(365, 38);
     this.tableLayoutPanel6.TabIndex = 21;
     //
     // lueIDCustomerGroups
     //
     this.lueIDCustomerGroups.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.False;
     this.lueIDCustomerGroups.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueIDCustomerGroups.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.lueIDCustomerGroups.Location = new System.Drawing.Point(3, 9);
     this.lueIDCustomerGroups.Name = "lueIDCustomerGroups";
     this.lueIDCustomerGroups.Properties.Appearance.Options.UseTextOptions = true;
     this.lueIDCustomerGroups.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueIDCustomerGroups.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.lueIDCustomerGroups.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueIDCustomerGroups.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Tên")});
     this.lueIDCustomerGroups.Properties.NullText = "--- Chọn lựa ---";
     this.lueIDCustomerGroups.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueIDCustomerGroups.Size = new System.Drawing.Size(194, 20);
     this.lueIDCustomerGroups.TabIndex = 22;
     this.lueIDCustomerGroups.EditValueChanged += new System.EventHandler(this.lueIDCustomerGroups_EditValueChanged);
     //
     // btnAddCustomerGroups
     //
     this.btnAddCustomerGroups.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddCustomerGroups.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddCustomerGroups.Appearance.Options.UseFont = true;
     this.btnAddCustomerGroups.Image = ((System.Drawing.Image)(resources.GetObject("btnAddCustomerGroups.Image")));
     this.btnAddCustomerGroups.Location = new System.Drawing.Point(203, 7);
     this.btnAddCustomerGroups.Name = "btnAddCustomerGroups";
     this.btnAddCustomerGroups.Size = new System.Drawing.Size(66, 23);
     this.btnAddCustomerGroups.TabIndex = 23;
     this.btnAddCustomerGroups.Text = "Thêm";
     this.btnAddCustomerGroups.Click += new System.EventHandler(this.btnAddCustomerGroups_Click);
     //
     // btnSearchCustomerGroups
     //
     this.btnSearchCustomerGroups.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSearchCustomerGroups.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearchCustomerGroups.Appearance.Options.UseFont = true;
     this.btnSearchCustomerGroups.Image = ((System.Drawing.Image)(resources.GetObject("btnSearchCustomerGroups.Image")));
     this.btnSearchCustomerGroups.Location = new System.Drawing.Point(275, 7);
     this.btnSearchCustomerGroups.Name = "btnSearchCustomerGroups";
     this.btnSearchCustomerGroups.Size = new System.Drawing.Size(87, 23);
     this.btnSearchCustomerGroups.TabIndex = 24;
     this.btnSearchCustomerGroups.Text = "Tìm kiếm";
     this.btnSearchCustomerGroups.Click += new System.EventHandler(this.btnSearchCustomerGroups_Click);
     //
     // txtBookingMoney
     //
     this.txtBookingMoney.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtBookingMoney.Location = new System.Drawing.Point(123, 144);
     this.txtBookingMoney.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.txtBookingMoney.Name = "txtBookingMoney";
     this.txtBookingMoney.Properties.DisplayFormat.FormatString = "{0:0,0}";
     this.txtBookingMoney.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtBookingMoney.Properties.EditFormat.FormatString = "{0:0,0}";
     this.txtBookingMoney.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtBookingMoney.Properties.Mask.EditMask = "n0";
     this.txtBookingMoney.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtBookingMoney.Properties.MaxLength = 10;
     this.txtBookingMoney.Properties.NullValuePrompt = "Chỉ nhập số.";
     this.txtBookingMoney.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtBookingMoney.Size = new System.Drawing.Size(199, 20);
     this.txtBookingMoney.TabIndex = 31;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 85F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 15F));
     this.tableLayoutPanel3.Controls.Add(this.btnBack, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.btNext, 1, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 396);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(870, 39);
     this.tableLayoutPanel3.TabIndex = 32;
     //
     // btnBack
     //
     this.btnBack.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnBack.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBack.Appearance.Options.UseFont = true;
     this.btnBack.Image = ((System.Drawing.Image)(resources.GetObject("btnBack.Image")));
     this.btnBack.Location = new System.Drawing.Point(648, 4);
     this.btnBack.Margin = new System.Windows.Forms.Padding(3, 3, 6, 3);
     this.btnBack.Name = "btnBack";
     this.btnBack.Size = new System.Drawing.Size(85, 30);
     this.btnBack.TabIndex = 33;
     this.btnBack.Text = "Quay lại";
     this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
     //
     // btNext
     //
     this.btNext.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btNext.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btNext.Appearance.Options.UseFont = true;
     this.btNext.Image = ((System.Drawing.Image)(resources.GetObject("btNext.Image")));
     this.btNext.Location = new System.Drawing.Point(745, 4);
     this.btNext.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.btNext.Name = "btNext";
     this.btNext.Size = new System.Drawing.Size(92, 30);
     this.btNext.TabIndex = 34;
     this.btNext.Text = "Tiếp theo";
     this.btNext.Click += new System.EventHandler(this.btNext_Click);
     //
     // frmTsk_CheckIn_Goverment_Step2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(876, 438);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmTsk_CheckIn_Goverment_Step2";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thông tin đặt phòng";
     this.Load += new System.EventHandler(this.frmTsk_CheckIn_Goverment_Step2_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.tableLayoutPanel10.ResumeLayout(false);
     this.tableLayoutPanel10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueLevel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txaDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txaNote.Properties)).EndInit();
     this.tableLayoutPanel9.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.tableLayoutPanel11.ResumeLayout(false);
     this.tableLayoutPanel11.PerformLayout();
     this.tableLayoutPanel8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lueIDCompanies.Properties)).EndInit();
     this.tableLayoutPanel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lueIDCustomers.Properties)).EndInit();
     this.tableLayoutPanel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lueIDCustomerGroups.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBookingMoney.Properties)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #37
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(DataBillFrm));
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSalesUnitID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditSortNo1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlEditor = new DevExpress.XtraGrid.GridControl();
     this.mastergridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditTotalkasm = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditExtraFees = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditBillPayTypeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditBillDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditBillEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControlEditor = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.BtnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.LblTotal = new DevExpress.XtraEditors.LabelControl();
     this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
     this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnStoreTrID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnSort = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSort = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtREM = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.TxtExtraFees = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
     this.TxtStoreTrIDTYPE = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlEditorDetial = new DevExpress.XtraGrid.GridControl();
     this.gridViewEditDetial = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnEditDetialSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDetialSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditDetailQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialSortNo = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditDetialDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialUpdate = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).BeginInit();
     this.xtraTabControlEditor.SuspendLayout();
     this.xtraTabPageAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).BeginInit();
     this.xtraTabPageEdit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "رقم فاتورة المشتريات";
     this.gridColumn1.FieldName = "WaredID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "الصنف";
     this.gridColumn2.ColumnEdit = this.repositoryItemLookUpEditEditSanfID;
     this.gridColumn2.FieldName = "SanfID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 92;
     //
     // repositoryItemLookUpEditEditSanfID
     //
     this.repositoryItemLookUpEditEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditEditSanfID.Name = "repositoryItemLookUpEditEditSanfID";
     this.repositoryItemLookUpEditEditSanfID.NullText = "";
     this.repositoryItemLookUpEditEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "وحدة البيع";
     this.gridColumn24.ColumnEdit = this.repositoryItemLookUpEditEditSalesUnitID;
     this.gridColumn24.FieldName = "SalesUnitID";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     //
     // repositoryItemLookUpEditEditSalesUnitID
     //
     this.repositoryItemLookUpEditEditSalesUnitID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSalesUnitID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSalesUnitID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitID", "SalesUnitID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "وحدة البيع")});
     this.repositoryItemLookUpEditEditSalesUnitID.Name = "repositoryItemLookUpEditEditSalesUnitID";
     this.repositoryItemLookUpEditEditSalesUnitID.NullText = "";
     this.repositoryItemLookUpEditEditSalesUnitID.NullValuePrompt = "اختار وحدة البيع";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "UnitID";
     this.gridColumn12.FieldName = "UnitID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "كمية الوارد";
     this.gridColumn4.ColumnEdit = this.repositoryItemTextEditEditQuantity;
     this.gridColumn4.FieldName = "WaredQuantity";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 105;
     //
     // repositoryItemTextEditEditQuantity
     //
     this.repositoryItemTextEditEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditQuantity.Name = "repositoryItemTextEditEditQuantity";
     this.repositoryItemTextEditEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "سعر الشراء";
     this.gridColumn5.ColumnEdit = this.repositoryItemCalcEditEditPrice;
     this.gridColumn5.FieldName = "WaredPrice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 105;
     //
     // repositoryItemCalcEditEditPrice
     //
     this.repositoryItemCalcEditEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditPrice.Name = "repositoryItemCalcEditEditPrice";
     this.repositoryItemCalcEditEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "الخصم";
     this.gridColumn6.ColumnEdit = this.repositoryItemCalcEditEditDiscount;
     this.gridColumn6.FieldName = "DiscountPercent";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 105;
     //
     // repositoryItemCalcEditEditDiscount
     //
     this.repositoryItemCalcEditEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditDiscount.Name = "repositoryItemCalcEditEditDiscount";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "ترتيب";
     this.gridColumn7.ColumnEdit = this.repositoryItemButtonEditEditSortNo1;
     this.gridColumn7.FieldName = "SortNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // repositoryItemButtonEditEditSortNo1
     //
     this.repositoryItemButtonEditEditSortNo1.AutoHeight = false;
     this.repositoryItemButtonEditEditSortNo1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditEditSortNo1.Name = "repositoryItemButtonEditEditSortNo1";
     this.repositoryItemButtonEditEditSortNo1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "المجموع";
     this.gridColumn9.DisplayFormat.FormatString = "c2";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "Total";
     this.gridColumn9.GroupFormat.FormatString = "c2";
     this.gridColumn9.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     //
     // gridControlEditor
     //
     this.gridControlEditor.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.gridControlEditor.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditor.Location = new System.Drawing.Point(2, 21);
     this.gridControlEditor.MainView = this.mastergridView;
     this.gridControlEditor.Name = "gridControlEditor";
     this.gridControlEditor.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditEditSanfID,
     this.repositoryItemTextEditEditQuantity,
     this.repositoryItemCalcEditEditPrice,
     this.repositoryItemCalcEditEditDiscount,
     this.repositoryItemButtonEditEditSortNo1,
     this.repositoryItemDateEditEditStoreTrDate,
     this.repositoryItemLookUpEditEditPERSONID,
     this.repositoryItemLookUpEditEditEMPID,
     this.repositoryItemTextEditEditTotalkasm,
     this.repositoryItemTextEditEditExtraFees,
     this.repositoryItemLookUpEditEditStoreID,
     this.repositoryItemLookUpEditEditBillPayTypeID,
     this.repositoryItemLookUpEditEditSalesUnitID,
     this.repositoryItemMemoExEditEditREM,
     this.repositoryItemButtonEditEditBillDelete,
     this.repositoryItemButtonEditBillEdit});
     this.gridControlEditor.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditor.Size = new System.Drawing.Size(751, 232);
     this.gridControlEditor.TabIndex = 10;
     this.gridControlEditor.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.mastergridView});
     //
     // mastergridView
     //
     this.mastergridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn8,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn3,
     this.gridColumn19});
     this.mastergridView.GridControl = this.gridControlEditor;
     this.mastergridView.Name = "mastergridView";
     this.mastergridView.OptionsView.ColumnAutoWidth = false;
     this.mastergridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.mastergridView_FocusedRowChanged);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "StoreTrID";
     this.gridColumn10.FieldName = "StoreTrID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "تاريخ الفاتوره";
     this.gridColumn11.ColumnEdit = this.repositoryItemDateEditEditStoreTrDate;
     this.gridColumn11.FieldName = "StoreTrDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 9;
     this.gridColumn11.Width = 96;
     //
     // repositoryItemDateEditEditStoreTrDate
     //
     this.repositoryItemDateEditEditStoreTrDate.AutoHeight = false;
     this.repositoryItemDateEditEditStoreTrDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditEditStoreTrDate.Name = "repositoryItemDateEditEditStoreTrDate";
     this.repositoryItemDateEditEditStoreTrDate.NullValuePrompt = "اختار التاريخ";
     this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "رقم الفاتوره";
     this.gridColumn8.FieldName = "StoreTrIDTYPE";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 10;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "المورد";
     this.gridColumn13.ColumnEdit = this.repositoryItemLookUpEditEditPERSONID;
     this.gridColumn13.FieldName = "PERSONID";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     this.gridColumn13.Width = 119;
     //
     // repositoryItemLookUpEditEditPERSONID
     //
     this.repositoryItemLookUpEditEditPERSONID.AutoHeight = false;
     this.repositoryItemLookUpEditEditPERSONID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditPERSONID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "موبيل")});
     this.repositoryItemLookUpEditEditPERSONID.Name = "repositoryItemLookUpEditEditPERSONID";
     this.repositoryItemLookUpEditEditPERSONID.NullText = "";
     this.repositoryItemLookUpEditEditPERSONID.NullValuePrompt = "اختار اسم المورد";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "المستلم";
     this.gridColumn14.ColumnEdit = this.repositoryItemLookUpEditEditEMPID;
     this.gridColumn14.FieldName = "EMPID";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     this.gridColumn14.Width = 117;
     //
     // repositoryItemLookUpEditEditEMPID
     //
     this.repositoryItemLookUpEditEditEMPID.AutoHeight = false;
     this.repositoryItemLookUpEditEditEMPID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditEMPID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPID", "EMPID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المستلم"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("JOBName", "اسم الوظيفه"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.repositoryItemLookUpEditEditEMPID.Name = "repositoryItemLookUpEditEditEMPID";
     this.repositoryItemLookUpEditEditEMPID.NullText = "";
     this.repositoryItemLookUpEditEditEMPID.NullValuePrompt = "اختار اسم المسئول";
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "خصم كلي";
     this.gridColumn16.ColumnEdit = this.repositoryItemTextEditEditTotalkasm;
     this.gridColumn16.FieldName = "Totalkasm";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 7;
     this.gridColumn16.Width = 67;
     //
     // repositoryItemTextEditEditTotalkasm
     //
     this.repositoryItemTextEditEditTotalkasm.AutoHeight = false;
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditTotalkasm.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Name = "repositoryItemTextEditEditTotalkasm";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "مصروفات أضافيه";
     this.gridColumn17.ColumnEdit = this.repositoryItemTextEditEditExtraFees;
     this.gridColumn17.FieldName = "ExtraFees";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 6;
     this.gridColumn17.Width = 94;
     //
     // repositoryItemTextEditEditExtraFees
     //
     this.repositoryItemTextEditEditExtraFees.AutoHeight = false;
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditExtraFees.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Name = "repositoryItemTextEditEditExtraFees";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "معلومات";
     this.gridColumn18.ColumnEdit = this.repositoryItemMemoExEditEditREM;
     this.gridColumn18.FieldName = "REM";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     this.gridColumn18.Width = 56;
     //
     // repositoryItemMemoExEditEditREM
     //
     this.repositoryItemMemoExEditEditREM.AutoHeight = false;
     this.repositoryItemMemoExEditEditREM.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditEditREM.Name = "repositoryItemMemoExEditEditREM";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "المخزن";
     this.gridColumn20.ColumnEdit = this.repositoryItemLookUpEditEditStoreID;
     this.gridColumn20.FieldName = "StoreID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 4;
     this.gridColumn20.Width = 125;
     //
     // repositoryItemLookUpEditEditStoreID
     //
     this.repositoryItemLookUpEditEditStoreID.AutoHeight = false;
     this.repositoryItemLookUpEditEditStoreID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditStoreID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreID", "StoreID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreOfficial", "السئول"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.repositoryItemLookUpEditEditStoreID.Name = "repositoryItemLookUpEditEditStoreID";
     this.repositoryItemLookUpEditEditStoreID.NullText = "";
     this.repositoryItemLookUpEditEditStoreID.NullValuePrompt = "اختار المخزن";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "نوع الدفع";
     this.gridColumn22.ColumnEdit = this.repositoryItemLookUpEditEditBillPayTypeID;
     this.gridColumn22.FieldName = "BillPayTypeID";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 86;
     //
     // repositoryItemLookUpEditEditBillPayTypeID
     //
     this.repositoryItemLookUpEditEditBillPayTypeID.AutoHeight = false;
     this.repositoryItemLookUpEditEditBillPayTypeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditBillPayTypeID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeID", "BillPayTypeID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "نوع الدفع")});
     this.repositoryItemLookUpEditEditBillPayTypeID.Name = "repositoryItemLookUpEditEditBillPayTypeID";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullText = "";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullValuePrompt = "اختار نوع الدفع";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "حــــذف";
     this.gridColumn3.ColumnEdit = this.repositoryItemButtonEditEditBillDelete;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 61;
     //
     // repositoryItemButtonEditEditBillDelete
     //
     this.repositoryItemButtonEditEditBillDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditBillDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditBillDelete.Name = "repositoryItemButtonEditEditBillDelete";
     this.repositoryItemButtonEditEditBillDelete.NullText = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePrompt = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePromptShowForEmptyValue = true;
     this.repositoryItemButtonEditEditBillDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditBillDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditBillDelete_ButtonClick);
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "تعديــل";
     this.gridColumn19.ColumnEdit = this.repositoryItemButtonEditBillEdit;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 57;
     //
     // repositoryItemButtonEditBillEdit
     //
     this.repositoryItemButtonEditBillEdit.AutoHeight = false;
     this.repositoryItemButtonEditBillEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditBillEdit.Name = "repositoryItemButtonEditBillEdit";
     this.repositoryItemButtonEditBillEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditBillEdit.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditBillEdit_ButtonClick);
     //
     // xtraTabControlEditor
     //
     this.xtraTabControlEditor.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.xtraTabControlEditor.Location = new System.Drawing.Point(12, 12);
     this.xtraTabControlEditor.Name = "xtraTabControlEditor";
     this.xtraTabControlEditor.SelectedTabPage = this.xtraTabPageAdd;
     this.xtraTabControlEditor.Size = new System.Drawing.Size(768, 542);
     this.xtraTabControlEditor.TabIndex = 0;
     this.xtraTabControlEditor.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageAdd,
     this.xtraTabPageEdit});
     this.xtraTabControlEditor.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControlEditor_SelectedPageChanging);
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Controls.Add(this.BtnPrint);
     this.xtraTabPageAdd.Controls.Add(this.BtnSave);
     this.xtraTabPageAdd.Controls.Add(this.groupControl3);
     this.xtraTabPageAdd.Controls.Add(this.GridControlAddDetials);
     this.xtraTabPageAdd.Controls.Add(this.groupControl2);
     this.xtraTabPageAdd.Controls.Add(this.groupControl1);
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageAdd.Text = "اضافه";
     //
     // BtnPrint
     //
     this.BtnPrint.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnPrint.Enabled = false;
     this.BtnPrint.Location = new System.Drawing.Point(8, 480);
     this.BtnPrint.Name = "BtnPrint";
     this.BtnPrint.Size = new System.Drawing.Size(154, 32);
     this.BtnPrint.TabIndex = 4;
     this.BtnPrint.Text = "طباعة اذن الاضافه";
     this.BtnPrint.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnSave
     //
     this.BtnSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(188, 480);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(387, 32);
     this.BtnSave.TabIndex = 3;
     this.BtnSave.Text = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTip = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTipTitle = "حفظ الفاتوره F6";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl6);
     this.groupControl3.Controls.Add(this.LblTotal);
     this.groupControl3.Location = new System.Drawing.Point(8, 3);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(223, 198);
     this.groupControl3.TabIndex = 4;
     this.groupControl3.Text = "الاجمالي";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(133, 76);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(69, 13);
     this.labelControl6.TabIndex = 2;
     this.labelControl6.Text = "اجمالي الفاتوره";
     //
     // LblTotal
     //
     this.LblTotal.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LblTotal.Appearance.ForeColor = System.Drawing.Color.Green;
     this.LblTotal.Location = new System.Drawing.Point(21, 90);
     this.LblTotal.Name = "LblTotal";
     this.LblTotal.Size = new System.Drawing.Size(17, 33);
     this.LblTotal.TabIndex = 3;
     this.LblTotal.Text = "0";
     //
     // GridControlAddDetials
     //
     this.GridControlAddDetials.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.GridControlAddDetials.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.First.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.GridControlAddDetials.Location = new System.Drawing.Point(3, 207);
     this.GridControlAddDetials.MainView = this.gridViewAdd;
     this.GridControlAddDetials.Name = "GridControlAddDetials";
     this.GridControlAddDetials.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditSanfID,
     this.repositoryItemTextEditQuantity,
     this.repositoryItemCalcEditPrice,
     this.repositoryItemCalcEditDiscount,
     this.repositoryItemButtonEditSort,
     this.repositoryItemButtonEditDelete});
     this.GridControlAddDetials.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GridControlAddDetials.Size = new System.Drawing.Size(755, 268);
     this.GridControlAddDetials.TabIndex = 2;
     this.GridControlAddDetials.UseEmbeddedNavigator = true;
     this.GridControlAddDetials.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewAdd});
     this.GridControlAddDetials.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEventGrid);
     //
     // gridViewAdd
     //
     this.gridViewAdd.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnStoreTrID,
     this.gridColumnSanfID,
     this.gridColumnQuantity,
     this.gridColumnPrice,
     this.gridColumnDiscount,
     this.gridColumnSort,
     this.gridColumnDelete,
     this.gridColumnTotal});
     this.gridViewAdd.GridControl = this.GridControlAddDetials;
     this.gridViewAdd.Name = "gridViewAdd";
     this.gridViewAdd.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewAdd.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridViewAdd.RowCountChanged += new System.EventHandler(this.gridViewAdd_RowCountChanged);
     //
     // gridColumnStoreTrID
     //
     this.gridColumnStoreTrID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.Caption = "رقم فاتورة المشتريات";
     this.gridColumnStoreTrID.FieldName = "StoreTrID";
     this.gridColumnStoreTrID.Name = "gridColumnStoreTrID";
     this.gridColumnStoreTrID.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnSanfID
     //
     this.gridColumnSanfID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.Caption = "كود الصنف";
     this.gridColumnSanfID.ColumnEdit = this.repositoryItemLookUpEditSanfID;
     this.gridColumnSanfID.FieldName = "SanfID";
     this.gridColumnSanfID.Name = "gridColumnSanfID";
     this.gridColumnSanfID.Visible = true;
     this.gridColumnSanfID.VisibleIndex = 0;
     this.gridColumnSanfID.Width = 220;
     //
     // repositoryItemLookUpEditSanfID
     //
     this.repositoryItemLookUpEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditSanfID.Name = "repositoryItemLookUpEditSanfID";
     this.repositoryItemLookUpEditSanfID.NullText = "";
     this.repositoryItemLookUpEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     this.repositoryItemLookUpEditSanfID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // gridColumnQuantity
     //
     this.gridColumnQuantity.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.Caption = "كمية الوارد";
     this.gridColumnQuantity.ColumnEdit = this.repositoryItemTextEditQuantity;
     this.gridColumnQuantity.FieldName = "Quantity";
     this.gridColumnQuantity.Name = "gridColumnQuantity";
     this.gridColumnQuantity.Visible = true;
     this.gridColumnQuantity.VisibleIndex = 1;
     this.gridColumnQuantity.Width = 112;
     //
     // repositoryItemTextEditQuantity
     //
     this.repositoryItemTextEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditQuantity.Name = "repositoryItemTextEditQuantity";
     this.repositoryItemTextEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumnPrice
     //
     this.gridColumnPrice.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.Caption = "سعر الشراء";
     this.gridColumnPrice.ColumnEdit = this.repositoryItemCalcEditPrice;
     this.gridColumnPrice.FieldName = "Price";
     this.gridColumnPrice.Name = "gridColumnPrice";
     this.gridColumnPrice.Visible = true;
     this.gridColumnPrice.VisibleIndex = 2;
     this.gridColumnPrice.Width = 92;
     //
     // repositoryItemCalcEditPrice
     //
     this.repositoryItemCalcEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditPrice.Name = "repositoryItemCalcEditPrice";
     this.repositoryItemCalcEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumnDiscount
     //
     this.gridColumnDiscount.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.Caption = "الخصم";
     this.gridColumnDiscount.ColumnEdit = this.repositoryItemCalcEditDiscount;
     this.gridColumnDiscount.FieldName = "Discount";
     this.gridColumnDiscount.Name = "gridColumnDiscount";
     this.gridColumnDiscount.OptionsColumn.TabStop = false;
     this.gridColumnDiscount.Visible = true;
     this.gridColumnDiscount.VisibleIndex = 3;
     this.gridColumnDiscount.Width = 86;
     //
     // repositoryItemCalcEditDiscount
     //
     this.repositoryItemCalcEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDiscount.Name = "repositoryItemCalcEditDiscount";
     //
     // gridColumnSort
     //
     this.gridColumnSort.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.Caption = "ترتيب";
     this.gridColumnSort.ColumnEdit = this.repositoryItemButtonEditSort;
     this.gridColumnSort.FieldName = "SortNo";
     this.gridColumnSort.Name = "gridColumnSort";
     this.gridColumnSort.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnSort.OptionsColumn.TabStop = false;
     this.gridColumnSort.Width = 80;
     //
     // repositoryItemButtonEditSort
     //
     this.repositoryItemButtonEditSort.AutoHeight = false;
     this.repositoryItemButtonEditSort.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditSort.Name = "repositoryItemButtonEditSort";
     this.repositoryItemButtonEditSort.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSort.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSort_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حـــذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDelete;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Width = 117;
     //
     // repositoryItemButtonEditDelete
     //
     this.repositoryItemButtonEditDelete.AutoHeight = false;
     this.repositoryItemButtonEditDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDelete.Name = "repositoryItemButtonEditDelete";
     this.repositoryItemButtonEditDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumnTotal
     //
     this.gridColumnTotal.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.Caption = "المجموع";
     this.gridColumnTotal.DisplayFormat.FormatString = "c2";
     this.gridColumnTotal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.FieldName = "Total";
     this.gridColumnTotal.GroupFormat.FormatString = "c2";
     this.gridColumnTotal.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.Name = "gridColumnTotal";
     this.gridColumnTotal.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnTotal.OptionsColumn.ReadOnly = true;
     this.gridColumnTotal.OptionsColumn.TabStop = false;
     this.gridColumnTotal.Visible = true;
     this.gridColumnTotal.VisibleIndex = 4;
     this.gridColumnTotal.Width = 78;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.TxtREM);
     this.groupControl2.Controls.Add(this.labelControl12);
     this.groupControl2.Controls.Add(this.TxtExtraFees);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.TxtTotalkasm);
     this.groupControl2.Controls.Add(this.labelControl8);
     this.groupControl2.Location = new System.Drawing.Point(237, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(263, 198);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "مصاريف اضافيه و الخصم";
     //
     // TxtREM
     //
     this.TxtREM.Location = new System.Drawing.Point(5, 75);
     this.TxtREM.Name = "TxtREM";
     this.TxtREM.Properties.MaxLength = 100;
     this.TxtREM.Properties.NullValuePrompt = "معلومات عن الفاتوره";
     this.TxtREM.Size = new System.Drawing.Size(199, 84);
     this.TxtREM.TabIndex = 2;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(210, 78);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(39, 13);
     this.labelControl12.TabIndex = 4;
     this.labelControl12.Text = "معلومات";
     //
     // TxtExtraFees
     //
     this.TxtExtraFees.EditValue = "0";
     this.TxtExtraFees.Location = new System.Drawing.Point(5, 49);
     this.TxtExtraFees.Name = "TxtExtraFees";
     this.TxtExtraFees.Properties.DisplayFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.EditFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.Mask.EditMask = "f2";
     this.TxtExtraFees.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtExtraFees.Properties.NullValuePrompt = "ادخل قيمة المصارف الاضافيه";
     this.TxtExtraFees.Size = new System.Drawing.Size(150, 20);
     this.TxtExtraFees.TabIndex = 1;
     this.TxtExtraFees.EditValueChanged += new System.EventHandler(this.TxtExtraPayValue_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(181, 52);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(68, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "مصاريف اضافيه";
     //
     // TxtTotalkasm
     //
     this.TxtTotalkasm.EditValue = "0";
     this.TxtTotalkasm.Location = new System.Drawing.Point(5, 24);
     this.TxtTotalkasm.Name = "TxtTotalkasm";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.EditFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.Mask.EditMask = "f2";
     this.TxtTotalkasm.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtTotalkasm.Properties.NullValuePrompt = "ادخل قيمة الخصم الكلي";
     this.TxtTotalkasm.Size = new System.Drawing.Size(150, 20);
     this.TxtTotalkasm.TabIndex = 0;
     this.TxtTotalkasm.EditValueChanged += new System.EventHandler(this.TxtDiscount_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(202, 27);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "خصم كلي";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.LUEStoreID);
     this.groupControl1.Controls.Add(this.LUEBillPayType);
     this.groupControl1.Controls.Add(this.LUEEMPID);
     this.groupControl1.Controls.Add(this.LUEPERSONID);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.DEStoreTrDate);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDDAY);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDTYPE);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(506, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl1.Size = new System.Drawing.Size(252, 198);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "بيانات عامــه";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(206, 178);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(41, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "نوع الدفع";
     //
     // LUEStoreID
     //
     this.LUEStoreID.Location = new System.Drawing.Point(5, 150);
     this.LUEStoreID.Name = "LUEStoreID";
     this.LUEStoreID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEStoreID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StorePlace", "عنوان"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.LUEStoreID.Properties.NullText = "";
     this.LUEStoreID.Properties.NullValuePrompt = "اختار اسم المخزن";
     this.LUEStoreID.Size = new System.Drawing.Size(150, 20);
     this.LUEStoreID.TabIndex = 3;
     //
     // LUEBillPayType
     //
     this.LUEBillPayType.Location = new System.Drawing.Point(5, 175);
     this.LUEBillPayType.Name = "LUEBillPayType";
     this.LUEBillPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEBillPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "اسم نوع الدفع")});
     this.LUEBillPayType.Properties.NullText = "";
     this.LUEBillPayType.Properties.NullValuePrompt = "اختار نوع الدفع";
     this.LUEBillPayType.Size = new System.Drawing.Size(150, 20);
     this.LUEBillPayType.TabIndex = 4;
     //
     // LUEEMPID
     //
     this.LUEEMPID.Location = new System.Drawing.Point(5, 125);
     this.LUEEMPID.Name = "LUEEMPID";
     this.LUEEMPID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEEMPID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.LUEEMPID.Properties.NullText = "";
     this.LUEEMPID.Properties.NullValuePrompt = "اختار اسم المستــلم";
     this.LUEEMPID.Size = new System.Drawing.Size(150, 20);
     this.LUEEMPID.TabIndex = 2;
     //
     // LUEPERSONID
     //
     this.LUEPERSONID.Location = new System.Drawing.Point(5, 100);
     this.LUEPERSONID.Name = "LUEPERSONID";
     this.LUEPERSONID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEPERSONID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Addess", "عنوان المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "محمول")});
     this.LUEPERSONID.Properties.NullText = "";
     this.LUEPERSONID.Properties.NullValuePrompt = "اختار اسم المورد";
     this.LUEPERSONID.Size = new System.Drawing.Size(150, 20);
     this.LUEPERSONID.TabIndex = 1;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(215, 153);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(32, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "المخزن";
     //
     // DEStoreTrDate
     //
     this.DEStoreTrDate.EditValue = null;
     this.DEStoreTrDate.Location = new System.Drawing.Point(5, 75);
     this.DEStoreTrDate.Name = "DEStoreTrDate";
     this.DEStoreTrDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DEStoreTrDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.NullValuePrompt = "ادخل تاريخ الفاتوره";
     this.DEStoreTrDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DEStoreTrDate.Size = new System.Drawing.Size(150, 20);
     this.DEStoreTrDate.TabIndex = 0;
     this.DEStoreTrDate.EditValueChanged += new System.EventHandler(this.DEStoreTrDate_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(185, 128);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "المستـــــــلم";
     //
     // TxtStoreTrIDDAY
     //
     this.TxtStoreTrIDDAY.Location = new System.Drawing.Point(5, 49);
     this.TxtStoreTrIDDAY.Name = "TxtStoreTrIDDAY";
     this.TxtStoreTrIDDAY.Properties.ReadOnly = true;
     this.TxtStoreTrIDDAY.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDDAY.TabIndex = 0;
     this.TxtStoreTrIDDAY.TabStop = false;
     //
     // TxtStoreTrIDTYPE
     //
     this.TxtStoreTrIDTYPE.Location = new System.Drawing.Point(5, 24);
     this.TxtStoreTrIDTYPE.Name = "TxtStoreTrIDTYPE";
     this.TxtStoreTrIDTYPE.Properties.ReadOnly = true;
     this.TxtStoreTrIDTYPE.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDTYPE.TabIndex = 0;
     this.TxtStoreTrIDTYPE.TabStop = false;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(195, 103);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المورد";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(160, 52);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(87, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "رقم الفاتوره اليومي";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(195, 78);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تارخ الفاتوره";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(195, 27);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "رقم الفاتوره";
     //
     // xtraTabPageEdit
     //
     this.xtraTabPageEdit.Controls.Add(this.groupControl4);
     this.xtraTabPageEdit.Name = "xtraTabPageEdit";
     this.xtraTabPageEdit.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageEdit.Text = "تعديــل";
     //
     // groupControl4
     //
     this.groupControl4.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.groupControl4.Controls.Add(this.gridControlEditorDetial);
     this.groupControl4.Controls.Add(this.gridControlEditor);
     this.groupControl4.Location = new System.Drawing.Point(3, 3);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(755, 506);
     this.groupControl4.TabIndex = 4;
     this.groupControl4.Text = "جميع تفاصيل الفاتوره";
     //
     // gridControlEditorDetial
     //
     this.gridControlEditorDetial.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.gridControlEditorDetial.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditorDetial.Location = new System.Drawing.Point(2, 262);
     this.gridControlEditorDetial.MainView = this.gridViewEditDetial;
     this.gridControlEditorDetial.Name = "gridControlEditorDetial";
     this.gridControlEditorDetial.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditDetialSanfID,
     this.repositoryItemTextEditDetailQuantity,
     this.repositoryItemCalcEditDetialPrice,
     this.repositoryItemCalcEditDetialDiscount,
     this.repositoryItemButtonEditDetialSortNo,
     this.repositoryItemButtonEditEditDetialDelete,
     this.repositoryItemButtonEditDetialUpdate});
     this.gridControlEditorDetial.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditorDetial.Size = new System.Drawing.Size(751, 242);
     this.gridControlEditorDetial.TabIndex = 11;
     this.gridControlEditorDetial.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewEditDetial});
     //
     // gridViewEditDetial
     //
     this.gridViewEditDetial.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumnEditDetialSanfID,
     this.gridColumn23,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30});
     this.gridViewEditDetial.GridControl = this.gridControlEditorDetial;
     this.gridViewEditDetial.Name = "gridViewEditDetial";
     this.gridViewEditDetial.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewEditDetial.OptionsView.ColumnAutoWidth = false;
     this.gridViewEditDetial.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewEditDetial_CellValueChanging);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "رقم فاتورة المشتريات";
     this.gridColumn15.FieldName = "StoreTrID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnEditDetialSanfID
     //
     this.gridColumnEditDetialSanfID.Caption = "كود الصنف";
     this.gridColumnEditDetialSanfID.ColumnEdit = this.repositoryItemLookUpEditDetialSanfID;
     this.gridColumnEditDetialSanfID.FieldName = "SanfID";
     this.gridColumnEditDetialSanfID.Name = "gridColumnEditDetialSanfID";
     this.gridColumnEditDetialSanfID.Visible = true;
     this.gridColumnEditDetialSanfID.VisibleIndex = 6;
     this.gridColumnEditDetialSanfID.Width = 207;
     //
     // repositoryItemLookUpEditDetialSanfID
     //
     this.repositoryItemLookUpEditDetialSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditDetialSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDetialSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditDetialSanfID.Name = "repositoryItemLookUpEditDetialSanfID";
     this.repositoryItemLookUpEditDetialSanfID.NullText = "";
     this.repositoryItemLookUpEditDetialSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "كمية الوارد";
     this.gridColumn23.ColumnEdit = this.repositoryItemTextEditDetailQuantity;
     this.gridColumn23.FieldName = "Quantity";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 5;
     this.gridColumn23.Width = 110;
     //
     // repositoryItemTextEditDetailQuantity
     //
     this.repositoryItemTextEditDetailQuantity.AutoHeight = false;
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditDetailQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Name = "repositoryItemTextEditDetailQuantity";
     this.repositoryItemTextEditDetailQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "سعر الشراء";
     this.gridColumn25.ColumnEdit = this.repositoryItemCalcEditDetialPrice;
     this.gridColumn25.FieldName = "Price";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 4;
     this.gridColumn25.Width = 110;
     //
     // repositoryItemCalcEditDetialPrice
     //
     this.repositoryItemCalcEditDetialPrice.AutoHeight = false;
     this.repositoryItemCalcEditDetialPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialPrice.Name = "repositoryItemCalcEditDetialPrice";
     this.repositoryItemCalcEditDetialPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "الخصم";
     this.gridColumn26.ColumnEdit = this.repositoryItemCalcEditDetialDiscount;
     this.gridColumn26.FieldName = "Discount";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 3;
     this.gridColumn26.Width = 110;
     //
     // repositoryItemCalcEditDetialDiscount
     //
     this.repositoryItemCalcEditDetialDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDetialDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialDiscount.Name = "repositoryItemCalcEditDetialDiscount";
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "ترتيب";
     this.gridColumn27.ColumnEdit = this.repositoryItemButtonEditDetialSortNo;
     this.gridColumn27.FieldName = "SortNo";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn27.Width = 105;
     //
     // repositoryItemButtonEditDetialSortNo
     //
     this.repositoryItemButtonEditDetialSortNo.AutoHeight = false;
     this.repositoryItemButtonEditDetialSortNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditDetialSortNo.Name = "repositoryItemButtonEditDetialSortNo";
     this.repositoryItemButtonEditDetialSortNo.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "حـــذف";
     this.gridColumn28.ColumnEdit = this.repositoryItemButtonEditEditDetialDelete;
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 0;
     this.gridColumn28.Width = 41;
     //
     // repositoryItemButtonEditEditDetialDelete
     //
     this.repositoryItemButtonEditEditDetialDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditDetialDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditDetialDelete.Name = "repositoryItemButtonEditEditDetialDelete";
     this.repositoryItemButtonEditEditDetialDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditDetialDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditDetialDelete_ButtonClick);
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "المجموع";
     this.gridColumn29.DisplayFormat.FormatString = "c2";
     this.gridColumn29.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.FieldName = "Total";
     this.gridColumn29.GroupFormat.FormatString = "c2";
     this.gridColumn29.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.ReadOnly = true;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     this.gridColumn29.Width = 78;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "حفظ تعديل";
     this.gridColumn30.ColumnEdit = this.repositoryItemButtonEditDetialUpdate;
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 1;
     this.gridColumn30.Width = 59;
     //
     // repositoryItemButtonEditDetialUpdate
     //
     this.repositoryItemButtonEditDetialUpdate.AutoHeight = false;
     this.repositoryItemButtonEditDetialUpdate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditDetialUpdate.Name = "repositoryItemButtonEditDetialUpdate";
     this.repositoryItemButtonEditDetialUpdate.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDetialUpdate.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDetialUpdate_ButtonClick);
     //
     // DataBillFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(792, 566);
     this.Controls.Add(this.xtraTabControlEditor);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DataBillFrm";
     this.Text = "فاتورة مشتريات";
     this.Load += new System.EventHandler(this.DataBillFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).EndInit();
     this.xtraTabControlEditor.ResumeLayout(false);
     this.xtraTabPageAdd.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).EndInit();
     this.xtraTabPageEdit.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(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);
 }
コード例 #39
0
 /// <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);
 }
コード例 #40
0
ファイル: FormChangeClass.cs プロジェクト: kimykunjun/test
 /// <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.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.label2 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.memoEdit1);
     this.panelControl1.Controls.Add(this.simpleButtonCancel);
     this.panelControl1.Controls.Add(this.simpleButtonOK);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.lookUpEdit1);
     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(322, 226);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(228, 186);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 26);
     this.simpleButtonCancel.TabIndex = 44;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(134, 186);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 26);
     this.simpleButtonOK.TabIndex = 43;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(14, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 23);
     this.label1.TabIndex = 1;
     this.label1.Text = "Class Code";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(90, 16);
     this.lookUpEdit1.Name = "lookUpEdit1";
     //
     // lookUpEdit1.Properties
     //
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Size = new System.Drawing.Size(220, 20);
     this.lookUpEdit1.TabIndex = 0;
     //
     // memoEdit1
     //
     this.memoEdit1.EditValue = "";
     this.memoEdit1.Location = new System.Drawing.Point(92, 48);
     this.memoEdit1.Name = "memoEdit1";
     //
     // memoEdit1.Properties
     //
     this.memoEdit1.Properties.MaxLength = 250;
     this.memoEdit1.Size = new System.Drawing.Size(216, 124);
     this.memoEdit1.TabIndex = 45;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(14, 52);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(66, 23);
     this.label2.TabIndex = 46;
     this.label2.Text = "Remark";
     //
     // FormChangeClass
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(322, 226);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormChangeClass";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Please select a new class code";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.lkpEdtEmployeeID = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtBranchCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lkpEdtPackageID = new DevExpress.XtraEditors.LookUpEdit();
     this.dtEdtStartTime = new DevExpress.XtraEditors.DateEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.dtEditDate = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(188, 156);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 53;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(98, 156);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 52;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(8, 112);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(93, 23);
     this.label4.TabIndex = 60;
     this.label4.Text = "Personal Trainer";
     //
     // lkpEdtEmployeeID
     //
     this.lkpEdtEmployeeID.EditValue = "";
     this.lkpEdtEmployeeID.Location = new System.Drawing.Point(124, 114);
     this.lkpEdtEmployeeID.Name = "lkpEdtEmployeeID";
     //
     // lkpEdtEmployeeID.Properties
     //
     this.lkpEdtEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtEmployeeID.Size = new System.Drawing.Size(202, 20);
     this.lkpEdtEmployeeID.TabIndex = 59;
     this.lkpEdtEmployeeID.EditValueChanged += new System.EventHandler(this.lkpEdtEmployeeID_EditValueChanged);
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.EditValue = "";
     this.lkpEdtBranchCode.Location = new System.Drawing.Point(124, 34);
     this.lkpEdtBranchCode.Name = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtBranchCode.Size = new System.Drawing.Size(202, 20);
     this.lkpEdtBranchCode.TabIndex = 57;
     this.lkpEdtBranchCode.EditValueChanged += new System.EventHandler(this.lkpEdtBranchCode_EditValueChanged);
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 34);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 55;
     this.label2.Text = "Branch";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 60);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(72, 23);
     this.label1.TabIndex = 54;
     this.label1.Text = "Date";
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(8, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(72, 23);
     this.label5.TabIndex = 62;
     this.label5.Text = "Package ID";
     //
     // lkpEdtPackageID
     //
     this.lkpEdtPackageID.EditValue = "";
     this.lkpEdtPackageID.Location = new System.Drawing.Point(124, 8);
     this.lkpEdtPackageID.Name = "lkpEdtPackageID";
     //
     // lkpEdtPackageID.Properties
     //
     this.lkpEdtPackageID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtPackageID.Size = new System.Drawing.Size(202, 20);
     this.lkpEdtPackageID.TabIndex = 63;
     //
     // dtEdtStartTime
     //
     this.dtEdtStartTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtStartTime.Location = new System.Drawing.Point(124, 88);
     this.dtEdtStartTime.Name = "dtEdtStartTime";
     //
     // dtEdtStartTime.Properties
     //
     this.dtEdtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.dtEdtStartTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.EditFormat.FormatString = "T";
     this.dtEdtStartTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.Mask.EditMask = "T";
     this.dtEdtStartTime.Size = new System.Drawing.Size(202, 20);
     this.dtEdtStartTime.TabIndex = 65;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(8, 86);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(95, 23);
     this.label3.TabIndex = 64;
     this.label3.Text = "Session Time";
     //
     // dtEditDate
     //
     this.dtEditDate.EditValue = new System.DateTime(2005, 11, 23, 0, 0, 0, 0);
     this.dtEditDate.Location = new System.Drawing.Point(124, 60);
     this.dtEditDate.Name = "dtEditDate";
     //
     // dtEditDate.Properties
     //
     this.dtEditDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEditDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Size = new System.Drawing.Size(202, 20);
     this.dtEditDate.TabIndex = 66;
     this.dtEditDate.EditValueChanged += new System.EventHandler(this.dtEditDate_EditValueChanged);
     //
     // FormUpdateServiceSessionPT
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(334, 192);
     this.Controls.Add(this.dtEditDate);
     this.Controls.Add(this.dtEdtStartTime);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lkpEdtPackageID);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lkpEdtEmployeeID);
     this.Controls.Add(this.lkpEdtBranchCode);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormUpdateServiceSessionPT";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Update PT Package";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #42
0
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.lkpEdtLeaveType = new DevExpress.XtraEditors.LookUpEdit();
     this.dtEdtLeaveStartDate = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtLeaveEndDate = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtNewExpiry = new DevExpress.XtraEditors.DateEdit();
     this.lblnewPackageExt = new System.Windows.Forms.Label();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.txtOther = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLeaveType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 130);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Leave Type";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 32);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Leave Start Date";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 64);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(100, 23);
     this.label3.TabIndex = 2;
     this.label3.Text = "Leave End Date";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(10, 96);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(100, 23);
     this.label4.TabIndex = 3;
     this.label4.Text = "Old Expiry Date";
     this.label4.Visible = false;
     //
     // lkpEdtLeaveType
     //
     this.lkpEdtLeaveType.EditValue = "";
     this.lkpEdtLeaveType.Location = new System.Drawing.Point(116, 132);
     this.lkpEdtLeaveType.Name = "lkpEdtLeaveType";
     this.lkpEdtLeaveType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtLeaveType.Size = new System.Drawing.Size(216, 20);
     this.lkpEdtLeaveType.TabIndex = 0;
     this.lkpEdtLeaveType.EditValueChanged += new System.EventHandler(this.lkpEdtLeaveType_EditValueChanged);
     //
     // dtEdtLeaveStartDate
     //
     this.dtEdtLeaveStartDate.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtLeaveStartDate.Location = new System.Drawing.Point(118, 32);
     this.dtEdtLeaveStartDate.Name = "dtEdtLeaveStartDate";
     this.dtEdtLeaveStartDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEdtLeaveStartDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveStartDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveStartDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveStartDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveStartDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEdtLeaveStartDate.Size = new System.Drawing.Size(172, 20);
     this.dtEdtLeaveStartDate.TabIndex = 1;
     //
     // dtEdtLeaveEndDate
     //
     this.dtEdtLeaveEndDate.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtLeaveEndDate.Location = new System.Drawing.Point(118, 64);
     this.dtEdtLeaveEndDate.Name = "dtEdtLeaveEndDate";
     this.dtEdtLeaveEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEdtLeaveEndDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveEndDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveEndDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveEndDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveEndDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEdtLeaveEndDate.Size = new System.Drawing.Size(172, 20);
     this.dtEdtLeaveEndDate.TabIndex = 2;
     //
     // dtEdtNewExpiry
     //
     this.dtEdtNewExpiry.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtNewExpiry.Enabled = false;
     this.dtEdtNewExpiry.Location = new System.Drawing.Point(118, 96);
     this.dtEdtNewExpiry.Name = "dtEdtNewExpiry";
     this.dtEdtNewExpiry.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEdtNewExpiry.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtNewExpiry.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtNewExpiry.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtNewExpiry.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtNewExpiry.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEdtNewExpiry.Size = new System.Drawing.Size(172, 20);
     this.dtEdtNewExpiry.TabIndex = 3;
     this.dtEdtNewExpiry.Visible = false;
     //
     // lblnewPackageExt
     //
     this.lblnewPackageExt.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblnewPackageExt.Location = new System.Drawing.Point(10, 4);
     this.lblnewPackageExt.Name = "lblnewPackageExt";
     this.lblnewPackageExt.Size = new System.Drawing.Size(384, 20);
     this.lblnewPackageExt.TabIndex = 49;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(214, 232);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 6;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(134, 232);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 5;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // txtOther
     //
     this.txtOther.Enabled = false;
     this.txtOther.Location = new System.Drawing.Point(118, 164);
     this.txtOther.Multiline = true;
     this.txtOther.Name = "txtOther";
     this.txtOther.Size = new System.Drawing.Size(212, 56);
     this.txtOther.TabIndex = 50;
     //
     // FormNewMemberPackageExtension
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(398, 272);
     this.Controls.Add(this.txtOther);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.lblnewPackageExt);
     this.Controls.Add(this.dtEdtNewExpiry);
     this.Controls.Add(this.dtEdtLeaveEndDate);
     this.Controls.Add(this.dtEdtLeaveStartDate);
     this.Controls.Add(this.lkpEdtLeaveType);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormNewMemberCreditPackageExtension";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Member Credit Package Extension";
     this.Load += new System.EventHandler(this.FormNewMemberCreditPackageExtension_Load);
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLeaveType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #43
0
ファイル: frmIntroduceFriend.cs プロジェクト: kimykunjun/test
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label6 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.sbtnIntroduce = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtLoyalPoint = new DevExpress.XtraEditors.LookUpEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.lkFreebie = new DevExpress.XtraEditors.LookUpEdit();
     this.lkTreatment = new DevExpress.XtraEditors.LookUpEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.ucMemberID1 = new ACMS.ucMemberID();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLoyalPoint.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkFreebie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkTreatment.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(22, 22);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(72, 16);
     this.label6.TabIndex = 17;
     this.label6.Text = "Introducer ID";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(22, 50);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(72, 20);
     this.label1.TabIndex = 19;
     this.label1.Text = "Loyalty Point";
     //
     // sbtnIntroduce
     //
     this.sbtnIntroduce.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnIntroduce.Location = new System.Drawing.Point(54, 152);
     this.sbtnIntroduce.Name = "sbtnIntroduce";
     this.sbtnIntroduce.Size = new System.Drawing.Size(75, 23);
     this.sbtnIntroduce.TabIndex = 3;
     this.sbtnIntroduce.Text = "Introduce";
     this.sbtnIntroduce.Click += new System.EventHandler(this.sbtnIntroduce_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(164, 152);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.Size = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex = 4;
     this.sbtnCancel.Text = "Cancel";
     //
     // lkpEdtLoyalPoint
     //
     this.lkpEdtLoyalPoint.Location = new System.Drawing.Point(106, 48);
     this.lkpEdtLoyalPoint.Name = "lkpEdtLoyalPoint";
     this.lkpEdtLoyalPoint.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtLoyalPoint.Size = new System.Drawing.Size(180, 20);
     this.lkpEdtLoyalPoint.TabIndex = 1;
     this.lkpEdtLoyalPoint.EditValueChanged += new System.EventHandler(this.lkpEdtLoyalPoint_EditValueChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(22, 80);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 20);
     this.label2.TabIndex = 20;
     this.label2.Text = "Freebie";
     //
     // lkFreebie
     //
     this.lkFreebie.Location = new System.Drawing.Point(106, 80);
     this.lkFreebie.Name = "lkFreebie";
     this.lkFreebie.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkFreebie.Size = new System.Drawing.Size(180, 20);
     this.lkFreebie.TabIndex = 21;
     this.lkFreebie.EditValueChanged += new System.EventHandler(this.lkFreebie_EditValueChanged);
     //
     // lkTreatment
     //
     this.lkTreatment.Location = new System.Drawing.Point(106, 115);
     this.lkTreatment.Name = "lkTreatment";
     this.lkTreatment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkTreatment.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name2", "Name2", 20, DevExpress.Utils.FormatType.None, "BM004(58)", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.lkTreatment.Size = new System.Drawing.Size(180, 20);
     this.lkTreatment.TabIndex = 23;
     this.lkTreatment.EditValueChanged += new System.EventHandler(this.lkTreatment_EditValueChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(22, 115);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(72, 20);
     this.label3.TabIndex = 22;
     this.label3.Text = "Package";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location = new System.Drawing.Point(106, 20);
     this.ucMemberID1.Name = "ucMemberID1";
     this.ucMemberID1.Size = new System.Drawing.Size(184, 20);
     this.ucMemberID1.StrBranchCode = null;
     this.ucMemberID1.TabIndex = 0;
     //
     // frmIntroduceFriend
     //
     this.AcceptButton = this.sbtnIntroduce;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(298, 187);
     this.Controls.Add(this.lkTreatment);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lkFreebie);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.ucMemberID1);
     this.Controls.Add(this.lkpEdtLoyalPoint);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.sbtnIntroduce);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label6);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmIntroduceFriend";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Introduce Friend";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLoyalPoint.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkFreebie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkTreatment.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.lueDof2 = new DevExpress.XtraEditors.LookUpEdit();
     this.LSMSDof = new DevExpress.Data.Linq.LinqServerModeSource();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lueDof1 = new DevExpress.XtraEditors.LookUpEdit();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry70BindingSource = new System.Windows.Forms.BindingSource();
     this.vQry70TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry70TableAdapter();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfdatefrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfdateto = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmonymonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colrsmmonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coleshtrakmonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdafat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSarfTypeedad = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colresponsiblesarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colresponsiblesarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colResponsiblesarfName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYasref_Current = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDof)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry70BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.lueDof2);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.lueDof1);
     this.panelControl1.Controls.Add(this.btnSearch);
     this.panelControl1.Controls.Add(this.btnPrintExport);
     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(969, 47);
     this.panelControl1.TabIndex = 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(721, 12);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(16, 13);
     this.labelControl2.TabIndex = 10;
     this.labelControl2.Text = "في";
     //
     // lueDof2
     //
     this.lueDof2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueDof2.Location = new System.Drawing.Point(584, 9);
     this.lueDof2.Name = "lueDof2";
     this.lueDof2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDof2.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueDof2.Properties.DataSource = this.LSMSDof;
     this.lueDof2.Properties.DisplayMember = "DofatSarf";
     this.lueDof2.Properties.NullText = "";
     this.lueDof2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDof2.Properties.ValueMember = "DofatSarfId";
     this.lueDof2.Size = new System.Drawing.Size(125, 20);
     this.lueDof2.TabIndex = 1;
     //
     // LSMSDof
     //
     this.LSMSDof.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDof.KeyExpression = "[DofatSarfId]";
     //
     // 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(880, 12);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(77, 13);
     this.labelControl1.TabIndex = 10;
     this.labelControl1.Text = "البحث عن الدفعة";
     //
     // lueDof1
     //
     this.lueDof1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueDof1.Location = new System.Drawing.Point(743, 9);
     this.lueDof1.Name = "lueDof1";
     this.lueDof1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDof1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueDof1.Properties.DataSource = this.LSMSDof;
     this.lueDof1.Properties.DisplayMember = "DofatSarf";
     this.lueDof1.Properties.NullText = "";
     this.lueDof1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDof1.Properties.ValueMember = "DofatSarfId";
     this.lueDof1.Size = new System.Drawing.Size(125, 20);
     this.lueDof1.TabIndex = 0;
     //
     // btnSearch
     //
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.Location = new System.Drawing.Point(444, 6);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(134, 24);
     this.btnSearch.TabIndex = 0;
     this.btnSearch.Text = "بحث";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // btnPrintExport
     //
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry70BindingSource
     //
     this.vQry70BindingSource.DataMember = "vQry70";
     this.vQry70BindingSource.DataSource = this.dsQueries;
     //
     // vQry70TableAdapter
     //
     this.vQry70TableAdapter.ClearBeforeFill = true;
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.DataSource = this.vQry70BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEdituserin});
     this.gridControlData.Size = new System.Drawing.Size(969, 406);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatId,
     this.colsarfdatefrom,
     this.colsarfdateto,
     this.colmonymonth,
     this.colrsmmonth,
     this.coleshtrakmonth,
     this.colestktaa,
     this.colsarf,
     this.colEdafat,
     this.colMMashatName,
     this.colsarfnumber,
     this.colDofatSarf,
     this.colSarfTypeedad,
     this.colPersonId,
     this.colpersonName,
     this.colSyndicate,
     this.colSubCommitte,
     this.coldatein,
     this.coluserin,
     this.colresponsiblesarf,
     this.colresponsiblesarfId,
     this.colResponsiblesarfName,
     this.colYasref_Current});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود العضو";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 2;
     //
     // colsarfdatefrom
     //
     this.colsarfdatefrom.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfdatefrom.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdatefrom.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfdatefrom.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdatefrom.Caption = "من";
     this.colsarfdatefrom.FieldName = "sarfdatefrom";
     this.colsarfdatefrom.Name = "colsarfdatefrom";
     this.colsarfdatefrom.Visible = true;
     this.colsarfdatefrom.VisibleIndex = 6;
     //
     // colsarfdateto
     //
     this.colsarfdateto.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfdateto.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdateto.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfdateto.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdateto.Caption = "الي";
     this.colsarfdateto.FieldName = "sarfdateto";
     this.colsarfdateto.Name = "colsarfdateto";
     this.colsarfdateto.Visible = true;
     this.colsarfdateto.VisibleIndex = 7;
     //
     // colmonymonth
     //
     this.colmonymonth.AppearanceCell.Options.UseTextOptions = true;
     this.colmonymonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmonymonth.AppearanceHeader.Options.UseTextOptions = true;
     this.colmonymonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmonymonth.Caption = "المبلغ";
     this.colmonymonth.FieldName = "monymonth";
     this.colmonymonth.Name = "colmonymonth";
     this.colmonymonth.Visible = true;
     this.colmonymonth.VisibleIndex = 8;
     //
     // colrsmmonth
     //
     this.colrsmmonth.AppearanceCell.Options.UseTextOptions = true;
     this.colrsmmonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colrsmmonth.AppearanceHeader.Options.UseTextOptions = true;
     this.colrsmmonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colrsmmonth.Caption = "رسم";
     this.colrsmmonth.FieldName = "rsmmonth";
     this.colrsmmonth.Name = "colrsmmonth";
     this.colrsmmonth.Visible = true;
     this.colrsmmonth.VisibleIndex = 9;
     //
     // coleshtrakmonth
     //
     this.coleshtrakmonth.AppearanceCell.Options.UseTextOptions = true;
     this.coleshtrakmonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coleshtrakmonth.AppearanceHeader.Options.UseTextOptions = true;
     this.coleshtrakmonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coleshtrakmonth.Caption = "اشتراك";
     this.coleshtrakmonth.FieldName = "eshtrakmonth";
     this.coleshtrakmonth.Name = "coleshtrakmonth";
     this.coleshtrakmonth.Visible = true;
     this.coleshtrakmonth.VisibleIndex = 10;
     //
     // colestktaa
     //
     this.colestktaa.AppearanceCell.Options.UseTextOptions = true;
     this.colestktaa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.AppearanceHeader.Options.UseTextOptions = true;
     this.colestktaa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.Caption = "استقطاع";
     this.colestktaa.FieldName = "estktaa";
     this.colestktaa.Name = "colestktaa";
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 11;
     //
     // colsarf
     //
     this.colsarf.AppearanceCell.Options.UseTextOptions = true;
     this.colsarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarf.Caption = "يصرف";
     this.colsarf.FieldName = "sarf";
     this.colsarf.Name = "colsarf";
     this.colsarf.Visible = true;
     this.colsarf.VisibleIndex = 12;
     //
     // colEdafat
     //
     this.colEdafat.AppearanceCell.Options.UseTextOptions = true;
     this.colEdafat.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdafat.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdafat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdafat.Caption = "اضافات";
     this.colEdafat.FieldName = "Edafat";
     this.colEdafat.Name = "colEdafat";
     this.colEdafat.Visible = true;
     this.colEdafat.VisibleIndex = 13;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "اسم العضو";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 3;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم الصرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 14;
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "الدفعه";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 4;
     //
     // colSarfTypeedad
     //
     this.colSarfTypeedad.AppearanceCell.Options.UseTextOptions = true;
     this.colSarfTypeedad.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSarfTypeedad.AppearanceHeader.Options.UseTextOptions = true;
     this.colSarfTypeedad.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSarfTypeedad.Caption = "نوع الصرف";
     this.colSarfTypeedad.FieldName = "SarfTypeedad";
     this.colSarfTypeedad.Name = "colSarfTypeedad";
     this.colSarfTypeedad.Visible = true;
     this.colSarfTypeedad.VisibleIndex = 5;
     //
     // colPersonId
     //
     this.colPersonId.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.Caption = "كود الوريث";
     this.colPersonId.FieldName = "PersonId";
     this.colPersonId.Name = "colPersonId";
     this.colPersonId.Visible = true;
     this.colPersonId.VisibleIndex = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "اسم الوريث";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 15;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "اللجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 16;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "التاريخ";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditDMY;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 18;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 17;
     //
     // repositoryItemLookUpEdituserin
     //
     this.repositoryItemLookUpEdituserin.AutoHeight = false;
     this.repositoryItemLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdituserin.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserID", "User ID", 59, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RealName", "Real Name", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemLookUpEdituserin.Name = "repositoryItemLookUpEdituserin";
     this.repositoryItemLookUpEdituserin.NullText = "";
     this.repositoryItemLookUpEdituserin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEdituserin.ValueMember = "UserID";
     //
     // colresponsiblesarf
     //
     this.colresponsiblesarf.AppearanceCell.Options.UseTextOptions = true;
     this.colresponsiblesarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colresponsiblesarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarf.Caption = "مسئول";
     this.colresponsiblesarf.FieldName = "responsiblesarf";
     this.colresponsiblesarf.Name = "colresponsiblesarf";
     this.colresponsiblesarf.Visible = true;
     this.colresponsiblesarf.VisibleIndex = 19;
     //
     // colresponsiblesarfId
     //
     this.colresponsiblesarfId.AppearanceCell.Options.UseTextOptions = true;
     this.colresponsiblesarfId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarfId.AppearanceHeader.Options.UseTextOptions = true;
     this.colresponsiblesarfId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarfId.Caption = "كود المسئول";
     this.colresponsiblesarfId.FieldName = "responsiblesarfId";
     this.colresponsiblesarfId.Name = "colresponsiblesarfId";
     this.colresponsiblesarfId.Visible = true;
     this.colresponsiblesarfId.VisibleIndex = 20;
     //
     // colResponsiblesarfName
     //
     this.colResponsiblesarfName.AppearanceCell.Options.UseTextOptions = true;
     this.colResponsiblesarfName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colResponsiblesarfName.AppearanceHeader.Options.UseTextOptions = true;
     this.colResponsiblesarfName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colResponsiblesarfName.Caption = "اسم المسئول";
     this.colResponsiblesarfName.FieldName = "ResponsiblesarfName";
     this.colResponsiblesarfName.Name = "colResponsiblesarfName";
     this.colResponsiblesarfName.Visible = true;
     this.colResponsiblesarfName.VisibleIndex = 21;
     //
     // colYasref_Current
     //
     this.colYasref_Current.AppearanceCell.Options.UseTextOptions = true;
     this.colYasref_Current.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYasref_Current.AppearanceHeader.Options.UseTextOptions = true;
     this.colYasref_Current.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYasref_Current.Caption = "يصرف حاليا";
     this.colYasref_Current.FieldName = "Yasref_Current";
     this.colYasref_Current.Name = "colYasref_Current";
     this.colYasref_Current.Visible = true;
     this.colYasref_Current.VisibleIndex = 22;
     //
     // repositoryItemMemoExEdit1
     //
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     //
     // Qry70Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(969, 462);
     this.Controls.Add(this.gridControlData);
     this.Controls.Add(this.panelControl1);
     this.Name = "Qry70Frm";
     this.Text = "مقارنة صرفيتين ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDof)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry70BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #45
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDescription = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlPayType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlVatType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlbaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonthPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDailyPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlbaht1 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.labelControlItemName = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.memoEditDescription = new DevExpress.XtraEditors.MemoEdit();
     this.textEditDailyPrice = new DevExpress.XtraEditors.TextEdit();
     this.textEditMonthPrice = new DevExpress.XtraEditors.TextEdit();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.titleTabAddition = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditDailyPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMonthPrice.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl9
     //
     this.labelControl9.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl9.Location = new System.Drawing.Point(379, 133);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(6, 13);
     this.labelControl9.TabIndex = 411;
     this.labelControl9.Text = "*";
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(115, 272);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 412;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl6.Location = new System.Drawing.Point(379, 29);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(6, 13);
     this.labelControl6.TabIndex = 411;
     this.labelControl6.Text = "*";
     //
     // labelControlDescription
     //
     this.labelControlDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlDescription.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDescription.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDescription.Location = new System.Drawing.Point(60, 159);
     this.labelControlDescription.Name = "labelControlDescription";
     this.labelControlDescription.Size = new System.Drawing.Size(105, 20);
     this.labelControlDescription.TabIndex = 333;
     this.labelControlDescription.Text = "รายละเอียดเพิ่มเติม :";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl8.Location = new System.Drawing.Point(379, 55);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(6, 13);
     this.labelControl8.TabIndex = 411;
     this.labelControl8.Text = "*";
     //
     // labelControlPayType
     //
     this.labelControlPayType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlPayType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPayType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPayType.Location = new System.Drawing.Point(60, 55);
     this.labelControlPayType.Name = "labelControlPayType";
     this.labelControlPayType.Size = new System.Drawing.Size(105, 20);
     this.labelControlPayType.TabIndex = 331;
     this.labelControlPayType.Text = "รูปแบบค่าใช้จ่าย :";
     //
     // labelControlVatType
     //
     this.labelControlVatType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlVatType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlVatType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlVatType.Location = new System.Drawing.Point(60, 133);
     this.labelControlVatType.Name = "labelControlVatType";
     this.labelControlVatType.Size = new System.Drawing.Size(105, 20);
     this.labelControlVatType.TabIndex = 334;
     this.labelControlVatType.Text = "การคิดภาษี :";
     //
     // labelControlbaht2
     //
     this.labelControlbaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlbaht2.Location = new System.Drawing.Point(400, 107);
     this.labelControlbaht2.Name = "labelControlbaht2";
     this.labelControlbaht2.Size = new System.Drawing.Size(41, 20);
     this.labelControlbaht2.TabIndex = 408;
     this.labelControlbaht2.Text = "บาท";
     //
     // labelControlMonthPrice
     //
     this.labelControlMonthPrice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlMonthPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMonthPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonthPrice.Location = new System.Drawing.Point(60, 81);
     this.labelControlMonthPrice.Name = "labelControlMonthPrice";
     this.labelControlMonthPrice.Size = new System.Drawing.Size(105, 20);
     this.labelControlMonthPrice.TabIndex = 330;
     this.labelControlMonthPrice.Text = "ราคารายเดือน :";
     //
     // labelControlDailyPrice
     //
     this.labelControlDailyPrice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlDailyPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDailyPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDailyPrice.Location = new System.Drawing.Point(60, 107);
     this.labelControlDailyPrice.Name = "labelControlDailyPrice";
     this.labelControlDailyPrice.Size = new System.Drawing.Size(105, 20);
     this.labelControlDailyPrice.TabIndex = 335;
     this.labelControlDailyPrice.Text = "ราคารายวัน :";
     //
     // labelControlbaht1
     //
     this.labelControlbaht1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlbaht1.Location = new System.Drawing.Point(400, 81);
     this.labelControlbaht1.Name = "labelControlbaht1";
     this.labelControlbaht1.Size = new System.Drawing.Size(41, 20);
     this.labelControlbaht1.TabIndex = 408;
     this.labelControlbaht1.Text = "บาท";
     //
     // lookUpEditPayType
     //
     this.lookUpEditPayType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lookUpEditPayType.Location = new System.Drawing.Point(3, 55);
     this.lookUpEditPayType.Name = "lookUpEditPayType";
     this.lookUpEditPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("paytype_label", " ")});
     this.lookUpEditPayType.Size = new System.Drawing.Size(370, 20);
     this.lookUpEditPayType.TabIndex = 340;
     //
     // lookUpEditVatType
     //
     this.lookUpEditVatType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lookUpEditVatType.Location = new System.Drawing.Point(3, 134);
     this.lookUpEditVatType.Name = "lookUpEditVatType";
     this.lookUpEditVatType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditVatType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vattype_label", " ")});
     this.lookUpEditVatType.Size = new System.Drawing.Size(370, 20);
     this.lookUpEditVatType.TabIndex = 340;
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.labelControlRequired);
     this.panelControl2.Controls.Add(this.labelControlDescription);
     this.panelControl2.Controls.Add(this.labelControlVatType);
     this.panelControl2.Controls.Add(this.labelControlDailyPrice);
     this.panelControl2.Controls.Add(this.labelControlMonthPrice);
     this.panelControl2.Controls.Add(this.labelControlPayType);
     this.panelControl2.Controls.Add(this.labelControlItemName);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelControl2.Location = new System.Drawing.Point(0, 23);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(168, 346);
     this.panelControl2.TabIndex = 339;
     //
     // labelControlItemName
     //
     this.labelControlItemName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlItemName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlItemName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlItemName.Location = new System.Drawing.Point(60, 29);
     this.labelControlItemName.Name = "labelControlItemName";
     this.labelControlItemName.Size = new System.Drawing.Size(105, 20);
     this.labelControlItemName.TabIndex = 332;
     this.labelControlItemName.Text = "ชื่อรายการค่าใช้จ่าย :";
     //
     // textEditItemName
     //
     this.textEditItemName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditItemName.Location = new System.Drawing.Point(3, 29);
     this.textEditItemName.Name = "textEditItemName";
     this.textEditItemName.Properties.Mask.BeepOnError = true;
     this.textEditItemName.Properties.Mask.EditMask = "([A-Z|a-z|0-9|ก-๙]| )*";
     this.textEditItemName.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemName.Properties.MaxLength = 50;
     this.textEditItemName.Size = new System.Drawing.Size(370, 20);
     this.textEditItemName.TabIndex = 337;
     //
     // bttCancel
     //
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(303, 272);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 327;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl8);
     this.panelControl1.Controls.Add(this.labelControl6);
     this.panelControl1.Controls.Add(this.labelControlbaht2);
     this.panelControl1.Controls.Add(this.labelControlbaht1);
     this.panelControl1.Controls.Add(this.lookUpEditPayType);
     this.panelControl1.Controls.Add(this.lookUpEditVatType);
     this.panelControl1.Controls.Add(this.memoEditDescription);
     this.panelControl1.Controls.Add(this.textEditDailyPrice);
     this.panelControl1.Controls.Add(this.textEditMonthPrice);
     this.panelControl1.Controls.Add(this.textEditItemName);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelControl1.Location = new System.Drawing.Point(169, 23);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(537, 346);
     this.panelControl1.TabIndex = 338;
     //
     // memoEditDescription
     //
     this.memoEditDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.memoEditDescription.EditValue = "";
     this.memoEditDescription.Location = new System.Drawing.Point(3, 160);
     this.memoEditDescription.Name = "memoEditDescription";
     this.memoEditDescription.Properties.MaxLength = 500;
     this.memoEditDescription.Size = new System.Drawing.Size(370, 96);
     this.memoEditDescription.TabIndex = 339;
     //
     // textEditDailyPrice
     //
     this.textEditDailyPrice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditDailyPrice.EditValue = "0.00";
     this.textEditDailyPrice.Location = new System.Drawing.Point(3, 107);
     this.textEditDailyPrice.Name = "textEditDailyPrice";
     this.textEditDailyPrice.Properties.Mask.BeepOnError = true;
     this.textEditDailyPrice.Properties.Mask.EditMask = "n2";
     this.textEditDailyPrice.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditDailyPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditDailyPrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditDailyPrice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditDailyPrice.Size = new System.Drawing.Size(370, 20);
     this.textEditDailyPrice.TabIndex = 338;
     //
     // textEditMonthPrice
     //
     this.textEditMonthPrice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditMonthPrice.EditValue = "0.00";
     this.textEditMonthPrice.Location = new System.Drawing.Point(3, 81);
     this.textEditMonthPrice.Name = "textEditMonthPrice";
     this.textEditMonthPrice.Properties.Mask.BeepOnError = true;
     this.textEditMonthPrice.Properties.Mask.EditMask = "n2";
     this.textEditMonthPrice.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditMonthPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditMonthPrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditMonthPrice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditMonthPrice.Size = new System.Drawing.Size(370, 20);
     this.textEditMonthPrice.TabIndex = 335;
     //
     // bttSave
     //
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(222, 272);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 328;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // titleTabAddition
     //
     this.titleTabAddition.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.titleTabAddition.Appearance.Options.UseFont = true;
     this.titleTabAddition.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.titleTabAddition.Dock = System.Windows.Forms.DockStyle.Top;
     this.titleTabAddition.Location = new System.Drawing.Point(0, 0);
     this.titleTabAddition.Name = "titleTabAddition";
     this.titleTabAddition.Size = new System.Drawing.Size(706, 23);
     this.titleTabAddition.TabIndex = 337;
     this.titleTabAddition.Text = "เพิ่มข้อมูลค่าใช้จ่ายเพิ่มเติม";
     //
     // AddtionalItem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.titleTabAddition);
     this.Name = "AddtionalItem";
     this.Size = new System.Drawing.Size(706, 369);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditDailyPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMonthPrice.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #46
0
ファイル: FormBillDiscount.cs プロジェクト: kimykunjun/test
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.Label4 = new System.Windows.Forms.Label();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.EditValue = "";
     this.lookUpEdit1.Location = new System.Drawing.Point(114, 16);
     this.lookUpEdit1.Name = "lookUpEdit1";
     //
     // lookUpEdit1.Properties
     //
     this.lookUpEdit1.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lookUpEdit1.Properties.Appearance.Options.UseFont = true;
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Size = new System.Drawing.Size(302, 23);
     this.lookUpEdit1.TabIndex = 40;
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font = new System.Drawing.Font("Tahoma", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label4.Location = new System.Drawing.Point(10, 14);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(93, 26);
     this.Label4.TabIndex = 39;
     this.Label4.Text = "Discount";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(240, 91);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 42;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(158, 90);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 41;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(14, 56);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(82, 26);
     this.label1.TabIndex = 43;
     this.label1.Text = "Deposit";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.EditValue = "";
     this.lookUpEdit2.Location = new System.Drawing.Point(112, 54);
     this.lookUpEdit2.Name = "lookUpEdit2";
     //
     // lookUpEdit2.Properties
     //
     this.lookUpEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lookUpEdit2.Properties.Appearance.Options.UseFont = true;
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Size = new System.Drawing.Size(302, 23);
     this.lookUpEdit2.TabIndex = 44;
     //
     // FormBillDiscount
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(428, 120);
     this.Controls.Add(this.lookUpEdit2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.lookUpEdit1);
     this.Controls.Add(this.Label4);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormBillDiscount";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Bill Discount";
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #47
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.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccTypesFrm));
     this.TreeListAcc = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.imageCollectionNodes = new DevExpress.Utils.ImageCollection(this.components);
     this.GCCodes = new DevExpress.XtraEditors.GroupControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.LlHyCode = new DevExpress.XtraEditors.LabelControl();
     this.LblAccCode = new DevExpress.XtraEditors.LabelControl();
     this.LblParentName = new DevExpress.XtraEditors.LabelControl();
     this.LblTreeID = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.GCDetails = new DevExpress.XtraEditors.GroupControl();
     this.LUEAccEndCount = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEAccType = new DevExpress.XtraEditors.LookUpEdit();
     this.TxtBudge = new DevExpress.XtraEditors.TextEdit();
     this.TxtAccName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.BtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.BtnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.BtnNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.TreeListAcc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GCCodes)).BeginInit();
     this.GCCodes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GCDetails)).BeginInit();
     this.GCDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccEndCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBudge.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAccName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // TreeListAcc
     //
     this.TreeListAcc.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.TreeListAcc.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn6,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn7});
     this.TreeListAcc.Location = new System.Drawing.Point(10, 12);
     this.TreeListAcc.Name = "TreeListAcc";
     this.TreeListAcc.BeginUnboundLoad();
     this.TreeListAcc.AppendNode(new object[] {
     "شجرة الحسابات",
     null,
     null,
     null,
     null,
     null,
     null}, -1, 0, 1, -1);
     this.TreeListAcc.EndUnboundLoad();
     this.TreeListAcc.OptionsBehavior.Editable = false;
     this.TreeListAcc.OptionsBehavior.PopulateServiceColumns = true;
     this.TreeListAcc.OptionsLayout.AddNewColumns = false;
     this.TreeListAcc.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.TreeListAcc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1});
     this.TreeListAcc.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TreeListAcc.SelectImageList = this.imageCollectionNodes;
     this.TreeListAcc.Size = new System.Drawing.Size(840, 300);
     this.TreeListAcc.TabIndex = 0;
     this.TreeListAcc.AfterExpand += new DevExpress.XtraTreeList.NodeEventHandler(this.TreeListAcc_AfterExpand);
     this.TreeListAcc.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.TreeListAcc_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "-   الحســــابات   -";
     this.treeListColumn1.FieldName = "اسم الحساب";
     this.treeListColumn1.MinWidth = 91;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width = 91;
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "كود الدليل";
     this.treeListColumn6.FieldName = "AccountTreeId";
     this.treeListColumn6.Name = "treeListColumn6";
     this.treeListColumn6.Visible = true;
     this.treeListColumn6.VisibleIndex = 1;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "اسم الحساب";
     this.treeListColumn2.ColumnEdit = this.repositoryItemButtonEdit1;
     this.treeListColumn2.FieldName = "AccountDes";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 2;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "حفظ", 30, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemButtonEdit1.MaxLength = 150;
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "طبيعة الحساب";
     this.treeListColumn3.FieldName = "AccNatueName";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 3;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "مبلغ الموازنه";
     this.treeListColumn4.FieldName = "AccountBudget";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 4;
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "كود الحساب الختامي";
     this.treeListColumn5.FieldName = "AsKhtamiaccName";
     this.treeListColumn5.Name = "treeListColumn5";
     this.treeListColumn5.Visible = true;
     this.treeListColumn5.VisibleIndex = 5;
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "AccountId";
     this.treeListColumn7.FieldName = "AccountId";
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.Visible = true;
     this.treeListColumn7.VisibleIndex = 6;
     //
     // imageCollectionNodes
     //
     this.imageCollectionNodes.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollectionNodes.ImageStream")));
     this.imageCollectionNodes.Images.SetKeyName(0, "NodeItems.jpg");
     this.imageCollectionNodes.Images.SetKeyName(1, "NodeSelected.png");
     this.imageCollectionNodes.Images.SetKeyName(2, "NodeNotSelected.png");
     //
     // GCCodes
     //
     this.GCCodes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.GCCodes.Controls.Add(this.labelControl15);
     this.GCCodes.Controls.Add(this.LlHyCode);
     this.GCCodes.Controls.Add(this.LblAccCode);
     this.GCCodes.Controls.Add(this.LblParentName);
     this.GCCodes.Controls.Add(this.LblTreeID);
     this.GCCodes.Controls.Add(this.labelControl1);
     this.GCCodes.Location = new System.Drawing.Point(12, 318);
     this.GCCodes.Name = "GCCodes";
     this.GCCodes.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GCCodes.Size = new System.Drawing.Size(293, 136);
     this.GCCodes.TabIndex = 1;
     this.GCCodes.Text = "اكواد";
     this.GCCodes.Visible = false;
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(175, 34);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(93, 13);
     this.labelControl15.TabIndex = 0;
     this.labelControl15.Text = "اسم الحساب الاب";
     //
     // LlHyCode
     //
     this.LlHyCode.Location = new System.Drawing.Point(85, 85);
     this.LlHyCode.Name = "LlHyCode";
     this.LlHyCode.Size = new System.Drawing.Size(128, 13);
     this.LlHyCode.TabIndex = 0;
     this.LlHyCode.Text = "كود الحساب في الدليل";
     //
     // LblAccCode
     //
     this.LblAccCode.Appearance.Options.UseTextOptions = true;
     this.LblAccCode.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.LblAccCode.Location = new System.Drawing.Point(31, 53);
     this.LblAccCode.Name = "LblAccCode";
     this.LblAccCode.Size = new System.Drawing.Size(25, 13);
     this.LblAccCode.TabIndex = 0;
     this.LblAccCode.Text = "None";
     //
     // LblParentName
     //
     this.LblParentName.Location = new System.Drawing.Point(31, 34);
     this.LblParentName.Name = "LblParentName";
     this.LblParentName.Size = new System.Drawing.Size(25, 13);
     this.LblParentName.TabIndex = 0;
     this.LblParentName.Text = "None";
     //
     // LblTreeID
     //
     this.LblTreeID.Appearance.Options.UseTextOptions = true;
     this.LblTreeID.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.LblTreeID.Location = new System.Drawing.Point(137, 104);
     this.LblTreeID.Name = "LblTreeID";
     this.LblTreeID.Size = new System.Drawing.Size(25, 13);
     this.LblTreeID.TabIndex = 0;
     this.LblTreeID.Text = "None";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(205, 53);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(63, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "كود الحساب";
     //
     // GCDetails
     //
     this.GCDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.GCDetails.Controls.Add(this.LUEAccEndCount);
     this.GCDetails.Controls.Add(this.LUEAccType);
     this.GCDetails.Controls.Add(this.TxtBudge);
     this.GCDetails.Controls.Add(this.TxtAccName);
     this.GCDetails.Controls.Add(this.labelControl10);
     this.GCDetails.Controls.Add(this.labelControl9);
     this.GCDetails.Controls.Add(this.labelControl8);
     this.GCDetails.Controls.Add(this.labelControl7);
     this.GCDetails.Location = new System.Drawing.Point(311, 318);
     this.GCDetails.Name = "GCDetails";
     this.GCDetails.Size = new System.Drawing.Size(319, 136);
     this.GCDetails.TabIndex = 1;
     this.GCDetails.Text = "تفاصيل الحساب";
     this.GCDetails.Visible = false;
     //
     // LUEAccEndCount
     //
     this.LUEAccEndCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUEAccEndCount.Location = new System.Drawing.Point(12, 105);
     this.LUEAccEndCount.Name = "LUEAccEndCount";
     this.LUEAccEndCount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEAccEndCount.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("KhtamiaccID", "KhtamiaccID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("KhtamiaccName", "اسماء الاكواد الختاميه")});
     this.LUEAccEndCount.Properties.NullText = "";
     this.LUEAccEndCount.Properties.NullValuePrompt = "اختار الحساب الختامي";
     this.LUEAccEndCount.Size = new System.Drawing.Size(187, 19);
     this.LUEAccEndCount.TabIndex = 4;
     //
     // LUEAccType
     //
     this.LUEAccType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUEAccType.Location = new System.Drawing.Point(12, 55);
     this.LUEAccType.Name = "LUEAccType";
     this.LUEAccType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEAccType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccNatueID", "AccNatueID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccNatueName", "انوع طبيعة الحسابات")});
     this.LUEAccType.Properties.NullText = "";
     this.LUEAccType.Properties.NullValuePrompt = "اختار طبيعة";
     this.LUEAccType.Size = new System.Drawing.Size(187, 19);
     this.LUEAccType.TabIndex = 2;
     //
     // TxtBudge
     //
     this.TxtBudge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TxtBudge.Location = new System.Drawing.Point(12, 80);
     this.TxtBudge.Name = "TxtBudge";
     this.TxtBudge.Properties.Mask.EditMask = "#####.00";
     this.TxtBudge.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtBudge.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.TxtBudge.Properties.MaxLength = 8;
     this.TxtBudge.Size = new System.Drawing.Size(187, 19);
     this.TxtBudge.TabIndex = 3;
     //
     // TxtAccName
     //
     this.TxtAccName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TxtAccName.Location = new System.Drawing.Point(12, 30);
     this.TxtAccName.Name = "TxtAccName";
     this.TxtAccName.Properties.MaxLength = 150;
     this.TxtAccName.Size = new System.Drawing.Size(187, 19);
     this.TxtAccName.TabIndex = 1;
     this.TxtAccName.EditValueChanged += new System.EventHandler(this.TxtAccName_EditValueChanged);
     //
     // 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(205, 108);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(102, 13);
     this.labelControl10.TabIndex = 0;
     this.labelControl10.Text = "كود الحساب الختام";
     //
     // 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(233, 83);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(74, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "مبلغ الموازنه";
     //
     // 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(224, 58);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(83, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "طبيعة الحساب";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Location = new System.Drawing.Point(239, 33);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(68, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "اسم الحساب";
     //
     // groupControl3
     //
     this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl3.Controls.Add(this.BtnCancel);
     this.groupControl3.Controls.Add(this.BtnDelete);
     this.groupControl3.Controls.Add(this.BtnSave);
     this.groupControl3.Controls.Add(this.BtnNew);
     this.groupControl3.Location = new System.Drawing.Point(636, 318);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(214, 136);
     this.groupControl3.TabIndex = 5;
     this.groupControl3.Text = "الاوامر";
     //
     // BtnCancel
     //
     this.BtnCancel.Location = new System.Drawing.Point(134, 33);
     this.BtnCancel.Name = "BtnCancel";
     this.BtnCancel.Size = new System.Drawing.Size(72, 81);
     this.BtnCancel.TabIndex = 8;
     this.BtnCancel.Text = "الغاء الامر";
     this.BtnCancel.Visible = false;
     this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
     //
     // BtnDelete
     //
     this.BtnDelete.Enabled = false;
     this.BtnDelete.Location = new System.Drawing.Point(8, 91);
     this.BtnDelete.Name = "BtnDelete";
     this.BtnDelete.Size = new System.Drawing.Size(120, 23);
     this.BtnDelete.TabIndex = 7;
     this.BtnDelete.Text = "حذف";
     this.BtnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
     //
     // BtnSave
     //
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(8, 62);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(120, 23);
     this.BtnSave.TabIndex = 6;
     this.BtnSave.Text = "حفظ";
     this.BtnSave.Visible = false;
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnNew
     //
     this.BtnNew.Location = new System.Drawing.Point(8, 33);
     this.BtnNew.Name = "BtnNew";
     this.BtnNew.Size = new System.Drawing.Size(120, 23);
     this.BtnNew.TabIndex = 5;
     this.BtnNew.Text = "جديد";
     this.BtnNew.Click += new System.EventHandler(this.BtnNew_Click);
     //
     // AccTypesFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(862, 462);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.GCDetails);
     this.Controls.Add(this.GCCodes);
     this.Controls.Add(this.TreeListAcc);
     this.MinimumSize = new System.Drawing.Size(870, 496);
     this.Name = "AccTypesFrm";
     this.Text = "الحسابات";
     this.Load += new System.EventHandler(this.AccTypesFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TreeListAcc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GCCodes)).EndInit();
     this.GCCodes.ResumeLayout(false);
     this.GCCodes.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GCDetails)).EndInit();
     this.GCDetails.ResumeLayout(false);
     this.GCDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccEndCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBudge.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAccName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #48
0
ファイル: FormNewRedemption.cs プロジェクト: kimykunjun/test
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.lblPackageBuyable = new System.Windows.Forms.Label();
     this.minusBtn = new System.Windows.Forms.Button();
     this.qtyTxtBox = new System.Windows.Forms.TextBox();
     this.plusBtn = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(173, 77);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 48;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(69, 77);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 47;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.EditValue = "";
     this.lookUpEdit1.Location = new System.Drawing.Point(80, 8);
     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.Size = new System.Drawing.Size(208, 20);
     this.lookUpEdit1.TabIndex = 49;
     this.lookUpEdit1.EditValueChanged += new System.EventHandler(this.lookUpEdit1_EditValueChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(0, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(80, 23);
     this.label1.TabIndex = 50;
     this.label1.Text = "Item Code";
     //
     // lblPackageBuyable
     //
     this.lblPackageBuyable.AutoSize = true;
     this.lblPackageBuyable.Location = new System.Drawing.Point(0, 40);
     this.lblPackageBuyable.Name = "lblPackageBuyable";
     this.lblPackageBuyable.Size = new System.Drawing.Size(113, 13);
     this.lblPackageBuyable.TabIndex = 58;
     this.lblPackageBuyable.Text = "Package Redeemable";
     //
     // minusBtn
     //
     this.minusBtn.Location = new System.Drawing.Point(230, 33);
     this.minusBtn.Name = "minusBtn";
     this.minusBtn.Size = new System.Drawing.Size(23, 20);
     this.minusBtn.TabIndex = 57;
     this.minusBtn.Text = "-";
     this.minusBtn.UseVisualStyleBackColor = true;
     this.minusBtn.Click += new System.EventHandler(this.minusBtn_Click);
     //
     // qtyTxtBox
     //
     this.qtyTxtBox.Location = new System.Drawing.Point(136, 33);
     this.qtyTxtBox.Name = "qtyTxtBox";
     this.qtyTxtBox.ReadOnly = true;
     this.qtyTxtBox.Size = new System.Drawing.Size(23, 20);
     this.qtyTxtBox.TabIndex = 56;
     this.qtyTxtBox.Text = "0";
     //
     // plusBtn
     //
     this.plusBtn.Location = new System.Drawing.Point(178, 33);
     this.plusBtn.Name = "plusBtn";
     this.plusBtn.Size = new System.Drawing.Size(23, 20);
     this.plusBtn.TabIndex = 55;
     this.plusBtn.Text = "+";
     this.plusBtn.UseVisualStyleBackColor = true;
     this.plusBtn.Click += new System.EventHandler(this.plusBtn_Click);
     //
     // FormNewRedemption
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(328, 112);
     this.Controls.Add(this.lblPackageBuyable);
     this.Controls.Add(this.minusBtn);
     this.Controls.Add(this.qtyTxtBox);
     this.Controls.Add(this.plusBtn);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lookUpEdit1);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormNewRedemption";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Redemption";
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Label4 = new System.Windows.Forms.Label();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtSalesPersonID = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtTherapist = new DevExpress.XtraEditors.LookUpEdit();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtSalesPersonID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtTherapist.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label4.Location = new System.Drawing.Point(14, 10);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(162, 26);
     this.Label4.TabIndex = 41;
     this.Label4.Text = "Sales Person ID";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(288, 84);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 44;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(204, 84);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 43;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // lkpEdtSalesPersonID
     //
     this.lkpEdtSalesPersonID.EditValue = "";
     this.lkpEdtSalesPersonID.Location = new System.Drawing.Point(182, 10);
     this.lkpEdtSalesPersonID.Name = "lkpEdtSalesPersonID";
     //
     // lkpEdtSalesPersonID.Properties
     //
     this.lkpEdtSalesPersonID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtSalesPersonID.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtSalesPersonID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtSalesPersonID.Size = new System.Drawing.Size(296, 23);
     this.lkpEdtSalesPersonID.TabIndex = 42;
     //
     // lkpEdtTherapist
     //
     this.lkpEdtTherapist.EditValue = "";
     this.lkpEdtTherapist.Location = new System.Drawing.Point(182, 48);
     this.lkpEdtTherapist.Name = "lkpEdtTherapist";
     //
     // lkpEdtTherapist.Properties
     //
     this.lkpEdtTherapist.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtTherapist.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtTherapist.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtTherapist.Size = new System.Drawing.Size(296, 23);
     this.lkpEdtTherapist.TabIndex = 46;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(14, 48);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(130, 26);
     this.label1.TabIndex = 45;
     this.label1.Text = "Therapist ID";
     //
     // FormAddSalesPersonAndTherapist
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(490, 118);
     this.Controls.Add(this.lkpEdtTherapist);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.Label4);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.lkpEdtSalesPersonID);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormAddSalesPersonAndTherapist";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Add Sales Person And Therapist";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtSalesPersonID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtTherapist.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(frmIns_CustomerGroups));
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.cboStatus = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.cboDisable = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.cboType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lueCompany = new DevExpress.XtraEditors.LookUpEdit();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.btnAddNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     this.tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCompany.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // labelControl16
     //
     this.labelControl16.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl16.Location = new System.Drawing.Point(11, 163);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl16.Size = new System.Drawing.Size(81, 17);
     this.labelControl16.TabIndex = 8;
     this.labelControl16.Text = "Trạng thái";
     //
     // cboStatus
     //
     this.cboStatus.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboStatus.EditValue = "1";
     this.cboStatus.Location = new System.Drawing.Point(104, 161);
     this.cboStatus.Name = "cboStatus";
     this.cboStatus.Properties.Appearance.Options.UseTextOptions = true;
     this.cboStatus.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboStatus.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4"});
     this.cboStatus.Size = new System.Drawing.Size(193, 20);
     this.cboStatus.TabIndex = 9;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl8.Location = new System.Drawing.Point(11, 213);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl8.Size = new System.Drawing.Size(42, 16);
     this.labelControl8.TabIndex = 10;
     this.labelControl8.Text = "Khóa";
     //
     // cboDisable
     //
     this.cboDisable.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboDisable.EditValue = "False";
     this.cboDisable.Location = new System.Drawing.Point(104, 211);
     this.cboDisable.Name = "cboDisable";
     this.cboDisable.Properties.Appearance.Options.UseTextOptions = true;
     this.cboDisable.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboDisable.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboDisable.Properties.Items.AddRange(new object[] {
     "True",
     "False"});
     this.cboDisable.Size = new System.Drawing.Size(193, 20);
     this.cboDisable.TabIndex = 11;
     //
     // txtName
     //
     this.txtName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtName.Location = new System.Drawing.Point(104, 14);
     this.txtName.Name = "txtName";
     this.txtName.Properties.MaxLength = 50;
     this.txtName.Properties.NullValuePrompt = "Nhập tối đa 50 ký tự.";
     this.txtName.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtName.Size = new System.Drawing.Size(193, 20);
     this.txtName.TabIndex = 3;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 3;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 2.884615F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.33333F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 66F));
     this.tableLayoutPanel4.Controls.Add(this.labelControl8, 1, 4);
     this.tableLayoutPanel4.Controls.Add(this.cboDisable, 2, 4);
     this.tableLayoutPanel4.Controls.Add(this.labelControl16, 1, 3);
     this.tableLayoutPanel4.Controls.Add(this.cboStatus, 2, 3);
     this.tableLayoutPanel4.Controls.Add(this.labelControl1, 1, 2);
     this.tableLayoutPanel4.Controls.Add(this.cboType, 2, 2);
     this.tableLayoutPanel4.Controls.Add(this.labelControl2, 1, 1);
     this.tableLayoutPanel4.Controls.Add(this.labelControl13, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.txtName, 2, 0);
     this.tableLayoutPanel4.Controls.Add(this.lueCompany, 2, 1);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 24);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 5;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(300, 246);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(11, 114);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl1.Size = new System.Drawing.Size(38, 17);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "Loại";
     //
     // cboType
     //
     this.cboType.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboType.EditValue = "1";
     this.cboType.Location = new System.Drawing.Point(104, 112);
     this.cboType.Name = "cboType";
     this.cboType.Properties.Appearance.Options.UseTextOptions = true;
     this.cboType.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboType.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3"});
     this.cboType.Size = new System.Drawing.Size(193, 20);
     this.cboType.TabIndex = 7;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location = new System.Drawing.Point(11, 65);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl2.Size = new System.Drawing.Size(60, 16);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "Công ty";
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl13.Location = new System.Drawing.Point(11, 16);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl13.Size = new System.Drawing.Size(72, 16);
     this.labelControl13.TabIndex = 2;
     this.labelControl13.Text = "Tên nhóm";
     //
     // lueCompany
     //
     this.lueCompany.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueCompany.Location = new System.Drawing.Point(104, 63);
     this.lueCompany.Name = "lueCompany";
     this.lueCompany.Properties.Appearance.Options.UseTextOptions = true;
     this.lueCompany.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Name")});
     this.lueCompany.Properties.NullText = "";
     this.lueCompany.Size = new System.Drawing.Size(193, 20);
     this.lueCompany.TabIndex = 5;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 81F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(306, 312);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 35.13514F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 64.86487F));
     this.tableLayoutPanel3.Controls.Add(this.btnAddNew, 1, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 273);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(306, 39);
     this.tableLayoutPanel3.TabIndex = 12;
     //
     // btnAddNew
     //
     this.btnAddNew.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnAddNew.Appearance.Options.UseFont = true;
     this.btnAddNew.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnAddNew.Image = ((System.Drawing.Image)(resources.GetObject("btnAddNew.Image")));
     this.btnAddNew.Location = new System.Drawing.Point(113, 5);
     this.btnAddNew.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.btnAddNew.Name = "btnAddNew";
     this.btnAddNew.Size = new System.Drawing.Size(103, 28);
     this.btnAddNew.TabIndex = 13;
     this.btnAddNew.Text = "Cập nhật";
     this.btnAddNew.Click += new System.EventHandler(this.btnAddNew_Click);
     //
     // frmIns_CustomerGroups
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(306, 312);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Location = new System.Drawing.Point(600, 150);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmIns_CustomerGroups";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Thêm mới nhóm khách hàng";
     this.Load += new System.EventHandler(this.frmIns_CustomerGroups_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCompany.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.lkpEdtNewMemberID = new DevExpress.XtraEditors.LookUpEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.labelHeader = new System.Windows.Forms.Label();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     this.txtmember = new System.Windows.Forms.TextBox();
     this.txtPackage = new System.Windows.Forms.TextBox();
     this.txtAmount = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtNewMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100, 22);
     this.label1.TabIndex = 0;
     this.label1.Text = "Member ID";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 63);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Credit Package";
     //
     // lkpEdtNewMemberID
     //
     this.lkpEdtNewMemberID.EditValue = "";
     this.lkpEdtNewMemberID.Location = new System.Drawing.Point(126, 5);
     this.lkpEdtNewMemberID.Name = "lkpEdtNewMemberID";
     this.lkpEdtNewMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtNewMemberID.Size = new System.Drawing.Size(192, 20);
     this.lkpEdtNewMemberID.TabIndex = 2;
     this.lkpEdtNewMemberID.Visible = false;
     //
     // memoEdit1
     //
     this.memoEdit1.EditValue = "";
     this.memoEdit1.Location = new System.Drawing.Point(126, 6);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Properties.MaxLength = 255;
     this.memoEdit1.Size = new System.Drawing.Size(192, 10);
     this.memoEdit1.TabIndex = 3;
     this.memoEdit1.Visible = false;
     //
     // labelHeader
     //
     this.labelHeader.Location = new System.Drawing.Point(8, 8);
     this.labelHeader.Name = "labelHeader";
     this.labelHeader.Size = new System.Drawing.Size(320, 23);
     this.labelHeader.TabIndex = 4;
     this.labelHeader.Text = "label3";
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(211, 134);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 48;
     this.simpleButton2.Text = "Cancel";
     //
     // simpleButton1
     //
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButton1.Location = new System.Drawing.Point(122, 134);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 47;
     this.simpleButton1.Text = "Save";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 96);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(100, 23);
     this.label3.TabIndex = 49;
     this.label3.Text = "Convert Amount";
     //
     // txtmember
     //
     this.txtmember.Location = new System.Drawing.Point(123, 31);
     this.txtmember.Name = "txtmember";
     this.txtmember.ReadOnly = true;
     this.txtmember.Size = new System.Drawing.Size(163, 20);
     this.txtmember.TabIndex = 50;
     //
     // txtPackage
     //
     this.txtPackage.Location = new System.Drawing.Point(122, 66);
     this.txtPackage.Name = "txtPackage";
     this.txtPackage.ReadOnly = true;
     this.txtPackage.Size = new System.Drawing.Size(163, 20);
     this.txtPackage.TabIndex = 51;
     //
     // txtAmount
     //
     this.txtAmount.Location = new System.Drawing.Point(122, 96);
     this.txtAmount.Name = "txtAmount";
     this.txtAmount.ReadOnly = true;
     this.txtAmount.Size = new System.Drawing.Size(163, 20);
     this.txtAmount.TabIndex = 52;
     //
     // FormConvertMemberCreditPackage
     //
     this.AcceptButton = this.simpleButton1;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButton2;
     this.ClientSize = new System.Drawing.Size(330, 180);
     this.Controls.Add(this.txtAmount);
     this.Controls.Add(this.txtPackage);
     this.Controls.Add(this.txtmember);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.labelHeader);
     this.Controls.Add(this.memoEdit1);
     this.Controls.Add(this.lkpEdtNewMemberID);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormConvertMemberCreditPackage";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Convert Member Credit Package";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtNewMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.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(EditorUserInRoleFrm));
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtNote = new System.Windows.Forms.TextBox();
     this.CLSCRole = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.TxtNote);
     this.groupControl2.Controls.Add(this.CLSCRole);
     this.groupControl2.Controls.Add(this.BtnUpdate);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Location = new System.Drawing.Point(9, 75);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(379, 272);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "تعديل سماحيات المستخدم";
     //
     // TxtNote
     //
     this.TxtNote.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TxtNote.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TxtNote.ForeColor = System.Drawing.Color.Green;
     this.TxtNote.Location = new System.Drawing.Point(5, 24);
     this.TxtNote.Multiline = true;
     this.TxtNote.Name = "TxtNote";
     this.TxtNote.ReadOnly = true;
     this.TxtNote.Size = new System.Drawing.Size(140, 207);
     this.TxtNote.TabIndex = 7;
     this.TxtNote.Text = ".";
     //
     // CLSCRole
     //
     this.CLSCRole.Location = new System.Drawing.Point(151, 24);
     this.CLSCRole.Name = "CLSCRole";
     this.CLSCRole.Size = new System.Drawing.Size(155, 207);
     this.CLSCRole.TabIndex = 4;
     this.CLSCRole.ItemCheck += new DevExpress.XtraEditors.Controls.ItemCheckEventHandler(this.CLSCRole_ItemCheck);
     this.CLSCRole.SelectedIndexChanged += new System.EventHandler(this.CLSCRole_SelectedIndexChanged);
     //
     // BtnUpdate
     //
     this.BtnUpdate.Enabled = false;
     this.BtnUpdate.Location = new System.Drawing.Point(196, 237);
     this.BtnUpdate.Name = "BtnUpdate";
     this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
     this.BtnUpdate.TabIndex = 3;
     this.BtnUpdate.Text = "تعديل";
     this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(312, 24);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(62, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "السماحيات";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.LUEItems);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(9, 10);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(379, 59);
     this.groupControl1.TabIndex = 7;
     this.groupControl1.Text = "جميع المستخدمين";
     //
     // LUEItems
     //
     this.LUEItems.Location = new System.Drawing.Point(61, 28);
     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", "User Name")});
     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(240, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(77, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختار مستخدم";
     //
     // BtnRefresh
     //
     this.BtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("BtnRefresh.Image")));
     this.BtnRefresh.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnRefresh.Location = new System.Drawing.Point(395, 57);
     this.BtnRefresh.Name = "BtnRefresh";
     this.BtnRefresh.Size = new System.Drawing.Size(31, 241);
     this.BtnRefresh.TabIndex = 10;
     this.BtnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
     //
     // EditorUserInRoleFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(435, 355);
     this.Controls.Add(this.BtnRefresh);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "EditorUserInRoleFrm";
     this.Text = "سماحيات المستخدمين";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #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.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlItem = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.item_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_price_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_price_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_vat_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.item_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_type_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_vat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlAddittional = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.panelEnable = new DevExpress.XtraEditors.PanelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
     this.labelBasicinfoType = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoName = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoPriceMonthly = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoPriceDaily = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoDetail = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoVat = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemPriceMonthly = new DevExpress.XtraEditors.TextEdit();
     this.memoEditItemDetail = new DevExpress.XtraEditors.MemoEdit();
     this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.texthiddenAction = new DevExpress.XtraEditors.TextEdit();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.labelBasicinfoID = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemID = new DevExpress.XtraEditors.TextEdit();
     this.textEditCheckEvent = new DevExpress.XtraEditors.TextEdit();
     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.textEditItemPriceDaily = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).BeginInit();
     this.groupControlList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAddittional)).BeginInit();
     this.groupControlAddittional.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelEnable)).BeginInit();
     this.panelEnable.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceMonthly.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditItemDetail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.texthiddenAction.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckEvent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceDaily.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // 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.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(1079, 614);
     this.panelControl2.TabIndex = 20;
     //
     // 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.groupControlList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1079, 614);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 22;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlList
     //
     this.groupControlList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlList.AppearanceCaption.Options.UseFont = true;
     this.groupControlList.Controls.Add(this.gridControlItem);
     this.groupControlList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlList.Location = new System.Drawing.Point(0, 0);
     this.groupControlList.Name = "groupControlList";
     this.groupControlList.Size = new System.Drawing.Size(500, 614);
     this.groupControlList.TabIndex = 0;
     this.groupControlList.Text = "รายการค่าใช้จ่ายเพิ่มเติม";
     //
     // gridControlItem
     //
     this.gridControlItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlItem.Location = new System.Drawing.Point(2, 22);
     this.gridControlItem.MainView = this.gridView3;
     this.gridControlItem.Name = "gridControlItem";
     this.gridControlItem.Size = new System.Drawing.Size(496, 590);
     this.gridControlItem.TabIndex = 18;
     this.gridControlItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3,
     this.gridView2,
     this.gridView1});
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.item_id,
     this.grid_name,
     this.grid_price_monthly,
     this.grid_price_daily,
     this.grid_vat_text,
     this.item_type,
     this.grid_type_text,
     this.grid_vat});
     this.gridView3.GridControl = this.gridControlItem;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView3.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView3.OptionsBehavior.Editable = false;
     this.gridView3.OptionsBehavior.ReadOnly = true;
     this.gridView3.OptionsFind.AlwaysVisible = true;
     this.gridView3.OptionsFind.ShowCloseButton = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // item_id
     //
     this.item_id.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.item_id.AppearanceHeader.Options.UseFont = true;
     this.item_id.Caption = "รหัสค่าใช่จ่ายเพิ่มเติม";
     this.item_id.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.item_id.FieldName = "item_id";
     this.item_id.Name = "item_id";
     this.item_id.OptionsColumn.AllowEdit = false;
     this.item_id.OptionsColumn.AllowFocus = false;
     this.item_id.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.item_id.OptionsColumn.AllowMove = false;
     this.item_id.Width = 161;
     //
     // grid_name
     //
     this.grid_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_name.AppearanceHeader.Options.UseFont = true;
     this.grid_name.Caption = "ชื่อรายการค่าใช้จ่าย";
     this.grid_name.FieldName = "item_name";
     this.grid_name.Name = "grid_name";
     this.grid_name.OptionsColumn.AllowEdit = false;
     this.grid_name.OptionsColumn.AllowFocus = false;
     this.grid_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_name.OptionsColumn.AllowMove = false;
     this.grid_name.Visible = true;
     this.grid_name.VisibleIndex = 0;
     this.grid_name.Width = 114;
     //
     // grid_price_monthly
     //
     this.grid_price_monthly.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_price_monthly.AppearanceHeader.Options.UseFont = true;
     this.grid_price_monthly.Caption = "ราคารายเดือน";
     this.grid_price_monthly.DisplayFormat.FormatString = "{0:n2}";
     this.grid_price_monthly.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.grid_price_monthly.FieldName = "item_price_monthly";
     this.grid_price_monthly.Name = "grid_price_monthly";
     this.grid_price_monthly.OptionsColumn.AllowEdit = false;
     this.grid_price_monthly.OptionsColumn.AllowFocus = false;
     this.grid_price_monthly.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_price_monthly.OptionsColumn.AllowMove = false;
     this.grid_price_monthly.Visible = true;
     this.grid_price_monthly.VisibleIndex = 2;
     this.grid_price_monthly.Width = 107;
     //
     // grid_price_daily
     //
     this.grid_price_daily.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_price_daily.AppearanceHeader.Options.UseFont = true;
     this.grid_price_daily.Caption = "ราคารายวัน";
     this.grid_price_daily.DisplayFormat.FormatString = "{0:n2}";
     this.grid_price_daily.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.grid_price_daily.FieldName = "item_price_daily";
     this.grid_price_daily.Name = "grid_price_daily";
     this.grid_price_daily.OptionsColumn.AllowEdit = false;
     this.grid_price_daily.OptionsColumn.AllowFocus = false;
     this.grid_price_daily.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_price_daily.OptionsColumn.AllowMove = false;
     this.grid_price_daily.Visible = true;
     this.grid_price_daily.VisibleIndex = 3;
     this.grid_price_daily.Width = 97;
     //
     // grid_vat_text
     //
     this.grid_vat_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_vat_text.AppearanceHeader.Options.UseFont = true;
     this.grid_vat_text.Caption = "การคิดภาษี";
     this.grid_vat_text.FieldName = "item_vat_text";
     this.grid_vat_text.Name = "grid_vat_text";
     this.grid_vat_text.OptionsColumn.AllowEdit = false;
     this.grid_vat_text.OptionsColumn.AllowFocus = false;
     this.grid_vat_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_vat_text.OptionsColumn.AllowMove = false;
     this.grid_vat_text.Visible = true;
     this.grid_vat_text.VisibleIndex = 4;
     this.grid_vat_text.Width = 70;
     //
     // item_type
     //
     this.item_type.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.item_type.AppearanceHeader.Options.UseFont = true;
     this.item_type.Name = "item_type";
     //
     // grid_type_text
     //
     this.grid_type_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_type_text.AppearanceHeader.Options.UseFont = true;
     this.grid_type_text.Caption = "รูปแบบค่าใช้จ่าย";
     this.grid_type_text.FieldName = "item_type_text";
     this.grid_type_text.Name = "grid_type_text";
     this.grid_type_text.OptionsColumn.AllowEdit = false;
     this.grid_type_text.OptionsColumn.AllowFocus = false;
     this.grid_type_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_type_text.OptionsColumn.AllowMove = false;
     this.grid_type_text.Visible = true;
     this.grid_type_text.VisibleIndex = 1;
     this.grid_type_text.Width = 92;
     //
     // grid_vat
     //
     this.grid_vat.Caption = "gridColumn1";
     this.grid_vat.FieldName = "item_vat";
     this.grid_vat.Name = "grid_vat";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControlItem;
     this.gridView2.Name = "gridView2";
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlItem;
     this.gridView1.Name = "gridView1";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlAddittional);
     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(574, 548);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlAddittional
     //
     this.groupControlAddittional.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAddittional.AppearanceCaption.Options.UseFont = true;
     this.groupControlAddittional.Controls.Add(this.xtraScrollableControl1);
     this.groupControlAddittional.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAddittional.Location = new System.Drawing.Point(0, 0);
     this.groupControlAddittional.Name = "groupControlAddittional";
     this.groupControlAddittional.Size = new System.Drawing.Size(574, 548);
     this.groupControlAddittional.TabIndex = 3;
     this.groupControlAddittional.Text = "ข้อมูลค่าใช้จ่ายเพิ่มเติม";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.panelEnable);
     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(570, 524);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // panelEnable
     //
     this.panelEnable.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.panelEnable.Appearance.Options.UseBackColor = true;
     this.panelEnable.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelEnable.Controls.Add(this.textEditItemPriceDaily);
     this.panelEnable.Controls.Add(this.labelControlRequired);
     this.panelEnable.Controls.Add(this.labelControl4);
     this.panelEnable.Controls.Add(this.labelControl1);
     this.panelEnable.Controls.Add(this.labelControl12);
     this.panelEnable.Controls.Add(this.lookUpEditPayType);
     this.panelEnable.Controls.Add(this.lookUpEditVatType);
     this.panelEnable.Controls.Add(this.labelBasicinfoType);
     this.panelEnable.Controls.Add(this.labelBasicinfoName);
     this.panelEnable.Controls.Add(this.labelBasicinfoPriceMonthly);
     this.panelEnable.Controls.Add(this.labelBasicinfoPriceDaily);
     this.panelEnable.Controls.Add(this.labelBasicinfoDetail);
     this.panelEnable.Controls.Add(this.labelControlBaht2);
     this.panelEnable.Controls.Add(this.labelControlBaht);
     this.panelEnable.Controls.Add(this.labelBasicinfoVat);
     this.panelEnable.Controls.Add(this.textEditItemPriceMonthly);
     this.panelEnable.Controls.Add(this.memoEditItemDetail);
     this.panelEnable.Controls.Add(this.textEditItemName);
     this.panelEnable.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelEnable.Location = new System.Drawing.Point(0, 0);
     this.panelEnable.Name = "panelEnable";
     this.panelEnable.Size = new System.Drawing.Size(570, 243);
     this.panelEnable.TabIndex = 267;
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(9, 227);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 413;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl4.Location = new System.Drawing.Point(9, 121);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(6, 13);
     this.labelControl4.TabIndex = 317;
     this.labelControl4.Text = "*";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl1.Location = new System.Drawing.Point(9, 47);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(6, 13);
     this.labelControl1.TabIndex = 317;
     this.labelControl1.Text = "*";
     //
     // labelControl12
     //
     this.labelControl12.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl12.Location = new System.Drawing.Point(9, 17);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(6, 13);
     this.labelControl12.TabIndex = 317;
     this.labelControl12.Text = "*";
     //
     // lookUpEditPayType
     //
     this.lookUpEditPayType.Location = new System.Drawing.Point(174, 36);
     this.lookUpEditPayType.Name = "lookUpEditPayType";
     this.lookUpEditPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("paytype_label", " ")});
     this.lookUpEditPayType.Size = new System.Drawing.Size(241, 20);
     this.lookUpEditPayType.TabIndex = 2;
     //
     // lookUpEditVatType
     //
     this.lookUpEditVatType.Location = new System.Drawing.Point(174, 115);
     this.lookUpEditVatType.Name = "lookUpEditVatType";
     this.lookUpEditVatType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditVatType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vattype_label", " ")});
     this.lookUpEditVatType.Size = new System.Drawing.Size(241, 20);
     this.lookUpEditVatType.TabIndex = 5;
     //
     // labelBasicinfoType
     //
     this.labelBasicinfoType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoType.Location = new System.Drawing.Point(32, 41);
     this.labelBasicinfoType.Name = "labelBasicinfoType";
     this.labelBasicinfoType.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoType.TabIndex = 262;
     this.labelBasicinfoType.Text = "รูปแบบค่าใช้จ่าย :";
     //
     // labelBasicinfoName
     //
     this.labelBasicinfoName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoName.Location = new System.Drawing.Point(32, 13);
     this.labelBasicinfoName.Name = "labelBasicinfoName";
     this.labelBasicinfoName.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoName.TabIndex = 72;
     this.labelBasicinfoName.Text = "ชื่อรายการค่าใช้จ่าย :";
     //
     // labelBasicinfoPriceMonthly
     //
     this.labelBasicinfoPriceMonthly.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoPriceMonthly.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoPriceMonthly.Location = new System.Drawing.Point(32, 66);
     this.labelBasicinfoPriceMonthly.Name = "labelBasicinfoPriceMonthly";
     this.labelBasicinfoPriceMonthly.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoPriceMonthly.TabIndex = 73;
     this.labelBasicinfoPriceMonthly.Text = "ราคารายเดือน :";
     //
     // labelBasicinfoPriceDaily
     //
     this.labelBasicinfoPriceDaily.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoPriceDaily.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoPriceDaily.Location = new System.Drawing.Point(32, 92);
     this.labelBasicinfoPriceDaily.Name = "labelBasicinfoPriceDaily";
     this.labelBasicinfoPriceDaily.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoPriceDaily.TabIndex = 75;
     this.labelBasicinfoPriceDaily.Text = "ราคารายวัน :";
     //
     // labelBasicinfoDetail
     //
     this.labelBasicinfoDetail.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoDetail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoDetail.Location = new System.Drawing.Point(26, 142);
     this.labelBasicinfoDetail.Name = "labelBasicinfoDetail";
     this.labelBasicinfoDetail.Size = new System.Drawing.Size(128, 13);
     this.labelBasicinfoDetail.TabIndex = 251;
     this.labelBasicinfoDetail.Text = "รายละเอียดเพิ่มเติม :";
     //
     // labelControlBaht2
     //
     this.labelControlBaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht2.Location = new System.Drawing.Point(421, 91);
     this.labelControlBaht2.Name = "labelControlBaht2";
     this.labelControlBaht2.Size = new System.Drawing.Size(81, 13);
     this.labelControlBaht2.TabIndex = 76;
     this.labelControlBaht2.Text = "บาท";
     //
     // labelControlBaht
     //
     this.labelControlBaht.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht.Location = new System.Drawing.Point(421, 65);
     this.labelControlBaht.Name = "labelControlBaht";
     this.labelControlBaht.Size = new System.Drawing.Size(81, 13);
     this.labelControlBaht.TabIndex = 76;
     this.labelControlBaht.Text = "บาท";
     //
     // labelBasicinfoVat
     //
     this.labelBasicinfoVat.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoVat.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoVat.Location = new System.Drawing.Point(32, 118);
     this.labelBasicinfoVat.Name = "labelBasicinfoVat";
     this.labelBasicinfoVat.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoVat.TabIndex = 76;
     this.labelBasicinfoVat.Text = "การคิดภาษี :";
     //
     // textEditItemPriceMonthly
     //
     this.textEditItemPriceMonthly.EditValue = "1000000.00";
     this.textEditItemPriceMonthly.Location = new System.Drawing.Point(174, 62);
     this.textEditItemPriceMonthly.Name = "textEditItemPriceMonthly";
     this.textEditItemPriceMonthly.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditItemPriceMonthly.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditItemPriceMonthly.Properties.DisplayFormat.FormatString = "{n2}";
     this.textEditItemPriceMonthly.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceMonthly.Properties.EditFormat.FormatString = "{n2}";
     this.textEditItemPriceMonthly.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceMonthly.Properties.Mask.BeepOnError = true;
     this.textEditItemPriceMonthly.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditItemPriceMonthly.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemPriceMonthly.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemPriceMonthly.Properties.Mask.ShowPlaceHolders = false;
     this.textEditItemPriceMonthly.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemPriceMonthly.Properties.MaxLength = 7;
     this.textEditItemPriceMonthly.Size = new System.Drawing.Size(241, 20);
     this.textEditItemPriceMonthly.TabIndex = 3;
     //
     // memoEditItemDetail
     //
     this.memoEditItemDetail.Location = new System.Drawing.Point(174, 143);
     this.memoEditItemDetail.Name = "memoEditItemDetail";
     this.memoEditItemDetail.Properties.MaxLength = 500;
     this.memoEditItemDetail.Size = new System.Drawing.Size(241, 72);
     this.memoEditItemDetail.TabIndex = 6;
     //
     // textEditItemName
     //
     this.textEditItemName.Location = new System.Drawing.Point(174, 10);
     this.textEditItemName.Name = "textEditItemName";
     this.textEditItemName.Properties.Mask.BeepOnError = true;
     this.textEditItemName.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,50}";
     this.textEditItemName.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemName.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemName.Properties.MaxLength = 50;
     this.textEditItemName.Size = new System.Drawing.Size(241, 20);
     this.textEditItemName.TabIndex = 1;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.texthiddenAction);
     this.panelControl1.Controls.Add(this.bttDelete);
     this.panelControl1.Controls.Add(this.labelBasicinfoID);
     this.panelControl1.Controls.Add(this.textEditItemID);
     this.panelControl1.Controls.Add(this.textEditCheckEvent);
     this.panelControl1.Controls.Add(this.bttAdd);
     this.panelControl1.Controls.Add(this.bttEdit);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 548);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(574, 66);
     this.panelControl1.TabIndex = 13;
     //
     // texthiddenAction
     //
     this.texthiddenAction.Location = new System.Drawing.Point(11, 35);
     this.texthiddenAction.Name = "texthiddenAction";
     this.texthiddenAction.Size = new System.Drawing.Size(100, 20);
     this.texthiddenAction.TabIndex = 264;
     this.texthiddenAction.Visible = false;
     //
     // bttDelete
     //
     this.bttDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttDelete.Image = global::DXWindowsApplication2.Properties.Resources.delete;
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(347, 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);
     //
     // labelBasicinfoID
     //
     this.labelBasicinfoID.Location = new System.Drawing.Point(17, 6);
     this.labelBasicinfoID.Name = "labelBasicinfoID";
     this.labelBasicinfoID.Padding = new System.Windows.Forms.Padding(10);
     this.labelBasicinfoID.Size = new System.Drawing.Size(46, 33);
     this.labelBasicinfoID.TabIndex = 71;
     this.labelBasicinfoID.Text = "รหัส :";
     this.labelBasicinfoID.Visible = false;
     //
     // textEditItemID
     //
     this.textEditItemID.Location = new System.Drawing.Point(69, 13);
     this.textEditItemID.Name = "textEditItemID";
     this.textEditItemID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.textEditItemID.Properties.Appearance.Options.UseFont = true;
     this.textEditItemID.Properties.ReadOnly = true;
     this.textEditItemID.Size = new System.Drawing.Size(18, 20);
     this.textEditItemID.TabIndex = 248;
     this.textEditItemID.Visible = false;
     //
     // textEditCheckEvent
     //
     this.textEditCheckEvent.EditValue = "";
     this.textEditCheckEvent.Location = new System.Drawing.Point(93, 13);
     this.textEditCheckEvent.Name = "textEditCheckEvent";
     this.textEditCheckEvent.Properties.Mask.BeepOnError = true;
     this.textEditCheckEvent.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditCheckEvent.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditCheckEvent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditCheckEvent.Properties.MaxLength = 10;
     this.textEditCheckEvent.Size = new System.Drawing.Size(18, 20);
     this.textEditCheckEvent.TabIndex = 258;
     this.textEditCheckEvent.Visible = false;
     //
     // bttAdd
     //
     this.bttAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttAdd.Image = global::DXWindowsApplication2.Properties.Resources.Add;
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(195, 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 = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(271, 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 = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(499, 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 = global::DXWindowsApplication2.Properties.Resources.save;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(423, 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);
     //
     // textEditItemPriceDaily
     //
     this.textEditItemPriceDaily.EditValue = "1000000.00";
     this.textEditItemPriceDaily.Location = new System.Drawing.Point(174, 88);
     this.textEditItemPriceDaily.Name = "textEditItemPriceDaily";
     this.textEditItemPriceDaily.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditItemPriceDaily.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditItemPriceDaily.Properties.DisplayFormat.FormatString = "{n2}";
     this.textEditItemPriceDaily.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceDaily.Properties.EditFormat.FormatString = "{n2}";
     this.textEditItemPriceDaily.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceDaily.Properties.Mask.BeepOnError = true;
     this.textEditItemPriceDaily.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditItemPriceDaily.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemPriceDaily.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemPriceDaily.Properties.Mask.ShowPlaceHolders = false;
     this.textEditItemPriceDaily.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemPriceDaily.Properties.MaxLength = 7;
     this.textEditItemPriceDaily.Size = new System.Drawing.Size(241, 20);
     this.textEditItemPriceDaily.TabIndex = 414;
     //
     // BasicInfoAdditionItem
     //
     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 = "BasicInfoAdditionItem";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1093, 628);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).EndInit();
     this.groupControlList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAddittional)).EndInit();
     this.groupControlAddittional.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelEnable)).EndInit();
     this.panelEnable.ResumeLayout(false);
     this.panelEnable.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceMonthly.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditItemDetail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.texthiddenAction.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckEvent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceDaily.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(frmIns_CustomerGroups_Customers));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     this.btnApply = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddCustomer = new DevExpress.XtraEditors.SimpleButton();
     this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
     this.dgvAvailableCustomers = new DevExpress.XtraGrid.GridControl();
     this.viewAvailableCustomers = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.btnSelectCustomers = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnEditCustomers = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.dgvSelectCustomers = new DevExpress.XtraGrid.GridControl();
     this.viewSelectCustomers = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnRemoveSelectCustomers = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.tableLayoutPanel10 = new System.Windows.Forms.TableLayoutPanel();
     this.btnAddCustomerGroup = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnSearchCustomerGroup = new DevExpress.XtraEditors.SimpleButton();
     this.lueCustomerGroup = new DevExpress.XtraEditors.LookUpEdit();
     this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
     this.btnAddCompanies = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.btnSearchCompany = new DevExpress.XtraEditors.SimpleButton();
     this.lueCompany = new DevExpress.XtraEditors.LookUpEdit();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel11.SuspendLayout();
     this.tableLayoutPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEditCustomers)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvSelectCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewSelectCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRemoveSelectCustomers)).BeginInit();
     this.tableLayoutPanel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueCustomerGroup.Properties)).BeginInit();
     this.tableLayoutPanel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueCompany.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnApply
     //
     this.btnApply.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnApply.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnApply.Appearance.Options.UseFont = true;
     this.btnApply.Image = ((System.Drawing.Image)(resources.GetObject("btnApply.Image")));
     this.btnApply.Location = new System.Drawing.Point(562, 5);
     this.btnApply.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.btnApply.Name = "btnApply";
     this.btnApply.Size = new System.Drawing.Size(102, 28);
     this.btnApply.TabIndex = 19;
     this.btnApply.Text = "Cập nhật";
     this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
     //
     // btnAddCustomer
     //
     this.btnAddCustomer.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnAddCustomer.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnAddCustomer.Appearance.Options.UseFont = true;
     this.btnAddCustomer.Image = ((System.Drawing.Image)(resources.GetObject("btnAddCustomer.Image")));
     this.btnAddCustomer.Location = new System.Drawing.Point(293, 3);
     this.btnAddCustomer.Margin = new System.Windows.Forms.Padding(3, 3, 10, 3);
     this.btnAddCustomer.Name = "btnAddCustomer";
     this.btnAddCustomer.Size = new System.Drawing.Size(144, 26);
     this.btnAddCustomer.TabIndex = 16;
     this.btnAddCustomer.Text = "Thêm mới khách";
     this.btnAddCustomer.Click += new System.EventHandler(this.btnAddCustomer_Click);
     //
     // tableLayoutPanel11
     //
     this.tableLayoutPanel11.ColumnCount = 2;
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 65F));
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 35F));
     this.tableLayoutPanel11.Controls.Add(this.btnAddCustomer, 1, 0);
     this.tableLayoutPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel11.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel11.Name = "tableLayoutPanel11";
     this.tableLayoutPanel11.RowCount = 1;
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel11.Size = new System.Drawing.Size(447, 32);
     this.tableLayoutPanel11.TabIndex = 15;
     //
     // tableLayoutPanel6
     //
     this.tableLayoutPanel6.ColumnCount = 1;
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel6.Controls.Add(this.dgvAvailableCustomers, 0, 1);
     this.tableLayoutPanel6.Controls.Add(this.tableLayoutPanel11, 0, 0);
     this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel6.Location = new System.Drawing.Point(333, 3);
     this.tableLayoutPanel6.Name = "tableLayoutPanel6";
     this.tableLayoutPanel6.RowCount = 2;
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.823529F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 91.17647F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel6.Size = new System.Drawing.Size(453, 442);
     this.tableLayoutPanel6.TabIndex = 14;
     //
     // dgvAvailableCustomers
     //
     this.dgvAvailableCustomers.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvAvailableCustomers.Location = new System.Drawing.Point(3, 41);
     this.dgvAvailableCustomers.MainView = this.viewAvailableCustomers;
     this.dgvAvailableCustomers.Name = "dgvAvailableCustomers";
     this.dgvAvailableCustomers.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.btnSelectCustomers,
     this.btnEditCustomers});
     this.dgvAvailableCustomers.Size = new System.Drawing.Size(447, 398);
     this.dgvAvailableCustomers.TabIndex = 17;
     this.dgvAvailableCustomers.UseEmbeddedNavigator = true;
     this.dgvAvailableCustomers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.viewAvailableCustomers});
     //
     // viewAvailableCustomers
     //
     this.viewAvailableCustomers.ColumnPanelRowHeight = 35;
     this.viewAvailableCustomers.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn3});
     this.viewAvailableCustomers.GridControl = this.dgvAvailableCustomers;
     this.viewAvailableCustomers.Name = "viewAvailableCustomers";
     this.viewAvailableCustomers.OptionsFind.AlwaysVisible = true;
     this.viewAvailableCustomers.OptionsView.EnableAppearanceEvenRow = true;
     this.viewAvailableCustomers.OptionsView.ShowFooter = true;
     this.viewAvailableCustomers.OptionsView.ShowGroupPanel = false;
     this.viewAvailableCustomers.OptionsView.ShowIndicator = false;
     this.viewAvailableCustomers.RowHeight = 25;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.Caption = "Tên";
     this.gridColumn4.FieldName = "Name";
     this.gridColumn4.MinWidth = 15;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowFocus = false;
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     this.gridColumn4.Width = 108;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn5.Caption = "CMND";
     this.gridColumn5.FieldName = "Identifier1";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     this.gridColumn5.Width = 102;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn6.Caption = "Ngày sinh";
     this.gridColumn6.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "Birthday";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.AllowFocus = false;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     this.gridColumn6.Width = 113;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn7.Caption = "Chọn";
     this.gridColumn7.ColumnEdit = this.btnSelectCustomers;
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     this.gridColumn7.Width = 45;
     //
     // btnSelectCustomers
     //
     this.btnSelectCustomers.AutoHeight = false;
     this.btnSelectCustomers.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnSelectCustomers.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.btnSelectCustomers.Name = "btnSelectCustomers";
     this.btnSelectCustomers.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnSelectCustomers.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnSelectCustomers_ButtonClick);
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "Edit";
     this.gridColumn3.ColumnEdit = this.btnEditCustomers;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 43;
     //
     // btnEditCustomers
     //
     this.btnEditCustomers.AutoHeight = false;
     this.btnEditCustomers.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnEditCustomers.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.btnEditCustomers.Name = "btnEditCustomers";
     this.btnEditCustomers.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnEditCustomers.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnEditCustomers_ButtonClick);
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
     this.tableLayoutPanel3.Controls.Add(this.btnApply, 1, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 473);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(795, 39);
     this.tableLayoutPanel3.TabIndex = 18;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 3;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.81115F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.013942F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 58F));
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel5, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel6, 2, 0);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 22);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 1;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(789, 448);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 1;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Controls.Add(this.dgvSelectCustomers, 0, 2);
     this.tableLayoutPanel5.Controls.Add(this.tableLayoutPanel10, 0, 1);
     this.tableLayoutPanel5.Controls.Add(this.tableLayoutPanel9, 0, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 3;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 80F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(316, 442);
     this.tableLayoutPanel5.TabIndex = 2;
     //
     // dgvSelectCustomers
     //
     this.dgvSelectCustomers.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvSelectCustomers.Location = new System.Drawing.Point(3, 91);
     this.dgvSelectCustomers.MainView = this.viewSelectCustomers;
     this.dgvSelectCustomers.Name = "dgvSelectCustomers";
     this.dgvSelectCustomers.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.btnRemoveSelectCustomers});
     this.dgvSelectCustomers.Size = new System.Drawing.Size(310, 348);
     this.dgvSelectCustomers.TabIndex = 13;
     this.dgvSelectCustomers.UseEmbeddedNavigator = true;
     this.dgvSelectCustomers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.viewSelectCustomers});
     //
     // viewSelectCustomers
     //
     this.viewSelectCustomers.ColumnPanelRowHeight = 35;
     this.viewSelectCustomers.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn8});
     this.viewSelectCustomers.GridControl = this.dgvSelectCustomers;
     this.viewSelectCustomers.Name = "viewSelectCustomers";
     this.viewSelectCustomers.OptionsView.EnableAppearanceEvenRow = true;
     this.viewSelectCustomers.OptionsView.ShowFooter = true;
     this.viewSelectCustomers.OptionsView.ShowGroupPanel = false;
     this.viewSelectCustomers.OptionsView.ShowIndicator = false;
     this.viewSelectCustomers.RowHeight = 25;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn1.Caption = "Tên";
     this.gridColumn1.FieldName = "Name";
     this.gridColumn1.MinWidth = 15;
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 90;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn2.Caption = "Ngày sinh";
     this.gridColumn2.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "Birthday";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 85;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn8.AppearanceHeader.Options.UseFont = true;
     this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn8.Caption = "Hủy";
     this.gridColumn8.ColumnEdit = this.btnRemoveSelectCustomers;
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width = 45;
     //
     // btnRemoveSelectCustomers
     //
     this.btnRemoveSelectCustomers.AutoHeight = false;
     this.btnRemoveSelectCustomers.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnRemoveSelectCustomers.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.btnRemoveSelectCustomers.Name = "btnRemoveSelectCustomers";
     this.btnRemoveSelectCustomers.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnRemoveSelectCustomers.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnRemoveSelectCustomers_ButtonClick);
     //
     // tableLayoutPanel10
     //
     this.tableLayoutPanel10.ColumnCount = 4;
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 21.6129F));
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 58.06452F));
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel10.Controls.Add(this.btnAddCustomerGroup, 2, 0);
     this.tableLayoutPanel10.Controls.Add(this.labelControl1, 0, 0);
     this.tableLayoutPanel10.Controls.Add(this.btnSearchCustomerGroup, 3, 0);
     this.tableLayoutPanel10.Controls.Add(this.lueCustomerGroup, 1, 0);
     this.tableLayoutPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel10.Location = new System.Drawing.Point(3, 47);
     this.tableLayoutPanel10.Name = "tableLayoutPanel10";
     this.tableLayoutPanel10.RowCount = 1;
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel10.Size = new System.Drawing.Size(310, 38);
     this.tableLayoutPanel10.TabIndex = 8;
     //
     // btnAddCustomerGroup
     //
     this.btnAddCustomerGroup.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddCustomerGroup.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddCustomerGroup.Appearance.Options.UseFont = true;
     this.btnAddCustomerGroup.Image = ((System.Drawing.Image)(resources.GetObject("btnAddCustomerGroup.Image")));
     this.btnAddCustomerGroup.Location = new System.Drawing.Point(250, 8);
     this.btnAddCustomerGroup.Name = "btnAddCustomerGroup";
     this.btnAddCustomerGroup.Size = new System.Drawing.Size(25, 22);
     this.btnAddCustomerGroup.TabIndex = 11;
     this.btnAddCustomerGroup.Click += new System.EventHandler(this.btnAddCustomerGroup_Click);
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(3, 11);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(35, 16);
     this.labelControl1.TabIndex = 9;
     this.labelControl1.Text = "Nhóm";
     //
     // btnSearchCustomerGroup
     //
     this.btnSearchCustomerGroup.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSearchCustomerGroup.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearchCustomerGroup.Appearance.Options.UseFont = true;
     this.btnSearchCustomerGroup.Image = ((System.Drawing.Image)(resources.GetObject("btnSearchCustomerGroup.Image")));
     this.btnSearchCustomerGroup.Location = new System.Drawing.Point(281, 8);
     this.btnSearchCustomerGroup.Name = "btnSearchCustomerGroup";
     this.btnSearchCustomerGroup.Size = new System.Drawing.Size(25, 22);
     this.btnSearchCustomerGroup.TabIndex = 12;
     this.btnSearchCustomerGroup.Click += new System.EventHandler(this.btnSearchCustomerGroup_Click);
     //
     // lueCustomerGroup
     //
     this.lueCustomerGroup.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueCustomerGroup.Location = new System.Drawing.Point(70, 9);
     this.lueCustomerGroup.Name = "lueCustomerGroup";
     this.lueCustomerGroup.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCustomerGroup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lueCustomerGroup.Properties.NullText = "";
     this.lueCustomerGroup.Properties.NullValuePrompt = "Chọn nhóm";
     this.lueCustomerGroup.Properties.NullValuePromptShowForEmptyValue = true;
     this.lueCustomerGroup.Size = new System.Drawing.Size(174, 20);
     this.lueCustomerGroup.TabIndex = 10;
     this.lueCustomerGroup.EditValueChanged += new System.EventHandler(this.lueCustomerGroup_EditValueChanged);
     //
     // tableLayoutPanel9
     //
     this.tableLayoutPanel9.ColumnCount = 4;
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 21.6129F));
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 58.06452F));
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel9.Controls.Add(this.btnAddCompanies, 2, 0);
     this.tableLayoutPanel9.Controls.Add(this.labelControl2, 0, 0);
     this.tableLayoutPanel9.Controls.Add(this.btnSearchCompany, 3, 0);
     this.tableLayoutPanel9.Controls.Add(this.lueCompany, 1, 0);
     this.tableLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel9.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel9.Name = "tableLayoutPanel9";
     this.tableLayoutPanel9.RowCount = 1;
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel9.Size = new System.Drawing.Size(310, 38);
     this.tableLayoutPanel9.TabIndex = 3;
     //
     // btnAddCompanies
     //
     this.btnAddCompanies.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddCompanies.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddCompanies.Appearance.Options.UseFont = true;
     this.btnAddCompanies.Image = ((System.Drawing.Image)(resources.GetObject("btnAddCompanies.Image")));
     this.btnAddCompanies.Location = new System.Drawing.Point(250, 8);
     this.btnAddCompanies.Name = "btnAddCompanies";
     this.btnAddCompanies.Size = new System.Drawing.Size(25, 22);
     this.btnAddCompanies.TabIndex = 6;
     this.btnAddCompanies.Click += new System.EventHandler(this.btnAddCompanies_Click);
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(3, 11);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(50, 16);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "Công ty";
     //
     // btnSearchCompany
     //
     this.btnSearchCompany.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSearchCompany.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearchCompany.Appearance.Options.UseFont = true;
     this.btnSearchCompany.Image = ((System.Drawing.Image)(resources.GetObject("btnSearchCompany.Image")));
     this.btnSearchCompany.Location = new System.Drawing.Point(281, 8);
     this.btnSearchCompany.Name = "btnSearchCompany";
     this.btnSearchCompany.Size = new System.Drawing.Size(25, 22);
     this.btnSearchCompany.TabIndex = 7;
     this.btnSearchCompany.Click += new System.EventHandler(this.btnSearchCompany_Click);
     //
     // lueCompany
     //
     this.lueCompany.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueCompany.Location = new System.Drawing.Point(70, 9);
     this.lueCompany.Name = "lueCompany";
     this.lueCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lueCompany.Properties.NullText = "";
     this.lueCompany.Properties.NullValuePrompt = "Chọn công ty";
     this.lueCompany.Properties.NullValuePromptShowForEmptyValue = true;
     this.lueCompany.Size = new System.Drawing.Size(174, 20);
     this.lueCompany.TabIndex = 5;
     this.lueCompany.EditValueChanged += new System.EventHandler(this.lueCompany_EditValueChanged);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 3.710938F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 88.67188F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7.617188F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(795, 512);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // frmIns_CustomerGroups_Customers
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(795, 512);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Location = new System.Drawing.Point(600, 150);
     this.Name = "frmIns_CustomerGroups_Customers";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thêm mới và xóa khách hàng ra khỏi nhóm";
     this.Load += new System.EventHandler(this.frmAddListCustomerToCustomerGroups_Load);
     this.tableLayoutPanel11.ResumeLayout(false);
     this.tableLayoutPanel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEditCustomers)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvSelectCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewSelectCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRemoveSelectCustomers)).EndInit();
     this.tableLayoutPanel10.ResumeLayout(false);
     this.tableLayoutPanel10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueCustomerGroup.Properties)).EndInit();
     this.tableLayoutPanel9.ResumeLayout(false);
     this.tableLayoutPanel9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueCompany.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #55
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(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);
 }
コード例 #56
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(RoomCheckOut));
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlRoom = new DevExpress.XtraGrid.GridControl();
     this.gridViewRoom = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.check_out_room_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_room_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_building_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_floor_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_roomtype_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_room_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_tenant_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_tenant_surname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_leave_date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_room_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_tenant_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_check_in_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_price_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_price_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.groupExpense = new DevExpress.XtraEditors.GroupControl();
     this.groupControlItem = new DevExpress.XtraEditors.GroupControl();
     this.gridControlItem = new DevExpress.XtraGrid.GridControl();
     this.gridViewItemList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmountPerUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVating = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemNetPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.bttRemoveItem = new DevExpress.XtraEditors.SimpleButton();
     this.bttAddItem = new DevExpress.XtraEditors.SimpleButton();
     this.labelControlBaht3 = new DevExpress.XtraEditors.LabelControl();
     this.textEditRefund = new DevExpress.XtraEditors.TextEdit();
     this.labelControlRefund = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlGeneralCost = new DevExpress.XtraGrid.GridControl();
     this.gridViewGeneralCost = 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.gridColumnNetPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControlCalculate = new DevExpress.XtraEditors.PanelControl();
     this.dateEditInvoiceDueDate = new DevExpress.XtraEditors.DateEdit();
     this.panelControlPricePerDay = new DevExpress.XtraEditors.PanelControl();
     this.textEditChargePrice = new DevExpress.XtraEditors.TextEdit();
     this.labelControlPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTipMSG = new DevExpress.XtraEditors.LabelControl();
     this.dateEditLeaveDate = new DevExpress.XtraEditors.DateEdit();
     this.bttCalculate = new DevExpress.XtraEditors.SimpleButton();
     this.labelControlRentalPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlCheckOutDate = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditCharge = new DevExpress.XtraEditors.LookUpEdit();
     this.groupControlMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditPhonePrice = new DevExpress.XtraEditors.TextEdit();
     this.groupControlEndMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditWMeterPresent = new DevExpress.XtraEditors.TextEdit();
     this.textEditEMeterPresent = new DevExpress.XtraEditors.TextEdit();
     this.groupControlEndDate = new DevExpress.XtraEditors.GroupControl();
     this.dateEditWMeterPresentDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditEMeterPresentDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditPhoneStart = new DevExpress.XtraEditors.DateEdit();
     this.dateEditPhoneEnd = new DevExpress.XtraEditors.DateEdit();
     this.textEditWaterMeterId = new DevExpress.XtraEditors.TextEdit();
     this.textEditElectricMeterId = new DevExpress.XtraEditors.TextEdit();
     this.groupControlStartMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditWMeterPreviousUnit = new DevExpress.XtraEditors.TextEdit();
     this.textEditEMeterPreviousUnit = new DevExpress.XtraEditors.TextEdit();
     this.labelControlPhoneMeter = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelAmount = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelEnd = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelStart = new DevExpress.XtraEditors.LabelControl();
     this.labelControlWaterMeter = new DevExpress.XtraEditors.LabelControl();
     this.labelControlElectricMeter = new DevExpress.XtraEditors.LabelControl();
     this.groupControlStartDate = new DevExpress.XtraEditors.GroupControl();
     this.dateEditWMeterPreviousDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditEMeterPreviousDate = new DevExpress.XtraEditors.DateEdit();
     this.groupRoomInfo = new DevExpress.XtraEditors.GroupControl();
     this.textEditRoomPrice = new DevExpress.XtraEditors.TextEdit();
     this.labelControlBaht0 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonth2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht1 = new DevExpress.XtraEditors.LabelControl();
     this.textEditInsurerate = new DevExpress.XtraEditors.TextEdit();
     this.textEditAdvance = new DevExpress.XtraEditors.TextEdit();
     this.labelControlInsurance = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDeposit = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonthlyRate = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditFloorId = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlFloor = new DevExpress.XtraEditors.LabelControl();
     this.textEditRoomLabel = new DevExpress.XtraEditors.TextEdit();
     this.labelControlRoomName = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditRoomTypeId = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditBuildingId = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlRoomType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuilding = new DevExpress.XtraEditors.LabelControl();
     this.groupControlRental = new DevExpress.XtraEditors.GroupControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.textEditTenantName = new DevExpress.XtraEditors.TextEdit();
     this.labelControlSurname = new DevExpress.XtraEditors.LabelControl();
     this.labelControlName = new DevExpress.XtraEditors.LabelControl();
     this.textEditTenantSurname = new DevExpress.XtraEditors.TextEdit();
     this.labelControlTitle = new DevExpress.XtraEditors.LabelControl();
     this.textEditPrefix = new DevExpress.XtraEditors.TextEdit();
     this.groupControlCheckOut = new DevExpress.XtraEditors.GroupControl();
     this.lookUpEditContractType = new DevExpress.XtraEditors.LookUpEdit();
     this.dateEditCheckInDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControlMonth = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMinimum = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRentType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlContractDate = new DevExpress.XtraEditors.LabelControl();
     this.labelControlContractNo = new DevExpress.XtraEditors.LabelControl();
     this.textEditMinimum = new DevExpress.XtraEditors.TextEdit();
     this.textEditContractNo = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.bttPrintInvoice = new DevExpress.XtraEditors.SimpleButton();
     this.bttPrintInsurance = new DevExpress.XtraEditors.SimpleButton();
     this.textEditRoomStatus = new DevExpress.XtraEditors.TextEdit();
     this.textEditCheckInId = new DevExpress.XtraEditors.TextEdit();
     this.textEditTenantId = new DevExpress.XtraEditors.TextEdit();
     this.textEditRoomId = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textEditRoomCode = new DevExpress.XtraEditors.TextEdit();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).BeginInit();
     this.groupControlList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupExpense)).BeginInit();
     this.groupExpense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlItem)).BeginInit();
     this.groupControlItem.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewItemList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRefund.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGeneralCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGeneralCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlCalculate)).BeginInit();
     this.panelControlCalculate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPricePerDay)).BeginInit();
     this.panelControlPricePerDay.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditChargePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditCharge.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlMeter)).BeginInit();
     this.groupControlMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPhonePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndMeter)).BeginInit();
     this.groupControlEndMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPresent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPresent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndDate)).BeginInit();
     this.groupControlEndDate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWaterMeterId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditElectricMeterId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartMeter)).BeginInit();
     this.groupControlStartMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPreviousUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPreviousUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartDate)).BeginInit();
     this.groupControlStartDate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoomInfo)).BeginInit();
     this.groupRoomInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInsurerate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAdvance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditFloorId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomLabel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditRoomTypeId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditBuildingId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlRental)).BeginInit();
     this.groupControlRental.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantSurname.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefix.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCheckOut)).BeginInit();
     this.groupControlCheckOut.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditContractType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMinimum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckInId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // 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.groupControlList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1296, 634);
     this.splitContainerControl2.SplitterPosition = 667;
     this.splitContainerControl2.TabIndex = 17;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlList
     //
     this.groupControlList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlList.AppearanceCaption.Options.UseFont = true;
     this.groupControlList.Controls.Add(this.gridControlRoom);
     this.groupControlList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlList.Location = new System.Drawing.Point(0, 0);
     this.groupControlList.Name = "groupControlList";
     this.groupControlList.Size = new System.Drawing.Size(667, 634);
     this.groupControlList.TabIndex = 0;
     this.groupControlList.Text = "รายการห้องที่มี่ผู้เช่าและแจ้งย้ายออก";
     //
     // gridControlRoom
     //
     this.gridControlRoom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlRoom.Location = new System.Drawing.Point(2, 22);
     this.gridControlRoom.MainView = this.gridViewRoom;
     this.gridControlRoom.Name = "gridControlRoom";
     this.gridControlRoom.Size = new System.Drawing.Size(663, 610);
     this.gridControlRoom.TabIndex = 1;
     this.gridControlRoom.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewRoom});
     //
     // gridViewRoom
     //
     this.gridViewRoom.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.check_out_room_code,
     this.grid_check_out_room_name,
     this.grid_check_out_building_label,
     this.grid_check_out_floor_code,
     this.grid_check_out_roomtype_label,
     this.grid_check_out_room_status,
     this.grid_check_out_tenant_name,
     this.grid_check_out_tenant_surname,
     this.grid_check_out_leave_date,
     this.check_out_room_id,
     this.check_out_tenant_id,
     this.check_out_check_in_id,
     this.check_out_insurerate_rate_monthly,
     this.check_out_insurerate_rate_weekly,
     this.check_out_insurerate_rate_daily,
     this.check_out_deposite_rate_monthly,
     this.check_out_deposite_rate_weekly,
     this.check_out_deposite_rate_daily,
     this.electricity_unit_rate_monthly,
     this.electricity_unit_rate_weekly,
     this.electricity_unit_rate_daily,
     this.electricity_unit_rate_min,
     this.electricity_price_rate_min,
     this.water_unit_rate_monthly,
     this.water_unit_rate_weekly,
     this.water_unit_rate_daily,
     this.water_unit_rate_min,
     this.water_price_rate_min});
     this.gridViewRoom.GridControl = this.gridControlRoom;
     this.gridViewRoom.Name = "gridViewRoom";
     this.gridViewRoom.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewRoom.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewRoom.OptionsFind.AlwaysVisible = true;
     this.gridViewRoom.OptionsFind.ShowCloseButton = false;
     this.gridViewRoom.OptionsView.ShowGroupPanel = false;
     //
     // check_out_room_code
     //
     this.check_out_room_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.check_out_room_code.AppearanceHeader.Options.UseFont = true;
     this.check_out_room_code.Caption = "รหัสห้อง";
     this.check_out_room_code.FieldName = "coderef";
     this.check_out_room_code.Name = "check_out_room_code";
     this.check_out_room_code.OptionsColumn.AllowEdit = false;
     this.check_out_room_code.OptionsColumn.AllowFocus = false;
     this.check_out_room_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.check_out_room_code.OptionsColumn.AllowMove = false;
     //
     // grid_check_out_room_name
     //
     this.grid_check_out_room_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_room_name.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_room_name.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_room_name.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_name.Caption = "ชื่อห้อง";
     this.grid_check_out_room_name.FieldName = "room_label";
     this.grid_check_out_room_name.Name = "grid_check_out_room_name";
     this.grid_check_out_room_name.OptionsColumn.AllowEdit = false;
     this.grid_check_out_room_name.OptionsColumn.AllowFocus = false;
     this.grid_check_out_room_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_room_name.OptionsColumn.AllowMove = false;
     this.grid_check_out_room_name.Visible = true;
     this.grid_check_out_room_name.VisibleIndex = 0;
     this.grid_check_out_room_name.Width = 70;
     //
     // grid_check_out_building_label
     //
     this.grid_check_out_building_label.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_building_label.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_building_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_building_label.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_building_label.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_building_label.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_building_label.Caption = "อาคาร";
     this.grid_check_out_building_label.FieldName = "building_label";
     this.grid_check_out_building_label.Name = "grid_check_out_building_label";
     this.grid_check_out_building_label.OptionsColumn.AllowEdit = false;
     this.grid_check_out_building_label.OptionsColumn.AllowFocus = false;
     this.grid_check_out_building_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_building_label.OptionsColumn.AllowMove = false;
     this.grid_check_out_building_label.Visible = true;
     this.grid_check_out_building_label.VisibleIndex = 1;
     this.grid_check_out_building_label.Width = 50;
     //
     // grid_check_out_floor_code
     //
     this.grid_check_out_floor_code.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_floor_code.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_floor_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_floor_code.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_floor_code.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_floor_code.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_floor_code.Caption = "ชั้น";
     this.grid_check_out_floor_code.FieldName = "floor_code";
     this.grid_check_out_floor_code.Name = "grid_check_out_floor_code";
     this.grid_check_out_floor_code.OptionsColumn.AllowEdit = false;
     this.grid_check_out_floor_code.OptionsColumn.AllowFocus = false;
     this.grid_check_out_floor_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_floor_code.OptionsColumn.AllowMove = false;
     this.grid_check_out_floor_code.Visible = true;
     this.grid_check_out_floor_code.VisibleIndex = 2;
     this.grid_check_out_floor_code.Width = 48;
     //
     // grid_check_out_roomtype_label
     //
     this.grid_check_out_roomtype_label.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_roomtype_label.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_roomtype_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_roomtype_label.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_roomtype_label.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_roomtype_label.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_roomtype_label.Caption = "ประเภท";
     this.grid_check_out_roomtype_label.FieldName = "roomtype_label";
     this.grid_check_out_roomtype_label.Name = "grid_check_out_roomtype_label";
     this.grid_check_out_roomtype_label.OptionsColumn.AllowEdit = false;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowFocus = false;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowMove = false;
     this.grid_check_out_roomtype_label.Visible = true;
     this.grid_check_out_roomtype_label.VisibleIndex = 3;
     this.grid_check_out_roomtype_label.Width = 60;
     //
     // grid_check_out_room_status
     //
     this.grid_check_out_room_status.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_room_status.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_status.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_room_status.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_room_status.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_room_status.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_status.Caption = "สถานะห้อง";
     this.grid_check_out_room_status.FieldName = "room_status_label";
     this.grid_check_out_room_status.Name = "grid_check_out_room_status";
     this.grid_check_out_room_status.OptionsColumn.AllowEdit = false;
     this.grid_check_out_room_status.OptionsColumn.AllowFocus = false;
     this.grid_check_out_room_status.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_room_status.OptionsColumn.AllowMove = false;
     this.grid_check_out_room_status.Visible = true;
     this.grid_check_out_room_status.VisibleIndex = 4;
     this.grid_check_out_room_status.Width = 64;
     //
     // grid_check_out_tenant_name
     //
     this.grid_check_out_tenant_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_tenant_name.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_tenant_name.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_tenant_name.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_tenant_name.Caption = "ชื่อ";
     this.grid_check_out_tenant_name.FieldName = "tenant_name";
     this.grid_check_out_tenant_name.Name = "grid_check_out_tenant_name";
     this.grid_check_out_tenant_name.OptionsColumn.AllowEdit = false;
     this.grid_check_out_tenant_name.OptionsColumn.AllowFocus = false;
     this.grid_check_out_tenant_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_tenant_name.OptionsColumn.AllowMove = false;
     this.grid_check_out_tenant_name.Visible = true;
     this.grid_check_out_tenant_name.VisibleIndex = 5;
     this.grid_check_out_tenant_name.Width = 82;
     //
     // grid_check_out_tenant_surname
     //
     this.grid_check_out_tenant_surname.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_tenant_surname.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_tenant_surname.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_tenant_surname.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_tenant_surname.Caption = "นามสกุล";
     this.grid_check_out_tenant_surname.FieldName = "tenant_surname";
     this.grid_check_out_tenant_surname.Name = "grid_check_out_tenant_surname";
     this.grid_check_out_tenant_surname.OptionsColumn.AllowEdit = false;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowFocus = false;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowMove = false;
     this.grid_check_out_tenant_surname.Visible = true;
     this.grid_check_out_tenant_surname.VisibleIndex = 6;
     this.grid_check_out_tenant_surname.Width = 82;
     //
     // grid_check_out_leave_date
     //
     this.grid_check_out_leave_date.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_leave_date.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_leave_date.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_leave_date.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_leave_date.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_leave_date.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_leave_date.Caption = "วันที่ต้องการย้ายออก";
     this.grid_check_out_leave_date.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.grid_check_out_leave_date.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.grid_check_out_leave_date.FieldName = "leave_date";
     this.grid_check_out_leave_date.Name = "grid_check_out_leave_date";
     this.grid_check_out_leave_date.OptionsColumn.AllowEdit = false;
     this.grid_check_out_leave_date.OptionsColumn.AllowFocus = false;
     this.grid_check_out_leave_date.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_leave_date.OptionsColumn.AllowMove = false;
     this.grid_check_out_leave_date.Visible = true;
     this.grid_check_out_leave_date.VisibleIndex = 7;
     this.grid_check_out_leave_date.Width = 111;
     //
     // check_out_room_id
     //
     this.check_out_room_id.Caption = "room_id";
     this.check_out_room_id.FieldName = "room_id";
     this.check_out_room_id.Name = "check_out_room_id";
     //
     // check_out_tenant_id
     //
     this.check_out_tenant_id.Caption = "tenant_id";
     this.check_out_tenant_id.FieldName = "tenant_id";
     this.check_out_tenant_id.Name = "check_out_tenant_id";
     //
     // check_out_check_in_id
     //
     this.check_out_check_in_id.Caption = "check_in_id";
     this.check_out_check_in_id.FieldName = "check_in_id";
     this.check_out_check_in_id.Name = "check_out_check_in_id";
     //
     // check_out_insurerate_rate_monthly
     //
     this.check_out_insurerate_rate_monthly.Caption = "insurerate_rate_monthly";
     this.check_out_insurerate_rate_monthly.FieldName = "insurerate_rate_monthly";
     this.check_out_insurerate_rate_monthly.Name = "check_out_insurerate_rate_monthly";
     //
     // check_out_insurerate_rate_weekly
     //
     this.check_out_insurerate_rate_weekly.Caption = "check_out_insurerate_rate_weekly";
     this.check_out_insurerate_rate_weekly.FieldName = "insurerate_rate_weekly";
     this.check_out_insurerate_rate_weekly.Name = "check_out_insurerate_rate_weekly";
     //
     // check_out_insurerate_rate_daily
     //
     this.check_out_insurerate_rate_daily.Caption = "check_out_insurerate_rate_daily";
     this.check_out_insurerate_rate_daily.FieldName = "insurerate_rate_daily";
     this.check_out_insurerate_rate_daily.Name = "check_out_insurerate_rate_daily";
     //
     // check_out_deposite_rate_monthly
     //
     this.check_out_deposite_rate_monthly.Caption = "check_out_deposite_rate_monthly";
     this.check_out_deposite_rate_monthly.FieldName = "deposite_rate_monthly";
     this.check_out_deposite_rate_monthly.Name = "check_out_deposite_rate_monthly";
     //
     // check_out_deposite_rate_weekly
     //
     this.check_out_deposite_rate_weekly.Caption = "check_out_deposite_rate_weekly";
     this.check_out_deposite_rate_weekly.FieldName = "deposite_rate_weekly";
     this.check_out_deposite_rate_weekly.Name = "check_out_deposite_rate_weekly";
     //
     // check_out_deposite_rate_daily
     //
     this.check_out_deposite_rate_daily.Caption = "check_out_deposite_rate_daily";
     this.check_out_deposite_rate_daily.FieldName = "deposite_rate_daily";
     this.check_out_deposite_rate_daily.Name = "check_out_deposite_rate_daily";
     //
     // electricity_unit_rate_monthly
     //
     this.electricity_unit_rate_monthly.Caption = "electricity_unit_rate_monthly";
     this.electricity_unit_rate_monthly.FieldName = "electricity_unit_rate_monthly";
     this.electricity_unit_rate_monthly.Name = "electricity_unit_rate_monthly";
     //
     // electricity_unit_rate_weekly
     //
     this.electricity_unit_rate_weekly.Caption = "electricity_unit_rate_weekly";
     this.electricity_unit_rate_weekly.FieldName = "electricity_unit_rate_weekly";
     this.electricity_unit_rate_weekly.Name = "electricity_unit_rate_weekly";
     //
     // electricity_unit_rate_daily
     //
     this.electricity_unit_rate_daily.Caption = "electricity_unit_rate_daily";
     this.electricity_unit_rate_daily.FieldName = "electricity_unit_rate_daily";
     this.electricity_unit_rate_daily.Name = "electricity_unit_rate_daily";
     //
     // electricity_unit_rate_min
     //
     this.electricity_unit_rate_min.Caption = "electricity_unit_rate_min";
     this.electricity_unit_rate_min.FieldName = "electricity_unit_rate_min";
     this.electricity_unit_rate_min.Name = "electricity_unit_rate_min";
     //
     // electricity_price_rate_min
     //
     this.electricity_price_rate_min.Caption = "electricity_price_rate_min";
     this.electricity_price_rate_min.FieldName = "electricity_price_rate_min";
     this.electricity_price_rate_min.Name = "electricity_price_rate_min";
     //
     // water_unit_rate_monthly
     //
     this.water_unit_rate_monthly.Caption = "water_unit_rate_monthly";
     this.water_unit_rate_monthly.FieldName = "water_unit_rate_monthly";
     this.water_unit_rate_monthly.Name = "water_unit_rate_monthly";
     //
     // water_unit_rate_weekly
     //
     this.water_unit_rate_weekly.Caption = "water_unit_rate_weekly";
     this.water_unit_rate_weekly.FieldName = "water_unit_rate_weekly";
     this.water_unit_rate_weekly.Name = "water_unit_rate_weekly";
     //
     // water_unit_rate_daily
     //
     this.water_unit_rate_daily.Caption = "water_unit_rate_daily";
     this.water_unit_rate_daily.FieldName = "water_unit_rate_daily";
     this.water_unit_rate_daily.Name = "water_unit_rate_daily";
     //
     // water_unit_rate_min
     //
     this.water_unit_rate_min.Caption = "water_unit_rate_min";
     this.water_unit_rate_min.FieldName = "water_unit_rate_min";
     this.water_unit_rate_min.Name = "water_unit_rate_min";
     //
     // water_price_rate_min
     //
     this.water_price_rate_min.Caption = "water_price_rate_min";
     this.water_price_rate_min.FieldName = "water_price_rate_min";
     this.water_price_rate_min.Name = "water_price_rate_min";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.xtraScrollableControl1);
     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(624, 568);
     this.panelControl3.TabIndex = 12;
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupExpense);
     this.xtraScrollableControl1.Controls.Add(this.panelControlCalculate);
     this.xtraScrollableControl1.Controls.Add(this.groupControlMeter);
     this.xtraScrollableControl1.Controls.Add(this.groupRoomInfo);
     this.xtraScrollableControl1.Controls.Add(this.groupControlRental);
     this.xtraScrollableControl1.Controls.Add(this.groupControlCheckOut);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(624, 568);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // groupExpense
     //
     this.groupExpense.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupExpense.AppearanceCaption.Options.UseFont = true;
     this.groupExpense.Controls.Add(this.groupControlItem);
     this.groupExpense.Controls.Add(this.panelControl4);
     this.groupExpense.Controls.Add(this.panelControl2);
     this.groupExpense.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupExpense.Location = new System.Drawing.Point(0, 612);
     this.groupExpense.Name = "groupExpense";
     this.groupExpense.Size = new System.Drawing.Size(607, 347);
     this.groupExpense.TabIndex = 367;
     this.groupExpense.Text = "รายการค่าใช้จ่ายประจำเดือน";
     //
     // groupControlItem
     //
     this.groupControlItem.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlItem.AppearanceCaption.Options.UseFont = true;
     this.groupControlItem.Controls.Add(this.gridControlItem);
     this.groupControlItem.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlItem.Location = new System.Drawing.Point(2, 138);
     this.groupControlItem.Name = "groupControlItem";
     this.groupControlItem.Size = new System.Drawing.Size(603, 147);
     this.groupControlItem.TabIndex = 316;
     this.groupControlItem.Text = "รายการค่าใช้จ่ายเพิ่มเติม";
     //
     // gridControlItem
     //
     this.gridControlItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlItem.Location = new System.Drawing.Point(2, 22);
     this.gridControlItem.MainView = this.gridViewItemList;
     this.gridControlItem.Name = "gridControlItem";
     this.gridControlItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gridControlItem.Size = new System.Drawing.Size(599, 123);
     this.gridControlItem.TabIndex = 284;
     this.gridControlItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewItemList});
     //
     // gridViewItemList
     //
     this.gridViewItemList.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewItemList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumNo,
     this.colInvoiceItemName,
     this.gridColumnAmount,
     this.gridColumnAmountPerUnit,
     this.colInvoiceItemPrice,
     this.gridColumnVat,
     this.gridColumnVating,
     this.colInvoiceItemId,
     this.gridColumnItemNetPrice});
     this.gridViewItemList.GridControl = this.gridControlItem;
     this.gridViewItemList.Name = "gridViewItemList";
     this.gridViewItemList.OptionsView.ShowGroupPanel = false;
     //
     // gridColumNo
     //
     this.gridColumNo.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumNo.AppearanceHeader.Options.UseFont = true;
     this.gridColumNo.Caption = "ลำดับ";
     this.gridColumNo.FieldName = "order";
     this.gridColumNo.Name = "gridColumNo";
     this.gridColumNo.OptionsColumn.AllowEdit = false;
     this.gridColumNo.OptionsColumn.AllowFocus = false;
     this.gridColumNo.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumNo.OptionsColumn.AllowMove = false;
     this.gridColumNo.OptionsColumn.FixedWidth = true;
     this.gridColumNo.OptionsColumn.ReadOnly = true;
     this.gridColumNo.OptionsColumn.ShowCaption = false;
     this.gridColumNo.Visible = true;
     this.gridColumNo.VisibleIndex = 0;
     this.gridColumNo.Width = 39;
     //
     // colInvoiceItemName
     //
     this.colInvoiceItemName.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colInvoiceItemName.AppearanceHeader.Options.UseFont = true;
     this.colInvoiceItemName.Caption = "รายการ";
     this.colInvoiceItemName.FieldName = "item_name";
     this.colInvoiceItemName.Name = "colInvoiceItemName";
     this.colInvoiceItemName.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemName.OptionsColumn.AllowFocus = false;
     this.colInvoiceItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceItemName.OptionsColumn.AllowMove = false;
     this.colInvoiceItemName.OptionsColumn.FixedWidth = true;
     this.colInvoiceItemName.OptionsColumn.ReadOnly = true;
     this.colInvoiceItemName.OptionsColumn.ShowCaption = false;
     this.colInvoiceItemName.Visible = true;
     this.colInvoiceItemName.VisibleIndex = 1;
     this.colInvoiceItemName.Width = 63;
     //
     // gridColumnAmount
     //
     this.gridColumnAmount.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmount.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmount.Caption = "จำนวน";
     this.gridColumnAmount.DisplayFormat.FormatString = "n2";
     this.gridColumnAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnAmount.FieldName = "item_amount";
     this.gridColumnAmount.Name = "gridColumnAmount";
     this.gridColumnAmount.OptionsColumn.AllowEdit = false;
     this.gridColumnAmount.OptionsColumn.AllowFocus = false;
     this.gridColumnAmount.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnAmount.OptionsColumn.AllowMove = false;
     this.gridColumnAmount.OptionsColumn.FixedWidth = true;
     this.gridColumnAmount.OptionsColumn.ReadOnly = true;
     this.gridColumnAmount.OptionsColumn.ShowCaption = false;
     this.gridColumnAmount.Visible = true;
     this.gridColumnAmount.VisibleIndex = 2;
     this.gridColumnAmount.Width = 63;
     //
     // gridColumnAmountPerUnit
     //
     this.gridColumnAmountPerUnit.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmountPerUnit.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmountPerUnit.Caption = "จำนวนเงินต่อหน่วย";
     this.gridColumnAmountPerUnit.DisplayFormat.FormatString = "n2";
     this.gridColumnAmountPerUnit.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnAmountPerUnit.FieldName = "item_priceperunit";
     this.gridColumnAmountPerUnit.Name = "gridColumnAmountPerUnit";
     this.gridColumnAmountPerUnit.OptionsColumn.AllowEdit = false;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowFocus = false;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowMove = false;
     this.gridColumnAmountPerUnit.OptionsColumn.FixedWidth = true;
     this.gridColumnAmountPerUnit.OptionsColumn.ReadOnly = true;
     this.gridColumnAmountPerUnit.OptionsColumn.ShowCaption = false;
     this.gridColumnAmountPerUnit.Visible = true;
     this.gridColumnAmountPerUnit.VisibleIndex = 3;
     this.gridColumnAmountPerUnit.Width = 134;
     //
     // colInvoiceItemPrice
     //
     this.colInvoiceItemPrice.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colInvoiceItemPrice.AppearanceHeader.Options.UseFont = true;
     this.colInvoiceItemPrice.Caption = "จำนวนเงินรวม";
     this.colInvoiceItemPrice.DisplayFormat.FormatString = "n2";
     this.colInvoiceItemPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colInvoiceItemPrice.FieldName = "item_sumprice";
     this.colInvoiceItemPrice.Name = "colInvoiceItemPrice";
     this.colInvoiceItemPrice.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemPrice.OptionsColumn.AllowFocus = false;
     this.colInvoiceItemPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceItemPrice.OptionsColumn.AllowMove = false;
     this.colInvoiceItemPrice.OptionsColumn.FixedWidth = true;
     this.colInvoiceItemPrice.OptionsColumn.ReadOnly = true;
     this.colInvoiceItemPrice.OptionsColumn.ShowCaption = false;
     this.colInvoiceItemPrice.Visible = true;
     this.colInvoiceItemPrice.VisibleIndex = 4;
     this.colInvoiceItemPrice.Width = 134;
     //
     // gridColumnVat
     //
     this.gridColumnVat.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnVat.AppearanceHeader.Options.UseFont = true;
     this.gridColumnVat.Caption = "ภาษี";
     this.gridColumnVat.DisplayFormat.FormatString = "n2";
     this.gridColumnVat.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnVat.FieldName = "item_vatprice";
     this.gridColumnVat.Name = "gridColumnVat";
     this.gridColumnVat.OptionsColumn.AllowEdit = false;
     this.gridColumnVat.OptionsColumn.AllowFocus = false;
     this.gridColumnVat.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnVat.OptionsColumn.AllowMove = false;
     this.gridColumnVat.OptionsColumn.FixedWidth = true;
     this.gridColumnVat.OptionsColumn.ReadOnly = true;
     this.gridColumnVat.OptionsColumn.ShowCaption = false;
     this.gridColumnVat.Visible = true;
     this.gridColumnVat.VisibleIndex = 5;
     this.gridColumnVat.Width = 63;
     //
     // gridColumnVating
     //
     this.gridColumnVating.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnVating.AppearanceHeader.Options.UseFont = true;
     this.gridColumnVating.Caption = "คิดภาษี";
     this.gridColumnVating.FieldName = "item_vat_bool";
     this.gridColumnVating.Name = "gridColumnVating";
     this.gridColumnVating.OptionsColumn.AllowEdit = false;
     this.gridColumnVating.OptionsColumn.AllowFocus = false;
     this.gridColumnVating.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnVating.OptionsColumn.AllowMove = false;
     this.gridColumnVating.OptionsColumn.FixedWidth = true;
     this.gridColumnVating.OptionsColumn.ReadOnly = true;
     this.gridColumnVating.OptionsColumn.ShowCaption = false;
     this.gridColumnVating.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnVating.Visible = true;
     this.gridColumnVating.VisibleIndex = 7;
     this.gridColumnVating.Width = 67;
     //
     // colInvoiceItemId
     //
     this.colInvoiceItemId.Caption = "ItemId";
     this.colInvoiceItemId.FieldName = "item_id";
     this.colInvoiceItemId.Name = "colInvoiceItemId";
     this.colInvoiceItemId.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemId.OptionsColumn.AllowFocus = false;
     //
     // gridColumnItemNetPrice
     //
     this.gridColumnItemNetPrice.Caption = "จำนวนเงินสุทธิ";
     this.gridColumnItemNetPrice.DisplayFormat.FormatString = "n2";
     this.gridColumnItemNetPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnItemNetPrice.FieldName = "item_netprice";
     this.gridColumnItemNetPrice.Name = "gridColumnItemNetPrice";
     this.gridColumnItemNetPrice.OptionsColumn.AllowEdit = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowFocus = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnItemNetPrice.OptionsColumn.AllowMove = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowSize = false;
     this.gridColumnItemNetPrice.OptionsColumn.FixedWidth = true;
     this.gridColumnItemNetPrice.OptionsColumn.ReadOnly = true;
     this.gridColumnItemNetPrice.OptionsColumn.ShowCaption = false;
     this.gridColumnItemNetPrice.Visible = true;
     this.gridColumnItemNetPrice.VisibleIndex = 6;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.bttRemoveItem);
     this.panelControl4.Controls.Add(this.bttAddItem);
     this.panelControl4.Controls.Add(this.labelControlBaht3);
     this.panelControl4.Controls.Add(this.textEditRefund);
     this.panelControl4.Controls.Add(this.labelControlRefund);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl4.Location = new System.Drawing.Point(2, 289);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(603, 56);
     this.panelControl4.TabIndex = 315;
     //
     // bttRemoveItem
     //
     this.bttRemoveItem.Location = new System.Drawing.Point(105, 19);
     this.bttRemoveItem.Name = "bttRemoveItem";
     this.bttRemoveItem.Size = new System.Drawing.Size(90, 25);
     this.bttRemoveItem.TabIndex = 311;
     this.bttRemoveItem.Text = "ลบ";
     //
     // bttAddItem
     //
     this.bttAddItem.Location = new System.Drawing.Point(9, 19);
     this.bttAddItem.Name = "bttAddItem";
     this.bttAddItem.Size = new System.Drawing.Size(90, 25);
     this.bttAddItem.TabIndex = 310;
     this.bttAddItem.Text = "เพิ่ม";
     //
     // labelControlBaht3
     //
     this.labelControlBaht3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBaht3.Location = new System.Drawing.Point(570, 31);
     this.labelControlBaht3.Name = "labelControlBaht3";
     this.labelControlBaht3.Size = new System.Drawing.Size(20, 13);
     this.labelControlBaht3.TabIndex = 313;
     this.labelControlBaht3.Text = "บาท";
     //
     // textEditRefund
     //
     this.textEditRefund.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditRefund.EditValue = "";
     this.textEditRefund.Enabled = false;
     this.textEditRefund.Location = new System.Drawing.Point(359, 24);
     this.textEditRefund.Name = "textEditRefund";
     this.textEditRefund.Properties.Mask.EditMask = "n2";
     this.textEditRefund.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditRefund.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditRefund.Size = new System.Drawing.Size(205, 20);
     this.textEditRefund.TabIndex = 309;
     //
     // labelControlRefund
     //
     this.labelControlRefund.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlRefund.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRefund.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRefund.Location = new System.Drawing.Point(267, 31);
     this.labelControlRefund.Name = "labelControlRefund";
     this.labelControlRefund.Size = new System.Drawing.Size(86, 13);
     this.labelControlRefund.TabIndex = 312;
     this.labelControlRefund.Text = "จำนวนเงินคืน :";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.gridControlGeneralCost);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 22);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(603, 116);
     this.panelControl2.TabIndex = 314;
     //
     // gridControlGeneralCost
     //
     this.gridControlGeneralCost.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlGeneralCost.Enabled = false;
     this.gridControlGeneralCost.Location = new System.Drawing.Point(2, 2);
     this.gridControlGeneralCost.MainView = this.gridViewGeneralCost;
     this.gridControlGeneralCost.Name = "gridControlGeneralCost";
     this.gridControlGeneralCost.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2});
     this.gridControlGeneralCost.Size = new System.Drawing.Size(599, 112);
     this.gridControlGeneralCost.TabIndex = 285;
     this.gridControlGeneralCost.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGeneralCost,
     this.gridView1});
     //
     // gridViewGeneralCost
     //
     this.gridViewGeneralCost.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewGeneralCost.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumnNetPrice});
     this.gridViewGeneralCost.GridControl = this.gridControlGeneralCost;
     this.gridViewGeneralCost.Name = "gridViewGeneralCost";
     this.gridViewGeneralCost.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.Caption = "ลำดับ";
     this.gridColumn1.FieldName = "order";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.OptionsColumn.FixedWidth = true;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 39;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.Caption = "รายการ";
     this.gridColumn2.FieldName = "item_name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.FixedWidth = true;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 63;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.Caption = "จำนวน";
     this.gridColumn3.DisplayFormat.FormatString = "n2";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.FieldName = "item_amount";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.FixedWidth = true;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 63;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.Caption = "จำนวนเงินต่อหน่วย";
     this.gridColumn4.DisplayFormat.FormatString = "n2";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "item_priceperunit";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowFocus = false;
     this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.OptionsColumn.AllowMove = false;
     this.gridColumn4.OptionsColumn.FixedWidth = true;
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 134;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.Caption = "จำนวนเงินรวม";
     this.gridColumn5.DisplayFormat.FormatString = "n2";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "item_sumprice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.FixedWidth = true;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 134;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.Caption = "ภาษี";
     this.gridColumn6.DisplayFormat.FormatString = "n2";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "item_vatprice";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.AllowFocus = false;
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.FixedWidth = true;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 63;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.Caption = "คิดภาษี";
     this.gridColumn7.FieldName = "item_vat_bool";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.FixedWidth = true;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 7;
     this.gridColumn7.Width = 67;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "ItemId";
     this.gridColumn8.FieldName = "item_id";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.AllowFocus = false;
     //
     // gridColumnNetPrice
     //
     this.gridColumnNetPrice.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnNetPrice.AppearanceHeader.Options.UseFont = true;
     this.gridColumnNetPrice.Caption = "จำนวนเงินสุทธิ";
     this.gridColumnNetPrice.DisplayFormat.FormatString = "n2";
     this.gridColumnNetPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnNetPrice.FieldName = "item_netprice";
     this.gridColumnNetPrice.Name = "gridColumnNetPrice";
     this.gridColumnNetPrice.OptionsColumn.AllowEdit = false;
     this.gridColumnNetPrice.OptionsColumn.AllowFocus = false;
     this.gridColumnNetPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnNetPrice.OptionsColumn.AllowMove = false;
     this.gridColumnNetPrice.OptionsColumn.AllowSize = false;
     this.gridColumnNetPrice.OptionsColumn.FixedWidth = true;
     this.gridColumnNetPrice.OptionsColumn.ReadOnly = true;
     this.gridColumnNetPrice.Visible = true;
     this.gridColumnNetPrice.VisibleIndex = 6;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlGeneralCost;
     this.gridView1.Name = "gridView1";
     //
     // panelControlCalculate
     //
     this.panelControlCalculate.Controls.Add(this.dateEditInvoiceDueDate);
     this.panelControlCalculate.Controls.Add(this.panelControlPricePerDay);
     this.panelControlCalculate.Controls.Add(this.labelControlTipMSG);
     this.panelControlCalculate.Controls.Add(this.dateEditLeaveDate);
     this.panelControlCalculate.Controls.Add(this.bttCalculate);
     this.panelControlCalculate.Controls.Add(this.labelControlRentalPrice);
     this.panelControlCalculate.Controls.Add(this.labelControlCheckOutDate);
     this.panelControlCalculate.Controls.Add(this.lookUpEditCharge);
     this.panelControlCalculate.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlCalculate.Location = new System.Drawing.Point(0, 470);
     this.panelControlCalculate.Name = "panelControlCalculate";
     this.panelControlCalculate.Size = new System.Drawing.Size(607, 142);
     this.panelControlCalculate.TabIndex = 366;
     //
     // dateEditInvoiceDueDate
     //
     this.dateEditInvoiceDueDate.EditValue = new System.DateTime(2013, 3, 15, 0, 0, 0, 0);
     this.dateEditInvoiceDueDate.Enabled = false;
     this.dateEditInvoiceDueDate.Location = new System.Drawing.Point(457, 72);
     this.dateEditInvoiceDueDate.Name = "dateEditInvoiceDueDate";
     this.dateEditInvoiceDueDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditInvoiceDueDate.Properties.DisplayFormat.FormatString = "dd MMMM yyyy";
     this.dateEditInvoiceDueDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditInvoiceDueDate.Properties.EditFormat.FormatString = "dd MMMM yyyy";
     this.dateEditInvoiceDueDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditInvoiceDueDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditInvoiceDueDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditInvoiceDueDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditInvoiceDueDate.Size = new System.Drawing.Size(86, 20);
     this.dateEditInvoiceDueDate.TabIndex = 458;
     this.dateEditInvoiceDueDate.Visible = false;
     //
     // panelControlPricePerDay
     //
     this.panelControlPricePerDay.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPricePerDay.Controls.Add(this.textEditChargePrice);
     this.panelControlPricePerDay.Controls.Add(this.labelControlPrice);
     this.panelControlPricePerDay.Controls.Add(this.labelControlBaht2);
     this.panelControlPricePerDay.Location = new System.Drawing.Point(11, 63);
     this.panelControlPricePerDay.Name = "panelControlPricePerDay";
     this.panelControlPricePerDay.Size = new System.Drawing.Size(323, 30);
     this.panelControlPricePerDay.TabIndex = 457;
     this.panelControlPricePerDay.Visible = false;
     //
     // textEditChargePrice
     //
     this.textEditChargePrice.EditValue = "0.00";
     this.textEditChargePrice.Enabled = false;
     this.textEditChargePrice.Location = new System.Drawing.Point(94, 5);
     this.textEditChargePrice.Name = "textEditChargePrice";
     this.textEditChargePrice.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditChargePrice.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditChargePrice.Properties.Mask.BeepOnError = true;
     this.textEditChargePrice.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditChargePrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditChargePrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditChargePrice.Size = new System.Drawing.Size(156, 20);
     this.textEditChargePrice.TabIndex = 455;
     //
     // labelControlPrice
     //
     this.labelControlPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPrice.Location = new System.Drawing.Point(0, 12);
     this.labelControlPrice.Name = "labelControlPrice";
     this.labelControlPrice.Size = new System.Drawing.Size(92, 13);
     this.labelControlPrice.TabIndex = 454;
     this.labelControlPrice.Text = "ราคา :";
     //
     // labelControlBaht2
     //
     this.labelControlBaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht2.Location = new System.Drawing.Point(256, 12);
     this.labelControlBaht2.Name = "labelControlBaht2";
     this.labelControlBaht2.Size = new System.Drawing.Size(53, 13);
     this.labelControlBaht2.TabIndex = 453;
     this.labelControlBaht2.Text = "บาท/วัน";
     //
     // labelControlTipMSG
     //
     this.labelControlTipMSG.Appearance.ForeColor = System.Drawing.Color.Green;
     this.labelControlTipMSG.Location = new System.Drawing.Point(109, 78);
     this.labelControlTipMSG.Name = "labelControlTipMSG";
     this.labelControlTipMSG.Padding = new System.Windows.Forms.Padding(10);
     this.labelControlTipMSG.Size = new System.Drawing.Size(151, 33);
     this.labelControlTipMSG.TabIndex = 456;
     this.labelControlTipMSG.Text = "คิดเต็มเดือนตามประเภทห้อง";
     //
     // dateEditLeaveDate
     //
     this.dateEditLeaveDate.EditValue = new System.DateTime(2013, 3, 3, 23, 51, 3, 0);
     this.dateEditLeaveDate.Enabled = false;
     this.dateEditLeaveDate.Location = new System.Drawing.Point(107, 11);
     this.dateEditLeaveDate.Name = "dateEditLeaveDate";
     this.dateEditLeaveDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditLeaveDate.Properties.DisplayFormat.FormatString = "dd MMMM yyyy";
     this.dateEditLeaveDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditLeaveDate.Properties.EditFormat.FormatString = "dd MMMM yyyy";
     this.dateEditLeaveDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditLeaveDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditLeaveDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditLeaveDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditLeaveDate.Size = new System.Drawing.Size(157, 20);
     this.dateEditLeaveDate.TabIndex = 448;
     //
     // bttCalculate
     //
     this.bttCalculate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.bttCalculate.Appearance.Options.UseFont = true;
     this.bttCalculate.Enabled = false;
     this.bttCalculate.Location = new System.Drawing.Point(448, 14);
     this.bttCalculate.Name = "bttCalculate";
     this.bttCalculate.Size = new System.Drawing.Size(105, 39);
     this.bttCalculate.TabIndex = 449;
     this.bttCalculate.Text = "คำนวนค่าใช้จ่าย";
     //
     // labelControlRentalPrice
     //
     this.labelControlRentalPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRentalPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRentalPrice.Location = new System.Drawing.Point(20, 44);
     this.labelControlRentalPrice.Name = "labelControlRentalPrice";
     this.labelControlRentalPrice.Size = new System.Drawing.Size(84, 13);
     this.labelControlRentalPrice.TabIndex = 452;
     this.labelControlRentalPrice.Text = "คิดค่าห้อง :";
     //
     // labelControlCheckOutDate
     //
     this.labelControlCheckOutDate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlCheckOutDate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlCheckOutDate.Location = new System.Drawing.Point(20, 18);
     this.labelControlCheckOutDate.Name = "labelControlCheckOutDate";
     this.labelControlCheckOutDate.Size = new System.Drawing.Size(84, 13);
     this.labelControlCheckOutDate.TabIndex = 451;
     this.labelControlCheckOutDate.Text = "วันที่ย้ายออก :";
     //
     // lookUpEditCharge
     //
     this.lookUpEditCharge.Enabled = false;
     this.lookUpEditCharge.Location = new System.Drawing.Point(107, 37);
     this.lookUpEditCharge.Name = "lookUpEditCharge";
     this.lookUpEditCharge.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditCharge.Size = new System.Drawing.Size(156, 20);
     this.lookUpEditCharge.TabIndex = 105;
     //
     // groupControlMeter
     //
     this.groupControlMeter.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlMeter.AppearanceCaption.Options.UseFont = true;
     this.groupControlMeter.Controls.Add(this.textEditPhonePrice);
     this.groupControlMeter.Controls.Add(this.groupControlEndMeter);
     this.groupControlMeter.Controls.Add(this.groupControlEndDate);
     this.groupControlMeter.Controls.Add(this.dateEditPhoneStart);
     this.groupControlMeter.Controls.Add(this.dateEditPhoneEnd);
     this.groupControlMeter.Controls.Add(this.textEditWaterMeterId);
     this.groupControlMeter.Controls.Add(this.textEditElectricMeterId);
     this.groupControlMeter.Controls.Add(this.groupControlStartMeter);
     this.groupControlMeter.Controls.Add(this.labelControlPhoneMeter);
     this.groupControlMeter.Controls.Add(this.labelControlTelAmount);
     this.groupControlMeter.Controls.Add(this.labelControlTelEnd);
     this.groupControlMeter.Controls.Add(this.labelControlTelStart);
     this.groupControlMeter.Controls.Add(this.labelControlWaterMeter);
     this.groupControlMeter.Controls.Add(this.labelControlElectricMeter);
     this.groupControlMeter.Controls.Add(this.groupControlStartDate);
     this.groupControlMeter.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlMeter.Location = new System.Drawing.Point(0, 304);
     this.groupControlMeter.Name = "groupControlMeter";
     this.groupControlMeter.Size = new System.Drawing.Size(607, 166);
     this.groupControlMeter.TabIndex = 354;
     this.groupControlMeter.Text = "บันทึกค่าสาธารณูปโภค";
     //
     // textEditPhonePrice
     //
     this.textEditPhonePrice.EditValue = "0.000";
     this.textEditPhonePrice.Enabled = false;
     this.textEditPhonePrice.Location = new System.Drawing.Point(337, 125);
     this.textEditPhonePrice.Name = "textEditPhonePrice";
     this.textEditPhonePrice.Properties.DisplayFormat.FormatString = "n2";
     this.textEditPhonePrice.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditPhonePrice.Properties.EditFormat.FormatString = "n2";
     this.textEditPhonePrice.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditPhonePrice.Properties.Mask.EditMask = "n2";
     this.textEditPhonePrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditPhonePrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditPhonePrice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditPhonePrice.Size = new System.Drawing.Size(94, 20);
     this.textEditPhonePrice.TabIndex = 357;
     //
     // groupControlEndMeter
     //
     this.groupControlEndMeter.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlEndMeter.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlEndMeter.Controls.Add(this.textEditWMeterPresent);
     this.groupControlEndMeter.Controls.Add(this.textEditEMeterPresent);
     this.groupControlEndMeter.Location = new System.Drawing.Point(331, 25);
     this.groupControlEndMeter.Name = "groupControlEndMeter";
     this.groupControlEndMeter.Size = new System.Drawing.Size(111, 82);
     this.groupControlEndMeter.TabIndex = 389;
     this.groupControlEndMeter.Text = "เลขมิเตอร์ล่าสุด";
     //
     // textEditWMeterPresent
     //
     this.textEditWMeterPresent.EditValue = "0.000";
     this.textEditWMeterPresent.Enabled = false;
     this.textEditWMeterPresent.Location = new System.Drawing.Point(6, 51);
     this.textEditWMeterPresent.Name = "textEditWMeterPresent";
     this.textEditWMeterPresent.Properties.DisplayFormat.FormatString = "n3";
     this.textEditWMeterPresent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPresent.Properties.EditFormat.FormatString = "n3";
     this.textEditWMeterPresent.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPresent.Properties.Mask.EditMask = "n2";
     this.textEditWMeterPresent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditWMeterPresent.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditWMeterPresent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditWMeterPresent.Size = new System.Drawing.Size(94, 20);
     this.textEditWMeterPresent.TabIndex = 357;
     //
     // textEditEMeterPresent
     //
     this.textEditEMeterPresent.EditValue = "0.000";
     this.textEditEMeterPresent.Enabled = false;
     this.textEditEMeterPresent.Location = new System.Drawing.Point(6, 25);
     this.textEditEMeterPresent.Name = "textEditEMeterPresent";
     this.textEditEMeterPresent.Properties.DisplayFormat.FormatString = "n3";
     this.textEditEMeterPresent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPresent.Properties.EditFormat.FormatString = "n3";
     this.textEditEMeterPresent.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPresent.Properties.Mask.EditMask = "n2";
     this.textEditEMeterPresent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditEMeterPresent.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditEMeterPresent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditEMeterPresent.Size = new System.Drawing.Size(94, 20);
     this.textEditEMeterPresent.TabIndex = 356;
     //
     // groupControlEndDate
     //
     this.groupControlEndDate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlEndDate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlEndDate.Controls.Add(this.dateEditWMeterPresentDate);
     this.groupControlEndDate.Controls.Add(this.dateEditEMeterPresentDate);
     this.groupControlEndDate.Location = new System.Drawing.Point(448, 25);
     this.groupControlEndDate.Name = "groupControlEndDate";
     this.groupControlEndDate.Size = new System.Drawing.Size(105, 82);
     this.groupControlEndDate.TabIndex = 388;
     this.groupControlEndDate.Text = "วันที่บันทึก";
     //
     // dateEditWMeterPresentDate
     //
     this.dateEditWMeterPresentDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 50, 0);
     this.dateEditWMeterPresentDate.Enabled = false;
     this.dateEditWMeterPresentDate.Location = new System.Drawing.Point(5, 51);
     this.dateEditWMeterPresentDate.Name = "dateEditWMeterPresentDate";
     this.dateEditWMeterPresentDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditWMeterPresentDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPresentDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPresentDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPresentDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPresentDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditWMeterPresentDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditWMeterPresentDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditWMeterPresentDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditWMeterPresentDate.TabIndex = 371;
     //
     // dateEditEMeterPresentDate
     //
     this.dateEditEMeterPresentDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 50, 0);
     this.dateEditEMeterPresentDate.Enabled = false;
     this.dateEditEMeterPresentDate.Location = new System.Drawing.Point(5, 25);
     this.dateEditEMeterPresentDate.Name = "dateEditEMeterPresentDate";
     this.dateEditEMeterPresentDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEMeterPresentDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPresentDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPresentDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPresentDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPresentDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditEMeterPresentDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditEMeterPresentDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditEMeterPresentDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditEMeterPresentDate.TabIndex = 370;
     //
     // dateEditPhoneStart
     //
     this.dateEditPhoneStart.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditPhoneStart.Enabled = false;
     this.dateEditPhoneStart.Location = new System.Drawing.Point(113, 125);
     this.dateEditPhoneStart.Name = "dateEditPhoneStart";
     this.dateEditPhoneStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditPhoneStart.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneStart.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneStart.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditPhoneStart.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditPhoneStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditPhoneStart.Size = new System.Drawing.Size(94, 20);
     this.dateEditPhoneStart.TabIndex = 372;
     //
     // dateEditPhoneEnd
     //
     this.dateEditPhoneEnd.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditPhoneEnd.Enabled = false;
     this.dateEditPhoneEnd.Location = new System.Drawing.Point(224, 125);
     this.dateEditPhoneEnd.Name = "dateEditPhoneEnd";
     this.dateEditPhoneEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditPhoneEnd.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneEnd.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneEnd.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneEnd.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneEnd.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditPhoneEnd.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditPhoneEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditPhoneEnd.Size = new System.Drawing.Size(91, 20);
     this.dateEditPhoneEnd.TabIndex = 372;
     //
     // textEditWaterMeterId
     //
     this.textEditWaterMeterId.EditValue = 0;
     this.textEditWaterMeterId.Enabled = false;
     this.textEditWaterMeterId.Location = new System.Drawing.Point(58, 25);
     this.textEditWaterMeterId.Name = "textEditWaterMeterId";
     this.textEditWaterMeterId.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditWaterMeterId.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditWaterMeterId.Size = new System.Drawing.Size(21, 20);
     this.textEditWaterMeterId.TabIndex = 389;
     this.textEditWaterMeterId.Visible = false;
     //
     // textEditElectricMeterId
     //
     this.textEditElectricMeterId.EditValue = 0;
     this.textEditElectricMeterId.Enabled = false;
     this.textEditElectricMeterId.Location = new System.Drawing.Point(85, 25);
     this.textEditElectricMeterId.Name = "textEditElectricMeterId";
     this.textEditElectricMeterId.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditElectricMeterId.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditElectricMeterId.Size = new System.Drawing.Size(20, 20);
     this.textEditElectricMeterId.TabIndex = 388;
     this.textEditElectricMeterId.Visible = false;
     //
     // groupControlStartMeter
     //
     this.groupControlStartMeter.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlStartMeter.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlStartMeter.Controls.Add(this.textEditWMeterPreviousUnit);
     this.groupControlStartMeter.Controls.Add(this.textEditEMeterPreviousUnit);
     this.groupControlStartMeter.Location = new System.Drawing.Point(107, 25);
     this.groupControlStartMeter.Name = "groupControlStartMeter";
     this.groupControlStartMeter.Size = new System.Drawing.Size(111, 82);
     this.groupControlStartMeter.TabIndex = 387;
     this.groupControlStartMeter.Text = "เลขมิเตอร์ครั้งก่อน";
     //
     // textEditWMeterPreviousUnit
     //
     this.textEditWMeterPreviousUnit.EditValue = "0.000";
     this.textEditWMeterPreviousUnit.Enabled = false;
     this.textEditWMeterPreviousUnit.Location = new System.Drawing.Point(6, 51);
     this.textEditWMeterPreviousUnit.Name = "textEditWMeterPreviousUnit";
     this.textEditWMeterPreviousUnit.Properties.DisplayFormat.FormatString = "n3";
     this.textEditWMeterPreviousUnit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.EditFormat.FormatString = "n3";
     this.textEditWMeterPreviousUnit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.Mask.EditMask = "n2";
     this.textEditWMeterPreviousUnit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditWMeterPreviousUnit.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditWMeterPreviousUnit.Size = new System.Drawing.Size(94, 20);
     this.textEditWMeterPreviousUnit.TabIndex = 357;
     //
     // textEditEMeterPreviousUnit
     //
     this.textEditEMeterPreviousUnit.EditValue = "0.000";
     this.textEditEMeterPreviousUnit.Enabled = false;
     this.textEditEMeterPreviousUnit.Location = new System.Drawing.Point(6, 25);
     this.textEditEMeterPreviousUnit.Name = "textEditEMeterPreviousUnit";
     this.textEditEMeterPreviousUnit.Properties.DisplayFormat.FormatString = "n3";
     this.textEditEMeterPreviousUnit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.EditFormat.FormatString = "n3";
     this.textEditEMeterPreviousUnit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.Mask.EditMask = "n2";
     this.textEditEMeterPreviousUnit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditEMeterPreviousUnit.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditEMeterPreviousUnit.Size = new System.Drawing.Size(94, 20);
     this.textEditEMeterPreviousUnit.TabIndex = 356;
     //
     // labelControlPhoneMeter
     //
     this.labelControlPhoneMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPhoneMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPhoneMeter.Location = new System.Drawing.Point(46, 128);
     this.labelControlPhoneMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlPhoneMeter.Name = "labelControlPhoneMeter";
     this.labelControlPhoneMeter.Size = new System.Drawing.Size(59, 13);
     this.labelControlPhoneMeter.TabIndex = 386;
     this.labelControlPhoneMeter.Text = "โทรศัพท์ :";
     //
     // labelControlTelAmount
     //
     this.labelControlTelAmount.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelAmount.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelAmount.Location = new System.Drawing.Point(337, 109);
     this.labelControlTelAmount.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelAmount.Name = "labelControlTelAmount";
     this.labelControlTelAmount.Size = new System.Drawing.Size(94, 13);
     this.labelControlTelAmount.TabIndex = 385;
     this.labelControlTelAmount.Text = "ค่าโทร";
     //
     // labelControlTelEnd
     //
     this.labelControlTelEnd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelEnd.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelEnd.Location = new System.Drawing.Point(224, 110);
     this.labelControlTelEnd.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelEnd.Name = "labelControlTelEnd";
     this.labelControlTelEnd.Size = new System.Drawing.Size(91, 13);
     this.labelControlTelEnd.TabIndex = 385;
     this.labelControlTelEnd.Text = "วันที่สิ้นสุด";
     //
     // labelControlTelStart
     //
     this.labelControlTelStart.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelStart.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelStart.Location = new System.Drawing.Point(113, 110);
     this.labelControlTelStart.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelStart.Name = "labelControlTelStart";
     this.labelControlTelStart.Size = new System.Drawing.Size(94, 13);
     this.labelControlTelStart.TabIndex = 385;
     this.labelControlTelStart.Text = "วันที่เริ่ม";
     //
     // labelControlWaterMeter
     //
     this.labelControlWaterMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlWaterMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlWaterMeter.Location = new System.Drawing.Point(58, 79);
     this.labelControlWaterMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlWaterMeter.Name = "labelControlWaterMeter";
     this.labelControlWaterMeter.Size = new System.Drawing.Size(46, 13);
     this.labelControlWaterMeter.TabIndex = 385;
     this.labelControlWaterMeter.Text = "น้ำ :";
     //
     // labelControlElectricMeter
     //
     this.labelControlElectricMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlElectricMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlElectricMeter.Location = new System.Drawing.Point(58, 53);
     this.labelControlElectricMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlElectricMeter.Name = "labelControlElectricMeter";
     this.labelControlElectricMeter.Size = new System.Drawing.Size(46, 13);
     this.labelControlElectricMeter.TabIndex = 384;
     this.labelControlElectricMeter.Text = "ไฟฟ้า :";
     //
     // groupControlStartDate
     //
     this.groupControlStartDate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlStartDate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlStartDate.Controls.Add(this.dateEditWMeterPreviousDate);
     this.groupControlStartDate.Controls.Add(this.dateEditEMeterPreviousDate);
     this.groupControlStartDate.Location = new System.Drawing.Point(220, 25);
     this.groupControlStartDate.Name = "groupControlStartDate";
     this.groupControlStartDate.Size = new System.Drawing.Size(105, 82);
     this.groupControlStartDate.TabIndex = 382;
     this.groupControlStartDate.Text = "วันที่บันทึก";
     //
     // dateEditWMeterPreviousDate
     //
     this.dateEditWMeterPreviousDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 23, 0);
     this.dateEditWMeterPreviousDate.Enabled = false;
     this.dateEditWMeterPreviousDate.Location = new System.Drawing.Point(5, 51);
     this.dateEditWMeterPreviousDate.Name = "dateEditWMeterPreviousDate";
     this.dateEditWMeterPreviousDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditWMeterPreviousDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPreviousDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPreviousDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPreviousDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPreviousDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditWMeterPreviousDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditWMeterPreviousDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditWMeterPreviousDate.TabIndex = 371;
     //
     // dateEditEMeterPreviousDate
     //
     this.dateEditEMeterPreviousDate.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditEMeterPreviousDate.Enabled = false;
     this.dateEditEMeterPreviousDate.Location = new System.Drawing.Point(5, 25);
     this.dateEditEMeterPreviousDate.Name = "dateEditEMeterPreviousDate";
     this.dateEditEMeterPreviousDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEMeterPreviousDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPreviousDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPreviousDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPreviousDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPreviousDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditEMeterPreviousDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditEMeterPreviousDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditEMeterPreviousDate.TabIndex = 370;
     //
     // groupRoomInfo
     //
     this.groupRoomInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupRoomInfo.AppearanceCaption.Options.UseFont = true;
     this.groupRoomInfo.Controls.Add(this.textEditRoomPrice);
     this.groupRoomInfo.Controls.Add(this.labelControlBaht0);
     this.groupRoomInfo.Controls.Add(this.labelControlMonth2);
     this.groupRoomInfo.Controls.Add(this.labelControlBaht1);
     this.groupRoomInfo.Controls.Add(this.textEditInsurerate);
     this.groupRoomInfo.Controls.Add(this.textEditAdvance);
     this.groupRoomInfo.Controls.Add(this.labelControlInsurance);
     this.groupRoomInfo.Controls.Add(this.labelControlDeposit);
     this.groupRoomInfo.Controls.Add(this.labelControlMonthlyRate);
     this.groupRoomInfo.Controls.Add(this.lookUpEditFloorId);
     this.groupRoomInfo.Controls.Add(this.labelControlFloor);
     this.groupRoomInfo.Controls.Add(this.textEditRoomLabel);
     this.groupRoomInfo.Controls.Add(this.labelControlRoomName);
     this.groupRoomInfo.Controls.Add(this.lookUpEditRoomTypeId);
     this.groupRoomInfo.Controls.Add(this.lookUpEditBuildingId);
     this.groupRoomInfo.Controls.Add(this.labelControlRoomType);
     this.groupRoomInfo.Controls.Add(this.labelControlBuilding);
     this.groupRoomInfo.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupRoomInfo.Location = new System.Drawing.Point(0, 169);
     this.groupRoomInfo.Name = "groupRoomInfo";
     this.groupRoomInfo.Size = new System.Drawing.Size(607, 135);
     this.groupRoomInfo.TabIndex = 353;
     this.groupRoomInfo.Text = "ห้อง";
     //
     // textEditRoomPrice
     //
     this.textEditRoomPrice.EditValue = "";
     this.textEditRoomPrice.Enabled = false;
     this.textEditRoomPrice.Location = new System.Drawing.Point(397, 29);
     this.textEditRoomPrice.Name = "textEditRoomPrice";
     this.textEditRoomPrice.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditRoomPrice.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditRoomPrice.Properties.Mask.EditMask = "n2";
     this.textEditRoomPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditRoomPrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditRoomPrice.Size = new System.Drawing.Size(163, 20);
     this.textEditRoomPrice.TabIndex = 118;
     //
     // labelControlBaht0
     //
     this.labelControlBaht0.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht0.Location = new System.Drawing.Point(563, 62);
     this.labelControlBaht0.Name = "labelControlBaht0";
     this.labelControlBaht0.Size = new System.Drawing.Size(33, 13);
     this.labelControlBaht0.TabIndex = 115;
     this.labelControlBaht0.Text = "บาท";
     //
     // labelControlMonth2
     //
     this.labelControlMonth2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonth2.Location = new System.Drawing.Point(563, 84);
     this.labelControlMonth2.Name = "labelControlMonth2";
     this.labelControlMonth2.Size = new System.Drawing.Size(33, 13);
     this.labelControlMonth2.TabIndex = 117;
     this.labelControlMonth2.Text = "เดือน";
     //
     // labelControlBaht1
     //
     this.labelControlBaht1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht1.Location = new System.Drawing.Point(563, 36);
     this.labelControlBaht1.Name = "labelControlBaht1";
     this.labelControlBaht1.Size = new System.Drawing.Size(33, 13);
     this.labelControlBaht1.TabIndex = 112;
     this.labelControlBaht1.Text = "บาท";
     //
     // textEditInsurerate
     //
     this.textEditInsurerate.EditValue = "0.00";
     this.textEditInsurerate.Enabled = false;
     this.textEditInsurerate.Location = new System.Drawing.Point(397, 55);
     this.textEditInsurerate.Name = "textEditInsurerate";
     this.textEditInsurerate.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditInsurerate.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditInsurerate.Properties.Mask.EditMask = "n2";
     this.textEditInsurerate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditInsurerate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditInsurerate.Size = new System.Drawing.Size(163, 20);
     this.textEditInsurerate.TabIndex = 119;
     //
     // textEditAdvance
     //
     this.textEditAdvance.EditValue = "0";
     this.textEditAdvance.Enabled = false;
     this.textEditAdvance.Location = new System.Drawing.Point(397, 81);
     this.textEditAdvance.Name = "textEditAdvance";
     this.textEditAdvance.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditAdvance.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditAdvance.Size = new System.Drawing.Size(163, 20);
     this.textEditAdvance.TabIndex = 120;
     //
     // labelControlInsurance
     //
     this.labelControlInsurance.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlInsurance.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlInsurance.Location = new System.Drawing.Point(302, 62);
     this.labelControlInsurance.Name = "labelControlInsurance";
     this.labelControlInsurance.Size = new System.Drawing.Size(92, 13);
     this.labelControlInsurance.TabIndex = 114;
     this.labelControlInsurance.Text = "ค่าประกัน :";
     //
     // labelControlDeposit
     //
     this.labelControlDeposit.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDeposit.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDeposit.Location = new System.Drawing.Point(280, 84);
     this.labelControlDeposit.Name = "labelControlDeposit";
     this.labelControlDeposit.Size = new System.Drawing.Size(114, 13);
     this.labelControlDeposit.TabIndex = 113;
     this.labelControlDeposit.Text = "ค่าเช่าล่วงหน้า :";
     //
     // labelControlMonthlyRate
     //
     this.labelControlMonthlyRate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMonthlyRate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonthlyRate.Location = new System.Drawing.Point(302, 36);
     this.labelControlMonthlyRate.Name = "labelControlMonthlyRate";
     this.labelControlMonthlyRate.Size = new System.Drawing.Size(92, 13);
     this.labelControlMonthlyRate.TabIndex = 116;
     this.labelControlMonthlyRate.Text = "ค่าเช่า :";
     //
     // lookUpEditFloorId
     //
     this.lookUpEditFloorId.Enabled = false;
     this.lookUpEditFloorId.Location = new System.Drawing.Point(107, 81);
     this.lookUpEditFloorId.Name = "lookUpEditFloorId";
     this.lookUpEditFloorId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditFloorId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_id", "floor_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_code", "ชั้น")});
     this.lookUpEditFloorId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditFloorId.TabIndex = 111;
     //
     // labelControlFloor
     //
     this.labelControlFloor.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlFloor.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlFloor.Location = new System.Drawing.Point(23, 88);
     this.labelControlFloor.Name = "labelControlFloor";
     this.labelControlFloor.Size = new System.Drawing.Size(81, 13);
     this.labelControlFloor.TabIndex = 110;
     this.labelControlFloor.Text = "ชั้น :";
     //
     // textEditRoomLabel
     //
     this.textEditRoomLabel.Enabled = false;
     this.textEditRoomLabel.Location = new System.Drawing.Point(107, 29);
     this.textEditRoomLabel.Name = "textEditRoomLabel";
     this.textEditRoomLabel.Size = new System.Drawing.Size(133, 20);
     this.textEditRoomLabel.TabIndex = 107;
     //
     // labelControlRoomName
     //
     this.labelControlRoomName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRoomName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRoomName.Location = new System.Drawing.Point(23, 36);
     this.labelControlRoomName.Name = "labelControlRoomName";
     this.labelControlRoomName.Size = new System.Drawing.Size(81, 13);
     this.labelControlRoomName.TabIndex = 106;
     this.labelControlRoomName.Text = "ชื่อห้อง :";
     //
     // lookUpEditRoomTypeId
     //
     this.lookUpEditRoomTypeId.Enabled = false;
     this.lookUpEditRoomTypeId.Location = new System.Drawing.Point(107, 107);
     this.lookUpEditRoomTypeId.Name = "lookUpEditRoomTypeId";
     this.lookUpEditRoomTypeId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditRoomTypeId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("roomtype_label", "ประเภทห้อง"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("roomtype_id", "roomtype_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditRoomTypeId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditRoomTypeId.TabIndex = 105;
     //
     // lookUpEditBuildingId
     //
     this.lookUpEditBuildingId.Enabled = false;
     this.lookUpEditBuildingId.Location = new System.Drawing.Point(107, 55);
     this.lookUpEditBuildingId.Name = "lookUpEditBuildingId";
     this.lookUpEditBuildingId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditBuildingId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_label", "ชื่ออาคาร"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_id", "building_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditBuildingId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditBuildingId.TabIndex = 104;
     //
     // labelControlRoomType
     //
     this.labelControlRoomType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRoomType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRoomType.Location = new System.Drawing.Point(23, 114);
     this.labelControlRoomType.Name = "labelControlRoomType";
     this.labelControlRoomType.Size = new System.Drawing.Size(81, 13);
     this.labelControlRoomType.TabIndex = 102;
     this.labelControlRoomType.Text = "ประเภทห้อง :";
     //
     // labelControlBuilding
     //
     this.labelControlBuilding.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlBuilding.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBuilding.Location = new System.Drawing.Point(23, 62);
     this.labelControlBuilding.Name = "labelControlBuilding";
     this.labelControlBuilding.Size = new System.Drawing.Size(81, 13);
     this.labelControlBuilding.TabIndex = 101;
     this.labelControlBuilding.Text = "อาคาร :";
     //
     // groupControlRental
     //
     this.groupControlRental.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlRental.AppearanceCaption.Options.UseFont = true;
     this.groupControlRental.Controls.Add(this.labelControl5);
     this.groupControlRental.Controls.Add(this.labelControl23);
     this.groupControlRental.Controls.Add(this.labelControl22);
     this.groupControlRental.Controls.Add(this.labelControl21);
     this.groupControlRental.Controls.Add(this.textEditTenantName);
     this.groupControlRental.Controls.Add(this.labelControlSurname);
     this.groupControlRental.Controls.Add(this.labelControlName);
     this.groupControlRental.Controls.Add(this.textEditTenantSurname);
     this.groupControlRental.Controls.Add(this.labelControlTitle);
     this.groupControlRental.Controls.Add(this.textEditPrefix);
     this.groupControlRental.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlRental.Location = new System.Drawing.Point(0, 85);
     this.groupControlRental.Name = "groupControlRental";
     this.groupControlRental.Size = new System.Drawing.Size(607, 84);
     this.groupControlRental.TabIndex = 352;
     this.groupControlRental.Text = "ผู้เช่า";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl5.Location = new System.Drawing.Point(605, 298);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(6, 13);
     this.labelControl5.TabIndex = 444;
     this.labelControl5.Text = "*";
     //
     // labelControl23
     //
     this.labelControl23.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl23.Location = new System.Drawing.Point(605, 167);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(6, 13);
     this.labelControl23.TabIndex = 443;
     this.labelControl23.Text = "*";
     //
     // labelControl22
     //
     this.labelControl22.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl22.Location = new System.Drawing.Point(605, 120);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(6, 13);
     this.labelControl22.TabIndex = 441;
     this.labelControl22.Text = "*";
     //
     // labelControl21
     //
     this.labelControl21.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl21.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.Location = new System.Drawing.Point(605, 94);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(6, 13);
     this.labelControl21.TabIndex = 440;
     this.labelControl21.Text = "*";
     //
     // textEditTenantName
     //
     this.textEditTenantName.EditValue = "";
     this.textEditTenantName.Enabled = false;
     this.textEditTenantName.Location = new System.Drawing.Point(107, 57);
     this.textEditTenantName.Name = "textEditTenantName";
     this.textEditTenantName.Properties.MaxLength = 200;
     this.textEditTenantName.Size = new System.Drawing.Size(133, 20);
     this.textEditTenantName.TabIndex = 412;
     //
     // labelControlSurname
     //
     this.labelControlSurname.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlSurname.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlSurname.Location = new System.Drawing.Point(310, 64);
     this.labelControlSurname.Name = "labelControlSurname";
     this.labelControlSurname.Size = new System.Drawing.Size(84, 13);
     this.labelControlSurname.TabIndex = 424;
     this.labelControlSurname.Text = "นามสกุล :";
     //
     // labelControlName
     //
     this.labelControlName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlName.Location = new System.Drawing.Point(20, 64);
     this.labelControlName.Name = "labelControlName";
     this.labelControlName.Size = new System.Drawing.Size(84, 13);
     this.labelControlName.TabIndex = 423;
     this.labelControlName.Text = "ชื่อ :";
     //
     // textEditTenantSurname
     //
     this.textEditTenantSurname.EditValue = "";
     this.textEditTenantSurname.Enabled = false;
     this.textEditTenantSurname.Location = new System.Drawing.Point(397, 57);
     this.textEditTenantSurname.Name = "textEditTenantSurname";
     this.textEditTenantSurname.Properties.MaxLength = 200;
     this.textEditTenantSurname.Size = new System.Drawing.Size(163, 20);
     this.textEditTenantSurname.TabIndex = 413;
     //
     // labelControlTitle
     //
     this.labelControlTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTitle.Location = new System.Drawing.Point(20, 38);
     this.labelControlTitle.Name = "labelControlTitle";
     this.labelControlTitle.Size = new System.Drawing.Size(84, 13);
     this.labelControlTitle.TabIndex = 422;
     this.labelControlTitle.Text = "คำนำหน้า :";
     //
     // textEditPrefix
     //
     this.textEditPrefix.EditValue = "";
     this.textEditPrefix.Enabled = false;
     this.textEditPrefix.Location = new System.Drawing.Point(107, 31);
     this.textEditPrefix.Name = "textEditPrefix";
     this.textEditPrefix.Properties.MaxLength = 50;
     this.textEditPrefix.Size = new System.Drawing.Size(133, 20);
     this.textEditPrefix.TabIndex = 411;
     //
     // groupControlCheckOut
     //
     this.groupControlCheckOut.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlCheckOut.AppearanceCaption.Options.UseFont = true;
     this.groupControlCheckOut.Controls.Add(this.lookUpEditContractType);
     this.groupControlCheckOut.Controls.Add(this.dateEditCheckInDate);
     this.groupControlCheckOut.Controls.Add(this.labelControlMonth);
     this.groupControlCheckOut.Controls.Add(this.labelControlMinimum);
     this.groupControlCheckOut.Controls.Add(this.labelControlRentType);
     this.groupControlCheckOut.Controls.Add(this.labelControlContractDate);
     this.groupControlCheckOut.Controls.Add(this.labelControlContractNo);
     this.groupControlCheckOut.Controls.Add(this.textEditMinimum);
     this.groupControlCheckOut.Controls.Add(this.textEditContractNo);
     this.groupControlCheckOut.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlCheckOut.Location = new System.Drawing.Point(0, 0);
     this.groupControlCheckOut.Name = "groupControlCheckOut";
     this.groupControlCheckOut.Size = new System.Drawing.Size(607, 85);
     this.groupControlCheckOut.TabIndex = 3;
     this.groupControlCheckOut.Text = "ย้ายออก";
     //
     // lookUpEditContractType
     //
     this.lookUpEditContractType.Enabled = false;
     this.lookUpEditContractType.Location = new System.Drawing.Point(107, 56);
     this.lookUpEditContractType.Name = "lookUpEditContractType";
     this.lookUpEditContractType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditContractType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("contracttype_id", "รหัสประเภทสัญญา", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("contracttype_label", "ประเภทสัญญา")});
     this.lookUpEditContractType.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditContractType.TabIndex = 444;
     //
     // dateEditCheckInDate
     //
     this.dateEditCheckInDate.EditValue = new System.DateTime(2013, 3, 8, 0, 0, 0, 0);
     this.dateEditCheckInDate.Enabled = false;
     this.dateEditCheckInDate.Location = new System.Drawing.Point(398, 31);
     this.dateEditCheckInDate.Name = "dateEditCheckInDate";
     this.dateEditCheckInDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditCheckInDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditCheckInDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditCheckInDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditCheckInDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditCheckInDate.Size = new System.Drawing.Size(162, 20);
     this.dateEditCheckInDate.TabIndex = 443;
     //
     // labelControlMonth
     //
     this.labelControlMonth.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonth.Location = new System.Drawing.Point(563, 63);
     this.labelControlMonth.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlMonth.Name = "labelControlMonth";
     this.labelControlMonth.Size = new System.Drawing.Size(37, 13);
     this.labelControlMonth.TabIndex = 441;
     this.labelControlMonth.Text = "เดือน";
     //
     // labelControlMinimum
     //
     this.labelControlMinimum.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMinimum.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMinimum.Location = new System.Drawing.Point(261, 59);
     this.labelControlMinimum.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlMinimum.Name = "labelControlMinimum";
     this.labelControlMinimum.Size = new System.Drawing.Size(134, 13);
     this.labelControlMinimum.TabIndex = 442;
     this.labelControlMinimum.Text = "ระยะเวลาเช่าขั้นต่ำ :";
     //
     // labelControlRentType
     //
     this.labelControlRentType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRentType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRentType.Location = new System.Drawing.Point(5, 63);
     this.labelControlRentType.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlRentType.Name = "labelControlRentType";
     this.labelControlRentType.Size = new System.Drawing.Size(99, 13);
     this.labelControlRentType.TabIndex = 440;
     this.labelControlRentType.Text = "ประเภทการเช่า :";
     //
     // labelControlContractDate
     //
     this.labelControlContractDate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlContractDate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlContractDate.Location = new System.Drawing.Point(296, 38);
     this.labelControlContractDate.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlContractDate.Name = "labelControlContractDate";
     this.labelControlContractDate.Size = new System.Drawing.Size(99, 13);
     this.labelControlContractDate.TabIndex = 438;
     this.labelControlContractDate.Text = "วันที่ทำสัญญา :";
     //
     // labelControlContractNo
     //
     this.labelControlContractNo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlContractNo.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlContractNo.Location = new System.Drawing.Point(5, 38);
     this.labelControlContractNo.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlContractNo.Name = "labelControlContractNo";
     this.labelControlContractNo.Size = new System.Drawing.Size(99, 13);
     this.labelControlContractNo.TabIndex = 439;
     this.labelControlContractNo.Text = "เลขที่สัญญา :";
     //
     // textEditMinimum
     //
     this.textEditMinimum.EditValue = "0";
     this.textEditMinimum.Enabled = false;
     this.textEditMinimum.Location = new System.Drawing.Point(398, 56);
     this.textEditMinimum.Name = "textEditMinimum";
     this.textEditMinimum.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditMinimum.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditMinimum.Properties.MaxLength = 2;
     this.textEditMinimum.Size = new System.Drawing.Size(162, 20);
     this.textEditMinimum.TabIndex = 436;
     //
     // textEditContractNo
     //
     this.textEditContractNo.EditValue = "";
     this.textEditContractNo.Enabled = false;
     this.textEditContractNo.Location = new System.Drawing.Point(107, 31);
     this.textEditContractNo.Name = "textEditContractNo";
     this.textEditContractNo.Size = new System.Drawing.Size(133, 20);
     this.textEditContractNo.TabIndex = 437;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.bttPrintInvoice);
     this.panelControl1.Controls.Add(this.bttPrintInsurance);
     this.panelControl1.Controls.Add(this.textEditRoomStatus);
     this.panelControl1.Controls.Add(this.textEditCheckInId);
     this.panelControl1.Controls.Add(this.textEditTenantId);
     this.panelControl1.Controls.Add(this.textEditRoomId);
     this.panelControl1.Controls.Add(this.labelControl4);
     this.panelControl1.Controls.Add(this.textEditRoomCode);
     this.panelControl1.Controls.Add(this.bttEdit);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 568);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(624, 66);
     this.panelControl1.TabIndex = 77;
     //
     // bttPrintInvoice
     //
     this.bttPrintInvoice.Image = ((System.Drawing.Image)(resources.GetObject("bttPrintInvoice.Image")));
     this.bttPrintInvoice.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttPrintInvoice.Location = new System.Drawing.Point(5, 5);
     this.bttPrintInvoice.Name = "bttPrintInvoice";
     this.bttPrintInvoice.Size = new System.Drawing.Size(123, 55);
     this.bttPrintInvoice.TabIndex = 364;
     this.bttPrintInvoice.Text = "สร้างใบแจ้งหนี้";
     //
     // bttPrintInsurance
     //
     this.bttPrintInsurance.Image = ((System.Drawing.Image)(resources.GetObject("bttPrintInsurance.Image")));
     this.bttPrintInsurance.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttPrintInsurance.Location = new System.Drawing.Point(134, 5);
     this.bttPrintInsurance.Name = "bttPrintInsurance";
     this.bttPrintInsurance.Size = new System.Drawing.Size(127, 55);
     this.bttPrintInsurance.TabIndex = 363;
     this.bttPrintInsurance.Text = "สร้างใบคืนเงินประกัน";
     //
     // textEditRoomStatus
     //
     this.textEditRoomStatus.EditValue = "";
     this.textEditRoomStatus.Enabled = false;
     this.textEditRoomStatus.Location = new System.Drawing.Point(324, 19);
     this.textEditRoomStatus.Name = "textEditRoomStatus";
     this.textEditRoomStatus.Size = new System.Drawing.Size(10, 20);
     this.textEditRoomStatus.TabIndex = 362;
     this.textEditRoomStatus.Visible = false;
     //
     // textEditCheckInId
     //
     this.textEditCheckInId.EditValue = "";
     this.textEditCheckInId.Enabled = false;
     this.textEditCheckInId.Location = new System.Drawing.Point(308, 19);
     this.textEditCheckInId.Name = "textEditCheckInId";
     this.textEditCheckInId.Size = new System.Drawing.Size(10, 20);
     this.textEditCheckInId.TabIndex = 362;
     this.textEditCheckInId.Visible = false;
     //
     // textEditTenantId
     //
     this.textEditTenantId.EditValue = "";
     this.textEditTenantId.Enabled = false;
     this.textEditTenantId.Location = new System.Drawing.Point(345, 19);
     this.textEditTenantId.Name = "textEditTenantId";
     this.textEditTenantId.Size = new System.Drawing.Size(39, 20);
     this.textEditTenantId.TabIndex = 361;
     this.textEditTenantId.Visible = false;
     //
     // textEditRoomId
     //
     this.textEditRoomId.EditValue = "";
     this.textEditRoomId.Enabled = false;
     this.textEditRoomId.Location = new System.Drawing.Point(292, 19);
     this.textEditRoomId.Name = "textEditRoomId";
     this.textEditRoomId.Size = new System.Drawing.Size(10, 20);
     this.textEditRoomId.TabIndex = 360;
     this.textEditRoomId.Visible = false;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(273, 44);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(45, 13);
     this.labelControl4.TabIndex = 359;
     this.labelControl4.Text = "รหัสห้อง :";
     this.labelControl4.Visible = false;
     //
     // textEditRoomCode
     //
     this.textEditRoomCode.EditValue = "";
     this.textEditRoomCode.Enabled = false;
     this.textEditRoomCode.Location = new System.Drawing.Point(260, 19);
     this.textEditRoomCode.Name = "textEditRoomCode";
     this.textEditRoomCode.Size = new System.Drawing.Size(13, 20);
     this.textEditRoomCode.TabIndex = 358;
     this.textEditRoomCode.Visible = false;
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(397, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     //
     // 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 = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(549, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     //
     // 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 = global::DXWindowsApplication2.Properties.Resources.preview;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(473, 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);
     //
     // RoomCheckOut
     //
     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.Name = "RoomCheckOut";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1310, 648);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).EndInit();
     this.groupControlList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupExpense)).EndInit();
     this.groupExpense.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlItem)).EndInit();
     this.groupControlItem.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewItemList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     this.panelControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRefund.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGeneralCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGeneralCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlCalculate)).EndInit();
     this.panelControlCalculate.ResumeLayout(false);
     this.panelControlCalculate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPricePerDay)).EndInit();
     this.panelControlPricePerDay.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditChargePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditCharge.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlMeter)).EndInit();
     this.groupControlMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditPhonePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndMeter)).EndInit();
     this.groupControlEndMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPresent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPresent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndDate)).EndInit();
     this.groupControlEndDate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWaterMeterId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditElectricMeterId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartMeter)).EndInit();
     this.groupControlStartMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPreviousUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPreviousUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartDate)).EndInit();
     this.groupControlStartDate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoomInfo)).EndInit();
     this.groupRoomInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInsurerate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAdvance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditFloorId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomLabel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditRoomTypeId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditBuildingId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlRental)).EndInit();
     this.groupControlRental.ResumeLayout(false);
     this.groupControlRental.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantSurname.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefix.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCheckOut)).EndInit();
     this.groupControlCheckOut.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditContractType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMinimum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckInId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #57
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlBuildingList = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.building_company_id_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_floor_no = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_company_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlBuildingInfo = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.lookUpEditxxx = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlCompanyName = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuilding = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuildingLabel = new DevExpress.XtraEditors.LabelControl();
     this.labelControlFloorNo = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.luEditFloorNo = new DevExpress.XtraEditors.LookUpEdit();
     this.luEditBuilding = new DevExpress.XtraEditors.LookUpEdit();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtBuildingLabel = new DevExpress.XtraEditors.TextEdit();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingList)).BeginInit();
     this.groupControlBuildingList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingInfo)).BeginInit();
     this.groupControlBuildingInfo.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditxxx.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luEditFloorNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luEditBuilding.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBuildingLabel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // 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.groupControlBuildingList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1040, 474);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 11;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlBuildingList
     //
     this.groupControlBuildingList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlBuildingList.AppearanceCaption.Options.UseFont = true;
     this.groupControlBuildingList.Controls.Add(this.gridControl1);
     this.groupControlBuildingList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBuildingList.Location = new System.Drawing.Point(0, 0);
     this.groupControlBuildingList.Name = "groupControlBuildingList";
     this.groupControlBuildingList.Size = new System.Drawing.Size(500, 474);
     this.groupControlBuildingList.TabIndex = 0;
     this.groupControlBuildingList.Text = "รายการอาคาร";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Buttons.EnabledAutoRepeat = false;
     this.gridControl1.EmbeddedNavigator.Buttons.EndEdit.Enabled = false;
     this.gridControl1.Location = new System.Drawing.Point(2, 22);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(496, 450);
     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.building_company_id_text,
     this.building_building_code,
     this.building_building_label,
     this.building_floor_no,
     this.building_building_id,
     this.building_company_id});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsFind.AlwaysVisible = true;
     this.gridView1.OptionsFind.ShowCloseButton = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // building_company_id_text
     //
     this.building_company_id_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_company_id_text.AppearanceHeader.Options.UseFont = true;
     this.building_company_id_text.Caption = "ชื่อกิจการ";
     this.building_company_id_text.FieldName = "company_name";
     this.building_company_id_text.Name = "building_company_id_text";
     this.building_company_id_text.OptionsColumn.AllowEdit = false;
     this.building_company_id_text.OptionsColumn.AllowFocus = false;
     this.building_company_id_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_company_id_text.OptionsColumn.AllowMove = false;
     this.building_company_id_text.Visible = true;
     this.building_company_id_text.VisibleIndex = 0;
     //
     // building_building_code
     //
     this.building_building_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_building_code.AppearanceHeader.Options.UseFont = true;
     this.building_building_code.Caption = "รหัสอาคาร";
     this.building_building_code.FieldName = "building_code";
     this.building_building_code.Name = "building_building_code";
     this.building_building_code.OptionsColumn.AllowEdit = false;
     this.building_building_code.OptionsColumn.AllowFocus = false;
     this.building_building_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_building_code.OptionsColumn.AllowMove = false;
     this.building_building_code.Visible = true;
     this.building_building_code.VisibleIndex = 1;
     //
     // building_building_label
     //
     this.building_building_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_building_label.AppearanceHeader.Options.UseFont = true;
     this.building_building_label.Caption = "ชื่ออาคาร";
     this.building_building_label.FieldName = "building_label";
     this.building_building_label.Name = "building_building_label";
     this.building_building_label.OptionsColumn.AllowEdit = false;
     this.building_building_label.OptionsColumn.AllowFocus = false;
     this.building_building_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_building_label.OptionsColumn.AllowMove = false;
     this.building_building_label.Visible = true;
     this.building_building_label.VisibleIndex = 2;
     //
     // building_floor_no
     //
     this.building_floor_no.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_floor_no.AppearanceHeader.Options.UseFont = true;
     this.building_floor_no.Caption = "จำนวนชั้น";
     this.building_floor_no.FieldName = "floor_count";
     this.building_floor_no.Name = "building_floor_no";
     this.building_floor_no.OptionsColumn.AllowEdit = false;
     this.building_floor_no.OptionsColumn.AllowFocus = false;
     this.building_floor_no.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_floor_no.OptionsColumn.AllowMove = false;
     this.building_floor_no.Visible = true;
     this.building_floor_no.VisibleIndex = 3;
     //
     // building_building_id
     //
     this.building_building_id.Caption = "building_id";
     this.building_building_id.FieldName = "building_id";
     this.building_building_id.Name = "building_building_id";
     //
     // building_company_id
     //
     this.building_company_id.Caption = "gridColumn1";
     this.building_company_id.FieldName = "company_id";
     this.building_company_id.Name = "building_company_id";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlBuildingInfo);
     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(535, 474);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlBuildingInfo
     //
     this.groupControlBuildingInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlBuildingInfo.AppearanceCaption.Options.UseFont = true;
     this.groupControlBuildingInfo.Controls.Add(this.xtraScrollableControl1);
     this.groupControlBuildingInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBuildingInfo.Location = new System.Drawing.Point(0, 0);
     this.groupControlBuildingInfo.Name = "groupControlBuildingInfo";
     this.groupControlBuildingInfo.Size = new System.Drawing.Size(535, 474);
     this.groupControlBuildingInfo.TabIndex = 0;
     this.groupControlBuildingInfo.Text = "ข้อมูลอาคาร";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.lookUpEditxxx);
     this.xtraScrollableControl1.Controls.Add(this.labelControlRequired);
     this.xtraScrollableControl1.Controls.Add(this.tableLayoutPanel1);
     this.xtraScrollableControl1.Controls.Add(this.bttDelete);
     this.xtraScrollableControl1.Controls.Add(this.bttEdit);
     this.xtraScrollableControl1.Controls.Add(this.bttAdd);
     this.xtraScrollableControl1.Controls.Add(this.luEditFloorNo);
     this.xtraScrollableControl1.Controls.Add(this.luEditBuilding);
     this.xtraScrollableControl1.Controls.Add(this.bttSave);
     this.xtraScrollableControl1.Controls.Add(this.bttCancel);
     this.xtraScrollableControl1.Controls.Add(this.txtBuildingLabel);
     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(531, 450);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // lookUpEditxxx
     //
     this.lookUpEditxxx.Enabled = false;
     this.lookUpEditxxx.Location = new System.Drawing.Point(126, 11);
     this.lookUpEditxxx.Name = "lookUpEditxxx";
     this.lookUpEditxxx.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditxxx.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("company_id", " ", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("company_name", " ")});
     this.lookUpEditxxx.Size = new System.Drawing.Size(399, 20);
     this.lookUpEditxxx.TabIndex = 360;
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(9, 159);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 358;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 92F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 12F));
     this.tableLayoutPanel1.Controls.Add(this.labelControl3, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControlCompanyName, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControlBuilding, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelControl12, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.labelControl2, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControlBuildingLabel, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControlFloorNo, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.labelControl5, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControl6, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControl7, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelControl8, 2, 3);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 15);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 21F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(114, 120);
     this.tableLayoutPanel1.TabIndex = 359;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl3.Location = new System.Drawing.Point(3, 3);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(6, 13);
     this.labelControl3.TabIndex = 350;
     this.labelControl3.Text = "*";
     //
     // labelControlCompanyName
     //
     this.labelControlCompanyName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlCompanyName.Location = new System.Drawing.Point(48, 3);
     this.labelControlCompanyName.Name = "labelControlCompanyName";
     this.labelControlCompanyName.Size = new System.Drawing.Size(51, 13);
     this.labelControlCompanyName.TabIndex = 349;
     this.labelControlCompanyName.Text = "ชื่อกิจการ :";
     //
     // labelControlBuilding
     //
     this.labelControlBuilding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBuilding.Location = new System.Drawing.Point(44, 30);
     this.labelControlBuilding.Name = "labelControlBuilding";
     this.labelControlBuilding.Size = new System.Drawing.Size(55, 13);
     this.labelControlBuilding.TabIndex = 20;
     this.labelControlBuilding.Text = "รหัสอาคาร :";
     //
     // labelControl12
     //
     this.labelControl12.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl12.Location = new System.Drawing.Point(3, 82);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(6, 13);
     this.labelControl12.TabIndex = 346;
     this.labelControl12.Text = "*";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl2.Location = new System.Drawing.Point(3, 57);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(6, 13);
     this.labelControl2.TabIndex = 347;
     this.labelControl2.Text = "*";
     //
     // labelControlBuildingLabel
     //
     this.labelControlBuildingLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBuildingLabel.Location = new System.Drawing.Point(49, 57);
     this.labelControlBuildingLabel.Name = "labelControlBuildingLabel";
     this.labelControlBuildingLabel.Size = new System.Drawing.Size(50, 13);
     this.labelControlBuildingLabel.TabIndex = 15;
     this.labelControlBuildingLabel.Text = "ชื่ออาคาร :";
     //
     // labelControlFloorNo
     //
     this.labelControlFloorNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlFloorNo.Location = new System.Drawing.Point(48, 82);
     this.labelControlFloorNo.Name = "labelControlFloorNo";
     this.labelControlFloorNo.Size = new System.Drawing.Size(51, 13);
     this.labelControlFloorNo.TabIndex = 21;
     this.labelControlFloorNo.Text = "จำนวนชั้น :";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(105, 3);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(4, 13);
     this.labelControl5.TabIndex = 349;
     this.labelControl5.Text = ":";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(105, 57);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(4, 13);
     this.labelControl6.TabIndex = 349;
     this.labelControl6.Text = ":";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(105, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(4, 13);
     this.labelControl7.TabIndex = 349;
     this.labelControl7.Text = ":";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(105, 82);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(4, 13);
     this.labelControl8.TabIndex = 349;
     this.labelControl8.Text = ":";
     //
     // bttDelete
     //
     this.bttDelete.Image = global::DXWindowsApplication2.Properties.Resources.delete;
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(293, 159);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 6;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // bttEdit
     //
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(212, 159);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 5;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttAdd
     //
     this.bttAdd.Image = global::DXWindowsApplication2.Properties.Resources.Add;
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(131, 159);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 4;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // luEditFloorNo
     //
     this.luEditFloorNo.Enabled = false;
     this.luEditFloorNo.Location = new System.Drawing.Point(126, 93);
     this.luEditFloorNo.Name = "luEditFloorNo";
     this.luEditFloorNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luEditFloorNo.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_no", "floor_no")});
     this.luEditFloorNo.Size = new System.Drawing.Size(399, 20);
     this.luEditFloorNo.TabIndex = 3;
     //
     // luEditBuilding
     //
     this.luEditBuilding.Enabled = false;
     this.luEditBuilding.Location = new System.Drawing.Point(126, 41);
     this.luEditBuilding.Name = "luEditBuilding";
     this.luEditBuilding.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luEditBuilding.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_id", "id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_code", "building_code")});
     this.luEditBuilding.Size = new System.Drawing.Size(399, 20);
     this.luEditBuilding.TabIndex = 1;
     //
     // bttSave
     //
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(374, 159);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 7;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // bttCancel
     //
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(455, 159);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 8;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // txtBuildingLabel
     //
     this.txtBuildingLabel.Enabled = false;
     this.txtBuildingLabel.Location = new System.Drawing.Point(126, 67);
     this.txtBuildingLabel.Name = "txtBuildingLabel";
     this.txtBuildingLabel.Properties.Mask.BeepOnError = true;
     this.txtBuildingLabel.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,50}";
     this.txtBuildingLabel.Properties.Mask.IgnoreMaskBlank = false;
     this.txtBuildingLabel.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.txtBuildingLabel.Properties.MaxLength = 50;
     this.txtBuildingLabel.Properties.ValidateOnEnterKey = true;
     this.txtBuildingLabel.Size = new System.Drawing.Size(399, 20);
     this.txtBuildingLabel.TabIndex = 2;
     //
     // 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(1040, 474);
     this.splitContainerControl1.SplitterPosition = 585;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // 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(1040, 474);
     this.panelControl2.TabIndex = 10;
     //
     // BasicInfoBuilding
     //
     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 = "BasicInfoBuilding";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1054, 488);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingList)).EndInit();
     this.groupControlBuildingList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingInfo)).EndInit();
     this.groupControlBuildingInfo.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     this.xtraScrollableControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditxxx.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luEditFloorNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luEditBuilding.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBuildingLabel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #58
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.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.simpleButtonCancel);
     this.panelControl1.Controls.Add(this.simpleButtonOK);
     this.panelControl1.Controls.Add(this.label3);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.memoEdit1);
     this.panelControl1.Controls.Add(this.lookUpEdit1);
     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(338, 220);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(246, 186);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 51;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(156, 186);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 50;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 76);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(64, 24);
     this.label3.TabIndex = 4;
     this.label3.Text = "Remark";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 46);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(68, 23);
     this.label2.TabIndex = 3;
     this.label2.Text = "Member ID";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(2, 4);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(260, 30);
     this.label1.TabIndex = 2;
     this.label1.Text = "Please select the member you wish to transfer him/her the credit package.";
     //
     // memoEdit1
     //
     this.memoEdit1.EditValue = "";
     this.memoEdit1.Location = new System.Drawing.Point(82, 74);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(242, 96);
     this.memoEdit1.TabIndex = 1;
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(80, 46);
     this.lookUpEdit1.Name = "lookUpEdit1";
     //
     // lookUpEdit1.Properties
     //
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Size = new System.Drawing.Size(244, 20);
     this.lookUpEdit1.TabIndex = 0;
     //
     // FormTransferMemberCreditPackage
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(338, 220);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormTransferMemberCreditPackage";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "FormTransferMemberCreditPackage";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormNewMemberCreditPackageUsage));
     this.lkpEdtPackageCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lkpEdtPackageCode
     //
     this.lkpEdtPackageCode.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("lkpEdtPackageCode.Anchor")));
     this.lkpEdtPackageCode.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lkpEdtPackageCode.BackgroundImage")));
     this.lkpEdtPackageCode.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("lkpEdtPackageCode.Dock")));
     this.lkpEdtPackageCode.EditValue = ((object)(resources.GetObject("lkpEdtPackageCode.EditValue")));
     this.lkpEdtPackageCode.Enabled = ((bool)(resources.GetObject("lkpEdtPackageCode.Enabled")));
     this.lkpEdtPackageCode.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("lkpEdtPackageCode.ImeMode")));
     this.lkpEdtPackageCode.Location = ((System.Drawing.Point)(resources.GetObject("lkpEdtPackageCode.Location")));
     this.lkpEdtPackageCode.Name = "lkpEdtPackageCode";
     //
     // lkpEdtPackageCode.Properties
     //
     this.lkpEdtPackageCode.Properties.AccessibleDescription = resources.GetString("lkpEdtPackageCode.Properties.AccessibleDescription");
     this.lkpEdtPackageCode.Properties.AccessibleName = resources.GetString("lkpEdtPackageCode.Properties.AccessibleName");
     this.lkpEdtPackageCode.Properties.AutoHeight = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.AutoHeight")));
     this.lkpEdtPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtPackageCode.Properties.Mask.AutoComplete = ((DevExpress.XtraEditors.Mask.AutoCompleteType)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.AutoComplete")));
     this.lkpEdtPackageCode.Properties.Mask.BeepOnError = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.BeepOnError")));
     this.lkpEdtPackageCode.Properties.Mask.EditMask = resources.GetString("lkpEdtPackageCode.Properties.Mask.EditMask");
     this.lkpEdtPackageCode.Properties.Mask.IgnoreMaskBlank = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.IgnoreMaskBlank")));
     this.lkpEdtPackageCode.Properties.Mask.MaskType = ((DevExpress.XtraEditors.Mask.MaskType)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.MaskType")));
     this.lkpEdtPackageCode.Properties.Mask.PlaceHolder = ((char)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.PlaceHolder")));
     this.lkpEdtPackageCode.Properties.Mask.SaveLiteral = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.SaveLiteral")));
     this.lkpEdtPackageCode.Properties.Mask.ShowPlaceHolders = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.ShowPlaceHolders")));
     this.lkpEdtPackageCode.Properties.Mask.UseMaskAsDisplayFormat = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.UseMaskAsDisplayFormat")));
     this.lkpEdtPackageCode.Properties.NullText = resources.GetString("lkpEdtPackageCode.Properties.NullText");
     this.lkpEdtPackageCode.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("lkpEdtPackageCode.RightToLeft")));
     this.lkpEdtPackageCode.Size = ((System.Drawing.Size)(resources.GetObject("lkpEdtPackageCode.Size")));
     this.lkpEdtPackageCode.TabIndex = ((int)(resources.GetObject("lkpEdtPackageCode.TabIndex")));
     this.lkpEdtPackageCode.ToolTip = resources.GetString("lkpEdtPackageCode.ToolTip");
     this.lkpEdtPackageCode.ToolTipIconType = ((DevExpress.Utils.ToolTipIconType)(resources.GetObject("lkpEdtPackageCode.ToolTipIconType")));
     this.lkpEdtPackageCode.ToolTipTitle = resources.GetString("lkpEdtPackageCode.ToolTipTitle");
     this.lkpEdtPackageCode.Visible = ((bool)(resources.GetObject("lkpEdtPackageCode.Visible")));
     this.lkpEdtPackageCode.EditValueChanged += new System.EventHandler(this.lkpEdtPackageCode_EditValueChanged);
     //
     // label1
     //
     this.label1.AccessibleDescription = resources.GetString("label1.AccessibleDescription");
     this.label1.AccessibleName = resources.GetString("label1.AccessibleName");
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("label1.Anchor")));
     this.label1.AutoSize = ((bool)(resources.GetObject("label1.AutoSize")));
     this.label1.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("label1.Dock")));
     this.label1.Enabled = ((bool)(resources.GetObject("label1.Enabled")));
     this.label1.Font = ((System.Drawing.Font)(resources.GetObject("label1.Font")));
     this.label1.Image = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
     this.label1.ImageAlign = ((System.Drawing.ContentAlignment)(resources.GetObject("label1.ImageAlign")));
     this.label1.ImageIndex = ((int)(resources.GetObject("label1.ImageIndex")));
     this.label1.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("label1.ImeMode")));
     this.label1.Location = ((System.Drawing.Point)(resources.GetObject("label1.Location")));
     this.label1.Name = "label1";
     this.label1.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("label1.RightToLeft")));
     this.label1.Size = ((System.Drawing.Size)(resources.GetObject("label1.Size")));
     this.label1.TabIndex = ((int)(resources.GetObject("label1.TabIndex")));
     this.label1.Text = resources.GetString("label1.Text");
     this.label1.TextAlign = ((System.Drawing.ContentAlignment)(resources.GetObject("label1.TextAlign")));
     this.label1.Visible = ((bool)(resources.GetObject("label1.Visible")));
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.AccessibleDescription = resources.GetString("simpleButtonCancel.AccessibleDescription");
     this.simpleButtonCancel.AccessibleName = resources.GetString("simpleButtonCancel.AccessibleName");
     this.simpleButtonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("simpleButtonCancel.Anchor")));
     this.simpleButtonCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("simpleButtonCancel.BackgroundImage")));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("simpleButtonCancel.Dock")));
     this.simpleButtonCancel.Enabled = ((bool)(resources.GetObject("simpleButtonCancel.Enabled")));
     this.simpleButtonCancel.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("simpleButtonCancel.ImeMode")));
     this.simpleButtonCancel.Location = ((System.Drawing.Point)(resources.GetObject("simpleButtonCancel.Location")));
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("simpleButtonCancel.RightToLeft")));
     this.simpleButtonCancel.Size = ((System.Drawing.Size)(resources.GetObject("simpleButtonCancel.Size")));
     this.simpleButtonCancel.TabIndex = ((int)(resources.GetObject("simpleButtonCancel.TabIndex")));
     this.simpleButtonCancel.Text = resources.GetString("simpleButtonCancel.Text");
     this.simpleButtonCancel.ToolTip = resources.GetString("simpleButtonCancel.ToolTip");
     this.simpleButtonCancel.ToolTipIconType = ((DevExpress.Utils.ToolTipIconType)(resources.GetObject("simpleButtonCancel.ToolTipIconType")));
     this.simpleButtonCancel.ToolTipTitle = resources.GetString("simpleButtonCancel.ToolTipTitle");
     this.simpleButtonCancel.Visible = ((bool)(resources.GetObject("simpleButtonCancel.Visible")));
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.AccessibleDescription = resources.GetString("simpleButtonOK.AccessibleDescription");
     this.simpleButtonOK.AccessibleName = resources.GetString("simpleButtonOK.AccessibleName");
     this.simpleButtonOK.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("simpleButtonOK.Anchor")));
     this.simpleButtonOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("simpleButtonOK.BackgroundImage")));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("simpleButtonOK.Dock")));
     this.simpleButtonOK.Enabled = ((bool)(resources.GetObject("simpleButtonOK.Enabled")));
     this.simpleButtonOK.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("simpleButtonOK.ImeMode")));
     this.simpleButtonOK.Location = ((System.Drawing.Point)(resources.GetObject("simpleButtonOK.Location")));
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("simpleButtonOK.RightToLeft")));
     this.simpleButtonOK.Size = ((System.Drawing.Size)(resources.GetObject("simpleButtonOK.Size")));
     this.simpleButtonOK.TabIndex = ((int)(resources.GetObject("simpleButtonOK.TabIndex")));
     this.simpleButtonOK.Text = resources.GetString("simpleButtonOK.Text");
     this.simpleButtonOK.ToolTip = resources.GetString("simpleButtonOK.ToolTip");
     this.simpleButtonOK.ToolTipIconType = ((DevExpress.Utils.ToolTipIconType)(resources.GetObject("simpleButtonOK.ToolTipIconType")));
     this.simpleButtonOK.ToolTipTitle = resources.GetString("simpleButtonOK.ToolTipTitle");
     this.simpleButtonOK.Visible = ((bool)(resources.GetObject("simpleButtonOK.Visible")));
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label3
     //
     this.label3.AccessibleDescription = resources.GetString("label3.AccessibleDescription");
     this.label3.AccessibleName = resources.GetString("label3.AccessibleName");
     this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("label3.Anchor")));
     this.label3.AutoSize = ((bool)(resources.GetObject("label3.AutoSize")));
     this.label3.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("label3.Dock")));
     this.label3.Enabled = ((bool)(resources.GetObject("label3.Enabled")));
     this.label3.Font = ((System.Drawing.Font)(resources.GetObject("label3.Font")));
     this.label3.Image = ((System.Drawing.Image)(resources.GetObject("label3.Image")));
     this.label3.ImageAlign = ((System.Drawing.ContentAlignment)(resources.GetObject("label3.ImageAlign")));
     this.label3.ImageIndex = ((int)(resources.GetObject("label3.ImageIndex")));
     this.label3.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("label3.ImeMode")));
     this.label3.Location = ((System.Drawing.Point)(resources.GetObject("label3.Location")));
     this.label3.Name = "label3";
     this.label3.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("label3.RightToLeft")));
     this.label3.Size = ((System.Drawing.Size)(resources.GetObject("label3.Size")));
     this.label3.TabIndex = ((int)(resources.GetObject("label3.TabIndex")));
     this.label3.Text = resources.GetString("label3.Text");
     this.label3.TextAlign = ((System.Drawing.ContentAlignment)(resources.GetObject("label3.TextAlign")));
     this.label3.Visible = ((bool)(resources.GetObject("label3.Visible")));
     //
     // FormNewMemberCreditPackageUsage
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AccessibleDescription = resources.GetString("$this.AccessibleDescription");
     this.AccessibleName = resources.GetString("$this.AccessibleName");
     this.AutoScaleBaseSize = ((System.Drawing.Size)(resources.GetObject("$this.AutoScaleBaseSize")));
     this.AutoScroll = ((bool)(resources.GetObject("$this.AutoScroll")));
     this.AutoScrollMargin = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMargin")));
     this.AutoScrollMinSize = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMinSize")));
     this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = ((System.Drawing.Size)(resources.GetObject("$this.ClientSize")));
     this.Controls.Add(this.label3);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lkpEdtPackageCode);
     this.Enabled = ((bool)(resources.GetObject("$this.Enabled")));
     this.Font = ((System.Drawing.Font)(resources.GetObject("$this.Font")));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("$this.ImeMode")));
     this.Location = ((System.Drawing.Point)(resources.GetObject("$this.Location")));
     this.MaximizeBox = false;
     this.MaximumSize = ((System.Drawing.Size)(resources.GetObject("$this.MaximumSize")));
     this.MinimizeBox = false;
     this.MinimumSize = ((System.Drawing.Size)(resources.GetObject("$this.MinimumSize")));
     this.Name = "FormNewMemberCreditPackageUsage";
     this.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("$this.RightToLeft")));
     this.ShowInTaskbar = false;
     this.StartPosition = ((System.Windows.Forms.FormStartPosition)(resources.GetObject("$this.StartPosition")));
     this.Text = resources.GetString("$this.Text");
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageCode.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();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkExistingInstitutions = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkIsInstitutionUsedAtFacility = new DevExpress.XtraEditors.CheckEdit();
     this.dtRegistration = new CalendarLib.DateTimePickerEx();
     this.txtTinNo = new DevExpress.XtraEditors.TextEdit();
     this.btnIssueSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtLicenseNo = new DevExpress.XtraEditors.TextEdit();
     this.txtVATNo = new DevExpress.XtraEditors.TextEdit();
     this.lkRUType = new DevExpress.XtraEditors.LookUpEdit();
     this.txtPhone = new DevExpress.XtraEditors.TextEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.txtReceivingUnit = new DevExpress.XtraEditors.TextEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.txtDescription = new DevExpress.XtraEditors.TextEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRoute = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lcReceivingUnitsDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.lcHospitalSettingsDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.groupPrivateDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem45 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcTinNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcVATNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcLicenseNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.lcIsUsedInFacility = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcExistingInstitutions = new DevExpress.XtraLayout.LayoutControlItem();
     this.groupPrivateDetails = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem48 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem44 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcWoreda = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem47 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem46 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem19 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.issueLocationValidation = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkExistingInstitutions.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsInstitutionUsedAtFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTinNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLicenseNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVATNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRUType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivingUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRoute.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcReceivingUnitsDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcHospitalSettingsDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcTinNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcVATNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcLicenseNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcIsUsedInFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcExistingInstitutions)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcWoreda)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.issueLocationValidation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkExistingInstitutions);
     this.layoutControl1.Controls.Add(this.chkIsInstitutionUsedAtFacility);
     this.layoutControl1.Controls.Add(this.dtRegistration);
     this.layoutControl1.Controls.Add(this.txtTinNo);
     this.layoutControl1.Controls.Add(this.btnIssueSave);
     this.layoutControl1.Controls.Add(this.btnCancel);
     this.layoutControl1.Controls.Add(this.txtLicenseNo);
     this.layoutControl1.Controls.Add(this.txtVATNo);
     this.layoutControl1.Controls.Add(this.lkRUType);
     this.layoutControl1.Controls.Add(this.txtPhone);
     this.layoutControl1.Controls.Add(this.lkOwnership);
     this.layoutControl1.Controls.Add(this.txtReceivingUnit);
     this.layoutControl1.Controls.Add(this.lkWoreda);
     this.layoutControl1.Controls.Add(this.txtDescription);
     this.layoutControl1.Controls.Add(this.lkZone);
     this.layoutControl1.Controls.Add(this.lkRoute);
     this.layoutControl1.Controls.Add(this.lkRegion);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(737, 251, 250, 350);
     this.layoutControl1.Root = this.lcReceivingUnitsDetail;
     this.layoutControl1.Size = new System.Drawing.Size(359, 491);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkExistingInstitutions
     //
     this.lkExistingInstitutions.EditValue = "Does the Institution Exist?";
     this.lkExistingInstitutions.Location = new System.Drawing.Point(121, 162);
     this.lkExistingInstitutions.Name = "lkExistingInstitutions";
     this.lkExistingInstitutions.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkExistingInstitutions.Properties.DisplayMember = "InstitutionName";
     this.lkExistingInstitutions.Properties.NullText = "Does the institution exist?";
     this.lkExistingInstitutions.Properties.ShowFooter = false;
     this.lkExistingInstitutions.Properties.ValueMember = "InstitutionName";
     this.lkExistingInstitutions.Properties.View = this.gridLookUpEdit1View;
     this.lkExistingInstitutions.Size = new System.Drawing.Size(214, 20);
     this.lkExistingInstitutions.StyleController = this.layoutControl1;
     this.lkExistingInstitutions.TabIndex = 23;
     this.lkExistingInstitutions.EditValueChanged += new System.EventHandler(this.lkExistingInstitutions_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn1});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowColumnHeaders = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.OptionsView.ShowIndicator = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Name";
     this.gridColumn15.FieldName = "InstitutionName";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Type";
     this.gridColumn1.FieldName = "TypeName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // chkIsInstitutionUsedAtFacility
     //
     this.chkIsInstitutionUsedAtFacility.Location = new System.Drawing.Point(24, 43);
     this.chkIsInstitutionUsedAtFacility.Name = "chkIsInstitutionUsedAtFacility";
     this.chkIsInstitutionUsedAtFacility.Properties.Caption = "Is Used In Facility";
     this.chkIsInstitutionUsedAtFacility.Size = new System.Drawing.Size(311, 19);
     this.chkIsInstitutionUsedAtFacility.StyleController = this.layoutControl1;
     this.chkIsInstitutionUsedAtFacility.TabIndex = 49;
     //
     // dtRegistration
     //
     this.dtRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtRegistration.CalendarFont = new System.Drawing.Font("Nyala", 10.75F);
     this.dtRegistration.CalendarForeColor = System.Drawing.Color.Black;
     this.dtRegistration.DayOfWeekCharacters = 2;
     this.dtRegistration.ForeColor = System.Drawing.Color.Black;
     this.dtRegistration.Location = new System.Drawing.Point(133, 409);
     this.dtRegistration.Name = "dtRegistration";
     this.dtRegistration.PopUpFontSize = 8.75F;
     this.dtRegistration.Size = new System.Drawing.Size(190, 20);
     this.dtRegistration.TabIndex = 30;
     this.dtRegistration.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // txtTinNo
     //
     this.txtTinNo.Location = new System.Drawing.Point(133, 385);
     this.txtTinNo.Name = "txtTinNo";
     this.txtTinNo.Size = new System.Drawing.Size(190, 20);
     this.txtTinNo.StyleController = this.layoutControl1;
     this.txtTinNo.TabIndex = 29;
     //
     // btnIssueSave
     //
     this.btnIssueSave.Location = new System.Drawing.Point(135, 445);
     this.btnIssueSave.Name = "btnIssueSave";
     this.btnIssueSave.Size = new System.Drawing.Size(105, 22);
     this.btnIssueSave.StyleController = this.layoutControl1;
     this.btnIssueSave.TabIndex = 25;
     this.btnIssueSave.Text = "Save";
     this.btnIssueSave.Click += new System.EventHandler(this.btnIssueSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(244, 445);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(91, 22);
     this.btnCancel.StyleController = this.layoutControl1;
     this.btnCancel.TabIndex = 26;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // txtLicenseNo
     //
     this.txtLicenseNo.Location = new System.Drawing.Point(133, 337);
     this.txtLicenseNo.Name = "txtLicenseNo";
     this.txtLicenseNo.Size = new System.Drawing.Size(190, 20);
     this.txtLicenseNo.StyleController = this.layoutControl1;
     this.txtLicenseNo.TabIndex = 27;
     //
     // txtVATNo
     //
     this.txtVATNo.Location = new System.Drawing.Point(133, 361);
     this.txtVATNo.Name = "txtVATNo";
     this.txtVATNo.Size = new System.Drawing.Size(190, 20);
     this.txtVATNo.StyleController = this.layoutControl1;
     this.txtVATNo.TabIndex = 28;
     //
     // lkRUType
     //
     this.lkRUType.Location = new System.Drawing.Point(121, 138);
     this.lkRUType.Name = "lkRUType";
     this.lkRUType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRUType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkRUType.Properties.DisplayMember = "Name";
     this.lkRUType.Properties.NullText = "";
     this.lkRUType.Properties.ShowFooter = false;
     this.lkRUType.Properties.ShowHeader = false;
     this.lkRUType.Properties.ValueMember = "ID";
     this.lkRUType.Size = new System.Drawing.Size(214, 20);
     this.lkRUType.StyleController = this.layoutControl1;
     this.lkRUType.TabIndex = 45;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.issueLocationValidation.SetValidationRule(this.lkRUType, conditionValidationRule1);
     //
     // txtPhone
     //
     this.txtPhone.Location = new System.Drawing.Point(121, 210);
     this.txtPhone.Name = "txtPhone";
     this.txtPhone.Size = new System.Drawing.Size(214, 20);
     this.txtPhone.StyleController = this.layoutControl1;
     this.txtPhone.TabIndex = 36;
     //
     // lkOwnership
     //
     this.lkOwnership.Location = new System.Drawing.Point(121, 258);
     this.lkOwnership.Name = "lkOwnership";
     this.lkOwnership.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkOwnership.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkOwnership.Properties.DisplayMember = "Name";
     this.lkOwnership.Properties.NullText = "";
     this.lkOwnership.Properties.ShowFooter = false;
     this.lkOwnership.Properties.ShowHeader = false;
     this.lkOwnership.Properties.ValueMember = "ID";
     this.lkOwnership.Size = new System.Drawing.Size(214, 20);
     this.lkOwnership.StyleController = this.layoutControl1;
     this.lkOwnership.TabIndex = 44;
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // txtReceivingUnit
     //
     this.txtReceivingUnit.Enabled = false;
     this.txtReceivingUnit.Location = new System.Drawing.Point(121, 186);
     this.txtReceivingUnit.Name = "txtReceivingUnit";
     this.txtReceivingUnit.Size = new System.Drawing.Size(214, 20);
     this.txtReceivingUnit.StyleController = this.layoutControl1;
     this.txtReceivingUnit.TabIndex = 35;
     //
     // lkWoreda
     //
     this.lkWoreda.Location = new System.Drawing.Point(121, 114);
     this.lkWoreda.Name = "lkWoreda";
     this.lkWoreda.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWoreda.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("WoredaName", "Woreda")});
     this.lkWoreda.Properties.DisplayMember = "WoredaName";
     this.lkWoreda.Properties.NullText = "";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(214, 20);
     this.lkWoreda.StyleController = this.layoutControl1;
     this.lkWoreda.TabIndex = 43;
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // txtDescription
     //
     this.txtDescription.Location = new System.Drawing.Point(121, 282);
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.Size = new System.Drawing.Size(214, 20);
     this.txtDescription.StyleController = this.layoutControl1;
     this.txtDescription.TabIndex = 37;
     //
     // lkZone
     //
     this.lkZone.Location = new System.Drawing.Point(121, 90);
     this.lkZone.Name = "lkZone";
     this.lkZone.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkZone.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ZoneName", "Zone")});
     this.lkZone.Properties.DisplayMember = "ZoneName";
     this.lkZone.Properties.NullText = "";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(214, 20);
     this.lkZone.StyleController = this.layoutControl1;
     this.lkZone.TabIndex = 42;
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // lkRoute
     //
     this.lkRoute.Location = new System.Drawing.Point(121, 234);
     this.lkRoute.Name = "lkRoute";
     this.lkRoute.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRoute.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkRoute.Properties.DisplayMember = "Name";
     this.lkRoute.Properties.NullText = "";
     this.lkRoute.Properties.ValueMember = "RouteID";
     this.lkRoute.Size = new System.Drawing.Size(214, 20);
     this.lkRoute.StyleController = this.layoutControl1;
     this.lkRoute.TabIndex = 38;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.issueLocationValidation.SetValidationRule(this.lkRoute, conditionValidationRule2);
     //
     // lkRegion
     //
     this.lkRegion.Location = new System.Drawing.Point(121, 66);
     this.lkRegion.Name = "lkRegion";
     this.lkRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRegion.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RegionName", "Region")});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "Region Name";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(214, 20);
     this.lkRegion.StyleController = this.layoutControl1;
     this.lkRegion.TabIndex = 41;
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lcReceivingUnitsDetail
     //
     this.lcReceivingUnitsDetail.CustomizationFormText = "Root";
     this.lcReceivingUnitsDetail.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.lcReceivingUnitsDetail.GroupBordersVisible = false;
     this.lcReceivingUnitsDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.lcHospitalSettingsDetail});
     this.lcReceivingUnitsDetail.Location = new System.Drawing.Point(0, 0);
     this.lcReceivingUnitsDetail.Name = "Root";
     this.lcReceivingUnitsDetail.Size = new System.Drawing.Size(359, 491);
     this.lcReceivingUnitsDetail.Text = "Root";
     this.lcReceivingUnitsDetail.TextVisible = false;
     //
     // lcHospitalSettingsDetail
     //
     this.lcHospitalSettingsDetail.CustomizationFormText = "Details";
     this.lcHospitalSettingsDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem10,
     this.layoutControlItem11,
     this.groupPrivateDetail,
     this.layoutControlItem6,
     this.layoutControlItem5,
     this.emptySpaceItem3,
     this.lcIsUsedInFacility,
     this.layoutControlItem14,
     this.layoutControlItem9,
     this.layoutControlItem12,
     this.layoutControlItem13,
     this.layoutControlItem3,
     this.lcExistingInstitutions});
     this.lcHospitalSettingsDetail.Location = new System.Drawing.Point(0, 0);
     this.lcHospitalSettingsDetail.Name = "lcHospitalSettingsDetail";
     this.lcHospitalSettingsDetail.Size = new System.Drawing.Size(339, 471);
     this.lcHospitalSettingsDetail.Text = "Details";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtReceivingUnit;
     this.layoutControlItem2.CustomizationFormText = "Issue Location";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 143);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem2.Text = "Name";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtPhone;
     this.layoutControlItem4.CustomizationFormText = "Phone";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 167);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem4.Text = "Phone";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.lkOwnership;
     this.layoutControlItem10.CustomizationFormText = "Ownership";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 215);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem10.Text = "Ownership";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.lkRoute;
     this.layoutControlItem11.CustomizationFormText = "Route";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 191);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem11.Text = "Route";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(94, 13);
     //
     // groupPrivateDetail
     //
     this.groupPrivateDetail.CustomizationFormText = "Private Institution Details";
     this.groupPrivateDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem45,
     this.lcTinNo,
     this.lcVATNo,
     this.lcLicenseNo});
     this.groupPrivateDetail.Location = new System.Drawing.Point(0, 263);
     this.groupPrivateDetail.Name = "groupPrivateDetail";
     this.groupPrivateDetail.Size = new System.Drawing.Size(315, 139);
     this.groupPrivateDetail.Text = "Private Institution Details";
     this.groupPrivateDetail.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem45
     //
     this.layoutControlItem45.Control = this.dtRegistration;
     this.layoutControlItem45.CustomizationFormText = "Registration Date";
     this.layoutControlItem45.Location = new System.Drawing.Point(0, 72);
     this.layoutControlItem45.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem45.MinSize = new System.Drawing.Size(192, 24);
     this.layoutControlItem45.Name = "layoutControlItem45";
     this.layoutControlItem45.Size = new System.Drawing.Size(291, 24);
     this.layoutControlItem45.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem45.Text = "Registration Date";
     this.layoutControlItem45.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcTinNo
     //
     this.lcTinNo.Control = this.txtTinNo;
     this.lcTinNo.CustomizationFormText = "TIN No.";
     this.lcTinNo.Location = new System.Drawing.Point(0, 48);
     this.lcTinNo.Name = "lcTinNo";
     this.lcTinNo.Size = new System.Drawing.Size(291, 24);
     this.lcTinNo.Text = "TIN No.";
     this.lcTinNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcVATNo
     //
     this.lcVATNo.Control = this.txtVATNo;
     this.lcVATNo.CustomizationFormText = "VAT Reg. No.";
     this.lcVATNo.Location = new System.Drawing.Point(0, 24);
     this.lcVATNo.Name = "lcVATNo";
     this.lcVATNo.Size = new System.Drawing.Size(291, 24);
     this.lcVATNo.Text = "VAT Reg. No.";
     this.lcVATNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcLicenseNo
     //
     this.lcLicenseNo.Control = this.txtLicenseNo;
     this.lcLicenseNo.CustomizationFormText = "License No.";
     this.lcLicenseNo.Location = new System.Drawing.Point(0, 0);
     this.lcLicenseNo.Name = "lcLicenseNo";
     this.lcLicenseNo.Size = new System.Drawing.Size(291, 24);
     this.lcLicenseNo.Text = "License No.";
     this.lcLicenseNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnCancel;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem6.Location = new System.Drawing.Point(220, 402);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnIssueSave;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem5.Location = new System.Drawing.Point(111, 402);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 402);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(111, 26);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // lcIsUsedInFacility
     //
     this.lcIsUsedInFacility.Control = this.chkIsInstitutionUsedAtFacility;
     this.lcIsUsedInFacility.CustomizationFormText = "layoutControlItem17";
     this.lcIsUsedInFacility.Location = new System.Drawing.Point(0, 0);
     this.lcIsUsedInFacility.Name = "lcIsUsedInFacility";
     this.lcIsUsedInFacility.Size = new System.Drawing.Size(315, 23);
     this.lcIsUsedInFacility.Text = "lcIsUsedInFacility";
     this.lcIsUsedInFacility.TextSize = new System.Drawing.Size(0, 0);
     this.lcIsUsedInFacility.TextToControlDistance = 0;
     this.lcIsUsedInFacility.TextVisible = false;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.lkRegion;
     this.layoutControlItem14.CustomizationFormText = "Region";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 23);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem14.Text = "Region";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.lkZone;
     this.layoutControlItem9.CustomizationFormText = "Zone";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 47);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem9.Text = "Zone";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.lkWoreda;
     this.layoutControlItem12.CustomizationFormText = "Woreda";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 71);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem12.Text = "Woreda";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.lkRUType;
     this.layoutControlItem13.CustomizationFormText = "Facility Type";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 95);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem13.Text = "Facility Type";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtDescription;
     this.layoutControlItem3.CustomizationFormText = "Description";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 239);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem3.Text = "Description";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcExistingInstitutions
     //
     this.lcExistingInstitutions.Control = this.lkExistingInstitutions;
     this.lcExistingInstitutions.CustomizationFormText = "Existing Institutions";
     this.lcExistingInstitutions.Location = new System.Drawing.Point(0, 119);
     this.lcExistingInstitutions.Name = "lcExistingInstitutions";
     this.lcExistingInstitutions.Size = new System.Drawing.Size(315, 24);
     this.lcExistingInstitutions.Text = "Existing Institutions";
     this.lcExistingInstitutions.TextSize = new System.Drawing.Size(94, 13);
     this.lcExistingInstitutions.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // groupPrivateDetails
     //
     this.groupPrivateDetails.CustomizationFormText = "Private Institution Details";
     this.groupPrivateDetails.Location = new System.Drawing.Point(0, 316);
     this.groupPrivateDetails.Name = "groupPrivateDetails";
     this.groupPrivateDetails.OptionsItemText.TextToControlDistance = 5;
     this.groupPrivateDetails.Size = new System.Drawing.Size(325, 140);
     this.groupPrivateDetails.Text = "Private Institution Details";
     this.groupPrivateDetails.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.CustomizationFormText = "Cash/Credit";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 292);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem50.Text = "Cash/Credit";
     this.layoutControlItem50.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem50.TextToControlDistance = 5;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.CustomizationFormText = "Ownership";
     this.layoutControlItem42.Location = new System.Drawing.Point(0, 268);
     this.layoutControlItem42.Name = "layoutControlItem42";
     this.layoutControlItem42.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem42.Text = "Ownership";
     this.layoutControlItem42.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem42.TextToControlDistance = 5;
     //
     // layoutControlItem48
     //
     this.layoutControlItem48.CustomizationFormText = "Facility Type";
     this.layoutControlItem48.Location = new System.Drawing.Point(0, 244);
     this.layoutControlItem48.Name = "layoutControlItem48";
     this.layoutControlItem48.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem48.Text = "Facility Type";
     this.layoutControlItem48.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem48.TextToControlDistance = 5;
     //
     // layoutControlItem44
     //
     this.layoutControlItem44.CustomizationFormText = "Kebele";
     this.layoutControlItem44.Location = new System.Drawing.Point(0, 220);
     this.layoutControlItem44.Name = "layoutControlItem44";
     this.layoutControlItem44.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem44.Text = "Kebele";
     this.layoutControlItem44.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem44.TextToControlDistance = 5;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.CustomizationFormText = "Town";
     this.layoutControlItem43.Location = new System.Drawing.Point(0, 196);
     this.layoutControlItem43.Name = "layoutControlItem43";
     this.layoutControlItem43.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem43.Text = "Town";
     this.layoutControlItem43.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem43.TextToControlDistance = 5;
     //
     // lcWoreda
     //
     this.lcWoreda.CustomizationFormText = "Woreda";
     this.lcWoreda.Location = new System.Drawing.Point(0, 172);
     this.lcWoreda.Name = "lcWoreda";
     this.lcWoreda.Size = new System.Drawing.Size(325, 24);
     this.lcWoreda.Text = "Woreda";
     this.lcWoreda.TextSize = new System.Drawing.Size(84, 13);
     this.lcWoreda.TextToControlDistance = 5;
     //
     // layoutControlItem47
     //
     this.layoutControlItem47.CustomizationFormText = "Zone";
     this.layoutControlItem47.Location = new System.Drawing.Point(0, 148);
     this.layoutControlItem47.Name = "layoutControlItem47";
     this.layoutControlItem47.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem47.Text = "Zone";
     this.layoutControlItem47.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem47.TextToControlDistance = 5;
     //
     // layoutControlItem46
     //
     this.layoutControlItem46.CustomizationFormText = "Region";
     this.layoutControlItem46.Location = new System.Drawing.Point(0, 124);
     this.layoutControlItem46.Name = "layoutControlItem46";
     this.layoutControlItem46.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem46.Text = "Region";
     this.layoutControlItem46.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem46.TextToControlDistance = 5;
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.CustomizationFormText = "Route";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 100);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem38.Text = "Route";
     this.layoutControlItem38.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem38.TextToControlDistance = 5;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.CustomizationFormText = "Description";
     this.layoutControlItem37.Location = new System.Drawing.Point(0, 76);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem37.Text = "Description";
     this.layoutControlItem37.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem37.TextToControlDistance = 5;
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.CustomizationFormText = "Phone";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem36.Name = "layoutControlItem36";
     this.layoutControlItem36.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem36.Text = "Phone";
     this.layoutControlItem36.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem36.TextToControlDistance = 5;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.CustomizationFormText = "Issue Location";
     this.layoutControlItem35.Location = new System.Drawing.Point(0, 28);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem35.Text = "Issue Location";
     this.layoutControlItem35.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem35.TextToControlDistance = 5;
     //
     // emptySpaceItem19
     //
     this.emptySpaceItem19.AllowHotTrack = false;
     this.emptySpaceItem19.CustomizationFormText = "emptySpaceItem19";
     this.emptySpaceItem19.Location = new System.Drawing.Point(0, 456);
     this.emptySpaceItem19.Name = "emptySpaceItem19";
     this.emptySpaceItem19.Size = new System.Drawing.Size(121, 26);
     this.emptySpaceItem19.Text = "emptySpaceItem19";
     this.emptySpaceItem19.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(230, 456);
     this.layoutControlItem40.MaxSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.MinSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem40.Text = "layoutControlItem40";
     this.layoutControlItem40.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem40.TextToControlDistance = 0;
     this.layoutControlItem40.TextVisible = false;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem39.Location = new System.Drawing.Point(121, 456);
     this.layoutControlItem39.MaxSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.MinSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.Name = "layoutControlItem39";
     this.layoutControlItem39.Size = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem39.Text = "layoutControlItem39";
     this.layoutControlItem39.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem39.TextToControlDistance = 0;
     this.layoutControlItem39.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.CustomizationFormText = "Issue Location";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 28);
     this.layoutControlItem1.Name = "layoutControlItem35";
     this.layoutControlItem1.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem1.Text = "Issue Location";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(0, 0);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // ReceivingUnitsDetails
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(359, 491);
     this.Controls.Add(this.layoutControl1);
     this.Name = "ReceivingUnitsDetails";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Institution Detail";
     this.Load += new System.EventHandler(this.ReceivingUnitsDetails_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkExistingInstitutions.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsInstitutionUsedAtFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTinNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLicenseNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVATNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRUType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivingUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRoute.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcReceivingUnitsDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcHospitalSettingsDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcTinNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcVATNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcLicenseNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcIsUsedInFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcExistingInstitutions)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcWoreda)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.issueLocationValidation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     this.ResumeLayout(false);
 }