示例#1
0
        private void addControlCombo(Label lbl, t_shopping dishinfo, DevExpress.XtraEditors.TextEdit tbx)
        {
            TComboFromControl cfc = new TComboFromControl();

            lbl.Parent    = pnlMain;
            lbl.Left      = 18;
            lbl.Top       = onlycontrols.Count * lblHeight + combocontrols.Count * (lblHeight) + comboheight;
            cfc.lbl       = lbl;
            lbl.Font      = lblSimple.Font;
            lbl.Height    = lblHeight;
            lbl.ForeColor = lblSimple.ForeColor;
            lbl.AutoSize  = false;
            lbl.Width     = 528;
            cfc.ispot     = false;
            cfc.dishinfo  = dishinfo;
            if (tbx != null)
            {
                tbx.Parent = pnlMain;
                tbx.Left   = 10;
                tbx.Font   = edtNum1.Font;
                tbx.Top    = lbl.Top - 5;// +lblHeight;
                tbx.Left   = edtNum1.Left;
                tbx.Width  = edtNum1.Width;
                cfc.edt    = tbx;
            }
            combocontrols.Add(cfc);
        }
示例#2
0
        /// <summary>
        /// ChooseImportFile
        /// </summary>
        /// <param name="fileDate"></param>
        /// <param name="txt"></param>
        /// <param name="chkItem"></param>
        private void ChooseImportFile(DateTime fileDate,
                                      DevExpress.XtraEditors.TextEdit txt,
                                      CheckedListBoxItem chkItem)
        {
            try {
                xtraOpenFileDialog1.Filter      = "Excel | *.xls | Excelx | *.xlsx | All files (*.*)| (*.*) "; // file types, that will be allowed to upload
                xtraOpenFileDialog1.Multiselect = false;                                                       // allow/deny user to upload more than one file at a time

                //上櫃資料__請輸入交易日期 , 範本檔名稱=成交彙總表10710
                //上市資料__請輸入交易日期 , 範本檔名稱=09201810
                string filename = string.Format("09{0}.xls", fileDate.ToString("yyyyMM"));
                xtraOpenFileDialog1.FileName = filename;                        //default filename

                xtraOpenFileDialog1.InitialDirectory = Application.StartupPath; //default path
                if (!File.Exists(Path.Combine(Application.StartupPath, filename)))
                {
                    xtraOpenFileDialog1.InitialDirectory = "C:\\";
                }


                if (xtraOpenFileDialog1.ShowDialog() == DialogResult.OK) // if user clicked OK
                {
                    txt.Text           = xtraOpenFileDialog1.FileName;   // get name of file
                    chkItem.CheckState = CheckState.Checked;
                }
                else
                {
                    txt.Text           = "";
                    chkItem.CheckState = CheckState.Unchecked;
                }
            } catch (Exception ex) {
                WriteLog(ex);
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dataNavigator1 = new DevExpress.XtraEditors.DataNavigator();
     this.textEdit1      = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // dataNavigator1
     //
     this.dataNavigator1.Location     = new System.Drawing.Point(16, 16);
     this.dataNavigator1.Name         = "dataNavigator1";
     this.dataNavigator1.Size         = new System.Drawing.Size(261, 24);
     this.dataNavigator1.TabIndex     = 0;
     this.dataNavigator1.Text         = "dataNavigator1";
     this.dataNavigator1.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.Center;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(16, 48);
     this.textEdit1.Name     = "textEdit1";
     this.textEdit1.Size     = new System.Drawing.Size(168, 20);
     this.textEdit1.TabIndex = 1;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(413, 172);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.dataNavigator1);
     this.Name  = "Form1";
     this.Text  = "How to change the \"Record 1 of X\" text in the navigator";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#4
0
 private DevExpress.XtraEditors.TextEdit getComboTextBox()
 {
     DevExpress.XtraEditors.TextEdit tbx = new DevExpress.XtraEditors.TextEdit();
     tbx.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     //tbx.BackColor = Color.AntiqueWhite;
     return(tbx);
 }
示例#5
0
        private void initView()
        {
            lblDishName.Text = dishinfo.Title;
            //根据套餐内容创建控件显示 controls
            ArrayList    onlydishs = comboDish.Onlydishs;
            TPotDishInfo potinfo   = new TPotDishInfo();
            //组合
            ArrayList combodishs = comboDish.Combodishs;

            for (int i = 0; i <= combodishs.Count - 1; i++)
            {
                TCombo combo = (TCombo)combodishs[i];
                Label  lbl   = getonlyLabel(combo);
                lbl.Name = "lbl" + combo.Columnid;
                addComboControl(lbl);
                for (int j = 0; j <= combo.Dishs.Count - 1; j++)
                {
                    if (combo.Dishs[j].GetType().Name.Equals(potinfo.GetType().Name))
                    {
                        //鱼锅
                        lbl = getonlyLabel((TPotDishInfo)combo.Dishs[j]);
                        DevExpress.XtraEditors.TextEdit tbx = getComboTextBox();
                        tbx.Tag          = combo;
                        tbx.Click       += new EventHandler(edtNum1_Click);
                        tbx.TextChanged += new EventHandler(edtNum1_EditValueChanged);
                        tbx.Enter       += new EventHandler(edtNum1_Enter);
                        addControlCombo(lbl, (TPotDishInfo)combo.Dishs[j], tbx);
                    }
                    else
                    {
                        //普通菜
                        lbl = getonlyLabel((t_shopping)combo.Dishs[j], true);
                        DevExpress.XtraEditors.TextEdit tbx = getComboTextBox();
                        tbx.Tag          = combo;
                        tbx.Click       += new EventHandler(edtNum1_Click);
                        tbx.TextChanged += new EventHandler(edtNum1_EditValueChanged);
                        tbx.Enter       += new EventHandler(edtNum1_Enter);
                        addControlCombo(lbl, (t_shopping)combo.Dishs[j], tbx);
                    }
                }
            }
            //必选
            for (int i = 0; i <= onlydishs.Count - 1; i++)
            {
                Label lbl = lblSimple;
                if (onlydishs[i].GetType().Name.Equals(potinfo.GetType().Name))
                {
                    //鱼锅
                    lbl = getonlyLabel((TPotDishInfo)onlydishs[i]);
                    addControl(lbl, (TPotDishInfo)onlydishs[i], null);
                }
                else
                {
                    //普通菜
                    lbl = getonlyLabel((t_shopping)onlydishs[i], false);
                    addControl(lbl, (t_shopping)onlydishs[i], null);
                }
                lblLine.Top = lbl.Top + lblHeight;
            }
        }
示例#6
0
文件: DateDayAll.cs 项目: icprog/MLL
 /// <summary>
 /// 若第一位是小数点则为0.
 /// </summary>
 /// <param name="tb">Textbox</param>
 public static void textChangeTb(DevExpress.XtraEditors.TextEdit tb)
 {
     if (tb.Text.Substring(0) == ".")
     {
         tb.Text           = "0.";
         tb.SelectionStart = 2;
     }
 }
示例#7
0
 public static void SetCurrencyMask(DevExpress.XtraEditors.TextEdit TextBox)
 {
     TextBox.Properties.Mask.MaskType                     = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     TextBox.Properties.Mask.EditMask                     = Model.CommonProperties.UIDataFormats.CurrencyMask;
     TextBox.Properties.Mask.BeepOnError                  = true;
     TextBox.Properties.Mask.UseMaskAsDisplayFormat       = true;
     TextBox.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
 }
示例#8
0
        public static void BMIResult(DevExpress.XtraEditors.TextEdit restxtBMI, System.Windows.Forms.Label reslblBMI, double weight, double height)
        {
            if (height.ToString().Length > 0 && weight.ToString().Length > 0)
            {
                double BMI;

                BMI = (weight * 703) / (height * height);

                if (BMI <= 18.5)
                {
                    restxtBMI.Text      = string.Format("{0:0.00}", BMI);
                    restxtBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));

                    reslblBMI.Text      = "Underweight";
                    reslblBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
                }
                else if (BMI > 18.5 && BMI <= 24.99)
                {
                    restxtBMI.Text      = string.Format("{0:0.00}", BMI);
                    restxtBMI.ForeColor = System.Drawing.Color.Green;

                    reslblBMI.Text      = "Normal Weight";
                    reslblBMI.ForeColor = System.Drawing.Color.Green;
                }
                else if (BMI > 24.99 && BMI <= 29.99)
                {
                    restxtBMI.Text      = string.Format("{0:0.00}", BMI);
                    restxtBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));

                    reslblBMI.Text      = "Over weight";
                    reslblBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));
                }
                else if (BMI > 29.99 && BMI <= 34.99)
                {
                    restxtBMI.Text      = string.Format("{0:0.00}", BMI);
                    restxtBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));

                    reslblBMI.Text      = "Obesity (Class 1)";
                    reslblBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));
                }
                else if (BMI > 34.99 && BMI <= 39.99)
                {
                    restxtBMI.Text      = string.Format("{0:0.00}", BMI);
                    restxtBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));

                    reslblBMI.Text      = "Obesity (Class 2)";
                    reslblBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));
                }
                else if (BMI > 34.99)
                {
                    restxtBMI.Text      = string.Format("{0:0.00}", BMI);
                    restxtBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));

                    reslblBMI.Text      = "Obesity";
                    reslblBMI.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(0)))), ((int)(((byte)(11)))));
                }
            }
        }
示例#9
0
 public void setlabeltext(DevExpress.XtraEditors.TextEdit textedit, string content)
 {
     try
     {
         BeginInvoke(new wtts(set_labeltext), textedit, content);
     }
     catch
     { }
 }
示例#10
0
 public bool CheckNullValueTextEdit(DevExpress.XtraEditors.TextEdit TextEdit)
 {
     if (TextEdit.Text == "")
     {
         MessageBox.Show("Giá trị " + TextEdit.Tag + " không được để trống");
         return(false);
     }
     return(true);
 }
示例#11
0
 private void frmLogin_Load(object sender, EventArgs e)
 {
     InitLoginWindow(); //初始化登陆窗体
     focusedt = txtUser;
     txtUser.Focus();
     setBtnFocus();
     lblVer.Text      = String.Format("版本:{0}", Globals.ProductVersion);
     lblbranchid.Text = String.Format("店铺编号:{0}", RestClient.getbranch_id());
 }
示例#12
0
 private void txtPassword_Leave(object sender, EventArgs e)
 {
     if (txtPassword.Text == "")
     {
         DevExpress.XtraEditors.TextEdit temp = new DevExpress.XtraEditors.TextEdit();
         txtPassword.Properties.PasswordChar         = temp.Properties.PasswordChar;
         txtPassword.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
         txtPassword.EditValue = "Password";
     }
 }
示例#13
0
        /// <summary>
        /// 문자메세지 자리수 제한
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Control_KeyUp(object sender, KeyEventArgs e)
        {
            DevExpress.XtraEditors.TextEdit tb = sender as DevExpress.XtraEditors.TextEdit;
            int nLen = Encoding.Default.GetBytes(tb.Text).Length;

            if (nLen > 2)
            {
                Limitlenth(tb);
            }
        }
示例#14
0
 private void repositoryItemColorEdit1_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.TextEdit tx = (DevExpress.XtraEditors.TextEdit)sender;
     if (tx.Text.Length > 0)
     {
         ColorConverter cc  = new ColorConverter();
         Color          obj = (Color)cc.ConvertFromInvariantString(tx.Text);
         _obj.Color = ColorTranslator.ToOle(obj);
     }
 }
 void CedulaRifTextEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.TextEdit Editor = (DevExpress.XtraEditors.TextEdit)sender;
     if (!Editor.IsModified)
     {
         return;
     }
     Editor.Text = Basicas.CedulaRif(Editor.Text);
     this.bs.EndEdit();
 }
示例#16
0
        public static void InsertTextInCursor(DevExpress.XtraEditors.TextEdit textEdit, string value)
        {
            string s   = textEdit.Text;
            int    idx = textEdit.SelectionStart;

            s                        = s.Insert(idx, value);
            textEdit.Text            = s;
            textEdit.SelectionStart  = idx + value.Length;
            textEdit.SelectionLength = 0;
            //textEdit.Focus();
        }
 /// <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.newFileNameTxt = new DevExpress.XtraEditors.TextEdit();
     this.acceptNewNameBtn = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.newFileNameTxt.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(23, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "label1";
     //
     // newFileNameTxt
     //
     this.newFileNameTxt.Location = new System.Drawing.Point(12, 29);
     this.newFileNameTxt.Name = "newFileNameTxt";
     this.newFileNameTxt.Size = new System.Drawing.Size(268, 20);
     this.newFileNameTxt.TabIndex = 1;
     //
     // acceptNewNameBtn
     //
     this.acceptNewNameBtn.Location = new System.Drawing.Point(106, 55);
     this.acceptNewNameBtn.Name = "acceptNewNameBtn";
     this.acceptNewNameBtn.Size = new System.Drawing.Size(75, 23);
     this.acceptNewNameBtn.TabIndex = 2;
     this.acceptNewNameBtn.Text = "OK";
     //
     // renameObjectForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(292, 67);
     this.ControlBox = false;
     this.Controls.Add(this.acceptNewNameBtn);
     this.Controls.Add(this.newFileNameTxt);
     this.Controls.Add(this.label1);
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(300, 75);
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(300, 75);
     this.Name = "renameObjectForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.newFileNameTxt.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#18
0
 private void CapNhatSiSo(DataGridView gv, DevExpress.XtraEditors.TextEdit txt)
 {
     if (gv.DataSource == null)
     {
         txt.Text = "0";
     }
     else
     {
         int count = gv.RowCount;
         txt.Text = count.ToString();
     }
 }
示例#19
0
        public static void InsertTextBetweenCursor(DevExpress.XtraEditors.TextEdit textEdit, string value)
        {
            string s          = textEdit.Text;
            int    startIndex = textEdit.SelectionStart;

            s                        = s.Insert(startIndex, value);
            startIndex               = startIndex + textEdit.SelectionLength + value.Length;
            s                        = s.Insert(startIndex, value);
            textEdit.Text            = s;
            textEdit.SelectionStart  = startIndex + value.Length;
            textEdit.SelectionLength = 0;
        }
示例#20
0
 void RatetxtEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.TextEdit editer = sender as DevExpress.XtraEditors.TextEdit;
     for (int b = 1; b < dtBandCol.Columns.Count; b++)
     {
         if (gridView1.FocusedColumn.FieldName == dtBandCol.Columns[b] + "Rate")
         {
             gridView1.SetFocusedRowCellValue(dtBandCol.Columns[b] + "Rate", editer.Text);
         }
     }
     gridView1.UpdateCurrentRow();
 }
示例#21
0
        /// <summary>
        /// 회원번호 키다운
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
        private void txtMemberNo_KeyDown(object sender, KeyEventArgs e)
        {
            try
            {
                if (e.KeyCode == Keys.F4)
                {
                    this.picMemberseq_Click(this.picMemberNo, new EventArgs());
                }

                if (e.KeyCode == Keys.Enter)
                {
                    DevExpress.XtraEditors.TextEdit txt = sender as DevExpress.XtraEditors.TextEdit;

                    if (txt.Name == "txtMemberNo" && txtMemberNo.Text.Trim() != "")
                    {
                        //함수를 실행하여 코드를 가져노다.

                        DataTable Tmp = GetMemberSelect();

                        //검색된 데이터가 없거나 여러건일대 새창을띄우고
                        //하나일때 기본디스플레이한다.

                        if (Tmp.Rows.Count == 0)
                        {
                            txtMembernamekor.Text      = "";
                            txtIdno.Text               = "";
                            txtMembergroupcode.Text    = "";
                            dtpRegdate.EditValue       = "";
                            chkUseYn.Enabled           = false;
                            chkUseYn.Checked           = false;
                            txtMemberSeq.Text          = "";
                            mmoRmrk.Text               = "";
                            lupRegwaycode.EditValue    = "01";
                            lupRegreasoncode.EditValue = "01";
                        }
                        else if (Tmp.Rows.Count == 1)
                        {
                            GetUserInfo(Tmp.Rows[0]);
                        }

                        else
                        {
                            InvokeOnClick(picMemberNo, new EventArgs());
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Basic.ShowMessage(3, ex.Message);
            }
        }
示例#22
0
        private void TK_Nguoi_MaKhachHang_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.TextEdit textEdit = (DevExpress.XtraEditors.TextEdit)sender;

            if (!System.Text.RegularExpressions.Regex.IsMatch(textEdit.Text, "^[0-9]*$"))
            {
                errorProvider.SetError(textEdit, "Ma Khach Hang chi co the la so");
            }
            else
            {
                errorProvider.SetError(textEdit, "");
            }
        }
示例#23
0
 public void DecimalHandle(ref object sender, ref KeyPressEventArgs e)
 {
     //TextBox txt = (TextBox)sender;
     DevExpress.XtraEditors.TextEdit txt = (DevExpress.XtraEditors.TextEdit)sender;
     if (txt.Text.Contains(".") && e.KeyChar == '.')
     {
         e.Handled = true;
     }
     if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && e.KeyChar != '.')
     {
         e.Handled = true;
     }
 }
 private void SetupIdBoxes()
 {
     foreach (IMovieScraper scraper in scrapers)
     {
         var item = layoutIds.Root.AddItem();
         var textBox = new DevExpress.XtraEditors.TextEdit { Name = "txtId" + scraper.ScraperName.ToString() };
         item.Name = scraper.ScraperName.ToString();
         item.Text = Tools.Importing.MovieNaming.AddSpacesToSentence(scraper.ScraperName.ToString()) + ":";
         textBox.SuperTip = new SuperToolTip();
         textBox.SuperTip.Items.Add(scraper.DefaultUrl);
         item.Control = textBox;
     }
 }
示例#25
0
 /// <summary>
 /// 자리수 제한
 /// </summary>
 private void Limitlenth(DevExpress.XtraEditors.TextEdit tb)
 {
     try
     {
         tb.Text = tb.Text.Substring(0, tb.Text.Length - 1);
         SendKeys.Send("^{END}");
         tb.SelectionStart = tb.Text.Length;
     }
     catch (Exception ex)
     {
         Basic.ShowMessage(3, ex.Message);
     }
 }
示例#26
0
        public static int GetIntValue(DevExpress.XtraEditors.TextEdit txtBox)
        {
            int val = 0;

            try
            {
                val = int.Parse(txtBox.Text);
            }
            catch (Exception ex)
            {
            }

            return(val);
        }
示例#27
0
        /// <summary>
        /// 设置控件的Enable属性
        /// </summary>
        /// <param name="b"></param>
        protected void SetConEnable(bool b)
        {
            for (int i = 0; i < Frm.Controls.Count; i++)
            {
                string sType = Frm.Controls[i].GetType().ToString();
                if (sType == "System.Windows.Forms.TextBox")
                {
                    TextBox edTemp = (TextBox)Frm.Controls[i];
                    edTemp.ReadOnly = !b;
                    edTemp.Enabled  = b;
                }
                if (sType == "System.Windows.Forms.ComboBox")
                {
                    ComboBox edTemp = (ComboBox)Frm.Controls[i];
                    edTemp.Enabled = b;
                }
                if (sType == "System.Windows.Forms.DateTimePicker")
                {
                    DateTimePicker edTemp = (DateTimePicker)Frm.Controls[i];
                    edTemp.Enabled = b;
                }
                if (sType == "DevExpress.XtraEditors.DateEdit")
                {
                    DevExpress.XtraEditors.DateEdit edTemp = (DevExpress.XtraEditors.DateEdit)Frm.Controls[i];
                    edTemp.Properties.ReadOnly = !b;
                    edTemp.Enabled             = b;
                }
                if (sType == "DevExpress.XtraEditors.TextEdit")
                {
                    DevExpress.XtraEditors.TextEdit edTemp = (DevExpress.XtraEditors.TextEdit)Frm.Controls[i];
                    edTemp.Properties.ReadOnly = !b;
                }
                if (sType == "DevExpress.XtraEditors.LookUpEdit")
                {
                    DevExpress.XtraEditors.LookUpEdit edTemp = (DevExpress.XtraEditors.LookUpEdit)Frm.Controls[i];
                    edTemp.Properties.ReadOnly = !b;
                }
                if (sType == "System.Windows.Forms.RichTextBox")
                {
                    System.Windows.Forms.RichTextBox edTemp = (System.Windows.Forms.RichTextBox)Frm.Controls[i];
                    edTemp.ReadOnly = !b;
                }

                //if (sType == "DevExpress.XtraGrid.GridControl")
                //{
                //    DevExpress.XtraGrid.GridControl edTemp = (DevExpress.XtraGrid.GridControl)Frm.Controls[i];
                //    edTemp.pro = !b;
                //}
            }
        }
示例#28
0
        public static float GetFloatValue(DevExpress.XtraEditors.TextEdit txtBox)
        {
            float val = 0;

            try
            {
                val = float.Parse(txtBox.Text);
            }
            catch (Exception ex)
            {
            }

            return(val);
        }
示例#29
0
 /// <summary>
 /// /// 单元格回车
 /// /// </summary>
 /// /// <param name="sender"></param>
 /// /// <param name="e"></param>
 void rite_KeyDown(object sender, KeyEventArgs e)
 {
     //用户点击 回车
     if (e.KeyCode == Keys.Enter)
     {
         int selectRow = gridView1.GetSelectedRows()[0];
         DevExpress.XtraEditors.TextEdit te = sender as DevExpress.XtraEditors.TextEdit;
         //值为空时返回
         if (te == null || string.IsNullOrEmpty(te.Text.Trim()))
         {
             return;
         }
     }
 }
示例#30
0
        /// <summary>
        /// 예약객실수에서 숫자가변경되었을경우
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        private void gtxtRsvCnt_EditValueChanged(object sender, EventArgs e)
        {
            try
            {
                DevExpress.XtraEditors.TextEdit txt = sender  as DevExpress.XtraEditors.TextEdit;

                string str = txt.Text.Trim() == "" ? "0" : txt.Text.Trim();

                this.txtRsvcnt.Text = str;
            }
            catch (Exception ex)
            {
                Basic.ShowMessage(3, ex.Message);
            }
        }
示例#31
0
        public static void ValidarEmail(DevExpress.XtraEditors.TextEdit TextBoxEmail)
        {
            string email = TextBoxEmail.Text;

            Regex rg = new Regex(@"^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)*)\.([A-Za-z]{2,})$");

            if (rg.IsMatch(email))
            {
            }
            else
            {
                MessageBox.Show("Email Inválido!", "SGS", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                TextBoxEmail.Text = string.Empty;
            }
        }
示例#32
0
 private void SetupIdBoxes()
 {
     foreach (IMovieScraper scraper in scrapers)
     {
         var item    = layoutIds.Root.AddItem();
         var textBox = new DevExpress.XtraEditors.TextEdit {
             Name = "txtId" + scraper.ScraperName.ToString()
         };
         item.Name        = scraper.ScraperName.ToString();
         item.Text        = Tools.Importing.MovieNaming.AddSpacesToSentence(scraper.ScraperName.ToString()) + ":";
         textBox.SuperTip = new SuperToolTip();
         textBox.SuperTip.Items.Add(scraper.DefaultUrl);
         item.Control = textBox;
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.txtNewScheme = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.cboSchemes = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewScheme.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Image = global::FRDB_SQLite.Properties.Resources.Ribbon_Save_16x16;
     this.btnOK.Location = new System.Drawing.Point(126, 119);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(90, 30);
     this.btnOK.TabIndex = 3;
     this.btnOK.Text = "Save";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.Image = global::FRDB_SQLite.Properties.Resources.small_cancel;
     this.btnCancel.Location = new System.Drawing.Point(231, 119);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(90, 30);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 44);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "New Scheme:";
     this.checkEdit1.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit1.Size = new System.Drawing.Size(92, 19);
     this.checkEdit1.TabIndex = 6;
     this.checkEdit1.CheckStateChanged += new System.EventHandler(this.checkEdit1_Click);
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(12, 84);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Existing Scheme:";
     this.checkEdit2.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit2.Size = new System.Drawing.Size(107, 19);
     this.checkEdit2.TabIndex = 6;
     this.checkEdit2.CheckStateChanged += new System.EventHandler(this.checkEdit2_Click);
     //
     // txtNewScheme
     //
     this.txtNewScheme.Location = new System.Drawing.Point(120, 44);
     this.txtNewScheme.Name = "txtNewScheme";
     this.txtNewScheme.Size = new System.Drawing.Size(201, 20);
     this.txtNewScheme.TabIndex = 7;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(76, 12);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(187, 19);
     this.labelControl3.TabIndex = 9;
     this.labelControl3.Text = "Save List Attributes To";
     //
     // cboSchemes
     //
     this.cboSchemes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboSchemes.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboSchemes.FormattingEnabled = true;
     this.cboSchemes.Location = new System.Drawing.Point(120, 82);
     this.cboSchemes.Name = "cboSchemes";
     this.cboSchemes.Size = new System.Drawing.Size(201, 24);
     this.cboSchemes.TabIndex = 10;
     //
     // frmSaveScheme
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(342, 157);
     this.Controls.Add(this.cboSchemes);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.txtNewScheme);
     this.Controls.Add(this.checkEdit2);
     this.Controls.Add(this.checkEdit1);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.MaximizeBox = false;
     this.Name = "frmSaveScheme";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Save Attributes To Scheme";
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewScheme.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#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.gridClassDetail = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.txtDay = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridClassDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridClassDetail
     //
     this.gridClassDetail.DataMember = null;
     this.gridClassDetail.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridClassDetail.EmbeddedNavigator.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.gridClassDetail.EmbeddedNavigator.Enabled = false;
     this.gridClassDetail.EmbeddedNavigator.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridClassDetail.EmbeddedNavigator.Name = "";
     this.gridClassDetail.EmbeddedNavigator.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.None;
     this.gridClassDetail.EmbeddedNavigator.TextStringFormat = null;
     this.gridClassDetail.EmbeddedNavigator.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     this.gridClassDetail.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridClassDetail.Location = new System.Drawing.Point(0, 52);
     this.gridClassDetail.MainView = this.gridView1;
     this.gridClassDetail.Name = "gridClassDetail";
     this.gridClassDetail.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gridClassDetail.Size = new System.Drawing.Size(907, 417);
     this.gridClassDetail.TabIndex = 0;
     this.gridClassDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridView1.GridControl = this.gridClassDetail;
     this.gridView1.GroupFormat = "";
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "No. of Attendees";
     this.gridColumn3.FieldName = "AttendanceNo";
     this.gridColumn3.ImageIndex = 0;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.ToolTip = null;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 20;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.ImageIndex = 0;
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.ToolTip = null;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 20;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Instructor Name";
     this.gridColumn4.FieldName = "Instructor";
     this.gridColumn4.ImageIndex = 0;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.ToolTip = null;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 20;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.ImageIndex = 0;
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.ToolTip = null;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 20;
     //
     // label2
     //
     this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label2.Enabled = false;
     this.label2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label2.Location = new System.Drawing.Point(453, 234);
     this.label2.Name = "label2";
     this.label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label2.Size = new System.Drawing.Size(0, 0);
     this.label2.TabIndex = 0;
     //
     // label1
     //
     this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label1.Enabled = false;
     this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name = "label1";
     this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label1.Size = new System.Drawing.Size(55, 22);
     this.label1.TabIndex = 0;
     this.label1.Text = "Branch";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbBranch.Enabled = false;
     this.cmbBranch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.cmbBranch.Location = new System.Drawing.Point(73, 7);
     this.cmbBranch.Name = "cmbBranch";
     this.cmbBranch.Properties.AutoHeight = false;
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Properties.Mask.EditMask = null;
     this.cmbBranch.Properties.Mask.IgnoreMaskBlank = false;
     this.cmbBranch.Properties.Mask.SaveLiteral = false;
     this.cmbBranch.Properties.Mask.ShowPlaceHolders = false;
     this.cmbBranch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbBranch.Size = new System.Drawing.Size(105, 22);
     this.cmbBranch.TabIndex = 0;
     this.cmbBranch.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     this.cmbBranch.SelectedIndexChanged += new System.EventHandler(this.cmbBranch_SelectedIndexChanged);
     //
     // txtDay
     //
     this.txtDay.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDay.Enabled = false;
     this.txtDay.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.txtDay.Location = new System.Drawing.Point(459, 8);
     this.txtDay.Name = "txtDay";
     this.txtDay.Properties.AutoHeight = false;
     this.txtDay.Properties.Mask.EditMask = null;
     this.txtDay.Properties.Mask.IgnoreMaskBlank = false;
     this.txtDay.Properties.Mask.SaveLiteral = false;
     this.txtDay.Properties.Mask.ShowPlaceHolders = false;
     this.txtDay.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtDay.Size = new System.Drawing.Size(100, 22);
     this.txtDay.TabIndex = 0;
     this.txtDay.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     //
     // label3
     //
     this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label3.Enabled = false;
     this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label3.Location = new System.Drawing.Point(420, 10);
     this.label3.Name = "label3";
     this.label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label3.Size = new System.Drawing.Size(33, 22);
     this.label3.TabIndex = 1;
     this.label3.Text = "Day";
     //
     // RPClassDetail
     //
     this.ClientSize = new System.Drawing.Size(907, 469);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtDay);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbBranch);
     this.Controls.Add(this.gridClassDetail);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "RPClassDetail";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Class Detail";
     this.TopMost = true;
     this.Load += new System.EventHandler(this.RPClassDetail_Load);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.RPClassDetail_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.gridClassDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDay.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);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPostMasterSearchQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
     this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NguoiNhap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.MaCT = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.label1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_PM_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_MaChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TenTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TienDo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanelAdvance.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     this.dockPanelSimple.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
     this.groupControlPM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barSubItemCotHienThi,
     this.barSubItemInNhan,
     this.barButtonItemInBeatcamTrong,
     this.barButtonItemInBeatacamNgoai,
     this.barCheckItemNangCao,
     this.barCheckItemDonGian,
     this.barButtonItemThongKe});
     this.barManager1.MaxItemId = 43;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barSubItemInNhan
     //
     this.barSubItemInNhan.Caption = "In n&hãn";
     this.barSubItemInNhan.Id = 37;
     this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
     this.barSubItemInNhan.Name = "barSubItemInNhan";
     //
     // barButtonItemInBeatcamTrong
     //
     this.barButtonItemInBeatcamTrong.Caption = "In betacam t&rong";
     this.barButtonItemInBeatcamTrong.Id = 38;
     this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
     this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
     //
     // barButtonItemInBeatacamNgoai
     //
     this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&goài";
     this.barButtonItemInBeatacamNgoai.Id = 39;
     this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
     this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick);
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barCheckItemNangCao
     //
     this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
     this.barCheckItemNangCao.Id = 40;
     this.barCheckItemNangCao.Name = "barCheckItemNangCao";
     //
     // barCheckItemDonGian
     //
     this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
     this.barCheckItemDonGian.Id = 41;
     this.barCheckItemDonGian.Name = "barCheckItemDonGian";
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemThongKe
     //
     this.barButtonItemThongKe.Caption = "&Thống kê";
     this.barButtonItemThongKe.Id = 42;
     this.barButtonItemThongKe.Name = "barButtonItemThongKe";
     this.barButtonItemThongKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 36;
     this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1008, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1008, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1008, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.DockingOptions.ShowCloseButton = false;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanelAdvance,
     this.dockPanelSimple});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanelAdvance
     //
     this.dockPanelAdvance.Controls.Add(this.controlContainer1);
     this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.ID = new System.Guid("44e36ae0-214f-42cd-8bee-8c8105129b29");
     this.dockPanelAdvance.Location = new System.Drawing.Point(0, 24);
     this.dockPanelAdvance.Name = "dockPanelAdvance";
     this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelAdvance.Size = new System.Drawing.Size(200, 521);
     this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.filterControl1);
     this.controlContainer1.Location = new System.Drawing.Point(3, 25);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(194, 493);
     this.controlContainer1.TabIndex = 0;
     //
     // filterControl1
     //
     this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.filterControl1.Location = new System.Drawing.Point(0, 0);
     this.filterControl1.Name = "filterControl1";
     this.filterControl1.Size = new System.Drawing.Size(194, 493);
     this.filterControl1.TabIndex = 11;
     this.filterControl1.Text = "filterControl1";
     //
     // dockPanelSimple
     //
     this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
     this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanelSimple.FloatVertical = true;
     this.dockPanelSimple.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanelSimple.Location = new System.Drawing.Point(200, 24);
     this.dockPanelSimple.Name = "dockPanelSimple";
     this.dockPanelSimple.Options.AllowDockLeft = false;
     this.dockPanelSimple.Options.AllowDockRight = false;
     this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 111);
     this.dockPanelSimple.Size = new System.Drawing.Size(808, 111);
     this.dockPanelSimple.Text = "Điều kiện tìm kiếm đơn giản";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(802, 83);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NguoiNhap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.MaCT);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.PostMaster);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(802, 83);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // TenTap
     //
     this.TenTap._DataSource = null;
     this.TenTap._GetField = null;
     this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TenTap.Location = new System.Drawing.Point(750, 60);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(606, 20);
     this.TenTap.TabIndex = 222;
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(693, 63);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(37, 13);
     this.plLabel5.TabIndex = 240;
     this.plLabel5.Text = "Tên tập";
     //
     // TapSoDen
     //
     this.TapSoDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(953, 35);
     this.TapSoDen.Name = "TapSoDen";
     this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoDen.Size = new System.Drawing.Size(606, 20);
     this.TapSoDen.TabIndex = 241;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(875, 35);
     this.TapSoTu.Name = "TapSoTu";
     this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoTu.Size = new System.Drawing.Size(42, 20);
     this.TapSoTu.TabIndex = 242;
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(923, 39);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 239;
     this.plLabel15.Text = "đến";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(811, 38);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(32, 13);
     this.plLabel12.TabIndex = 240;
     this.plLabel12.Text = "Tập số";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(811, 8);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(59, 13);
     this.plLabel3.TabIndex = 229;
     this.plLabel3.Text = "Số ĐKCB HD";
     this.plLabel3.ToolTip = "Số đăng ký cá biệt HD";
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(875, 5);
     this.SoDKCBHD.Name = "SoDKCBHD";
     this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKCBHD.Size = new System.Drawing.Size(606, 20);
     this.SoDKCBHD.TabIndex = 228;
     this.SoDKCBHD.ValueField = null;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(338, 32);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(187, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NguoiNhap
     //
     this.NguoiNhap.DataSource = null;
     this.NguoiNhap.DisplayField = null;
     this.NguoiNhap.Location = new System.Drawing.Point(338, 8);
     this.NguoiNhap.Name = "NguoiNhap";
     this.NguoiNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NguoiNhap.Size = new System.Drawing.Size(187, 20);
     this.NguoiNhap.TabIndex = 227;
     this.NguoiNhap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 22/03/2012 đến ngày 29/03/2012";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.FirstTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.FromDate = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.Location = new System.Drawing.Point(338, 57);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.SecondTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(285, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // MaCT
     //
     this.MaCT.Location = new System.Drawing.Point(48, 8);
     this.MaCT.Name = "MaCT";
     this.MaCT.Size = new System.Drawing.Size(214, 20);
     this.MaCT.TabIndex = 223;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 32);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(214, 20);
     this.NoiDung.TabIndex = 222;
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(608, 32);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 220;
     this.LoaiLuuTru.ValueField = null;
     //
     // PostMaster
     //
     this.PostMaster.DataSource = null;
     this.PostMaster.DisplayField = null;
     this.PostMaster.Location = new System.Drawing.Point(608, 8);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.PostMaster.Size = new System.Drawing.Size(185, 20);
     this.PostMaster.TabIndex = 220;
     this.PostMaster.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 56);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(214, 20);
     this.TietMuc.TabIndex = 216;
     this.TietMuc.ValueField = null;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(544, 38);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(55, 13);
     this.plLabel2.TabIndex = 213;
     this.plLabel2.Text = "Loại lưu trữ";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(544, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(58, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Post/Master";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(30, 13);
     this.label1.TabIndex = 214;
     this.label1.Text = "Mã CT";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(275, 12);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(55, 13);
     this.plLabel4.TabIndex = 217;
     this.plLabel4.Text = "Người nhập";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(275, 36);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(274, 59);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 36);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(34, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 135);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.groupControlPM);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(808, 410);
     this.splitContainerControl1.SplitterPosition = 627;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // groupControlPM
     //
     this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupControlPM.Appearance.Options.UseBorderColor = true;
     this.groupControlPM.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControlPM.Controls.Add(this.gridControlMaster);
     this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlPM.Location = new System.Drawing.Point(0, 0);
     this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlPM.Name = "groupControlPM";
     this.groupControlPM.ShowCaption = false;
     this.groupControlPM.Size = new System.Drawing.Size(627, 410);
     this.groupControlPM.TabIndex = 236;
     this.groupControlPM.Text = "groupControl7";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(2, 2);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(623, 406);
     this.gridControlMaster.TabIndex = 10;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandChuongTrinh,
     this.gridBandPostMaster});
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_PM_MaChuongTrinh,
     this.Col_PM_TenChuongTrinh,
     this.Col_PM_TietMuc,
     this.Col_PM_PostMaster,
     this.Col_PM_ThanhLy,
     this.Col_PM_LoaiLuu,
     this.Col_PM_TongTap,
     this.Col_PM_Ke,
     this.Col_PM_Ngan,
     this.Col_PM_Tang,
     this.Col_PM_PopUp,
     this.Col_PM_TTDinhKem,
     this.Col_PM_NgayNhapKho,
     this.Col_PM_DVDNgayDuyet,
     this.Col_PM_DVDNgayHoanTat,
     this.Col_PM_TTHD,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_Category,
     this.Col_PM_TienDo});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 1;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     this.gridViewMaster.OptionsView.ShowViewCaption = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_Category, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewMaster.ViewCaption = "Post/Master (Cấp 2)";
     //
     // Col_PM_Category
     //
     this.Col_PM_Category.Caption = "Category";
     this.Col_PM_Category.Name = "Col_PM_Category";
     this.Col_PM_Category.Visible = true;
     //
     // Col_PM_MaChuongTrinh
     //
     this.Col_PM_MaChuongTrinh.Caption = "Mã chương trình";
     this.Col_PM_MaChuongTrinh.Name = "Col_PM_MaChuongTrinh";
     this.Col_PM_MaChuongTrinh.Visible = true;
     this.Col_PM_MaChuongTrinh.Width = 90;
     //
     // Col_PM_TenChuongTrinh
     //
     this.Col_PM_TenChuongTrinh.Caption = "Tên chương trình";
     this.Col_PM_TenChuongTrinh.Name = "Col_PM_TenChuongTrinh";
     this.Col_PM_TenChuongTrinh.Visible = true;
     this.Col_PM_TenChuongTrinh.Width = 94;
     //
     // Col_PM_TietMuc
     //
     this.Col_PM_TietMuc.Caption = " Tiết mục";
     this.Col_PM_TietMuc.Name = "Col_PM_TietMuc";
     this.Col_PM_TietMuc.Visible = true;
     this.Col_PM_TietMuc.Width = 55;
     //
     // Col_PM_PostMaster
     //
     this.Col_PM_PostMaster.Caption = "Post/Master";
     this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
     this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
     this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
     this.Col_PM_PostMaster.Visible = true;
     this.Col_PM_PostMaster.Width = 70;
     //
     // Col_PM_TongTap
     //
     this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
     this.Col_PM_TongTap.Name = "Col_PM_TongTap";
     this.Col_PM_TongTap.Visible = true;
     this.Col_PM_TongTap.Width = 82;
     //
     // Col_PM_LoaiLuu
     //
     this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
     this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
     this.Col_PM_LoaiLuu.Visible = true;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // Col_PM_PopUp
     //
     this.Col_PM_PopUp.Caption = "Pop Up";
     this.Col_PM_PopUp.Name = "Col_PM_PopUp";
     this.Col_PM_PopUp.Visible = true;
     this.Col_PM_PopUp.Width = 46;
     //
     // Col_PM_ThoiLuongChung
     //
     this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
     this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
     this.Col_PM_ThoiLuongChung.Visible = true;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // Col_PM_TTDinhKem
     //
     this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
     this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
     this.Col_PM_TTDinhKem.Visible = true;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // Col_PM_ThanhLy
     //
     this.Col_PM_ThanhLy.Caption = "Thanh lý";
     this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
     this.Col_PM_ThanhLy.Visible = true;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // Col_PM_NgayNhapKho
     //
     this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
     this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
     this.Col_PM_NgayNhapKho.Visible = true;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // Col_PM_Ke
     //
     this.Col_PM_Ke.Caption = "Kệ";
     this.Col_PM_Ke.Name = "Col_PM_Ke";
     this.Col_PM_Ke.Visible = true;
     this.Col_PM_Ke.Width = 24;
     //
     // Col_PM_Ngan
     //
     this.Col_PM_Ngan.Caption = "Ngăn";
     this.Col_PM_Ngan.Name = "Col_PM_Ngan";
     this.Col_PM_Ngan.Visible = true;
     this.Col_PM_Ngan.Width = 37;
     //
     // Col_PM_Tang
     //
     this.Col_PM_Tang.Caption = "Tầng";
     this.Col_PM_Tang.Name = "Col_PM_Tang";
     this.Col_PM_Tang.Visible = true;
     this.Col_PM_Tang.Width = 36;
     //
     // Col_PM_TTHD
     //
     this.Col_PM_TTHD.Caption = "Thông tin HD";
     this.Col_PM_TTHD.Name = "Col_PM_TTHD";
     this.Col_PM_TTHD.Visible = true;
     this.Col_PM_TTHD.Width = 74;
     //
     // Col_PM_DVDNgayDuyet
     //
     this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
     this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
     this.Col_PM_DVDNgayDuyet.Visible = true;
     this.Col_PM_DVDNgayDuyet.Width = 90;
     //
     // Col_PM_DVDNgayHoanTat
     //
     this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
     this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
     this.Col_PM_DVDNgayHoanTat.Visible = true;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
     this.xtraTabControlDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.xtraTabControlDetail.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(175, 410);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(173, 408);
     this.xtraTabPageDetail.Text = "Danh sách biên mục";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.MenuManager = this.barManager1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(173, 408);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_BM_ThanhLy,
     this.Col_BM_MaBang,
     this.Col_BM_TapSo,
     this.Col_BM_TenTap,
     this.Col_BM_SoBang,
     this.Col_BM_ThongSo,
     this.Col_BM_ThoiLuong,
     this.Col_BM_SoDKCBHD,
     this.Col_BM_NoiLuuTru});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.Editable = false;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsSelection.MultiSelect = true;
     this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     this.gridViewDetail.OptionsView.ShowViewCaption = true;
     this.gridViewDetail.ViewCaption = "Biên mục (Cấp 3)";
     //
     // Col_BM_ThanhLy
     //
     this.Col_BM_ThanhLy.Caption = "Thanh lý";
     this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
     this.Col_BM_ThanhLy.Visible = true;
     this.Col_BM_ThanhLy.VisibleIndex = 0;
     this.Col_BM_ThanhLy.Width = 53;
     //
     // Col_BM_MaBang
     //
     this.Col_BM_MaBang.Caption = "Mã băng";
     this.Col_BM_MaBang.Name = "Col_BM_MaBang";
     this.Col_BM_MaBang.Visible = true;
     this.Col_BM_MaBang.VisibleIndex = 1;
     this.Col_BM_MaBang.Width = 53;
     //
     // Col_BM_TapSo
     //
     this.Col_BM_TapSo.Caption = "Tập số";
     this.Col_BM_TapSo.Name = "Col_BM_TapSo";
     this.Col_BM_TapSo.Visible = true;
     this.Col_BM_TapSo.VisibleIndex = 2;
     this.Col_BM_TapSo.Width = 44;
     //
     // Col_BM_TenTap
     //
     this.Col_BM_TenTap.Caption = "Tên tập";
     this.Col_BM_TenTap.Name = "Col_BM_TenTap";
     this.Col_BM_TenTap.Visible = true;
     this.Col_BM_TenTap.VisibleIndex = 3;
     this.Col_BM_TenTap.Width = 49;
     //
     // Col_BM_SoBang
     //
     this.Col_BM_SoBang.Caption = "Số băng";
     this.Col_BM_SoBang.Name = "Col_BM_SoBang";
     this.Col_BM_SoBang.Visible = true;
     this.Col_BM_SoBang.VisibleIndex = 4;
     this.Col_BM_SoBang.Width = 51;
     //
     // Col_BM_ThongSo
     //
     this.Col_BM_ThongSo.Caption = "Thông số";
     this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
     this.Col_BM_ThongSo.Visible = true;
     this.Col_BM_ThongSo.VisibleIndex = 5;
     this.Col_BM_ThongSo.Width = 56;
     //
     // Col_BM_ThoiLuong
     //
     this.Col_BM_ThoiLuong.Caption = "Thời lượng";
     this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
     this.Col_BM_ThoiLuong.Visible = true;
     this.Col_BM_ThoiLuong.VisibleIndex = 6;
     this.Col_BM_ThoiLuong.Width = 62;
     //
     // Col_BM_SoDKCBHD
     //
     this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD";
     this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
     this.Col_BM_SoDKCBHD.Visible = true;
     this.Col_BM_SoDKCBHD.VisibleIndex = 7;
     this.Col_BM_SoDKCBHD.Width = 71;
     //
     // Col_BM_NoiLuuTru
     //
     this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
     this.Col_BM_NoiLuuTru.Visible = true;
     this.Col_BM_NoiLuuTru.VisibleIndex = 8;
     this.Col_BM_NoiLuuTru.Width = 63;
     //
     // Col_PM_TienDo
     //
     this.Col_PM_TienDo.Caption = "Tiến độ hậu kỳ";
     this.Col_PM_TienDo.Name = "Col_PM_TienDo";
     this.Col_PM_TienDo.Visible = true;
     //
     // gridBandChuongTrinh
     //
     this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_Category);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_MaChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TenChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TietMuc);
     this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
     this.gridBandChuongTrinh.Width = 314;
     //
     // gridBandPostMaster
     //
     this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandPostMaster.Caption = "Thông tin Post/Master";
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PostMaster);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TongTap);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TienDo);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiLuu);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PopUp);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThoiLuongChung);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTDinhKem);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThanhLy);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_NgayNhapKho);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ke);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ngan);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Tang);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTHD);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayDuyet);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayHoanTat);
     this.gridBandPostMaster.Name = "gridBandPostMaster";
     this.gridBandPostMaster.Width = 1007;
     //
     // frmPostMasterSearchQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanelSimple);
     this.Controls.Add(this.dockPanelAdvance);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmPostMasterSearchQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý Post/Master";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanelAdvance.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     this.dockPanelSimple.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
     this.groupControlPM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.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);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMuonTraQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ChuaTra = new DevExpress.XtraEditors.CheckEdit();
            this.ngayTra = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
            this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NgayMuon = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.MaPMT = new DevExpress.XtraEditors.TextEdit();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenChuongTrinh = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.CongTyMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.BoPhanMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.NguoiMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.NuocSX = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.label1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.Col_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
            this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_CongTy = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Category = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4});
            this.barManager1.MaxItemId = 37;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1000, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1000, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1000, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 139);
            this.dockPanel1.Size = new System.Drawing.Size(1000, 139);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(994, 111);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ChuaTra);
            this.popupControlContainerFilter.Controls.Add(this.ngayTra);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.gridControlDetail);
            this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
            this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel15);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.plLabel12);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NgayMuon);
            this.popupControlContainerFilter.Controls.Add(this.MaPMT);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenChuongTrinh);
            this.popupControlContainerFilter.Controls.Add(this.CongTyMuon);
            this.popupControlContainerFilter.Controls.Add(this.BoPhanMuon);
            this.popupControlContainerFilter.Controls.Add(this.NguoiMuon);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.NuocSX);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.label1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(994, 111);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // ChuaTra
            //
            this.ChuaTra.Location = new System.Drawing.Point(908, 84);
            this.ChuaTra.MenuManager = this.barManager1;
            this.ChuaTra.Name = "ChuaTra";
            this.ChuaTra.Properties.Caption = "Chưa trả";
            this.ChuaTra.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.ChuaTra.Size = new System.Drawing.Size(65, 19);
            this.ChuaTra.TabIndex = 243;
            //
            // ngayTra
            //
            this.ngayTra.Caption = "Từ ngày 4/16/2012 đến ngày 4/23/2012";
            this.ngayTra.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.FirstFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.FirstTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.FromDate = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.Location = new System.Drawing.Point(533, 83);
            this.ngayTra.Name = "ngayTra";
            this.ngayTra.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayTra.SecondFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.SecondTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.Size = new System.Drawing.Size(285, 21);
            this.ngayTra.TabIndex = 226;
            this.ngayTra.ToDate = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // label29
            //
            this.label29.Location = new System.Drawing.Point(485, 87);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(42, 13);
            this.label29.TabIndex = 217;
            this.label29.Text = "Ngày trả";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 163);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1000, 382);
            this.splitContainerControl1.SplitterPosition = 199;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(1000, 199);
            this.gridControlMaster.TabIndex = 10;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandChuongTrinh,
            this.gridBandPostMaster});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_MaPhieu,
            this.Col_NguoiMuon,
            this.Col_BoPhanMuon,
            this.Col_CongTyMuon,
            this.Col_NgayMuon,
            this.Col_MucDich,
            this.Col_NgayTra,
            this.Col_NguoiTao,
            this.Col_NgayTao,
            this.Col_PhongBan,
            this.Col_CongTy});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.ViewCaption = "Danh sách phiếu mượn/trả";
            //
            // Col_MaPhieu
            //
            this.Col_MaPhieu.Caption = "Mã PMT";
            this.Col_MaPhieu.Name = "Col_MaPhieu";
            this.Col_MaPhieu.ToolTip = "Mã phiếu mượn trả";
            this.Col_MaPhieu.Visible = true;
            this.Col_MaPhieu.Width = 49;
            //
            // Col_NguoiMuon
            //
            this.Col_NguoiMuon.Caption = "Người mượn";
            this.Col_NguoiMuon.Name = "Col_NguoiMuon";
            this.Col_NguoiMuon.Visible = true;
            this.Col_NguoiMuon.Width = 70;
            //
            // Col_BoPhanMuon
            //
            this.Col_BoPhanMuon.Caption = "Bộ phận mượn";
            this.Col_BoPhanMuon.Name = "Col_BoPhanMuon";
            this.Col_BoPhanMuon.Visible = true;
            this.Col_BoPhanMuon.Width = 81;
            //
            // Col_CongTyMuon
            //
            this.Col_CongTyMuon.Caption = "Công ty mượn";
            this.Col_CongTyMuon.Name = "Col_CongTyMuon";
            this.Col_CongTyMuon.Visible = true;
            this.Col_CongTyMuon.Width = 80;
            //
            // Col_NgayMuon
            //
            this.Col_NgayMuon.Caption = "Ngày mượn";
            this.Col_NgayMuon.Name = "Col_NgayMuon";
            this.Col_NgayMuon.Visible = true;
            this.Col_NgayMuon.Width = 67;
            //
            // Col_MucDich
            //
            this.Col_MucDich.Caption = "Mục đích mượn";
            this.Col_MucDich.Name = "Col_MucDich";
            this.Col_MucDich.Visible = true;
            this.Col_MucDich.Width = 83;
            //
            // Col_NgayTra
            //
            this.Col_NgayTra.Caption = "Ngày trả";
            this.Col_NgayTra.Name = "Col_NgayTra";
            this.Col_NgayTra.Visible = true;
            this.Col_NgayTra.Width = 54;
            //
            // Col_NguoiTao
            //
            this.Col_NguoiTao.Caption = "Người tạo";
            this.Col_NguoiTao.Name = "Col_NguoiTao";
            this.Col_NguoiTao.Visible = true;
            this.Col_NguoiTao.Width = 59;
            //
            // Col_NgayTao
            //
            this.Col_NgayTao.Caption = "Ngày tạo";
            this.Col_NgayTao.Name = "Col_NgayTao";
            this.Col_NgayTao.Visible = true;
            this.Col_NgayTao.Width = 56;
            //
            // Col_PhongBan
            //
            this.Col_PhongBan.Caption = "Phòng ban";
            this.Col_PhongBan.Name = "Col_PhongBan";
            this.Col_PhongBan.Visible = true;
            this.Col_PhongBan.Width = 63;
            //
            // Col_CongTy
            //
            this.Col_CongTy.Caption = "Công ty";
            this.Col_CongTy.Name = "Col_CongTy";
            this.Col_CongTy.Visible = true;
            this.Col_CongTy.Width = 50;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(1000, 177);
            this.xtraTabControlDetail.TabIndex = 10;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.TreeDes);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(993, 148);
            this.xtraTabPageDetail.Text = "Danh sách chương trình - post/master - biên mục mượn/trả của phiếu đang chọn";
            //
            // TreeDes
            //
            this.TreeDes.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.TreeDes.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.TreeDes.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.ColDes_Ten,
            this.treeListColumn2,
            this.ColDes_TenGoc,
            this.ColDes_NuocSX,
            this.ColDes_TietMuc,
            this.ColDes_SoTapGoc,
            this.ColDes_LoaiLuuTru,
            this.ColDes_Betacam,
            this.ColDes_File,
            this.ColDes_DVD,
            this.ColDes_Cap,
            this.ColDes_TenPM,
            this.ColDes_TenCT,
            this.ColDes_PhongBan,
            this.ColDes_CongTy,
            this.ColDes_Category});
            this.TreeDes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TreeDes.Location = new System.Drawing.Point(0, 0);
            this.TreeDes.Name = "TreeDes";
            this.TreeDes.OptionsBehavior.AllowExpandOnDblClick = false;
            this.TreeDes.OptionsBehavior.AutoFocusNewNode = true;
            this.TreeDes.OptionsBehavior.AutoMoveRowFocus = true;
            this.TreeDes.OptionsSelection.MultiSelect = true;
            this.TreeDes.OptionsView.EnableAppearanceEvenRow = true;
            this.TreeDes.OptionsView.EnableAppearanceOddRow = true;
            this.TreeDes.Size = new System.Drawing.Size(993, 148);
            this.TreeDes.TabIndex = 35;
            //
            // ColDes_Ten
            //
            this.ColDes_Ten.Caption = "Tên";
            this.ColDes_Ten.FieldName = "Được quyền xóa";
            this.ColDes_Ten.Name = "ColDes_Ten";
            this.ColDes_Ten.OptionsColumn.AllowEdit = false;
            this.ColDes_Ten.OptionsColumn.AllowFocus = false;
            this.ColDes_Ten.Visible = true;
            this.ColDes_Ten.VisibleIndex = 0;
            this.ColDes_Ten.Width = 80;
            //
            // treeListColumn2
            //
            this.treeListColumn2.Caption = "Là nhóm";
            this.treeListColumn2.FieldName = "Là nhóm";
            this.treeListColumn2.Name = "treeListColumn2";
            this.treeListColumn2.OptionsColumn.AllowEdit = false;
            this.treeListColumn2.OptionsColumn.ShowInCustomizationForm = false;
            //
            // ColDes_TenGoc
            //
            this.ColDes_TenGoc.Caption = "Tên gốc";
            this.ColDes_TenGoc.FieldName = "Tên gốc";
            this.ColDes_TenGoc.Name = "ColDes_TenGoc";
            this.ColDes_TenGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_TenGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_TenGoc.Visible = true;
            this.ColDes_TenGoc.VisibleIndex = 1;
            this.ColDes_TenGoc.Width = 55;
            //
            // ColDes_NuocSX
            //
            this.ColDes_NuocSX.Caption = "Nước SX";
            this.ColDes_NuocSX.FieldName = "Được quyền thêm";
            this.ColDes_NuocSX.Name = "ColDes_NuocSX";
            this.ColDes_NuocSX.OptionsColumn.AllowEdit = false;
            this.ColDes_NuocSX.OptionsColumn.AllowFocus = false;
            this.ColDes_NuocSX.Visible = true;
            this.ColDes_NuocSX.VisibleIndex = 3;
            this.ColDes_NuocSX.Width = 54;
            //
            // ColDes_TietMuc
            //
            this.ColDes_TietMuc.Caption = "Tiết mục";
            this.ColDes_TietMuc.FieldName = "Được quyền xem";
            this.ColDes_TietMuc.Name = "ColDes_TietMuc";
            this.ColDes_TietMuc.OptionsColumn.AllowEdit = false;
            this.ColDes_TietMuc.OptionsColumn.AllowFocus = false;
            this.ColDes_TietMuc.Visible = true;
            this.ColDes_TietMuc.VisibleIndex = 6;
            this.ColDes_TietMuc.Width = 55;
            //
            // ColDes_SoTapGoc
            //
            this.ColDes_SoTapGoc.Caption = "Số tập gốc/cắt";
            this.ColDes_SoTapGoc.FieldName = "Được quyền sửa";
            this.ColDes_SoTapGoc.Name = "ColDes_SoTapGoc";
            this.ColDes_SoTapGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_SoTapGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_SoTapGoc.Visible = true;
            this.ColDes_SoTapGoc.VisibleIndex = 9;
            this.ColDes_SoTapGoc.Width = 86;
            //
            // ColDes_LoaiLuuTru
            //
            this.ColDes_LoaiLuuTru.Caption = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.FieldName = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.Name = "ColDes_LoaiLuuTru";
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowEdit = false;
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowFocus = false;
            this.ColDes_LoaiLuuTru.Visible = true;
            this.ColDes_LoaiLuuTru.VisibleIndex = 8;
            this.ColDes_LoaiLuuTru.Width = 70;
            //
            // ColDes_Betacam
            //
            this.ColDes_Betacam.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_Betacam.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_Betacam.AppearanceHeader.Options.UseFont = true;
            this.ColDes_Betacam.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_Betacam.Caption = "Betacam";
            this.ColDes_Betacam.FieldName = "Betacam";
            this.ColDes_Betacam.Name = "ColDes_Betacam";
            this.ColDes_Betacam.Visible = true;
            this.ColDes_Betacam.VisibleIndex = 12;
            this.ColDes_Betacam.Width = 53;
            //
            // ColDes_File
            //
            this.ColDes_File.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_File.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_File.AppearanceHeader.Options.UseFont = true;
            this.ColDes_File.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_File.Caption = "File";
            this.ColDes_File.FieldName = "File";
            this.ColDes_File.Name = "ColDes_File";
            this.ColDes_File.Visible = true;
            this.ColDes_File.VisibleIndex = 13;
            this.ColDes_File.Width = 50;
            //
            // ColDes_DVD
            //
            this.ColDes_DVD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_DVD.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_DVD.AppearanceHeader.Options.UseFont = true;
            this.ColDes_DVD.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_DVD.Caption = "DVD";
            this.ColDes_DVD.FieldName = "DVD";
            this.ColDes_DVD.Name = "ColDes_DVD";
            this.ColDes_DVD.Visible = true;
            this.ColDes_DVD.VisibleIndex = 14;
            this.ColDes_DVD.Width = 49;
            //
            // ColDes_Cap
            //
            this.ColDes_Cap.Caption = "Cấp";
            this.ColDes_Cap.FieldName = "Cấp";
            this.ColDes_Cap.Name = "ColDes_Cap";
            this.ColDes_Cap.OptionsColumn.AllowEdit = false;
            this.ColDes_Cap.OptionsColumn.AllowFocus = false;
            this.ColDes_Cap.Visible = true;
            this.ColDes_Cap.VisibleIndex = 2;
            this.ColDes_Cap.Width = 79;
            //
            // ColDes_TenPM
            //
            this.ColDes_TenPM.Caption = "P/M";
            this.ColDes_TenPM.FieldName = "P/M";
            this.ColDes_TenPM.Name = "ColDes_TenPM";
            this.ColDes_TenPM.OptionsColumn.AllowEdit = false;
            this.ColDes_TenPM.OptionsColumn.AllowFocus = false;
            this.ColDes_TenPM.Visible = true;
            this.ColDes_TenPM.VisibleIndex = 5;
            this.ColDes_TenPM.Width = 79;
            //
            // ColDes_TenCT
            //
            this.ColDes_TenCT.Caption = "CT";
            this.ColDes_TenCT.FieldName = "CT";
            this.ColDes_TenCT.Name = "ColDes_TenCT";
            this.ColDes_TenCT.OptionsColumn.AllowEdit = false;
            this.ColDes_TenCT.OptionsColumn.AllowFocus = false;
            this.ColDes_TenCT.Visible = true;
            this.ColDes_TenCT.VisibleIndex = 4;
            this.ColDes_TenCT.Width = 79;
            //
            // ColDes_PhongBan
            //
            this.ColDes_PhongBan.Caption = "Phòng ban";
            this.ColDes_PhongBan.FieldName = "ColDes_PhongBan";
            this.ColDes_PhongBan.Name = "ColDes_PhongBan";
            this.ColDes_PhongBan.OptionsColumn.AllowEdit = false;
            this.ColDes_PhongBan.OptionsColumn.AllowFocus = false;
            this.ColDes_PhongBan.Visible = true;
            this.ColDes_PhongBan.VisibleIndex = 10;
            this.ColDes_PhongBan.Width = 79;
            //
            // ColDes_CongTy
            //
            this.ColDes_CongTy.Caption = "Công ty";
            this.ColDes_CongTy.FieldName = "Công ty";
            this.ColDes_CongTy.Name = "ColDes_CongTy";
            this.ColDes_CongTy.OptionsColumn.AllowEdit = false;
            this.ColDes_CongTy.OptionsColumn.AllowFocus = false;
            this.ColDes_CongTy.Visible = true;
            this.ColDes_CongTy.VisibleIndex = 11;
            this.ColDes_CongTy.Width = 79;
            //
            // ColDes_Category
            //
            this.ColDes_Category.Caption = "Category";
            this.ColDes_Category.FieldName = "Category";
            this.ColDes_Category.Name = "ColDes_Category";
            this.ColDes_Category.Visible = true;
            this.ColDes_Category.VisibleIndex = 7;
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin mượn/trả";
            this.gridBandChuongTrinh.Columns.Add(this.Col_MaPhieu);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NguoiMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_BoPhanMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_CongTyMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MucDich);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayTra);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 484;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin tạo phiếu";
            this.gridBandPostMaster.Columns.Add(this.Col_NguoiTao);
            this.gridBandPostMaster.Columns.Add(this.Col_NgayTao);
            this.gridBandPostMaster.Columns.Add(this.Col_PhongBan);
            this.gridBandPostMaster.Columns.Add(this.Col_CongTy);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 228;
            //
            // frmMuonTraQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1000, 545);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmMuonTraQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý phiếu mượn trả";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).EndInit();
            this.ResumeLayout(false);
        }
 /// <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);
 }
示例#40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProducts));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
     this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
     this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
     this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
     this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
     this.txtTransit = new DevExpress.XtraEditors.TextEdit();
     this.txtTarget = new DevExpress.XtraEditors.TextEdit();
     this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
     this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
     this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
     this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
     this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
     this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
     this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
     this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
     this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
     this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
     this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl53 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl38 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl43 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl42 = new DevExpress.XtraEditors.LabelControl();
     this.XtrabarBonus = new DevExpress.XtraTab.XtraTabPage();
     this.datagridBonus = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.datagridProductAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.txtMaxLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtMinLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtBarCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShelfCode = new DevExpress.XtraEditors.TextEdit();
     this.grdPresevasionStandard = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.txtClaimPartnerID = new System.Windows.Forms.MaskedTextBox();
     this.txtClaimPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.txtBussinessPartnerid = new System.Windows.Forms.MaskedTextBox();
     this.businessPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl40 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl48 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl46 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl47 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl54 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl55 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.dgFileAttachments = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Productid = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbProductCategory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtShortName = new DevExpress.XtraEditors.TextEdit();
     this.txtArtical = new DevExpress.XtraEditors.TextEdit();
     this.txtProductName = new DevExpress.XtraEditors.TextEdit();
     this.cmbSkuType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbGeneralName = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbProtoType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtProductId = new System.Windows.Forms.MaskedTextBox();
     this.txtPack = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl49 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl39 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtGroupSeq = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.txtmanualgroup = new DevExpress.XtraEditors.TextEdit();
     this.labelControl57 = new DevExpress.XtraEditors.LabelControl();
     this.txtdateto = new System.Windows.Forms.MaskedTextBox();
     this.txtdatefrom = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl56 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl51 = new DevExpress.XtraEditors.LabelControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.chkCompanyDiscount = new DevExpress.XtraEditors.CheckEdit();
     this.txtCompanySeq = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.txtReportCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtReportCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtrabarGeneralinformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).BeginInit();
     this.XtrabarBonus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Location = new System.Drawing.Point(3, 171);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtrabarGeneralinformation;
     this.xtraTabControl1.Size = new System.Drawing.Size(701, 254);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtrabarGeneralinformation,
     this.XtrabarBonus,
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.xtraTabControl1_PreviewKeyDown);
     //
     // xtrabarGeneralinformation
     //
     this.xtrabarGeneralinformation.Controls.Add(this.panelControl1);
     this.xtrabarGeneralinformation.Name = "xtrabarGeneralinformation";
     this.xtrabarGeneralinformation.Size = new System.Drawing.Size(695, 226);
     this.xtrabarGeneralinformation.Text = "General Information";
     //
     // panelControl1
     //
     this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Controls.Add(this.txtfactor);
     this.panelControl1.Controls.Add(this.txtuompurchase);
     this.panelControl1.Controls.Add(this.txtuomsize);
     this.panelControl1.Controls.Add(this.txtuomsale);
     this.panelControl1.Controls.Add(this.cmbValueMethod);
     this.panelControl1.Controls.Add(this.txtAvgRate);
     this.panelControl1.Controls.Add(this.txtToleranceDay);
     this.panelControl1.Controls.Add(this.txtLoadTime);
     this.panelControl1.Controls.Add(this.txtPurchaseRate);
     this.panelControl1.Controls.Add(this.txtSpecialRate);
     this.panelControl1.Controls.Add(this.txtCostRate);
     this.panelControl1.Controls.Add(this.txtTransit);
     this.panelControl1.Controls.Add(this.txtTarget);
     this.panelControl1.Controls.Add(this.txtNetBalance);
     this.panelControl1.Controls.Add(this.txtBalanceBonus);
     this.panelControl1.Controls.Add(this.txtBalanceStock);
     this.panelControl1.Controls.Add(this.txtMaxQuantityDays);
     this.panelControl1.Controls.Add(this.txtMaxQuantityPCustomer);
     this.panelControl1.Controls.Add(this.txtPackInBox);
     this.panelControl1.Controls.Add(this.txtInventoryDays);
     this.panelControl1.Controls.Add(this.txtMinFlatRate);
     this.panelControl1.Controls.Add(this.txtMaxFlatRate);
     this.panelControl1.Controls.Add(this.cmbSaleTaxCalculation);
     this.panelControl1.Controls.Add(this.txtSaleTaxVale);
     this.panelControl1.Controls.Add(this.txtSaleTaxPer);
     this.panelControl1.Controls.Add(this.txtMaxSalesDisc);
     this.panelControl1.Controls.Add(this.txtPurchaseDiscountPer);
     this.panelControl1.Controls.Add(this.txtRetailPrice);
     this.panelControl1.Controls.Add(this.chkwolallow);
     this.panelControl1.Controls.Add(this.chkAllowPer);
     this.panelControl1.Controls.Add(this.chkAutoBonus);
     this.panelControl1.Controls.Add(this.chkSaleBase);
     this.panelControl1.Controls.Add(this.chkSaleTaxReg);
     this.panelControl1.Controls.Add(this.chkNonPharma);
     this.panelControl1.Controls.Add(this.chkExcempted);
     this.panelControl1.Controls.Add(this.chkUseFlatRate);
     this.panelControl1.Controls.Add(this.chkNorCotics);
     this.panelControl1.Controls.Add(this.chkHideinTabs);
     this.panelControl1.Controls.Add(this.chkAllowMaxQtyDays);
     this.panelControl1.Controls.Add(this.chkProductDiscontinue);
     this.panelControl1.Controls.Add(this.txtTradePrice);
     this.panelControl1.Controls.Add(this.txtSaleRate);
     this.panelControl1.Controls.Add(this.txtPackInCarton);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl18);
     this.panelControl1.Controls.Add(this.labelControl17);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl13);
     this.panelControl1.Controls.Add(this.labelControl50);
     this.panelControl1.Controls.Add(this.labelControl12);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.labelControl19);
     this.panelControl1.Controls.Add(this.labelControl20);
     this.panelControl1.Controls.Add(this.labelControl25);
     this.panelControl1.Controls.Add(this.labelControl24);
     this.panelControl1.Controls.Add(this.labelControl23);
     this.panelControl1.Controls.Add(this.labelControl22);
     this.panelControl1.Controls.Add(this.labelControl21);
     this.panelControl1.Controls.Add(this.labelControl26);
     this.panelControl1.Controls.Add(this.labelControl52);
     this.panelControl1.Controls.Add(this.labelControl53);
     this.panelControl1.Controls.Add(this.labelControl27);
     this.panelControl1.Controls.Add(this.labelControl28);
     this.panelControl1.Controls.Add(this.labelControl29);
     this.panelControl1.Controls.Add(this.labelControl30);
     this.panelControl1.Controls.Add(this.labelControl31);
     this.panelControl1.Controls.Add(this.labelControl32);
     this.panelControl1.Controls.Add(this.labelControl37);
     this.panelControl1.Controls.Add(this.labelControl38);
     this.panelControl1.Controls.Add(this.labelControl44);
     this.panelControl1.Controls.Add(this.labelControl43);
     this.panelControl1.Controls.Add(this.labelControl41);
     this.panelControl1.Controls.Add(this.labelControl42);
     this.panelControl1.Location = new System.Drawing.Point(-1, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(700, 226);
     this.panelControl1.TabIndex = 180;
     //
     // txtfactor
     //
     this.txtfactor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtfactor.Location = new System.Drawing.Point(449, 161);
     this.txtfactor.Name = "txtfactor";
     this.txtfactor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtfactor.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtfactor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtfactor.Size = new System.Drawing.Size(82, 20);
     this.txtfactor.TabIndex = 124270;
     this.txtfactor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtfactor_PreviewKeyDown);
     //
     // txtuompurchase
     //
     this.txtuompurchase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuompurchase.Location = new System.Drawing.Point(449, 142);
     this.txtuompurchase.Name = "txtuompurchase";
     this.txtuompurchase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuompurchase.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuompurchase.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuompurchase.Size = new System.Drawing.Size(82, 20);
     this.txtuompurchase.TabIndex = 124262;
     this.txtuompurchase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuompurchase_PreviewKeyDown);
     //
     // txtuomsize
     //
     this.txtuomsize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsize.Location = new System.Drawing.Point(449, 123);
     this.txtuomsize.Name = "txtuomsize";
     this.txtuomsize.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsize.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsize.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsize.Size = new System.Drawing.Size(82, 20);
     this.txtuomsize.TabIndex = 124258;
     this.txtuomsize.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsize_PreviewKeyDown);
     //
     // txtuomsale
     //
     this.txtuomsale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsale.Location = new System.Drawing.Point(449, 104);
     this.txtuomsale.Name = "txtuomsale";
     this.txtuomsale.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsale.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsale.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsale.Size = new System.Drawing.Size(82, 20);
     this.txtuomsale.TabIndex = 124260;
     this.txtuomsale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsale_PreviewKeyDown);
     //
     // cmbValueMethod
     //
     this.cmbValueMethod.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbValueMethod.Location = new System.Drawing.Point(449, 85);
     this.cmbValueMethod.Name = "cmbValueMethod";
     this.cmbValueMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbValueMethod.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbValueMethod.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbValueMethod.Size = new System.Drawing.Size(82, 20);
     this.cmbValueMethod.TabIndex = 37;
     this.cmbValueMethod.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbValueMethod_PreviewKeyDown);
     //
     // txtAvgRate
     //
     this.txtAvgRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtAvgRate.Location = new System.Drawing.Point(449, 66);
     this.txtAvgRate.Name = "txtAvgRate";
     this.txtAvgRate.Size = new System.Drawing.Size(82, 20);
     this.txtAvgRate.TabIndex = 36;
     this.txtAvgRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtAvgRate_PreviewKeyDown);
     //
     // txtToleranceDay
     //
     this.txtToleranceDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtToleranceDay.Location = new System.Drawing.Point(449, 47);
     this.txtToleranceDay.Name = "txtToleranceDay";
     this.txtToleranceDay.Size = new System.Drawing.Size(82, 20);
     this.txtToleranceDay.TabIndex = 35;
     this.txtToleranceDay.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtToleranceDay_PreviewKeyDown);
     //
     // txtLoadTime
     //
     this.txtLoadTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLoadTime.Location = new System.Drawing.Point(449, 28);
     this.txtLoadTime.Name = "txtLoadTime";
     this.txtLoadTime.Size = new System.Drawing.Size(82, 20);
     this.txtLoadTime.TabIndex = 34;
     this.txtLoadTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtLoadTime_PreviewKeyDown);
     //
     // txtPurchaseRate
     //
     this.txtPurchaseRate.EditValue = "0.00";
     this.txtPurchaseRate.Location = new System.Drawing.Point(285, 199);
     this.txtPurchaseRate.Name = "txtPurchaseRate";
     this.txtPurchaseRate.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseRate.TabIndex = 32;
     this.txtPurchaseRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseRate_PreviewKeyDown);
     //
     // txtSpecialRate
     //
     this.txtSpecialRate.EditValue = "0.00";
     this.txtSpecialRate.Location = new System.Drawing.Point(285, 180);
     this.txtSpecialRate.Name = "txtSpecialRate";
     this.txtSpecialRate.Size = new System.Drawing.Size(82, 20);
     this.txtSpecialRate.TabIndex = 31;
     this.txtSpecialRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSpecialRate_PreviewKeyDown);
     //
     // txtCostRate
     //
     this.txtCostRate.EditValue = "0.00";
     this.txtCostRate.Location = new System.Drawing.Point(285, 161);
     this.txtCostRate.Name = "txtCostRate";
     this.txtCostRate.Size = new System.Drawing.Size(82, 20);
     this.txtCostRate.TabIndex = 30;
     this.txtCostRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCostRate_PreviewKeyDown);
     //
     // txtTransit
     //
     this.txtTransit.EditValue = "0.00";
     this.txtTransit.Location = new System.Drawing.Point(285, 142);
     this.txtTransit.Name = "txtTransit";
     this.txtTransit.Size = new System.Drawing.Size(82, 20);
     this.txtTransit.TabIndex = 124268;
     this.txtTransit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTransit_PreviewKeyDown);
     //
     // txtTarget
     //
     this.txtTarget.EditValue = "0.00";
     this.txtTarget.Location = new System.Drawing.Point(285, 123);
     this.txtTarget.Name = "txtTarget";
     this.txtTarget.Size = new System.Drawing.Size(82, 20);
     this.txtTarget.TabIndex = 124266;
     this.txtTarget.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTarget_PreviewKeyDown);
     //
     // txtNetBalance
     //
     this.txtNetBalance.EditValue = "0.00";
     this.txtNetBalance.Location = new System.Drawing.Point(285, 104);
     this.txtNetBalance.Name = "txtNetBalance";
     this.txtNetBalance.Size = new System.Drawing.Size(82, 20);
     this.txtNetBalance.TabIndex = 29;
     this.txtNetBalance.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtNetBalance_PreviewKeyDown);
     //
     // txtBalanceBonus
     //
     this.txtBalanceBonus.EditValue = "";
     this.txtBalanceBonus.Location = new System.Drawing.Point(285, 85);
     this.txtBalanceBonus.Name = "txtBalanceBonus";
     this.txtBalanceBonus.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceBonus.TabIndex = 28;
     this.txtBalanceBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceBonus_PreviewKeyDown);
     //
     // txtBalanceStock
     //
     this.txtBalanceStock.Location = new System.Drawing.Point(285, 66);
     this.txtBalanceStock.Name = "txtBalanceStock";
     this.txtBalanceStock.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceStock.TabIndex = 27;
     this.txtBalanceStock.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceStock_PreviewKeyDown);
     //
     // txtMaxQuantityDays
     //
     this.txtMaxQuantityDays.Location = new System.Drawing.Point(285, 47);
     this.txtMaxQuantityDays.Name = "txtMaxQuantityDays";
     this.txtMaxQuantityDays.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityDays.TabIndex = 26;
     this.txtMaxQuantityDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityDays_PreviewKeyDown);
     //
     // txtMaxQuantityPCustomer
     //
     this.txtMaxQuantityPCustomer.Location = new System.Drawing.Point(285, 28);
     this.txtMaxQuantityPCustomer.Name = "txtMaxQuantityPCustomer";
     this.txtMaxQuantityPCustomer.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityPCustomer.TabIndex = 25;
     this.txtMaxQuantityPCustomer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityPCustomer_PreviewKeyDown);
     //
     // txtPackInBox
     //
     this.txtPackInBox.Location = new System.Drawing.Point(102, 199);
     this.txtPackInBox.Name = "txtPackInBox";
     this.txtPackInBox.Size = new System.Drawing.Size(82, 20);
     this.txtPackInBox.TabIndex = 23;
     this.txtPackInBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInBox_PreviewKeyDown);
     //
     // txtInventoryDays
     //
     this.txtInventoryDays.EditValue = "0.00";
     this.txtInventoryDays.Location = new System.Drawing.Point(102, 180);
     this.txtInventoryDays.Name = "txtInventoryDays";
     this.txtInventoryDays.Size = new System.Drawing.Size(82, 20);
     this.txtInventoryDays.TabIndex = 22;
     this.txtInventoryDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInventoryDays_PreviewKeyDown);
     //
     // txtMinFlatRate
     //
     this.txtMinFlatRate.EditValue = "0.00";
     this.txtMinFlatRate.Location = new System.Drawing.Point(102, 161);
     this.txtMinFlatRate.Name = "txtMinFlatRate";
     this.txtMinFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMinFlatRate.TabIndex = 21;
     this.txtMinFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinFlatRate_PreviewKeyDown);
     //
     // txtMaxFlatRate
     //
     this.txtMaxFlatRate.EditValue = "0.00";
     this.txtMaxFlatRate.Location = new System.Drawing.Point(102, 142);
     this.txtMaxFlatRate.Name = "txtMaxFlatRate";
     this.txtMaxFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMaxFlatRate.TabIndex = 20;
     this.txtMaxFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxFlatRate_PreviewKeyDown);
     //
     // cmbSaleTaxCalculation
     //
     this.cmbSaleTaxCalculation.Location = new System.Drawing.Point(102, 123);
     this.cmbSaleTaxCalculation.Name = "cmbSaleTaxCalculation";
     this.cmbSaleTaxCalculation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSaleTaxCalculation.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSaleTaxCalculation.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSaleTaxCalculation.Size = new System.Drawing.Size(82, 20);
     this.cmbSaleTaxCalculation.TabIndex = 59;
     //
     // txtSaleTaxVale
     //
     this.txtSaleTaxVale.EditValue = "0.00";
     this.txtSaleTaxVale.Location = new System.Drawing.Point(102, 104);
     this.txtSaleTaxVale.Name = "txtSaleTaxVale";
     this.txtSaleTaxVale.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxVale.TabIndex = 19;
     this.txtSaleTaxVale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxVale_PreviewKeyDown);
     //
     // txtSaleTaxPer
     //
     this.txtSaleTaxPer.EditValue = "0.00";
     this.txtSaleTaxPer.Location = new System.Drawing.Point(102, 85);
     this.txtSaleTaxPer.Name = "txtSaleTaxPer";
     this.txtSaleTaxPer.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxPer.TabIndex = 18;
     this.txtSaleTaxPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxPer_PreviewKeyDown);
     //
     // txtMaxSalesDisc
     //
     this.txtMaxSalesDisc.EditValue = "0.00";
     this.txtMaxSalesDisc.Location = new System.Drawing.Point(102, 66);
     this.txtMaxSalesDisc.Name = "txtMaxSalesDisc";
     this.txtMaxSalesDisc.Size = new System.Drawing.Size(82, 20);
     this.txtMaxSalesDisc.TabIndex = 17;
     this.txtMaxSalesDisc.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxSalesDisc_PreviewKeyDown);
     //
     // txtPurchaseDiscountPer
     //
     this.txtPurchaseDiscountPer.EditValue = "0.0000";
     this.txtPurchaseDiscountPer.Location = new System.Drawing.Point(102, 47);
     this.txtPurchaseDiscountPer.Name = "txtPurchaseDiscountPer";
     this.txtPurchaseDiscountPer.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseDiscountPer.TabIndex = 16;
     this.txtPurchaseDiscountPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseDiscountPer_PreviewKeyDown);
     //
     // txtRetailPrice
     //
     this.txtRetailPrice.EditValue = "0.00";
     this.txtRetailPrice.Location = new System.Drawing.Point(102, 28);
     this.txtRetailPrice.Name = "txtRetailPrice";
     this.txtRetailPrice.Size = new System.Drawing.Size(82, 20);
     this.txtRetailPrice.TabIndex = 15;
     this.txtRetailPrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRetailPrice_PreviewKeyDown);
     //
     // chkwolallow
     //
     this.chkwolallow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkwolallow.EnterMoveNextControl = true;
     this.chkwolallow.Location = new System.Drawing.Point(545, 179);
     this.chkwolallow.Name = "chkwolallow";
     this.chkwolallow.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkwolallow.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkwolallow.Properties.Appearance.Options.UseFont = true;
     this.chkwolallow.Properties.Appearance.Options.UseForeColor = true;
     this.chkwolallow.Properties.Caption = "With Out Lic Allow";
     this.chkwolallow.Size = new System.Drawing.Size(136, 19);
     this.chkwolallow.TabIndex = 50;
     this.chkwolallow.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkwolallow_PreviewKeyDown);
     //
     // chkAllowPer
     //
     this.chkAllowPer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowPer.Location = new System.Drawing.Point(545, 145);
     this.chkAllowPer.Name = "chkAllowPer";
     this.chkAllowPer.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowPer.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowPer.Properties.Appearance.Options.UseFont = true;
     this.chkAllowPer.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowPer.Properties.Caption = "Allow 100%";
     this.chkAllowPer.Size = new System.Drawing.Size(136, 19);
     this.chkAllowPer.TabIndex = 48;
     this.chkAllowPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowPer_PreviewKeyDown);
     //
     // chkAutoBonus
     //
     this.chkAutoBonus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAutoBonus.Location = new System.Drawing.Point(545, 162);
     this.chkAutoBonus.Name = "chkAutoBonus";
     this.chkAutoBonus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAutoBonus.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAutoBonus.Properties.Appearance.Options.UseFont = true;
     this.chkAutoBonus.Properties.Appearance.Options.UseForeColor = true;
     this.chkAutoBonus.Properties.Caption = "Auto Bonus";
     this.chkAutoBonus.Size = new System.Drawing.Size(136, 19);
     this.chkAutoBonus.TabIndex = 49;
     this.chkAutoBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAutoBonus_PreviewKeyDown);
     //
     // chkSaleBase
     //
     this.chkSaleBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleBase.Location = new System.Drawing.Point(545, 128);
     this.chkSaleBase.Name = "chkSaleBase";
     this.chkSaleBase.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleBase.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleBase.Properties.Appearance.Options.UseFont = true;
     this.chkSaleBase.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleBase.Properties.Caption = "Sale Base";
     this.chkSaleBase.Size = new System.Drawing.Size(136, 19);
     this.chkSaleBase.TabIndex = 47;
     this.chkSaleBase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleBase_PreviewKeyDown);
     //
     // chkSaleTaxReg
     //
     this.chkSaleTaxReg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleTaxReg.Location = new System.Drawing.Point(545, 93);
     this.chkSaleTaxReg.Name = "chkSaleTaxReg";
     this.chkSaleTaxReg.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleTaxReg.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleTaxReg.Properties.Appearance.Options.UseFont = true;
     this.chkSaleTaxReg.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleTaxReg.Properties.Caption = "S.Tax Reg";
     this.chkSaleTaxReg.Size = new System.Drawing.Size(111, 19);
     this.chkSaleTaxReg.TabIndex = 44;
     this.chkSaleTaxReg.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleTaxReg_PreviewKeyDown);
     //
     // chkNonPharma
     //
     this.chkNonPharma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNonPharma.Location = new System.Drawing.Point(545, 110);
     this.chkNonPharma.Name = "chkNonPharma";
     this.chkNonPharma.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNonPharma.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNonPharma.Properties.Appearance.Options.UseFont = true;
     this.chkNonPharma.Properties.Appearance.Options.UseForeColor = true;
     this.chkNonPharma.Properties.Caption = "Non Pharma";
     this.chkNonPharma.Size = new System.Drawing.Size(89, 19);
     this.chkNonPharma.TabIndex = 45;
     this.chkNonPharma.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNonPharma_PreviewKeyDown);
     //
     // chkExcempted
     //
     this.chkExcempted.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkExcempted.Location = new System.Drawing.Point(545, 76);
     this.chkExcempted.Name = "chkExcempted";
     this.chkExcempted.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExcempted.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkExcempted.Properties.Appearance.Options.UseFont = true;
     this.chkExcempted.Properties.Appearance.Options.UseForeColor = true;
     this.chkExcempted.Properties.Caption = "Tax Excempted";
     this.chkExcempted.Size = new System.Drawing.Size(111, 19);
     this.chkExcempted.TabIndex = 43;
     this.chkExcempted.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkExcempted_PreviewKeyDown);
     //
     // chkUseFlatRate
     //
     this.chkUseFlatRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkUseFlatRate.Location = new System.Drawing.Point(545, 7);
     this.chkUseFlatRate.Name = "chkUseFlatRate";
     this.chkUseFlatRate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkUseFlatRate.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkUseFlatRate.Properties.Appearance.Options.UseFont = true;
     this.chkUseFlatRate.Properties.Appearance.Options.UseForeColor = true;
     this.chkUseFlatRate.Properties.Caption = "Use Flat Rate";
     this.chkUseFlatRate.Size = new System.Drawing.Size(139, 19);
     this.chkUseFlatRate.TabIndex = 39;
     this.chkUseFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkUseFlatRate_PreviewKeyDown);
     //
     // chkNorCotics
     //
     this.chkNorCotics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNorCotics.Location = new System.Drawing.Point(545, 24);
     this.chkNorCotics.Name = "chkNorCotics";
     this.chkNorCotics.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNorCotics.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNorCotics.Properties.Appearance.Options.UseFont = true;
     this.chkNorCotics.Properties.Appearance.Options.UseForeColor = true;
     this.chkNorCotics.Properties.Caption = "Norcotics";
     this.chkNorCotics.Size = new System.Drawing.Size(75, 19);
     this.chkNorCotics.TabIndex = 40;
     this.chkNorCotics.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNorCotics_PreviewKeyDown);
     //
     // chkHideinTabs
     //
     this.chkHideinTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkHideinTabs.Location = new System.Drawing.Point(545, 59);
     this.chkHideinTabs.Name = "chkHideinTabs";
     this.chkHideinTabs.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkHideinTabs.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkHideinTabs.Properties.Appearance.Options.UseFont = true;
     this.chkHideinTabs.Properties.Appearance.Options.UseForeColor = true;
     this.chkHideinTabs.Properties.Caption = "Hide in Tabs";
     this.chkHideinTabs.Size = new System.Drawing.Size(111, 19);
     this.chkHideinTabs.TabIndex = 42;
     this.chkHideinTabs.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkHideinTabs_PreviewKeyDown);
     //
     // chkAllowMaxQtyDays
     //
     this.chkAllowMaxQtyDays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowMaxQtyDays.Location = new System.Drawing.Point(545, 42);
     this.chkAllowMaxQtyDays.Name = "chkAllowMaxQtyDays";
     this.chkAllowMaxQtyDays.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowMaxQtyDays.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseFont = true;
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowMaxQtyDays.Properties.Caption = "Allow Max Qty & Days";
     this.chkAllowMaxQtyDays.Size = new System.Drawing.Size(139, 19);
     this.chkAllowMaxQtyDays.TabIndex = 41;
     this.chkAllowMaxQtyDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowMaxQtyDays_PreviewKeyDown);
     //
     // chkProductDiscontinue
     //
     this.chkProductDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkProductDiscontinue.Location = new System.Drawing.Point(545, 197);
     this.chkProductDiscontinue.Name = "chkProductDiscontinue";
     this.chkProductDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkProductDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkProductDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.chkProductDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.chkProductDiscontinue.Properties.Caption = "Product Discountinue";
     this.chkProductDiscontinue.Size = new System.Drawing.Size(141, 19);
     this.chkProductDiscontinue.TabIndex = 38;
     this.chkProductDiscontinue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkProductDiscontinue_PreviewKeyDown);
     //
     // txtTradePrice
     //
     this.txtTradePrice.EditValue = "0.00";
     this.txtTradePrice.Location = new System.Drawing.Point(102, 9);
     this.txtTradePrice.Name = "txtTradePrice";
     this.txtTradePrice.Size = new System.Drawing.Size(82, 20);
     this.txtTradePrice.TabIndex = 14;
     this.txtTradePrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTradePrice_PreviewKeyDown);
     //
     // txtSaleRate
     //
     this.txtSaleRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleRate.EditValue = "0.00";
     this.txtSaleRate.Location = new System.Drawing.Point(449, 9);
     this.txtSaleRate.Name = "txtSaleRate";
     this.txtSaleRate.Size = new System.Drawing.Size(82, 20);
     this.txtSaleRate.TabIndex = 33;
     this.txtSaleRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleRate_PreviewKeyDown);
     //
     // txtPackInCarton
     //
     this.txtPackInCarton.Location = new System.Drawing.Point(285, 9);
     this.txtPackInCarton.Name = "txtPackInCarton";
     this.txtPackInCarton.Size = new System.Drawing.Size(82, 20);
     this.txtPackInCarton.TabIndex = 24;
     this.txtPackInCarton.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInCarton_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(16, 9);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(96, 20);
     this.labelControl9.TabIndex = 140;
     this.labelControl9.Text = "Trade Price";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(16, 28);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(96, 20);
     this.labelControl18.TabIndex = 157;
     this.labelControl18.Text = "Retail Price";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl17.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl17.LineVisible = true;
     this.labelControl17.Location = new System.Drawing.Point(16, 47);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(96, 20);
     this.labelControl17.TabIndex = 156;
     this.labelControl17.Text = "Purchase Disc %";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(16, 66);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(96, 20);
     this.labelControl16.TabIndex = 155;
     this.labelControl16.Text = "Max Sales Disc %";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(16, 85);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(96, 20);
     this.labelControl15.TabIndex = 154;
     this.labelControl15.Text = "Sale Tax %";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(16, 104);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(96, 20);
     this.labelControl13.TabIndex = 153;
     this.labelControl13.Text = "Sale Tax Value";
     //
     // labelControl50
     //
     this.labelControl50.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl50.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl50.LineVisible = true;
     this.labelControl50.Location = new System.Drawing.Point(16, 123);
     this.labelControl50.Name = "labelControl50";
     this.labelControl50.Size = new System.Drawing.Size(96, 20);
     this.labelControl50.TabIndex = 60;
     this.labelControl50.Text = "Sale Tax Calc";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(16, 142);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(96, 20);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "Max Flat Rate";
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(16, 161);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(96, 20);
     this.labelControl11.TabIndex = 151;
     this.labelControl11.Text = "Min Flat Rate";
     //
     // labelControl19
     //
     this.labelControl19.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl19.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl19.LineVisible = true;
     this.labelControl19.Location = new System.Drawing.Point(16, 180);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(96, 20);
     this.labelControl19.TabIndex = 158;
     this.labelControl19.Text = "Inventory Days";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(16, 198);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(96, 20);
     this.labelControl20.TabIndex = 159;
     this.labelControl20.Text = "Tabs in Pack";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(191, 10);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(100, 20);
     this.labelControl25.TabIndex = 164;
     this.labelControl25.Text = "Packs in Carton";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(191, 29);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(100, 20);
     this.labelControl24.TabIndex = 163;
     this.labelControl24.Text = "Max Qty/Customer";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(191, 48);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(100, 20);
     this.labelControl23.TabIndex = 162;
     this.labelControl23.Text = "Max Qty Days";
     //
     // labelControl22
     //
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.LineVisible = true;
     this.labelControl22.Location = new System.Drawing.Point(191, 67);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(100, 20);
     this.labelControl22.TabIndex = 161;
     this.labelControl22.Text = "Balance Stock";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(191, 86);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(100, 20);
     this.labelControl21.TabIndex = 160;
     this.labelControl21.Text = "Balance Bonus";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(191, 104);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(100, 20);
     this.labelControl26.TabIndex = 165;
     this.labelControl26.Text = "Net Balance";
     //
     // labelControl52
     //
     this.labelControl52.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl52.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl52.LineVisible = true;
     this.labelControl52.Location = new System.Drawing.Point(191, 123);
     this.labelControl52.Name = "labelControl52";
     this.labelControl52.Size = new System.Drawing.Size(100, 20);
     this.labelControl52.TabIndex = 124267;
     this.labelControl52.Text = "Target";
     //
     // labelControl53
     //
     this.labelControl53.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl53.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl53.LineVisible = true;
     this.labelControl53.Location = new System.Drawing.Point(191, 142);
     this.labelControl53.Name = "labelControl53";
     this.labelControl53.Size = new System.Drawing.Size(100, 20);
     this.labelControl53.TabIndex = 124269;
     this.labelControl53.Text = "Transit";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(191, 162);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(100, 20);
     this.labelControl27.TabIndex = 166;
     this.labelControl27.Text = "Total Cost";
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(191, 180);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(100, 20);
     this.labelControl28.TabIndex = 167;
     this.labelControl28.Text = "Special Rate";
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(191, 199);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(100, 20);
     this.labelControl29.TabIndex = 168;
     this.labelControl29.Text = "Pure Rate";
     //
     // labelControl30
     //
     this.labelControl30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl30.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl30.LineVisible = true;
     this.labelControl30.Location = new System.Drawing.Point(373, 10);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(82, 20);
     this.labelControl30.TabIndex = 169;
     this.labelControl30.Text = "Sale Rate";
     //
     // labelControl31
     //
     this.labelControl31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl31.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl31.LineVisible = true;
     this.labelControl31.Location = new System.Drawing.Point(373, 29);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(82, 20);
     this.labelControl31.TabIndex = 182;
     this.labelControl31.Text = "Lead Time";
     //
     // labelControl32
     //
     this.labelControl32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl32.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl32.LineVisible = true;
     this.labelControl32.Location = new System.Drawing.Point(373, 48);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(82, 20);
     this.labelControl32.TabIndex = 184;
     this.labelControl32.Text = "Tolerance Day";
     //
     // labelControl37
     //
     this.labelControl37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl37.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl37.LineVisible = true;
     this.labelControl37.Location = new System.Drawing.Point(373, 67);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(82, 20);
     this.labelControl37.TabIndex = 186;
     this.labelControl37.Text = "Avg Rate";
     //
     // labelControl38
     //
     this.labelControl38.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl38.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl38.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl38.LineVisible = true;
     this.labelControl38.Location = new System.Drawing.Point(373, 86);
     this.labelControl38.Name = "labelControl38";
     this.labelControl38.Size = new System.Drawing.Size(82, 20);
     this.labelControl38.TabIndex = 103;
     this.labelControl38.Text = "Value Method";
     //
     // labelControl44
     //
     this.labelControl44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl44.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl44.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl44.LineVisible = true;
     this.labelControl44.Location = new System.Drawing.Point(373, 105);
     this.labelControl44.Name = "labelControl44";
     this.labelControl44.Size = new System.Drawing.Size(82, 20);
     this.labelControl44.TabIndex = 124261;
     this.labelControl44.Text = "UOM-Sale";
     //
     // labelControl43
     //
     this.labelControl43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl43.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl43.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl43.LineVisible = true;
     this.labelControl43.Location = new System.Drawing.Point(373, 124);
     this.labelControl43.Name = "labelControl43";
     this.labelControl43.Size = new System.Drawing.Size(82, 20);
     this.labelControl43.TabIndex = 124259;
     this.labelControl43.Text = "UOM-Size";
     //
     // labelControl41
     //
     this.labelControl41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl41.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl41.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl41.LineVisible = true;
     this.labelControl41.Location = new System.Drawing.Point(373, 144);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(82, 20);
     this.labelControl41.TabIndex = 124263;
     this.labelControl41.Text = "UOM-Purchase";
     //
     // labelControl42
     //
     this.labelControl42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl42.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl42.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl42.LineVisible = true;
     this.labelControl42.Location = new System.Drawing.Point(373, 161);
     this.labelControl42.Name = "labelControl42";
     this.labelControl42.Size = new System.Drawing.Size(82, 20);
     this.labelControl42.TabIndex = 124265;
     this.labelControl42.Text = "Factor";
     //
     // XtrabarBonus
     //
     this.XtrabarBonus.Controls.Add(this.datagridBonus);
     this.XtrabarBonus.Name = "XtrabarBonus";
     this.XtrabarBonus.Size = new System.Drawing.Size(695, 226);
     this.XtrabarBonus.Text = "Bonus";
     //
     // datagridBonus
     //
     this.datagridBonus.AllowAddNew = true;
     this.datagridBonus.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridBonus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridBonus.Caption = "Product Bonus";
     this.datagridBonus.CaptionHeight = 20;
     this.datagridBonus.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ColumnFooters = true;
     this.datagridBonus.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridBonus.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridBonus.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridBonus.Images"))));
     this.datagridBonus.Location = new System.Drawing.Point(0, 1);
     this.datagridBonus.Name = "datagridBonus";
     this.datagridBonus.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridBonus.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridBonus.PreviewInfo.ZoomFactor = 75D;
     this.datagridBonus.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridBonus.PrintInfo.PageSettings")));
     this.datagridBonus.RecordSelectors = false;
     this.datagridBonus.RowHeight = 20;
     this.datagridBonus.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridBonus.ScrollTips = true;
     this.datagridBonus.Size = new System.Drawing.Size(726, 304);
     this.datagridBonus.TabIndex = 32000;
     this.datagridBonus.Text = "c1TrueDBGrid1";
     this.datagridBonus.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridBonus.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridBonus_AfterColUpdate);
     this.datagridBonus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridBonus_KeyDown);
     this.datagridBonus.PropBag = resources.GetString("datagridBonus.PropBag");
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.datagridProductAllocation);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage1.Text = "Territory Allocation";
     //
     // datagridProductAllocation
     //
     this.datagridProductAllocation.AllowAddNew = true;
     this.datagridProductAllocation.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridProductAllocation.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridProductAllocation.Caption = "Product Allocation";
     this.datagridProductAllocation.CaptionHeight = 20;
     this.datagridProductAllocation.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ColumnFooters = true;
     this.datagridProductAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridProductAllocation.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridProductAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridProductAllocation.Images"))));
     this.datagridProductAllocation.Location = new System.Drawing.Point(-1, 0);
     this.datagridProductAllocation.Name = "datagridProductAllocation";
     this.datagridProductAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridProductAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridProductAllocation.PreviewInfo.ZoomFactor = 75D;
     this.datagridProductAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridProductAllocation.PrintInfo.PageSettings")));
     this.datagridProductAllocation.RecordSelectors = false;
     this.datagridProductAllocation.RowHeight = 20;
     this.datagridProductAllocation.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridProductAllocation.ScrollTips = true;
     this.datagridProductAllocation.Size = new System.Drawing.Size(696, 233);
     this.datagridProductAllocation.TabIndex = 1;
     this.datagridProductAllocation.Text = "c1TrueDBGrid1";
     this.datagridProductAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridProductAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridProductAllocation_AfterColUpdate);
     this.datagridProductAllocation.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridProductAllocation_KeyDown);
     this.datagridProductAllocation.PropBag = resources.GetString("datagridProductAllocation.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.groupControl5);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage2.Text = "Advance Information";
     //
     // groupControl5
     //
     this.groupControl5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl5.Controls.Add(this.txtMaxLimit);
     this.groupControl5.Controls.Add(this.txtMinLimit);
     this.groupControl5.Controls.Add(this.txtBarCode);
     this.groupControl5.Controls.Add(this.txtShelfCode);
     this.groupControl5.Controls.Add(this.grdPresevasionStandard);
     this.groupControl5.Controls.Add(this.simpleButton8);
     this.groupControl5.Controls.Add(this.txtClaimPartnerID);
     this.groupControl5.Controls.Add(this.txtClaimPartnerName);
     this.groupControl5.Controls.Add(this.simpleButton7);
     this.groupControl5.Controls.Add(this.txtBussinessPartnerid);
     this.groupControl5.Controls.Add(this.businessPartnerName);
     this.groupControl5.Controls.Add(this.labelControl40);
     this.groupControl5.Controls.Add(this.labelControl48);
     this.groupControl5.Controls.Add(this.labelControl46);
     this.groupControl5.Controls.Add(this.labelControl47);
     this.groupControl5.Controls.Add(this.labelControl54);
     this.groupControl5.Controls.Add(this.labelControl55);
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(695, 233);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Extra Information";
     //
     // txtMaxLimit
     //
     this.txtMaxLimit.Location = new System.Drawing.Point(103, 102);
     this.txtMaxLimit.Name = "txtMaxLimit";
     this.txtMaxLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMaxLimit.TabIndex = 124268;
     this.txtMaxLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxLimit_PreviewKeyDown);
     //
     // txtMinLimit
     //
     this.txtMinLimit.Location = new System.Drawing.Point(103, 83);
     this.txtMinLimit.Name = "txtMinLimit";
     this.txtMinLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMinLimit.TabIndex = 124266;
     this.txtMinLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinLimit_PreviewKeyDown);
     //
     // txtBarCode
     //
     this.txtBarCode.Location = new System.Drawing.Point(103, 64);
     this.txtBarCode.Name = "txtBarCode";
     this.txtBarCode.Size = new System.Drawing.Size(209, 20);
     this.txtBarCode.TabIndex = 124261;
     this.txtBarCode.TabStop = false;
     this.txtBarCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBarCode_PreviewKeyDown);
     //
     // txtShelfCode
     //
     this.txtShelfCode.Location = new System.Drawing.Point(103, 45);
     this.txtShelfCode.Name = "txtShelfCode";
     this.txtShelfCode.Size = new System.Drawing.Size(209, 20);
     this.txtShelfCode.TabIndex = 124259;
     this.txtShelfCode.TabStop = false;
     this.txtShelfCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShelfCode_PreviewKeyDown);
     //
     // grdPresevasionStandard
     //
     this.grdPresevasionStandard.AllowAddNew = true;
     this.grdPresevasionStandard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdPresevasionStandard.CaptionHeight = 17;
     this.grdPresevasionStandard.Images.Add(((System.Drawing.Image)(resources.GetObject("grdPresevasionStandard.Images"))));
     this.grdPresevasionStandard.Location = new System.Drawing.Point(411, 5);
     this.grdPresevasionStandard.Name = "grdPresevasionStandard";
     this.grdPresevasionStandard.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdPresevasionStandard.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdPresevasionStandard.PreviewInfo.ZoomFactor = 75D;
     this.grdPresevasionStandard.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdPresevasionStandard.PrintInfo.PageSettings")));
     this.grdPresevasionStandard.RowHeight = 15;
     this.grdPresevasionStandard.Size = new System.Drawing.Size(277, 225);
     this.grdPresevasionStandard.TabIndex = 124270;
     this.grdPresevasionStandard.Text = "c1TrueDBGrid2";
     this.grdPresevasionStandard.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdPresevasionStandard_AfterColUpdate);
     this.grdPresevasionStandard.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdPresevasionStandard_PreviewKeyDown);
     this.grdPresevasionStandard.PropBag = resources.GetString("grdPresevasionStandard.PropBag");
     //
     // simpleButton8
     //
     this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton8.Appearance.Options.UseFont = true;
     this.simpleButton8.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton8.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton8.Location = new System.Drawing.Point(152, 26);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton8.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.simpleButton8.SuperTip = superToolTip1;
     this.simpleButton8.TabIndex = 124264;
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // txtClaimPartnerID
     //
     this.txtClaimPartnerID.Location = new System.Drawing.Point(103, 25);
     this.txtClaimPartnerID.Mask = "000000";
     this.txtClaimPartnerID.Name = "txtClaimPartnerID";
     this.txtClaimPartnerID.Size = new System.Drawing.Size(49, 21);
     this.txtClaimPartnerID.TabIndex = 124262;
     this.txtClaimPartnerID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClaimPartnerID_PreviewKeyDown);
     //
     // txtClaimPartnerName
     //
     this.txtClaimPartnerName.Location = new System.Drawing.Point(176, 26);
     this.txtClaimPartnerName.Name = "txtClaimPartnerName";
     this.txtClaimPartnerName.Size = new System.Drawing.Size(136, 20);
     this.txtClaimPartnerName.TabIndex = 124265;
     //
     // simpleButton7
     //
     this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton7.Appearance.Options.UseFont = true;
     this.simpleButton7.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton7.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton7.Location = new System.Drawing.Point(152, 6);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton7.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.simpleButton7.SuperTip = superToolTip2;
     this.simpleButton7.TabIndex = 124250;
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // txtBussinessPartnerid
     //
     this.txtBussinessPartnerid.Location = new System.Drawing.Point(103, 6);
     this.txtBussinessPartnerid.Mask = "000000";
     this.txtBussinessPartnerid.Name = "txtBussinessPartnerid";
     this.txtBussinessPartnerid.Size = new System.Drawing.Size(49, 21);
     this.txtBussinessPartnerid.TabIndex = 124248;
     this.txtBussinessPartnerid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBussinessPartnerid_PreviewKeyDown);
     //
     // businessPartnerName
     //
     this.businessPartnerName.Location = new System.Drawing.Point(176, 7);
     this.businessPartnerName.Name = "businessPartnerName";
     this.businessPartnerName.Size = new System.Drawing.Size(136, 20);
     this.businessPartnerName.TabIndex = 124251;
     //
     // labelControl40
     //
     this.labelControl40.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl40.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl40.LineVisible = true;
     this.labelControl40.Location = new System.Drawing.Point(8, 6);
     this.labelControl40.Name = "labelControl40";
     this.labelControl40.Size = new System.Drawing.Size(103, 20);
     this.labelControl40.TabIndex = 124249;
     this.labelControl40.Text = "Business Partner ID";
     //
     // labelControl48
     //
     this.labelControl48.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl48.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl48.LineVisible = true;
     this.labelControl48.Location = new System.Drawing.Point(8, 26);
     this.labelControl48.Name = "labelControl48";
     this.labelControl48.Size = new System.Drawing.Size(103, 20);
     this.labelControl48.TabIndex = 124263;
     this.labelControl48.Text = "Claim Partner ID";
     //
     // labelControl46
     //
     this.labelControl46.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl46.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl46.LineVisible = true;
     this.labelControl46.Location = new System.Drawing.Point(8, 46);
     this.labelControl46.Name = "labelControl46";
     this.labelControl46.Size = new System.Drawing.Size(103, 20);
     this.labelControl46.TabIndex = 124258;
     this.labelControl46.Text = "Shelf Code";
     //
     // labelControl47
     //
     this.labelControl47.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl47.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl47.LineVisible = true;
     this.labelControl47.Location = new System.Drawing.Point(8, 65);
     this.labelControl47.Name = "labelControl47";
     this.labelControl47.Size = new System.Drawing.Size(103, 20);
     this.labelControl47.TabIndex = 124260;
     this.labelControl47.Text = "Bar Code";
     //
     // labelControl54
     //
     this.labelControl54.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl54.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl54.LineVisible = true;
     this.labelControl54.Location = new System.Drawing.Point(8, 85);
     this.labelControl54.Name = "labelControl54";
     this.labelControl54.Size = new System.Drawing.Size(103, 20);
     this.labelControl54.TabIndex = 124267;
     this.labelControl54.Text = "Min Limit";
     //
     // labelControl55
     //
     this.labelControl55.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl55.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl55.LineVisible = true;
     this.labelControl55.Location = new System.Drawing.Point(8, 103);
     this.labelControl55.Name = "labelControl55";
     this.labelControl55.Size = new System.Drawing.Size(103, 20);
     this.labelControl55.TabIndex = 124269;
     this.labelControl55.Text = "Max Limit";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.dgFileAttachments);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage3.Text = "Attachment & Remarks";
     //
     // dgFileAttachments
     //
     this.dgFileAttachments.AllowAddNew = true;
     this.dgFileAttachments.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dgFileAttachments.CaptionHeight = 17;
     this.dgFileAttachments.Images.Add(((System.Drawing.Image)(resources.GetObject("dgFileAttachments.Images"))));
     this.dgFileAttachments.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.Name = "dgFileAttachments";
     this.dgFileAttachments.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.dgFileAttachments.PreviewInfo.ZoomFactor = 75D;
     this.dgFileAttachments.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("dgFileAttachments.PrintInfo.PageSettings")));
     this.dgFileAttachments.RowHeight = 15;
     this.dgFileAttachments.Size = new System.Drawing.Size(698, 233);
     this.dgFileAttachments.TabIndex = 0;
     this.dgFileAttachments.Text = "c1TrueDBGrid1";
     this.dgFileAttachments.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_AfterColUpdate);
     this.dgFileAttachments.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_ButtonClick);
     this.dgFileAttachments.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.dgFileAttachments_PreviewKeyDown);
     this.dgFileAttachments.PropBag = resources.GetString("dgFileAttachments.PropBag");
     //
     // Productid
     //
     this.Productid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.Productid.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Productid.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.Productid.LineVisible = true;
     this.Productid.Location = new System.Drawing.Point(4, 12);
     this.Productid.Name = "Productid";
     this.Productid.Size = new System.Drawing.Size(72, 20);
     this.Productid.TabIndex = 1;
     this.Productid.Text = "Item Id";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cmbProductCategory);
     this.groupControl1.Controls.Add(this.txtShortName);
     this.groupControl1.Controls.Add(this.txtArtical);
     this.groupControl1.Controls.Add(this.txtProductName);
     this.groupControl1.Controls.Add(this.cmbSkuType);
     this.groupControl1.Controls.Add(this.cmbGeneralName);
     this.groupControl1.Controls.Add(this.cmbProtoType);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtProductId);
     this.groupControl1.Controls.Add(this.txtPack);
     this.groupControl1.Controls.Add(this.Productid);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.labelControl49);
     this.groupControl1.Controls.Add(this.labelControl39);
     this.groupControl1.Location = new System.Drawing.Point(2, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(405, 105);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "Products";
     //
     // cmbProductCategory
     //
     this.cmbProductCategory.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProductCategory.Location = new System.Drawing.Point(308, 67);
     this.cmbProductCategory.Name = "cmbProductCategory";
     this.cmbProductCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProductCategory.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProductCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProductCategory.Size = new System.Drawing.Size(91, 20);
     this.cmbProductCategory.TabIndex = 55;
     this.cmbProductCategory.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProductCategory_PreviewKeyDown);
     //
     // txtShortName
     //
     this.txtShortName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtShortName.Location = new System.Drawing.Point(62, 69);
     this.txtShortName.Name = "txtShortName";
     this.txtShortName.Size = new System.Drawing.Size(169, 20);
     this.txtShortName.TabIndex = 6;
     this.txtShortName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShortName_PreviewKeyDown);
     //
     // txtArtical
     //
     this.txtArtical.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtArtical.Location = new System.Drawing.Point(62, 50);
     this.txtArtical.Name = "txtArtical";
     this.txtArtical.Size = new System.Drawing.Size(169, 20);
     this.txtArtical.TabIndex = 5;
     this.txtArtical.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtArtical_PreviewKeyDown);
     //
     // txtProductName
     //
     this.txtProductName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductName.Location = new System.Drawing.Point(62, 31);
     this.txtProductName.Name = "txtProductName";
     this.txtProductName.Size = new System.Drawing.Size(169, 20);
     this.txtProductName.TabIndex = 4;
     this.txtProductName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductName_PreviewKeyDown);
     //
     // cmbSkuType
     //
     this.cmbSkuType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbSkuType.Location = new System.Drawing.Point(308, 48);
     this.cmbSkuType.Name = "cmbSkuType";
     this.cmbSkuType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSkuType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSkuType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSkuType.Size = new System.Drawing.Size(91, 20);
     this.cmbSkuType.TabIndex = 57;
     this.cmbSkuType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbSkuType_PreviewKeyDown);
     //
     // cmbGeneralName
     //
     this.cmbGeneralName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbGeneralName.Location = new System.Drawing.Point(308, 29);
     this.cmbGeneralName.Name = "cmbGeneralName";
     this.cmbGeneralName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbGeneralName.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbGeneralName.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbGeneralName.Size = new System.Drawing.Size(91, 20);
     this.cmbGeneralName.TabIndex = 3;
     this.cmbGeneralName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbGeneralName_PreviewKeyDown);
     //
     // cmbProtoType
     //
     this.cmbProtoType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProtoType.Location = new System.Drawing.Point(308, 11);
     this.cmbProtoType.Name = "cmbProtoType";
     this.cmbProtoType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProtoType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProtoType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProtoType.Size = new System.Drawing.Size(91, 20);
     this.cmbProtoType.TabIndex = 2;
     this.cmbProtoType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProtoType_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(113, 12);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btnPickList.SuperTip = superToolTip3;
     this.btnPickList.TabIndex = 47;
     this.btnPickList.TabStop = false;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl3.Location = new System.Drawing.Point(140, 15);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(22, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "Pack";
     //
     // txtProductId
     //
     this.txtProductId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductId.Location = new System.Drawing.Point(62, 11);
     this.txtProductId.Mask = "000-000";
     this.txtProductId.Name = "txtProductId";
     this.txtProductId.Size = new System.Drawing.Size(51, 21);
     this.txtProductId.TabIndex = 0;
     this.txtProductId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductId_KeyDown);
     this.txtProductId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtProductId_KeyPress);
     this.txtProductId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductId_PreviewKeyDown);
     //
     // txtPack
     //
     this.txtPack.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPack.Location = new System.Drawing.Point(171, 12);
     this.txtPack.Name = "txtPack";
     this.txtPack.Size = new System.Drawing.Size(60, 20);
     this.txtPack.TabIndex = 1;
     this.txtPack.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPack_PreviewKeyDown);
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(4, 32);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 20);
     this.labelControl6.TabIndex = 7;
     this.labelControl6.Text = "Item Name";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(4, 51);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 20);
     this.labelControl2.TabIndex = 52;
     this.labelControl2.Text = "Artical No.";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(4, 70);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(72, 20);
     this.labelControl8.TabIndex = 59;
     this.labelControl8.Text = "Description";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(235, 11);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(90, 20);
     this.labelControl14.TabIndex = 52;
     this.labelControl14.Text = "Item Type";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(235, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(90, 20);
     this.labelControl7.TabIndex = 54;
     this.labelControl7.Text = "Gen. Name";
     //
     // labelControl49
     //
     this.labelControl49.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl49.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl49.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl49.LineVisible = true;
     this.labelControl49.Location = new System.Drawing.Point(235, 48);
     this.labelControl49.Name = "labelControl49";
     this.labelControl49.Size = new System.Drawing.Size(77, 20);
     this.labelControl49.TabIndex = 58;
     this.labelControl49.Text = "SKU Type";
     //
     // labelControl39
     //
     this.labelControl39.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl39.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl39.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl39.LineVisible = true;
     this.labelControl39.Location = new System.Drawing.Point(235, 67);
     this.labelControl39.Name = "labelControl39";
     this.labelControl39.Size = new System.Drawing.Size(90, 20);
     this.labelControl39.TabIndex = 56;
     this.labelControl39.Text = "Item Category";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(169, 9);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 20);
     this.labelControl4.TabIndex = 5;
     this.labelControl4.Text = "Group Seq.";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(5, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(84, 20);
     this.labelControl5.TabIndex = 6;
     this.labelControl5.Text = "Group Name";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(5, 8);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(71, 20);
     this.labelControl10.TabIndex = 11;
     this.labelControl10.Text = "Group Id";
     //
     // txtGroupSeq
     //
     this.txtGroupSeq.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupSeq.Location = new System.Drawing.Point(224, 10);
     this.txtGroupSeq.Name = "txtGroupSeq";
     this.txtGroupSeq.Size = new System.Drawing.Size(62, 20);
     this.txtGroupSeq.TabIndex = 8;
     this.txtGroupSeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupSeq_PreviewKeyDown);
     //
     // txtGroupName
     //
     this.txtGroupName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupName.Location = new System.Drawing.Point(85, 29);
     this.txtGroupName.Name = "txtGroupName";
     this.txtGroupName.Size = new System.Drawing.Size(201, 20);
     this.txtGroupName.TabIndex = 124244;
     this.txtGroupName.TabStop = false;
     //
     // txtGroupid
     //
     this.txtGroupid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupid.Location = new System.Drawing.Point(85, 9);
     this.txtGroupid.Mask = "000-000";
     this.txtGroupid.Name = "txtGroupid";
     this.txtGroupid.Size = new System.Drawing.Size(51, 21);
     this.txtGroupid.TabIndex = 7;
     this.txtGroupid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupid_PreviewKeyDown);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(137, 9);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton1.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.simpleButton1.SuperTip = superToolTip4;
     this.simpleButton1.TabIndex = 48;
     this.simpleButton1.TabStop = false;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.txtmanualgroup);
     this.groupControl2.Controls.Add(this.labelControl57);
     this.groupControl2.Controls.Add(this.txtdateto);
     this.groupControl2.Controls.Add(this.txtdatefrom);
     this.groupControl2.Controls.Add(this.simpleButton4);
     this.groupControl2.Controls.Add(this.simpleButton1);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.txtGroupName);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.txtGroupSeq);
     this.groupControl2.Controls.Add(this.txtGroupid);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl56);
     this.groupControl2.Controls.Add(this.labelControl51);
     this.groupControl2.Location = new System.Drawing.Point(411, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(291, 105);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "Group";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // txtmanualgroup
     //
     this.txtmanualgroup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtmanualgroup.Location = new System.Drawing.Point(85, 68);
     this.txtmanualgroup.Name = "txtmanualgroup";
     this.txtmanualgroup.Size = new System.Drawing.Size(201, 20);
     this.txtmanualgroup.TabIndex = 124245;
     this.txtmanualgroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtmanualgroup_PreviewKeyDown);
     //
     // labelControl57
     //
     this.labelControl57.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl57.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl57.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl57.LineVisible = true;
     this.labelControl57.Location = new System.Drawing.Point(168, 50);
     this.labelControl57.Name = "labelControl57";
     this.labelControl57.Size = new System.Drawing.Size(38, 20);
     this.labelControl57.TabIndex = 124252;
     this.labelControl57.Text = "Date To";
     //
     // txtdateto
     //
     this.txtdateto.Location = new System.Drawing.Point(211, 48);
     this.txtdateto.Mask = "00/00/0000";
     this.txtdateto.Name = "txtdateto";
     this.txtdateto.Size = new System.Drawing.Size(75, 21);
     this.txtdateto.TabIndex = 124251;
     this.txtdateto.ValidatingType = typeof(System.DateTime);
     this.txtdateto.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdateto_PreviewKeyDown);
     //
     // txtdatefrom
     //
     this.txtdatefrom.Location = new System.Drawing.Point(85, 48);
     this.txtdatefrom.Mask = "00/00/0000";
     this.txtdatefrom.Name = "txtdatefrom";
     this.txtdatefrom.Size = new System.Drawing.Size(75, 21);
     this.txtdatefrom.TabIndex = 124250;
     this.txtdatefrom.ValidatingType = typeof(System.DateTime);
     this.txtdatefrom.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdatefrom_PreviewKeyDown);
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton4.Location = new System.Drawing.Point(63, 9);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(21, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem1);
     this.simpleButton4.SuperTip = superToolTip5;
     this.simpleButton4.TabIndex = 187;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // labelControl56
     //
     this.labelControl56.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl56.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl56.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl56.LineVisible = true;
     this.labelControl56.Location = new System.Drawing.Point(5, 51);
     this.labelControl56.Name = "labelControl56";
     this.labelControl56.Size = new System.Drawing.Size(84, 20);
     this.labelControl56.TabIndex = 124249;
     this.labelControl56.Text = "Date From";
     //
     // labelControl51
     //
     this.labelControl51.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl51.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl51.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl51.LineVisible = true;
     this.labelControl51.Location = new System.Drawing.Point(5, 69);
     this.labelControl51.Name = "labelControl51";
     this.labelControl51.Size = new System.Drawing.Size(84, 20);
     this.labelControl51.TabIndex = 124246;
     this.labelControl51.Text = "Manual Groups";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(3, 426);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Add New Module";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip6;
     this.btnAdd.TabIndex = 47;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(79, 426);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip7;
     this.btnCancel.TabIndex = 50;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.simpleButton6);
     this.groupControl4.Controls.Add(this.simpleButton5);
     this.groupControl4.Controls.Add(this.chkCompanyDiscount);
     this.groupControl4.Controls.Add(this.txtCompanySeq);
     this.groupControl4.Controls.Add(this.simpleButton3);
     this.groupControl4.Controls.Add(this.labelControl35);
     this.groupControl4.Controls.Add(this.txtReportCompanyName);
     this.groupControl4.Controls.Add(this.txtReportCompanyid);
     this.groupControl4.Controls.Add(this.simpleButton2);
     this.groupControl4.Controls.Add(this.txtCompanyName);
     this.groupControl4.Controls.Add(this.txtCompanyid);
     this.groupControl4.Controls.Add(this.labelControl33);
     this.groupControl4.Controls.Add(this.labelControl34);
     this.groupControl4.Controls.Add(this.labelControl36);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Location = new System.Drawing.Point(3, 110);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(699, 55);
     this.groupControl4.TabIndex = 49;
     this.groupControl4.Text = "Group";
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton6.Location = new System.Drawing.Point(110, 27);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(21, 20);
     toolTipItem4.Text = "Save Module";
     superToolTip8.Items.Add(toolTipItem4);
     this.simpleButton6.SuperTip = superToolTip8;
     this.simpleButton6.TabIndex = 124246;
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(110, 6);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(21, 20);
     toolTipItem5.Text = "Save Module";
     superToolTip9.Items.Add(toolTipItem5);
     this.simpleButton5.SuperTip = superToolTip9;
     this.simpleButton5.TabIndex = 124245;
     //
     // chkCompanyDiscount
     //
     this.chkCompanyDiscount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.chkCompanyDiscount.Location = new System.Drawing.Point(472, 26);
     this.chkCompanyDiscount.Name = "chkCompanyDiscount";
     this.chkCompanyDiscount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkCompanyDiscount.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkCompanyDiscount.Properties.Appearance.Options.UseFont = true;
     this.chkCompanyDiscount.Properties.Appearance.Options.UseForeColor = true;
     this.chkCompanyDiscount.Properties.Caption = "Company Discount";
     this.chkCompanyDiscount.Size = new System.Drawing.Size(136, 19);
     this.chkCompanyDiscount.TabIndex = 100001;
     this.chkCompanyDiscount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkCompanyDiscount_PreviewKeyDown);
     //
     // txtCompanySeq
     //
     this.txtCompanySeq.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanySeq.Location = new System.Drawing.Point(542, 6);
     this.txtCompanySeq.Name = "txtCompanySeq";
     this.txtCompanySeq.Size = new System.Drawing.Size(62, 20);
     this.txtCompanySeq.TabIndex = 10;
     this.txtCompanySeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanySeq_PreviewKeyDown);
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton3.Appearance.Options.UseFont = true;
     this.simpleButton3.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location = new System.Drawing.Point(159, 27);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton3.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip10.Items.Add(toolTipTitleItem5);
     this.simpleButton3.SuperTip = superToolTip10;
     this.simpleButton3.TabIndex = 53;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // labelControl35
     //
     this.labelControl35.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl35.LineVisible = true;
     this.labelControl35.Location = new System.Drawing.Point(17, 29);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(101, 20);
     this.labelControl35.TabIndex = 50;
     this.labelControl35.Text = "Report CompanyId";
     //
     // txtReportCompanyName
     //
     this.txtReportCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyName.Location = new System.Drawing.Point(264, 26);
     this.txtReportCompanyName.Name = "txtReportCompanyName";
     this.txtReportCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtReportCompanyName.TabIndex = 13;
     //
     // txtReportCompanyid
     //
     this.txtReportCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyid.Location = new System.Drawing.Point(133, 27);
     this.txtReportCompanyid.Mask = "000";
     this.txtReportCompanyid.Name = "txtReportCompanyid";
     this.txtReportCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtReportCompanyid.TabIndex = 11;
     this.txtReportCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReportCompanyid_PreviewKeyDown);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton2.Appearance.Options.UseFont = true;
     this.simpleButton2.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(159, 6);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton2.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip11.Items.Add(toolTipTitleItem6);
     this.simpleButton2.SuperTip = superToolTip11;
     this.simpleButton2.TabIndex = 48;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyName.Location = new System.Drawing.Point(264, 6);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtCompanyName.TabIndex = 100000;
     //
     // txtCompanyid
     //
     this.txtCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyid.Location = new System.Drawing.Point(133, 6);
     this.txtCompanyid.Mask = "000";
     this.txtCompanyid.Name = "txtCompanyid";
     this.txtCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtCompanyid.TabIndex = 9;
     this.txtCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanyid_PreviewKeyDown);
     //
     // labelControl33
     //
     this.labelControl33.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl33.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl33.LineVisible = true;
     this.labelControl33.Location = new System.Drawing.Point(17, 7);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(101, 20);
     this.labelControl33.TabIndex = 11;
     this.labelControl33.Text = "Company Id";
     //
     // labelControl34
     //
     this.labelControl34.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl34.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl34.LineVisible = true;
     this.labelControl34.Location = new System.Drawing.Point(187, 6);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(95, 20);
     this.labelControl34.TabIndex = 6;
     this.labelControl34.Text = "Company Name";
     //
     // labelControl36
     //
     this.labelControl36.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl36.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl36.LineVisible = true;
     this.labelControl36.Location = new System.Drawing.Point(187, 26);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(95, 20);
     this.labelControl36.TabIndex = 49;
     this.labelControl36.Text = "Company Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(471, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(81, 20);
     this.labelControl1.TabIndex = 54;
     this.labelControl1.Text = "Company Seq.";
     //
     // frmProducts
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 454);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmProducts";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Products";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmProducts_FormClosing);
     this.Load += new System.EventHandler(this.frmProducts_Load);
     this.Enter += new System.EventHandler(this.frmProducts_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtrabarGeneralinformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).EndInit();
     this.XtrabarBonus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lblCarModel = new DevExpress.XtraEditors.LabelControl();
     this.lblEngineType = new DevExpress.XtraEditors.LabelControl();
     this.lblTurbo = new DevExpress.XtraEditors.LabelControl();
     this.lblMakeyear = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.lblPlant = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.lblSeries = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.lblBody = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(83, 12);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(302, 20);
     this.textEdit1.TabIndex = 0;
     this.textEdit1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit1_KeyDown);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(401, 9);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "Decode";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 16);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(56, 13);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "VIN number";
     //
     // lblCarModel
     //
     this.lblCarModel.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.lblCarModel.Appearance.Options.UseForeColor = true;
     this.lblCarModel.Location = new System.Drawing.Point(196, 47);
     this.lblCarModel.Name = "lblCarModel";
     this.lblCarModel.Size = new System.Drawing.Size(12, 13);
     this.lblCarModel.TabIndex = 3;
     this.lblCarModel.Text = "---";
     //
     // lblEngineType
     //
     this.lblEngineType.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.lblEngineType.Appearance.Options.UseForeColor = true;
     this.lblEngineType.Location = new System.Drawing.Point(196, 66);
     this.lblEngineType.Name = "lblEngineType";
     this.lblEngineType.Size = new System.Drawing.Size(12, 13);
     this.lblEngineType.TabIndex = 4;
     this.lblEngineType.Text = "---";
     //
     // lblTurbo
     //
     this.lblTurbo.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.lblTurbo.Appearance.Options.UseForeColor = true;
     this.lblTurbo.Location = new System.Drawing.Point(196, 85);
     this.lblTurbo.Name = "lblTurbo";
     this.lblTurbo.Size = new System.Drawing.Size(12, 13);
     this.lblTurbo.TabIndex = 5;
     this.lblTurbo.Text = "---";
     //
     // lblMakeyear
     //
     this.lblMakeyear.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.lblMakeyear.Appearance.Options.UseForeColor = true;
     this.lblMakeyear.Location = new System.Drawing.Point(196, 104);
     this.lblMakeyear.Name = "lblMakeyear";
     this.lblMakeyear.Size = new System.Drawing.Size(12, 13);
     this.lblMakeyear.TabIndex = 6;
     this.lblMakeyear.Text = "---";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(83, 104);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(47, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "Makeyear";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(83, 85);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(28, 13);
     this.labelControl7.TabIndex = 9;
     this.labelControl7.Text = "Turbo";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(83, 66);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(57, 13);
     this.labelControl8.TabIndex = 8;
     this.labelControl8.Text = "Engine type";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(83, 47);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(48, 13);
     this.labelControl9.TabIndex = 7;
     this.labelControl9.Text = "Car model";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(83, 123);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(72, 13);
     this.labelControl10.TabIndex = 12;
     this.labelControl10.Text = "Assembly plant";
     //
     // lblPlant
     //
     this.lblPlant.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.lblPlant.Appearance.Options.UseForeColor = true;
     this.lblPlant.Location = new System.Drawing.Point(196, 123);
     this.lblPlant.Name = "lblPlant";
     this.lblPlant.Size = new System.Drawing.Size(12, 13);
     this.lblPlant.TabIndex = 11;
     this.lblPlant.Text = "---";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(83, 142);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(29, 13);
     this.labelControl12.TabIndex = 14;
     this.labelControl12.Text = "Series";
     //
     // lblSeries
     //
     this.lblSeries.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.lblSeries.Appearance.Options.UseForeColor = true;
     this.lblSeries.Location = new System.Drawing.Point(196, 142);
     this.lblSeries.Name = "lblSeries";
     this.lblSeries.Size = new System.Drawing.Size(12, 13);
     this.lblSeries.TabIndex = 13;
     this.lblSeries.Text = "---";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(83, 161);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(24, 13);
     this.labelControl14.TabIndex = 16;
     this.labelControl14.Text = "Body";
     //
     // lblBody
     //
     this.lblBody.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.lblBody.Appearance.Options.UseForeColor = true;
     this.lblBody.Location = new System.Drawing.Point(196, 161);
     this.lblBody.Name = "lblBody";
     this.lblBody.Size = new System.Drawing.Size(12, 13);
     this.lblBody.TabIndex = 15;
     this.lblBody.Text = "---";
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(401, 191);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 17;
     this.simpleButton2.Text = "Close";
     //
     // frmDecodeVIN
     //
     this.AcceptButton = this.simpleButton1;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.simpleButton2;
     this.ClientSize = new System.Drawing.Size(488, 226);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.labelControl14);
     this.Controls.Add(this.lblBody);
     this.Controls.Add(this.labelControl12);
     this.Controls.Add(this.lblSeries);
     this.Controls.Add(this.labelControl10);
     this.Controls.Add(this.lblPlant);
     this.Controls.Add(this.labelControl6);
     this.Controls.Add(this.labelControl7);
     this.Controls.Add(this.labelControl8);
     this.Controls.Add(this.labelControl9);
     this.Controls.Add(this.lblMakeyear);
     this.Controls.Add(this.lblTurbo);
     this.Controls.Add(this.lblEngineType);
     this.Controls.Add(this.lblCarModel);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.textEdit1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDecodeVIN";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "VIN decoder";
     this.Load += new System.EventHandler(this.frmDecodeVIN_Load);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#42
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();
     this.patientDocBgWorker = new System.ComponentModel.BackgroundWorker();
     this.searchTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeBgWorker = new System.ComponentModel.BackgroundWorker();
     this.loadBarTimer = new System.Windows.Forms.Timer(this.components);
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.commentTextBox = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.removeClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.addClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.claimantListBox = new System.Windows.Forms.ListBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.MedicalConditionsComboBoxEdit = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.SmokerNoCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.SmokerYesCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.patientDetailsGroupBox = new System.Windows.Forms.GroupBox();
     this.claimNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.physioComboBox = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.dvaTextBox = new DevExpress.XtraEditors.TextEdit();
     this.findPostCodeBtn = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.TitleComboBox = new System.Windows.Forms.ComboBox();
     this.postCodeTextBox = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.stateTextBox = new DevExpress.XtraEditors.TextEdit();
     this.genderFemaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.genderMaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.suburbComboBox = new System.Windows.Forms.ComboBox();
     this.addressTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.doBDateEdit = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.givenNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.surnameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.applyBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchResultProgressBar = new System.Windows.Forms.ProgressBar();
     this.newPatientBtn = new DevExpress.XtraEditors.SimpleButton();
     this.cancelBtn = new DevExpress.XtraEditors.SimpleButton();
     this.okBtn = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.displayGridControl = new DevExpress.XtraGrid.GridControl();
     this.displayGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.goBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchFieldTextBox = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.homePhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.mobileTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.workPhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.emailTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).BeginInit();
     this.patientDetailsGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // patientDocBgWorker
     //
     this.patientDocBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PatientBgWorkerDoWork);
     this.patientDocBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PatientBgWorkerRunWorkerCompleted);
     //
     // searchTimer
     //
     this.searchTimer.Interval = 1500;
     this.searchTimer.Tick += new System.EventHandler(this.SearchTimerTick);
     //
     // postCodeTimer
     //
     this.postCodeTimer.Interval = 1500;
     this.postCodeTimer.Tick += new System.EventHandler(this.PostCodeTimerTick);
     //
     // postCodeBgWorker
     //
     this.postCodeBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PostCodeBgWorkerDoWork);
     this.postCodeBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PostCodeBgWorkerRunWorkerCompleted);
     //
     // loadBarTimer
     //
     this.loadBarTimer.Interval = 300;
     this.loadBarTimer.Tick += new System.EventHandler(this.LoadTimerTick);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.commentTextBox);
     this.groupBox4.Location = new System.Drawing.Point(2, 498);
     this.groupBox4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Size = new System.Drawing.Size(326, 81);
     this.groupBox4.TabIndex = 65;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Comments";
     //
     // commentTextBox
     //
     this.commentTextBox.Location = new System.Drawing.Point(9, 18);
     this.commentTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.commentTextBox.Multiline = true;
     this.commentTextBox.Name = "commentTextBox";
     this.commentTextBox.Size = new System.Drawing.Size(310, 59);
     this.commentTextBox.TabIndex = 21;
     this.commentTextBox.TextChanged += new System.EventHandler(this.CommentTextBoxTextChanged);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.removeClaimantBtn);
     this.groupBox3.Controls.Add(this.addClaimantBtn);
     this.groupBox3.Controls.Add(this.claimantListBox);
     this.groupBox3.Location = new System.Drawing.Point(341, 404);
     this.groupBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Size = new System.Drawing.Size(228, 176);
     this.groupBox3.TabIndex = 64;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Claimants";
     //
     // removeClaimantBtn
     //
     this.removeClaimantBtn.Location = new System.Drawing.Point(150, 152);
     this.removeClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.removeClaimantBtn.Name = "removeClaimantBtn";
     this.removeClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.removeClaimantBtn.TabIndex = 40;
     this.removeClaimantBtn.TabStop = false;
     this.removeClaimantBtn.Text = "Remove";
     this.removeClaimantBtn.Click += new System.EventHandler(this.RemoveClaimantBtnClick);
     //
     // addClaimantBtn
     //
     this.addClaimantBtn.Location = new System.Drawing.Point(81, 152);
     this.addClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addClaimantBtn.Name = "addClaimantBtn";
     this.addClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.addClaimantBtn.TabIndex = 39;
     this.addClaimantBtn.TabStop = false;
     this.addClaimantBtn.Text = "Add";
     this.addClaimantBtn.Click += new System.EventHandler(this.AddClaimantBtnClick);
     //
     // claimantListBox
     //
     this.claimantListBox.DisplayMember = "LastName";
     this.claimantListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.claimantListBox.FormattingEnabled = true;
     this.claimantListBox.Location = new System.Drawing.Point(5, 18);
     this.claimantListBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimantListBox.Name = "claimantListBox";
     this.claimantListBox.Size = new System.Drawing.Size(210, 134);
     this.claimantListBox.TabIndex = 38;
     this.claimantListBox.TabStop = false;
     this.claimantListBox.ValueMember = "ClaimantID";
     this.claimantListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ClaimantListBoxDrawItem);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.MedicalConditionsComboBoxEdit);
     this.groupBox2.Controls.Add(this.labelControl14);
     this.groupBox2.Controls.Add(this.labelControl13);
     this.groupBox2.Controls.Add(this.SmokerNoCheckEdit);
     this.groupBox2.Controls.Add(this.SmokerYesCheckEdit);
     this.groupBox2.Location = new System.Drawing.Point(2, 404);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Size = new System.Drawing.Size(326, 89);
     this.groupBox2.TabIndex = 63;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Patient Medical Details";
     //
     // MedicalConditionsComboBoxEdit
     //
     this.MedicalConditionsComboBoxEdit.EditValue = "";
     this.MedicalConditionsComboBoxEdit.Location = new System.Drawing.Point(154, 20);
     this.MedicalConditionsComboBoxEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.MedicalConditionsComboBoxEdit.Name = "MedicalConditionsComboBoxEdit";
     this.MedicalConditionsComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MedicalConditionsComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Cardiac Pacemaker"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Loss of Weight"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Heart Condition"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Dizziness"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Artificial joint"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Epilepsy"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Surgery in the past 3 months")});
     this.MedicalConditionsComboBoxEdit.Size = new System.Drawing.Size(165, 20);
     this.MedicalConditionsComboBoxEdit.TabIndex = 19;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(11, 25);
     this.labelControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(88, 13);
     this.labelControl14.TabIndex = 30;
     this.labelControl14.Text = "Medical Conditions";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 67);
     this.labelControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(117, 13);
     this.labelControl13.TabIndex = 29;
     this.labelControl13.Text = "Is the Patient a Smoker?";
     //
     // SmokerNoCheckEdit
     //
     this.SmokerNoCheckEdit.Location = new System.Drawing.Point(199, 66);
     this.SmokerNoCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerNoCheckEdit.Name = "SmokerNoCheckEdit";
     this.SmokerNoCheckEdit.Properties.Caption = "no";
     this.SmokerNoCheckEdit.Size = new System.Drawing.Size(38, 19);
     this.SmokerNoCheckEdit.TabIndex = 16;
     //
     // SmokerYesCheckEdit
     //
     this.SmokerYesCheckEdit.Location = new System.Drawing.Point(153, 66);
     this.SmokerYesCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerYesCheckEdit.Name = "SmokerYesCheckEdit";
     this.SmokerYesCheckEdit.Properties.Caption = "Yes";
     this.SmokerYesCheckEdit.Size = new System.Drawing.Size(41, 19);
     this.SmokerYesCheckEdit.TabIndex = 15;
     //
     // patientDetailsGroupBox
     //
     this.patientDetailsGroupBox.Controls.Add(this.claimNoTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl1);
     this.patientDetailsGroupBox.Controls.Add(this.physioComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl12);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl11);
     this.patientDetailsGroupBox.Controls.Add(this.dvaTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.findPostCodeBtn);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl17);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl19);
     this.patientDetailsGroupBox.Controls.Add(this.emailTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl18);
     this.patientDetailsGroupBox.Controls.Add(this.TitleComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.postCodeTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl2);
     this.patientDetailsGroupBox.Controls.Add(this.stateTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderFemaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderMaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.suburbComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.addressTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl10);
     this.patientDetailsGroupBox.Controls.Add(this.workPhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl9);
     this.patientDetailsGroupBox.Controls.Add(this.mobileTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl8);
     this.patientDetailsGroupBox.Controls.Add(this.homePhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl7);
     this.patientDetailsGroupBox.Controls.Add(this.doBDateEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl6);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl5);
     this.patientDetailsGroupBox.Controls.Add(this.givenNameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl4);
     this.patientDetailsGroupBox.Controls.Add(this.surnameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl3);
     this.patientDetailsGroupBox.Location = new System.Drawing.Point(2, 205);
     this.patientDetailsGroupBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Name = "patientDetailsGroupBox";
     this.patientDetailsGroupBox.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Size = new System.Drawing.Size(567, 194);
     this.patientDetailsGroupBox.TabIndex = 3;
     this.patientDetailsGroupBox.TabStop = false;
     this.patientDetailsGroupBox.Text = "Enter new Patient";
     //
     // claimNoTextEdit
     //
     this.claimNoTextEdit.Location = new System.Drawing.Point(449, 160);
     this.claimNoTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimNoTextEdit.Name = "claimNoTextEdit";
     this.claimNoTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.claimNoTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.claimNoTextEdit.Properties.Mask.PlaceHolder = '*';
     this.claimNoTextEdit.Size = new System.Drawing.Size(104, 20);
     this.claimNoTextEdit.TabIndex = 67;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(387, 163);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(36, 13);
     this.labelControl1.TabIndex = 66;
     this.labelControl1.Text = "Claim #";
     //
     // physioComboBox
     //
     this.physioComboBox.DisplayMember = "PhysioID";
     this.physioComboBox.FormattingEnabled = true;
     this.physioComboBox.Location = new System.Drawing.Point(433, 51);
     this.physioComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.physioComboBox.Name = "physioComboBox";
     this.physioComboBox.Size = new System.Drawing.Size(86, 21);
     this.physioComboBox.TabIndex = 14;
     this.physioComboBox.ValueMember = "PhysioID";
     this.physioComboBox.TextChanged += new System.EventHandler(this.PhysioComboBoxTextChanged);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(391, 56);
     this.labelControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(31, 13);
     this.labelControl12.TabIndex = 65;
     this.labelControl12.Text = "Physio";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(243, 163);
     this.labelControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(28, 13);
     this.labelControl11.TabIndex = 64;
     this.labelControl11.Text = "DVA#";
     //
     // dvaTextBox
     //
     this.dvaTextBox.Location = new System.Drawing.Point(285, 158);
     this.dvaTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.dvaTextBox.Name = "dvaTextBox";
     this.dvaTextBox.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.dvaTextBox.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.dvaTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.dvaTextBox.Properties.Mask.PlaceHolder = '*';
     this.dvaTextBox.Size = new System.Drawing.Size(86, 20);
     this.dvaTextBox.TabIndex = 18;
     this.dvaTextBox.EditValueChanged += new System.EventHandler(this.DvaTextBoxEditValueChanged);
     //
     // findPostCodeBtn
     //
     this.findPostCodeBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.findPostCodeBtn.Appearance.Options.UseFont = true;
     this.findPostCodeBtn.Location = new System.Drawing.Point(475, 104);
     this.findPostCodeBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.findPostCodeBtn.Name = "findPostCodeBtn";
     this.findPostCodeBtn.Size = new System.Drawing.Size(79, 19);
     this.findPostCodeBtn.TabIndex = 17;
     this.findPostCodeBtn.Text = "Find Post Code";
     this.findPostCodeBtn.Click += new System.EventHandler(this.FindPostCodeBtnClick);
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(185, 136);
     this.labelControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(85, 13);
     this.labelControl19.TabIndex = 62;
     this.labelControl19.Text = "State / Post Code";
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(235, 110);
     this.labelControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(34, 13);
     this.labelControl18.TabIndex = 60;
     this.labelControl18.Text = "Suburb";
     //
     // TitleComboBox
     //
     this.TitleComboBox.FormattingEnabled = true;
     this.TitleComboBox.Items.AddRange(new object[] {
     "Mr",
     "Ms",
     "Miss",
     "Mrs",
     "Doctor"});
     this.TitleComboBox.Location = new System.Drawing.Point(285, 25);
     this.TitleComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.TitleComboBox.Name = "TitleComboBox";
     this.TitleComboBox.Size = new System.Drawing.Size(86, 21);
     this.TitleComboBox.TabIndex = 10;
     this.TitleComboBox.TextChanged += new System.EventHandler(this.TitleComboBoxTextChanged);
     //
     // postCodeTextBox
     //
     this.postCodeTextBox.Location = new System.Drawing.Point(387, 132);
     this.postCodeTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.postCodeTextBox.Name = "postCodeTextBox";
     this.postCodeTextBox.Size = new System.Drawing.Size(86, 20);
     this.postCodeTextBox.TabIndex = 61;
     this.postCodeTextBox.TabStop = false;
     this.postCodeTextBox.EditValueChanged += new System.EventHandler(this.PostCodeTextBoxEditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(391, 29);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(35, 13);
     this.labelControl2.TabIndex = 56;
     this.labelControl2.Text = "Gender";
     //
     // stateTextBox
     //
     this.stateTextBox.EditValue = "";
     this.stateTextBox.Location = new System.Drawing.Point(285, 132);
     this.stateTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.stateTextBox.Name = "stateTextBox";
     this.stateTextBox.Size = new System.Drawing.Size(86, 20);
     this.stateTextBox.TabIndex = 60;
     this.stateTextBox.TabStop = false;
     this.stateTextBox.EditValueChanged += new System.EventHandler(this.StateTextBoxEditValueChanged);
     //
     // genderFemaleTickBox
     //
     this.genderFemaleTickBox.Location = new System.Drawing.Point(477, 28);
     this.genderFemaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderFemaleTickBox.Name = "genderFemaleTickBox";
     this.genderFemaleTickBox.Properties.Caption = "Female";
     this.genderFemaleTickBox.Size = new System.Drawing.Size(57, 19);
     this.genderFemaleTickBox.TabIndex = 12;
     this.genderFemaleTickBox.CheckedChanged += new System.EventHandler(this.GenderFemaleTickBoxCheckedChanged);
     //
     // genderMaleTickBox
     //
     this.genderMaleTickBox.Location = new System.Drawing.Point(431, 28);
     this.genderMaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderMaleTickBox.Name = "genderMaleTickBox";
     this.genderMaleTickBox.Properties.Caption = "Male";
     this.genderMaleTickBox.Size = new System.Drawing.Size(41, 19);
     this.genderMaleTickBox.TabIndex = 11;
     this.genderMaleTickBox.CheckedChanged += new System.EventHandler(this.GenderMaleTickBoxCheckedChanged);
     //
     // suburbComboBox
     //
     this.suburbComboBox.DisplayMember = "Location";
     this.suburbComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.suburbComboBox.FormattingEnabled = true;
     this.suburbComboBox.Location = new System.Drawing.Point(285, 104);
     this.suburbComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.suburbComboBox.Name = "suburbComboBox";
     this.suburbComboBox.Size = new System.Drawing.Size(187, 22);
     this.suburbComboBox.TabIndex = 16;
     this.suburbComboBox.ValueMember = "PostCodeID";
     this.suburbComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.SuburbComboBoxDrawItem);
     this.suburbComboBox.TextChanged += new System.EventHandler(this.SuburbComboBoxTextChanged);
     this.suburbComboBox.Leave += new System.EventHandler(this.SuburbComboBoxLeave);
     //
     // addressTextEdit
     //
     this.addressTextEdit.Location = new System.Drawing.Point(285, 79);
     this.addressTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addressTextEdit.Name = "addressTextEdit";
     this.addressTextEdit.Size = new System.Drawing.Size(268, 20);
     this.addressTextEdit.TabIndex = 15;
     this.addressTextEdit.EditValueChanged += new System.EventHandler(this.AddressTextEditEditValueChanged);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(231, 81);
     this.labelControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(39, 13);
     this.labelControl10.TabIndex = 48;
     this.labelControl10.Text = "Address";
     //
     // doBDateEdit
     //
     this.doBDateEdit.EditValue = null;
     this.doBDateEdit.Location = new System.Drawing.Point(285, 51);
     this.doBDateEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.doBDateEdit.Name = "doBDateEdit";
     this.doBDateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.doBDateEdit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.doBDateEdit.Size = new System.Drawing.Size(86, 20);
     this.doBDateEdit.TabIndex = 13;
     this.doBDateEdit.EditValueChanged += new System.EventHandler(this.DoBDateEditEditValueChanged);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(210, 56);
     this.labelControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(61, 13);
     this.labelControl6.TabIndex = 40;
     this.labelControl6.Text = "Date of Birth";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(249, 30);
     this.labelControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(20, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Title";
     //
     // givenNameTextEdit
     //
     this.givenNameTextEdit.Location = new System.Drawing.Point(89, 51);
     this.givenNameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.givenNameTextEdit.Name = "givenNameTextEdit";
     this.givenNameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.givenNameTextEdit.TabIndex = 5;
     this.givenNameTextEdit.EditValueChanged += new System.EventHandler(this.GivenNameTextEditEditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(9, 54);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 37;
     this.labelControl4.Text = "Given Names";
     //
     // surnameTextEdit
     //
     this.surnameTextEdit.Location = new System.Drawing.Point(89, 25);
     this.surnameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.surnameTextEdit.Name = "surnameTextEdit";
     this.surnameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.surnameTextEdit.TabIndex = 4;
     this.surnameTextEdit.EditValueChanged += new System.EventHandler(this.SurnameTextEditEditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(27, 30);
     this.labelControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 35;
     this.labelControl3.Text = "Surname";
     //
     // applyBtn
     //
     this.applyBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.applyBtn.Appearance.Options.UseFont = true;
     this.applyBtn.Location = new System.Drawing.Point(407, 586);
     this.applyBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.applyBtn.Name = "applyBtn";
     this.applyBtn.Size = new System.Drawing.Size(79, 19);
     this.applyBtn.TabIndex = 75;
     this.applyBtn.Text = "Apply(F12)";
     this.applyBtn.Click += new System.EventHandler(this.ApplyBtnClick);
     //
     // searchResultProgressBar
     //
     this.searchResultProgressBar.Location = new System.Drawing.Point(91, 586);
     this.searchResultProgressBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchResultProgressBar.Name = "searchResultProgressBar";
     this.searchResultProgressBar.Size = new System.Drawing.Size(198, 19);
     this.searchResultProgressBar.TabIndex = 74;
     //
     // newPatientBtn
     //
     this.newPatientBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.newPatientBtn.Appearance.Options.UseFont = true;
     this.newPatientBtn.Location = new System.Drawing.Point(2, 586);
     this.newPatientBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.newPatientBtn.Name = "newPatientBtn";
     this.newPatientBtn.Size = new System.Drawing.Size(80, 19);
     this.newPatientBtn.TabIndex = 73;
     this.newPatientBtn.TabStop = false;
     this.newPatientBtn.Text = "NEW(CTRL+N)";
     this.newPatientBtn.Click += new System.EventHandler(this.NewPatientBtnClick);
     //
     // cancelBtn
     //
     this.cancelBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.cancelBtn.Appearance.Options.UseFont = true;
     this.cancelBtn.Location = new System.Drawing.Point(491, 586);
     this.cancelBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cancelBtn.Name = "cancelBtn";
     this.cancelBtn.Size = new System.Drawing.Size(79, 19);
     this.cancelBtn.TabIndex = 72;
     this.cancelBtn.TabStop = false;
     this.cancelBtn.Text = "Cancel(ESC)";
     this.cancelBtn.Click += new System.EventHandler(this.BtnCancelClick);
     //
     // okBtn
     //
     this.okBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.okBtn.Appearance.Options.UseFont = true;
     this.okBtn.Location = new System.Drawing.Point(323, 586);
     this.okBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.okBtn.Name = "okBtn";
     this.okBtn.Size = new System.Drawing.Size(79, 19);
     this.okBtn.TabIndex = 71;
     this.okBtn.Text = "OK(F2)";
     this.okBtn.Click += new System.EventHandler(this.BtnOkClick);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.displayGridControl);
     this.groupBox5.Controls.Add(this.goBtn);
     this.groupBox5.Controls.Add(this.searchFieldTextBox);
     this.groupBox5.Controls.Add(this.label1);
     this.groupBox5.Location = new System.Drawing.Point(2, 2);
     this.groupBox5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Size = new System.Drawing.Size(567, 198);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select a Doctor";
     //
     // displayGridControl
     //
     this.displayGridControl.Location = new System.Drawing.Point(0, 33);
     this.displayGridControl.MainView = this.displayGridView;
     this.displayGridControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.displayGridControl.Name = "displayGridControl";
     this.displayGridControl.Size = new System.Drawing.Size(562, 162);
     this.displayGridControl.TabIndex = 2;
     this.displayGridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.displayGridView});
     this.displayGridControl.Click += new System.EventHandler(this.DisplayGridControlClick);
     //
     // displayGridView
     //
     this.displayGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.displayGridView.GridControl = this.displayGridControl;
     this.displayGridView.Name = "displayGridView";
     this.displayGridView.OptionsBehavior.Editable = false;
     this.displayGridView.OptionsBehavior.FocusLeaveOnTab = true;
     this.displayGridView.OptionsBehavior.ReadOnly = true;
     this.displayGridView.OptionsNavigation.UseTabKey = false;
     this.displayGridView.OptionsView.ShowGroupPanel = false;
     this.displayGridView.ViewCaption = "Results:";
     this.displayGridView.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.DisplayGridViewRowCellClick);
     this.displayGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DisplayGridViewKeyDown);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "First Name";
     this.gridColumn1.FieldName = "FirstNames";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Last Name";
     this.gridColumn2.FieldName = "LastName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Gender";
     this.gridColumn3.FieldName = "Sex";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "DVA #";
     this.gridColumn4.FieldName = "DVANumber";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // goBtn
     //
     this.goBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.goBtn.Appearance.Options.UseFont = true;
     this.goBtn.Location = new System.Drawing.Point(539, 9);
     this.goBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.goBtn.Name = "goBtn";
     this.goBtn.Size = new System.Drawing.Size(23, 19);
     this.goBtn.TabIndex = 0;
     this.goBtn.TabStop = false;
     this.goBtn.Text = "go";
     this.goBtn.Click += new System.EventHandler(this.GoBtnClick);
     //
     // searchFieldTextBox
     //
     this.searchFieldTextBox.Location = new System.Drawing.Point(279, 10);
     this.searchFieldTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchFieldTextBox.Name = "searchFieldTextBox";
     this.searchFieldTextBox.Size = new System.Drawing.Size(256, 21);
     this.searchFieldTextBox.TabIndex = 1;
     this.searchFieldTextBox.TextChanged += new System.EventHandler(this.SearchFieldTextBoxTextChanged);
     this.searchFieldTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchFieldTextBoxKeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(228, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 13);
     this.label1.TabIndex = 7;
     this.label1.Text = "Search";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(11, 81);
     this.labelControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(60, 13);
     this.labelControl7.TabIndex = 42;
     this.labelControl7.Text = "Home Phone";
     //
     // homePhoneTextEdit
     //
     this.homePhoneTextEdit.Location = new System.Drawing.Point(89, 79);
     this.homePhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.homePhoneTextEdit.Name = "homePhoneTextEdit";
     this.homePhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.homePhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.homePhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.homePhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.homePhoneTextEdit.TabIndex = 6;
     this.homePhoneTextEdit.EditValueChanged += new System.EventHandler(this.HomePhoneTextEditEditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 134);
     this.labelControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(30, 13);
     this.labelControl8.TabIndex = 44;
     this.labelControl8.Text = "Mobile";
     //
     // mobileTextEdit
     //
     this.mobileTextEdit.Location = new System.Drawing.Point(89, 129);
     this.mobileTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.mobileTextEdit.Name = "mobileTextEdit";
     this.mobileTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.mobileTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.mobileTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.mobileTextEdit.Properties.Mask.PlaceHolder = '*';
     this.mobileTextEdit.Size = new System.Drawing.Size(86, 20);
     this.mobileTextEdit.TabIndex = 8;
     this.mobileTextEdit.EditValueChanged += new System.EventHandler(this.MobileTextEditEditValueChanged);
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(14, 106);
     this.labelControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(58, 13);
     this.labelControl9.TabIndex = 46;
     this.labelControl9.Text = "Work Phone";
     //
     // workPhoneTextEdit
     //
     this.workPhoneTextEdit.Location = new System.Drawing.Point(89, 104);
     this.workPhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.workPhoneTextEdit.Name = "workPhoneTextEdit";
     this.workPhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.workPhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.workPhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.workPhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.workPhoneTextEdit.TabIndex = 7;
     this.workPhoneTextEdit.EditValueChanged += new System.EventHandler(this.WorkPhoneTextEditEditValueChanged);
     //
     // emailTextEdit
     //
     this.emailTextEdit.Location = new System.Drawing.Point(89, 156);
     this.emailTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.emailTextEdit.Name = "emailTextEdit";
     this.emailTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.emailTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.emailTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.emailTextEdit.Properties.Mask.PlaceHolder = '*';
     this.emailTextEdit.Size = new System.Drawing.Size(86, 20);
     this.emailTextEdit.TabIndex = 9;
     this.emailTextEdit.EditValueChanged += new System.EventHandler(this.EmailTextEditEditValueChanged);
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(46, 161);
     this.labelControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(24, 13);
     this.labelControl17.TabIndex = 59;
     this.labelControl17.Text = "Email";
     //
     // patientViewForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(571, 607);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.applyBtn);
     this.Controls.Add(this.searchResultProgressBar);
     this.Controls.Add(this.newPatientBtn);
     this.Controls.Add(this.cancelBtn);
     this.Controls.Add(this.okBtn);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.patientDetailsGroupBox);
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "patientViewForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "NewPatientViewForm";
     this.Load += new System.EventHandler(this.PatientViewFormLoad);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatientViewFormKeyDown);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).EndInit();
     this.patientDetailsGroupBox.ResumeLayout(false);
     this.patientDetailsGroupBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UsersFrm));
     this.groupControlInsert = new DevExpress.XtraEditors.GroupControl();
     this.CEAddActive = new DevExpress.XtraEditors.CheckEdit();
     this.BtnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.TxtAddItem = new DevExpress.XtraEditors.TextEdit();
     this.TxtAddPass2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.TxtAddPass1 = new DevExpress.XtraEditors.TextEdit();
     this.groupControlUpdate = new DevExpress.XtraEditors.GroupControl();
     this.CEEditActive = new DevExpress.XtraEditors.CheckEdit();
     this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.TxtEditPass2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtEditPass1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtEditItem = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.BtnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInsert)).BeginInit();
     this.groupControlInsert.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEAddActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).BeginInit();
     this.groupControlUpdate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEEditActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlInsert
     //
     this.groupControlInsert.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlInsert.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlInsert.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlInsert.Controls.Add(this.CEAddActive);
     this.groupControlInsert.Controls.Add(this.BtnAdd);
     this.groupControlInsert.Controls.Add(this.TxtAddItem);
     this.groupControlInsert.Controls.Add(this.TxtAddPass2);
     this.groupControlInsert.Controls.Add(this.labelControl3);
     this.groupControlInsert.Controls.Add(this.labelControl7);
     this.groupControlInsert.Controls.Add(this.labelControl6);
     this.groupControlInsert.Controls.Add(this.TxtAddPass1);
     this.groupControlInsert.Location = new System.Drawing.Point(9, 239);
     this.groupControlInsert.Name = "groupControlInsert";
     this.groupControlInsert.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlInsert.Size = new System.Drawing.Size(341, 153);
     this.groupControlInsert.TabIndex = 7;
     this.groupControlInsert.Text = "اضافة مستخدم جديد";
     //
     // CEAddActive
     //
     this.CEAddActive.EditValue = true;
     this.CEAddActive.Location = new System.Drawing.Point(143, 99);
     this.CEAddActive.Name = "CEAddActive";
     this.CEAddActive.Properties.Caption = "متاح";
     this.CEAddActive.Size = new System.Drawing.Size(62, 19);
     this.CEAddActive.TabIndex = 10;
     //
     // BtnAdd
     //
     this.BtnAdd.Enabled = false;
     this.BtnAdd.Location = new System.Drawing.Point(95, 124);
     this.BtnAdd.Name = "BtnAdd";
     this.BtnAdd.Size = new System.Drawing.Size(110, 23);
     this.BtnAdd.TabIndex = 11;
     this.BtnAdd.Text = "اضافه";
     this.BtnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
     //
     // TxtAddItem
     //
     this.TxtAddItem.Location = new System.Drawing.Point(32, 24);
     this.TxtAddItem.Name = "TxtAddItem";
     this.TxtAddItem.Properties.MaxLength = 25;
     this.TxtAddItem.Properties.NullValuePrompt = "ادخل اسم";
     this.TxtAddItem.Size = new System.Drawing.Size(173, 19);
     this.TxtAddItem.TabIndex = 7;
     this.TxtAddItem.EditValueChanged += new System.EventHandler(this.TxtNewItem_EditValueChanged);
     //
     // TxtAddPass2
     //
     this.TxtAddPass2.Location = new System.Drawing.Point(32, 74);
     this.TxtAddPass2.Name = "TxtAddPass2";
     this.TxtAddPass2.Properties.MaxLength = 25;
     this.TxtAddPass2.Properties.NullValuePrompt = "اعد كتابة كلمة المرور";
     this.TxtAddPass2.Properties.PasswordChar = '*';
     this.TxtAddPass2.Size = new System.Drawing.Size(173, 19);
     this.TxtAddPass2.TabIndex = 9;
     this.TxtAddPass2.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(225, 24);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(74, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المستخدم";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(211, 77);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(76, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "تأكيد كلمة المرور";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(249, 52);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 13);
     this.labelControl6.TabIndex = 0;
     this.labelControl6.Text = "كلمة المرور";
     //
     // TxtAddPass1
     //
     this.TxtAddPass1.Location = new System.Drawing.Point(32, 49);
     this.TxtAddPass1.Name = "TxtAddPass1";
     this.TxtAddPass1.Properties.MaxLength = 25;
     this.TxtAddPass1.Properties.NullValuePrompt = "ادخل كلمة المرور";
     this.TxtAddPass1.Properties.PasswordChar = '*';
     this.TxtAddPass1.Size = new System.Drawing.Size(173, 19);
     this.TxtAddPass1.TabIndex = 8;
     this.TxtAddPass1.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // groupControlUpdate
     //
     this.groupControlUpdate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlUpdate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlUpdate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlUpdate.Controls.Add(this.CEEditActive);
     this.groupControlUpdate.Controls.Add(this.BtnUpdate);
     this.groupControlUpdate.Controls.Add(this.TxtEditPass2);
     this.groupControlUpdate.Controls.Add(this.labelControl5);
     this.groupControlUpdate.Controls.Add(this.TxtEditPass1);
     this.groupControlUpdate.Controls.Add(this.labelControl4);
     this.groupControlUpdate.Controls.Add(this.TxtEditItem);
     this.groupControlUpdate.Controls.Add(this.labelControl2);
     this.groupControlUpdate.Location = new System.Drawing.Point(9, 75);
     this.groupControlUpdate.Name = "groupControlUpdate";
     this.groupControlUpdate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlUpdate.Size = new System.Drawing.Size(341, 158);
     this.groupControlUpdate.TabIndex = 2;
     this.groupControlUpdate.Text = "تعديل مستخدم";
     //
     // CEEditActive
     //
     this.CEEditActive.EditValue = true;
     this.CEEditActive.Location = new System.Drawing.Point(141, 104);
     this.CEEditActive.Name = "CEEditActive";
     this.CEEditActive.Properties.Caption = "متاح";
     this.CEEditActive.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.CEEditActive.Size = new System.Drawing.Size(64, 19);
     this.CEEditActive.TabIndex = 5;
     //
     // BtnUpdate
     //
     this.BtnUpdate.Enabled = false;
     this.BtnUpdate.Location = new System.Drawing.Point(95, 129);
     this.BtnUpdate.Name = "BtnUpdate";
     this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
     this.BtnUpdate.TabIndex = 6;
     this.BtnUpdate.Text = "تعديل";
     this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // TxtEditPass2
     //
     this.TxtEditPass2.Location = new System.Drawing.Point(32, 79);
     this.TxtEditPass2.Name = "TxtEditPass2";
     this.TxtEditPass2.Properties.MaxLength = 25;
     this.TxtEditPass2.Properties.NullValuePrompt = "اعد كتابة كلمة المرور";
     this.TxtEditPass2.Properties.PasswordChar = '*';
     this.TxtEditPass2.Size = new System.Drawing.Size(173, 19);
     this.TxtEditPass2.TabIndex = 4;
     this.TxtEditPass2.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(211, 82);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(76, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "تأكيد كلمة المرور";
     //
     // TxtEditPass1
     //
     this.TxtEditPass1.Location = new System.Drawing.Point(32, 54);
     this.TxtEditPass1.Name = "TxtEditPass1";
     this.TxtEditPass1.Properties.MaxLength = 25;
     this.TxtEditPass1.Properties.NullValuePrompt = "ادخل كلمة المرور";
     this.TxtEditPass1.Properties.PasswordChar = '*';
     this.TxtEditPass1.Size = new System.Drawing.Size(173, 19);
     this.TxtEditPass1.TabIndex = 3;
     this.TxtEditPass1.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(247, 57);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(52, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "كلمة المرور";
     //
     // TxtEditItem
     //
     this.TxtEditItem.Location = new System.Drawing.Point(32, 29);
     this.TxtEditItem.Name = "TxtEditItem";
     this.TxtEditItem.Properties.MaxLength = 25;
     this.TxtEditItem.Properties.NullValuePrompt = "ادخل اسم";
     this.TxtEditItem.Size = new System.Drawing.Size(173, 19);
     this.TxtEditItem.TabIndex = 2;
     this.TxtEditItem.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(233, 32);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تعديل الاسم";
     //
     // groupControlSelect
     //
     this.groupControlSelect.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.BtnDelete);
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Location = new System.Drawing.Point(9, 10);
     this.groupControlSelect.Name = "groupControlSelect";
     this.groupControlSelect.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlSelect.Size = new System.Drawing.Size(341, 59);
     this.groupControlSelect.TabIndex = 0;
     this.groupControlSelect.Text = "جميع المستخدمين";
     //
     // BtnDelete
     //
     this.BtnDelete.Enabled = false;
     this.BtnDelete.Image = ((System.Drawing.Image)(resources.GetObject("BtnDelete.Image")));
     this.BtnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnDelete.Location = new System.Drawing.Point(21, 26);
     this.BtnDelete.Name = "BtnDelete";
     this.BtnDelete.Size = new System.Drawing.Size(44, 22);
     this.BtnDelete.TabIndex = 1;
     this.BtnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
     //
     // LUEItems
     //
     this.LUEItems.Location = new System.Drawing.Point(68, 29);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserName", "اسم المستخدم", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(173, 19);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(247, 32);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختار مستخدم";
     //
     // BtnRefresh
     //
     this.BtnRefresh.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.BtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("BtnRefresh.Image")));
     this.BtnRefresh.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnRefresh.Location = new System.Drawing.Point(356, 79);
     this.BtnRefresh.Name = "BtnRefresh";
     this.BtnRefresh.Size = new System.Drawing.Size(31, 241);
     this.BtnRefresh.TabIndex = 12;
     this.BtnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
     //
     // UsersFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(394, 398);
     this.Controls.Add(this.BtnRefresh);
     this.Controls.Add(this.groupControlInsert);
     this.Controls.Add(this.groupControlUpdate);
     this.Controls.Add(this.groupControlSelect);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "UsersFrm";
     this.Text = "المستخدمين";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInsert)).EndInit();
     this.groupControlInsert.ResumeLayout(false);
     this.groupControlInsert.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEAddActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).EndInit();
     this.groupControlUpdate.ResumeLayout(false);
     this.groupControlUpdate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEEditActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 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);
 }
 /// <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()
 {
     this.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
     this.checkEditAll = new DevExpress.XtraEditors.CheckEdit();
     this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit_database = new DevExpress.XtraEditors.TextEdit();
     this.textEdit_vacantroom = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit_database = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_vacantroom = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_payment = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_billingdate = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_endofbook = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_checkout = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_checkin = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_email = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.textEdit_email = new DevExpress.XtraEditors.TextEdit();
     this.labelControlEmail = new DevExpress.XtraEditors.LabelControl();
     this.labelControlSampleEmail = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
     this.groupControlWarning.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditAll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
     this.panelControlSetting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_database.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_vacantroom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_database.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_vacantroom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_payment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_billingdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_endofbook.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkout.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_email.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_email.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControlWarning
     //
     this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
     this.groupControlWarning.Controls.Add(this.checkEditAll);
     this.groupControlWarning.Controls.Add(this.panelControlSetting);
     this.groupControlWarning.Location = new System.Drawing.Point(13, 13);
     this.groupControlWarning.Name = "groupControlWarning";
     this.groupControlWarning.Size = new System.Drawing.Size(599, 244);
     this.groupControlWarning.TabIndex = 342;
     this.groupControlWarning.Text = "รายการแจ้งเตือน";
     //
     // checkEditAll
     //
     this.checkEditAll.Location = new System.Drawing.Point(15, 25);
     this.checkEditAll.Name = "checkEditAll";
     this.checkEditAll.Properties.Caption = "เลือกทั้งหมด";
     this.checkEditAll.Size = new System.Drawing.Size(152, 19);
     this.checkEditAll.TabIndex = 1;
     //
     // panelControlSetting
     //
     this.panelControlSetting.Controls.Add(this.labelControl2);
     this.panelControlSetting.Controls.Add(this.labelControl1);
     this.panelControlSetting.Controls.Add(this.textEdit_database);
     this.panelControlSetting.Controls.Add(this.textEdit_vacantroom);
     this.panelControlSetting.Controls.Add(this.checkEdit_database);
     this.panelControlSetting.Controls.Add(this.checkEdit_vacantroom);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_payment);
     this.panelControlSetting.Controls.Add(this.checkEdit_billingdate);
     this.panelControlSetting.Controls.Add(this.checkEdit_endofbook);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkout);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkin);
     this.panelControlSetting.Location = new System.Drawing.Point(17, 50);
     this.panelControlSetting.Name = "panelControlSetting";
     this.panelControlSetting.Size = new System.Drawing.Size(564, 181);
     this.panelControlSetting.TabIndex = 0;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(434, 158);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(13, 13);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "GB";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(434, 131);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(65, 13);
     this.labelControl1.TabIndex = 3;
     this.labelControl1.Text = "(A)  (0.2-1.0)";
     //
     // textEdit_database
     //
     this.textEdit_database.EditValue = "1.000";
     this.textEdit_database.Location = new System.Drawing.Point(368, 154);
     this.textEdit_database.Name = "textEdit_database";
     this.textEdit_database.Properties.Mask.EditMask = "([1]){1}\\.([0]){2}|0\\.([0-9]){1}([2-9]){1}";
     this.textEdit_database.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit_database.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit_database.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEdit_database.Size = new System.Drawing.Size(60, 20);
     this.textEdit_database.TabIndex = 2;
     //
     // textEdit_vacantroom
     //
     this.textEdit_vacantroom.EditValue = "0.2";
     this.textEdit_vacantroom.Location = new System.Drawing.Point(368, 128);
     this.textEdit_vacantroom.Name = "textEdit_vacantroom";
     this.textEdit_vacantroom.Properties.Mask.BeepOnError = true;
     this.textEdit_vacantroom.Properties.Mask.EditMask = "([1]){1}\\.([0]){2}|0\\.([0-9]){1}([2-9]){1}";
     this.textEdit_vacantroom.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit_vacantroom.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit_vacantroom.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEdit_vacantroom.Size = new System.Drawing.Size(60, 20);
     this.textEdit_vacantroom.TabIndex = 2;
     //
     // checkEdit_database
     //
     this.checkEdit_database.Location = new System.Drawing.Point(17, 155);
     this.checkEdit_database.Name = "checkEdit_database";
     this.checkEdit_database.Properties.Caption = "เมื่อขนาดของฐานโฟลเดอร์ฐานข้อมูลสำรองมีขนาดมากกว่า";
     this.checkEdit_database.Size = new System.Drawing.Size(340, 19);
     this.checkEdit_database.TabIndex = 1;
     //
     // checkEdit_vacantroom
     //
     this.checkEdit_vacantroom.Location = new System.Drawing.Point(17, 130);
     this.checkEdit_vacantroom.Name = "checkEdit_vacantroom";
     this.checkEdit_vacantroom.Properties.Caption = "กรณีห้องว่างแต่มีกระแสไฟฟ้าไหลตั้งแต่";
     this.checkEdit_vacantroom.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_vacantroom.TabIndex = 1;
     //
     // checkEdit_overdue_payment
     //
     this.checkEdit_overdue_payment.Location = new System.Drawing.Point(17, 105);
     this.checkEdit_overdue_payment.Name = "checkEdit_overdue_payment";
     this.checkEdit_overdue_payment.Properties.Caption = "เมื่อเกินกำหนดชำระเงิน";
     this.checkEdit_overdue_payment.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_payment.TabIndex = 1;
     //
     // checkEdit_billingdate
     //
     this.checkEdit_billingdate.Location = new System.Drawing.Point(17, 80);
     this.checkEdit_billingdate.Name = "checkEdit_billingdate";
     this.checkEdit_billingdate.Properties.Caption = "เมื่อถึงกำหนดวันตัดรอบบิล";
     this.checkEdit_billingdate.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_billingdate.TabIndex = 1;
     //
     // checkEdit_endofbook
     //
     this.checkEdit_endofbook.Location = new System.Drawing.Point(17, 55);
     this.checkEdit_endofbook.Name = "checkEdit_endofbook";
     this.checkEdit_endofbook.Properties.Caption = "เมื่อเกินวันที่สิ้นสุดการจอง";
     this.checkEdit_endofbook.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_endofbook.TabIndex = 1;
     //
     // checkEdit_overdue_checkout
     //
     this.checkEdit_overdue_checkout.Location = new System.Drawing.Point(17, 30);
     this.checkEdit_overdue_checkout.Name = "checkEdit_overdue_checkout";
     this.checkEdit_overdue_checkout.Properties.Caption = "เมื่อเกินกำหนดวันที่ย้ายออก";
     this.checkEdit_overdue_checkout.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_checkout.TabIndex = 1;
     //
     // checkEdit_overdue_checkin
     //
     this.checkEdit_overdue_checkin.Location = new System.Drawing.Point(17, 5);
     this.checkEdit_overdue_checkin.Name = "checkEdit_overdue_checkin";
     this.checkEdit_overdue_checkin.Properties.Caption = "เมื่อเกินกำหนดวันที่ย้ายเข้า";
     this.checkEdit_overdue_checkin.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_checkin.TabIndex = 1;
     //
     // checkEdit_email
     //
     this.checkEdit_email.Location = new System.Drawing.Point(15, 5);
     this.checkEdit_email.Name = "checkEdit_email";
     this.checkEdit_email.Properties.Caption = "ต้องการส่งรายการแจ้งเตือนทางอีเมล์";
     this.checkEdit_email.Size = new System.Drawing.Size(277, 19);
     this.checkEdit_email.TabIndex = 4;
     this.checkEdit_email.Visible = false;
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.textEdit_email);
     this.panelControl3.Controls.Add(this.labelControlEmail);
     this.panelControl3.Controls.Add(this.labelControlSampleEmail);
     this.panelControl3.Controls.Add(this.checkEdit_email);
     this.panelControl3.Controls.Add(this.panelControl1);
     this.panelControl3.Location = new System.Drawing.Point(13, 264);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(599, 158);
     this.panelControl3.TabIndex = 343;
     //
     // textEdit_email
     //
     this.textEdit_email.EditValue = "";
     this.textEdit_email.Location = new System.Drawing.Point(99, 49);
     this.textEdit_email.Name = "textEdit_email";
     this.textEdit_email.Size = new System.Drawing.Size(366, 20);
     this.textEdit_email.TabIndex = 344;
     this.textEdit_email.Visible = false;
     //
     // labelControlEmail
     //
     this.labelControlEmail.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlEmail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlEmail.Location = new System.Drawing.Point(42, 52);
     this.labelControlEmail.Name = "labelControlEmail";
     this.labelControlEmail.Size = new System.Drawing.Size(46, 13);
     this.labelControlEmail.TabIndex = 343;
     this.labelControlEmail.Text = "อีเมล์ :";
     this.labelControlEmail.Visible = false;
     //
     // labelControlSampleEmail
     //
     this.labelControlSampleEmail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlSampleEmail.Location = new System.Drawing.Point(99, 30);
     this.labelControlSampleEmail.Name = "labelControlSampleEmail";
     this.labelControlSampleEmail.Size = new System.Drawing.Size(275, 13);
     this.labelControlSampleEmail.TabIndex = 343;
     this.labelControlSampleEmail.Text = "(ตัวอย่าง [email protected], [email protected])";
     this.labelControlSampleEmail.Visible = false;
     //
     // panelControl1
     //
     this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Location = new System.Drawing.Point(150, 75);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(315, 69);
     this.panelControl1.TabIndex = 342;
     //
     // bttSave
     //
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(82, 7);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 330;
     this.bttSave.Text = "บันทึก";
     //
     // bttCancel
     //
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(163, 7);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 329;
     this.bttCancel.Text = "ยกเลิก";
     //
     // PopupWarningSetting
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(624, 434);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.groupControlWarning);
     this.Name = "PopupWarningSetting";
     this.Text = "ตั้งค่ารายการแจ้งเตือน";
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).EndInit();
     this.groupControlWarning.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditAll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).EndInit();
     this.panelControlSetting.ResumeLayout(false);
     this.panelControlSetting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_database.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_vacantroom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_database.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_vacantroom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_payment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_billingdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_endofbook.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkout.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_email.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_email.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#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.mdPKG_lblStrPackageCategory = new System.Windows.Forms.Label();
     this.mdPKG_txtStrPackageCode = new DevExpress.XtraEditors.TextEdit();
     this.btnPackageGrpCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageGrpUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.mdPKG_txtMListPrice = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrDescription = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_dtValidEnd = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_dtValidStart = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_lbldtValidEnd = new System.Windows.Forms.Label();
     this.mdPKG_lbldtValidStart = new System.Windows.Forms.Label();
     this.mdPKG_lblMListPrice = new System.Windows.Forms.Label();
     this.mdPKG_lblStrDescription = new System.Windows.Forms.Label();
     this.mdPKG_lblStrPackageCode = new System.Windows.Forms.Label();
     this.PackageCategory = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageCategory.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // mdPKG_lblStrPackageCategory
     //
     this.mdPKG_lblStrPackageCategory.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCategory.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCategory.Location = new System.Drawing.Point(256, 24);
     this.mdPKG_lblStrPackageCategory.Name = "mdPKG_lblStrPackageCategory";
     this.mdPKG_lblStrPackageCategory.Size = new System.Drawing.Size(112, 16);
     this.mdPKG_lblStrPackageCategory.TabIndex = 179;
     this.mdPKG_lblStrPackageCategory.Text = "Package Category";
     this.mdPKG_lblStrPackageCategory.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_txtStrPackageCode
     //
     this.mdPKG_txtStrPackageCode.EditValue = "";
     this.mdPKG_txtStrPackageCode.Location = new System.Drawing.Point(152, 24);
     this.mdPKG_txtStrPackageCode.Name = "mdPKG_txtStrPackageCode";
     //
     // mdPKG_txtStrPackageCode.Properties
     //
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrPackageCode.Size = new System.Drawing.Size(88, 20);
     this.mdPKG_txtStrPackageCode.TabIndex = 177;
     //
     // btnPackageGrpCancel
     //
     this.btnPackageGrpCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpCancel.Location = new System.Drawing.Point(120, 160);
     this.btnPackageGrpCancel.Name = "btnPackageGrpCancel";
     this.btnPackageGrpCancel.Size = new System.Drawing.Size(64, 24);
     this.btnPackageGrpCancel.TabIndex = 175;
     this.btnPackageGrpCancel.Text = "Cancel";
     //
     // btnPackageGrpUpdate
     //
     this.btnPackageGrpUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpUpdate.Location = new System.Drawing.Point(48, 160);
     this.btnPackageGrpUpdate.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnPackageGrpUpdate.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageGrpUpdate.Name = "btnPackageGrpUpdate";
     this.btnPackageGrpUpdate.Size = new System.Drawing.Size(64, 24);
     this.btnPackageGrpUpdate.TabIndex = 174;
     this.btnPackageGrpUpdate.Text = "Save";
     this.btnPackageGrpUpdate.Click += new System.EventHandler(this.btnPackageGrpUpdate_Click);
     //
     // mdPKG_txtMListPrice
     //
     this.mdPKG_txtMListPrice.EditValue = "";
     this.mdPKG_txtMListPrice.Location = new System.Drawing.Point(152, 72);
     this.mdPKG_txtMListPrice.Name = "mdPKG_txtMListPrice";
     //
     // mdPKG_txtMListPrice.Properties
     //
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtMListPrice.Properties.Mask.EditMask = "#####0.00";
     this.mdPKG_txtMListPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtMListPrice.Size = new System.Drawing.Size(64, 20);
     this.mdPKG_txtMListPrice.TabIndex = 173;
     //
     // mdPKG_txtStrDescription
     //
     this.mdPKG_txtStrDescription.EditValue = "";
     this.mdPKG_txtStrDescription.Location = new System.Drawing.Point(152, 48);
     this.mdPKG_txtStrDescription.Name = "mdPKG_txtStrDescription";
     //
     // mdPKG_txtStrDescription.Properties
     //
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrDescription.Size = new System.Drawing.Size(416, 20);
     this.mdPKG_txtStrDescription.TabIndex = 172;
     //
     // mdPKG_dtValidEnd
     //
     this.mdPKG_dtValidEnd.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidEnd.Location = new System.Drawing.Point(152, 120);
     this.mdPKG_dtValidEnd.Name = "mdPKG_dtValidEnd";
     //
     // mdPKG_dtValidEnd.Properties
     //
     this.mdPKG_dtValidEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidEnd.Size = new System.Drawing.Size(88, 20);
     this.mdPKG_dtValidEnd.TabIndex = 171;
     //
     // mdPKG_dtValidStart
     //
     this.mdPKG_dtValidStart.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidStart.Location = new System.Drawing.Point(152, 96);
     this.mdPKG_dtValidStart.Name = "mdPKG_dtValidStart";
     //
     // mdPKG_dtValidStart.Properties
     //
     this.mdPKG_dtValidStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPKG_dtValidStart.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidStart.Size = new System.Drawing.Size(88, 20);
     this.mdPKG_dtValidStart.TabIndex = 170;
     //
     // mdPKG_lbldtValidEnd
     //
     this.mdPKG_lbldtValidEnd.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidEnd.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidEnd.Location = new System.Drawing.Point(8, 120);
     this.mdPKG_lbldtValidEnd.Name = "mdPKG_lbldtValidEnd";
     this.mdPKG_lbldtValidEnd.Size = new System.Drawing.Size(120, 16);
     this.mdPKG_lbldtValidEnd.TabIndex = 169;
     this.mdPKG_lbldtValidEnd.Text = "Effective End Date";
     this.mdPKG_lbldtValidEnd.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lbldtValidStart
     //
     this.mdPKG_lbldtValidStart.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidStart.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidStart.Location = new System.Drawing.Point(8, 96);
     this.mdPKG_lbldtValidStart.Name = "mdPKG_lbldtValidStart";
     this.mdPKG_lbldtValidStart.Size = new System.Drawing.Size(120, 16);
     this.mdPKG_lbldtValidStart.TabIndex = 168;
     this.mdPKG_lbldtValidStart.Text = "Effective Start Start";
     this.mdPKG_lbldtValidStart.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblMListPrice
     //
     this.mdPKG_lblMListPrice.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblMListPrice.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblMListPrice.Location = new System.Drawing.Point(8, 72);
     this.mdPKG_lblMListPrice.Name = "mdPKG_lblMListPrice";
     this.mdPKG_lblMListPrice.Size = new System.Drawing.Size(120, 16);
     this.mdPKG_lblMListPrice.TabIndex = 167;
     this.mdPKG_lblMListPrice.Text = "Package Group Price";
     this.mdPKG_lblMListPrice.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrDescription
     //
     this.mdPKG_lblStrDescription.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrDescription.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrDescription.Location = new System.Drawing.Point(8, 48);
     this.mdPKG_lblStrDescription.Name = "mdPKG_lblStrDescription";
     this.mdPKG_lblStrDescription.Size = new System.Drawing.Size(88, 16);
     this.mdPKG_lblStrDescription.TabIndex = 166;
     this.mdPKG_lblStrDescription.Text = "Description";
     this.mdPKG_lblStrDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrPackageCode
     //
     this.mdPKG_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCode.Location = new System.Drawing.Point(8, 24);
     this.mdPKG_lblStrPackageCode.Name = "mdPKG_lblStrPackageCode";
     this.mdPKG_lblStrPackageCode.Size = new System.Drawing.Size(128, 16);
     this.mdPKG_lblStrPackageCode.TabIndex = 165;
     this.mdPKG_lblStrPackageCode.Text = "Package Group Code";
     this.mdPKG_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PackageCategory
     //
     this.PackageCategory.EditValue = "";
     this.PackageCategory.Location = new System.Drawing.Point(384, 24);
     this.PackageCategory.Name = "PackageCategory";
     //
     // PackageCategory.Properties
     //
     this.PackageCategory.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.PackageCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.PackageCategory.Properties.ReadOnly = true;
     this.PackageCategory.Size = new System.Drawing.Size(128, 20);
     this.PackageCategory.TabIndex = 180;
     //
     // frmMD_PackageGroupAdd
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(576, 222);
     this.Controls.Add(this.PackageCategory);
     this.Controls.Add(this.mdPKG_lblStrPackageCategory);
     this.Controls.Add(this.mdPKG_txtStrPackageCode);
     this.Controls.Add(this.btnPackageGrpCancel);
     this.Controls.Add(this.btnPackageGrpUpdate);
     this.Controls.Add(this.mdPKG_txtMListPrice);
     this.Controls.Add(this.mdPKG_txtStrDescription);
     this.Controls.Add(this.mdPKG_dtValidEnd);
     this.Controls.Add(this.mdPKG_dtValidStart);
     this.Controls.Add(this.mdPKG_lbldtValidEnd);
     this.Controls.Add(this.mdPKG_lbldtValidStart);
     this.Controls.Add(this.mdPKG_lblMListPrice);
     this.Controls.Add(this.mdPKG_lblStrDescription);
     this.Controls.Add(this.mdPKG_lblStrPackageCode);
     this.Name = "frmMD_PackageGroupAdd";
     this.Text = "Package Group Add";
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageCategory.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 创建查询条件控件
        /// </summary>
        private void CreatSearchControl()
        {
            try
            {
                if (dtDetail != null && dtMain != null && dtMain.Rows.Count > 0)
                {
                    //每行控件数
                    int iControlColumn = Convert.ToInt32(dtMain.Rows[0]["iControlColumn"]);
                    //控件间距
                    int iControlSpace = Convert.ToInt32(dtMain.Rows[0]["iControlSpace"]);
                    //先计算需要生成查询的数据
                    DataRow[] dr = dtDetail.Select("bIsQuery=1");
                    //计算控件总共行数
                    int iRows = 0;
                    if (dr.Length > 0)
                    {
                        if (dr.Length % iControlColumn != 0)
                        {
                            iRows = (int)Math.Floor(Convert.ToDecimal(dr.Length / iControlColumn)) + 1;
                        }
                        else
                        {
                            iRows = Convert.ToInt32(dr.Length / iControlColumn);
                        }

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

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

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

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

                            }
                        }

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

                    //设置查询条件面板高度
                    grbFilter.Height = iRows * 31 + 55 + (IsGroup == true ? grbGroup.Height : 0);
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询条件控件错误!" + ex.Message, true);
            }
        }
 /// <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(PopupRegistered));
     this.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.textEditADCSerial5 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial4 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial3 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.textEditProductID = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.btOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
     this.groupControlWarning.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
     this.panelControlSetting.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditProductID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControlWarning
     //
     this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
     this.groupControlWarning.Controls.Add(this.panelControl1);
     this.groupControlWarning.Controls.Add(this.panelControlSetting);
     this.groupControlWarning.Controls.Add(this.panelControl2);
     this.groupControlWarning.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlWarning.Location = new System.Drawing.Point(20, 20);
     this.groupControlWarning.Name = "groupControlWarning";
     this.groupControlWarning.Padding = new System.Windows.Forms.Padding(5);
     this.groupControlWarning.Size = new System.Drawing.Size(584, 292);
     this.groupControlWarning.TabIndex = 342;
     this.groupControlWarning.Text = "Registration";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.ContentImage = ((System.Drawing.Image)(resources.GetObject("panelControl1.ContentImage")));
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelControl1.Location = new System.Drawing.Point(7, 27);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Padding = new System.Windows.Forms.Padding(5);
     this.panelControl1.Size = new System.Drawing.Size(202, 220);
     this.panelControl1.TabIndex = 1;
     //
     // panelControlSetting
     //
     this.panelControlSetting.Controls.Add(this.groupBox1);
     this.panelControlSetting.Controls.Add(this.textEditProductID);
     this.panelControlSetting.Controls.Add(this.labelControl8);
     this.panelControlSetting.Controls.Add(this.labelControl1);
     this.panelControlSetting.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelControlSetting.Location = new System.Drawing.Point(215, 27);
     this.panelControlSetting.Name = "panelControlSetting";
     this.panelControlSetting.Padding = new System.Windows.Forms.Padding(5);
     this.panelControlSetting.Size = new System.Drawing.Size(362, 220);
     this.panelControlSetting.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textEditADCSerial5);
     this.groupBox1.Controls.Add(this.labelControl6);
     this.groupBox1.Controls.Add(this.textEditADCSerial4);
     this.groupBox1.Controls.Add(this.labelControl5);
     this.groupBox1.Controls.Add(this.textEditADCSerial3);
     this.groupBox1.Controls.Add(this.labelControl4);
     this.groupBox1.Controls.Add(this.textEditADCSerial2);
     this.groupBox1.Controls.Add(this.labelControl3);
     this.groupBox1.Controls.Add(this.textEditADCSerial1);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Location = new System.Drawing.Point(11, 54);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(341, 156);
     this.groupBox1.TabIndex = 319;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "ADC";
     //
     // textEditADCSerial5
     //
     this.textEditADCSerial5.Location = new System.Drawing.Point(79, 124);
     this.textEditADCSerial5.Name = "textEditADCSerial5";
     this.textEditADCSerial5.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial5.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial5.Properties.ReadOnly = true;
     this.textEditADCSerial5.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial5.TabIndex = 328;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(31, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(42, 13);
     this.labelControl6.TabIndex = 327;
     this.labelControl6.Text = "Serial 5 :";
     //
     // textEditADCSerial4
     //
     this.textEditADCSerial4.Location = new System.Drawing.Point(79, 98);
     this.textEditADCSerial4.Name = "textEditADCSerial4";
     this.textEditADCSerial4.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial4.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial4.Properties.ReadOnly = true;
     this.textEditADCSerial4.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial4.TabIndex = 326;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(31, 101);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(42, 13);
     this.labelControl5.TabIndex = 325;
     this.labelControl5.Text = "Serial 4 :";
     //
     // textEditADCSerial3
     //
     this.textEditADCSerial3.Location = new System.Drawing.Point(79, 72);
     this.textEditADCSerial3.Name = "textEditADCSerial3";
     this.textEditADCSerial3.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial3.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial3.Properties.ReadOnly = true;
     this.textEditADCSerial3.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial3.TabIndex = 324;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(31, 75);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(42, 13);
     this.labelControl4.TabIndex = 323;
     this.labelControl4.Text = "Serial 3 :";
     //
     // textEditADCSerial2
     //
     this.textEditADCSerial2.Location = new System.Drawing.Point(79, 46);
     this.textEditADCSerial2.Name = "textEditADCSerial2";
     this.textEditADCSerial2.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial2.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial2.Properties.ReadOnly = true;
     this.textEditADCSerial2.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial2.TabIndex = 322;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(31, 49);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 321;
     this.labelControl3.Text = "Serial 2 :";
     //
     // textEditADCSerial1
     //
     this.textEditADCSerial1.Location = new System.Drawing.Point(79, 20);
     this.textEditADCSerial1.Name = "textEditADCSerial1";
     this.textEditADCSerial1.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial1.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial1.Properties.ReadOnly = true;
     this.textEditADCSerial1.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial1.TabIndex = 320;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(31, 23);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(42, 13);
     this.labelControl2.TabIndex = 319;
     this.labelControl2.Text = "Serial 1 :";
     //
     // textEditProductID
     //
     this.textEditProductID.Location = new System.Drawing.Point(90, 31);
     this.textEditProductID.Name = "textEditProductID";
     this.textEditProductID.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditProductID.Properties.Appearance.Options.UseBackColor = true;
     this.textEditProductID.Properties.ReadOnly = true;
     this.textEditProductID.Size = new System.Drawing.Size(256, 20);
     this.textEditProductID.TabIndex = 318;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(23, 34);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(61, 13);
     this.labelControl8.TabIndex = 317;
     this.labelControl8.Text = "Product ID : ";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(6, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(235, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "This product has already been registered.";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.btOK);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(7, 247);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(570, 38);
     this.panelControl2.TabIndex = 2;
     //
     // btOK
     //
     this.btOK.Location = new System.Drawing.Point(503, 6);
     this.btOK.Name = "btOK";
     this.btOK.Size = new System.Drawing.Size(57, 23);
     this.btOK.TabIndex = 0;
     this.btOK.Text = "OK";
     this.btOK.Click += new System.EventHandler(this.btOK_Click);
     //
     // PopupRegistered
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(624, 332);
     this.Controls.Add(this.groupControlWarning);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "PopupRegistered";
     this.Padding = new System.Windows.Forms.Padding(20);
     this.Text = "[ Software Name ]";
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).EndInit();
     this.groupControlWarning.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).EndInit();
     this.panelControlSetting.ResumeLayout(false);
     this.panelControlSetting.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditProductID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProgramPermission));
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlAuthorize = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.panelControl25 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup8 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu8 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup8 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl19 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditHelp = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl26 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup9 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu9 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnBoxCheck = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup9 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl27 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditRegistration = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl24 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup7 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup7 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl18 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditDeviceSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl23 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup6 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup6 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl17 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditDatabaseSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl22 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup5 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup5 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl15 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditProgramSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl21 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup4 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup4 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl12 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl13 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl14 = new DevExpress.XtraEditors.PanelControl();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditBasicSetting = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup3 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup3 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditReportManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup2 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnParent2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditMeterManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup1 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnParent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditRoomManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl20 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlPermissionBar = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuNameBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadWriteBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOnlyBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl16 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.textEditGroupID = new DevExpress.XtraEditors.TextEdit();
     this.textEditGroupName = new DevExpress.XtraEditors.TextEdit();
     this.labelGroupName = new DevExpress.XtraEditors.LabelControl();
     this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlAuthorizeList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGroupPermission = new DevExpress.XtraGrid.GridControl();
     this.gridViewGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnGroupId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmountUser = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorize)).BeginInit();
     this.groupControlAuthorize.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).BeginInit();
     this.panelControl25.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).BeginInit();
     this.panelControl19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditHelp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).BeginInit();
     this.panelControl26.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl27)).BeginInit();
     this.panelControl27.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRegistration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).BeginInit();
     this.panelControl24.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).BeginInit();
     this.panelControl18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDeviceSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).BeginInit();
     this.panelControl23.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).BeginInit();
     this.panelControl17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDatabaseSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).BeginInit();
     this.panelControl22.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).BeginInit();
     this.panelControl15.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditProgramSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).BeginInit();
     this.panelControl21.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
     this.panelControl11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).BeginInit();
     this.panelControl12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).BeginInit();
     this.panelControl13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).BeginInit();
     this.panelControl14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
     this.panelControl10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditBasicSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
     this.panelControl9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditReportManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditMeterManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRoomManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).BeginInit();
     this.panelControl20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPermissionBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).BeginInit();
     this.panelControl16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
     this.panelControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorizeList)).BeginInit();
     this.groupControlAuthorizeList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGroupPermission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlAuthorize);
     this.panelControl3.Controls.Add(this.panelControl8);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(559, 609);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlAuthorize
     //
     this.groupControlAuthorize.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAuthorize.AppearanceCaption.Options.UseFont = true;
     this.groupControlAuthorize.Controls.Add(this.xtraScrollableControl1);
     this.groupControlAuthorize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAuthorize.Location = new System.Drawing.Point(0, 0);
     this.groupControlAuthorize.Name = "groupControlAuthorize";
     this.groupControlAuthorize.Size = new System.Drawing.Size(559, 543);
     this.groupControlAuthorize.TabIndex = 3;
     this.groupControlAuthorize.Text = "สิทธิ์การใช้งาน";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.xtraScrollableControl1.Appearance.Options.UseBackColor = true;
     this.xtraScrollableControl1.Controls.Add(this.panelControl25);
     this.xtraScrollableControl1.Controls.Add(this.panelControl19);
     this.xtraScrollableControl1.Controls.Add(this.panelControl26);
     this.xtraScrollableControl1.Controls.Add(this.panelControl27);
     this.xtraScrollableControl1.Controls.Add(this.panelControl24);
     this.xtraScrollableControl1.Controls.Add(this.panelControl18);
     this.xtraScrollableControl1.Controls.Add(this.panelControl23);
     this.xtraScrollableControl1.Controls.Add(this.panelControl17);
     this.xtraScrollableControl1.Controls.Add(this.panelControl22);
     this.xtraScrollableControl1.Controls.Add(this.panelControl15);
     this.xtraScrollableControl1.Controls.Add(this.panelControl21);
     this.xtraScrollableControl1.Controls.Add(this.panelControl11);
     this.xtraScrollableControl1.Controls.Add(this.panelControl7);
     this.xtraScrollableControl1.Controls.Add(this.panelControl9);
     this.xtraScrollableControl1.Controls.Add(this.panelControl5);
     this.xtraScrollableControl1.Controls.Add(this.panelControl6);
     this.xtraScrollableControl1.Controls.Add(this.panelControl1);
     this.xtraScrollableControl1.Controls.Add(this.panelControl4);
     this.xtraScrollableControl1.Controls.Add(this.panelControl20);
     this.xtraScrollableControl1.Controls.Add(this.panelControl16);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(555, 519);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // panelControl25
     //
     this.panelControl25.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl25.Controls.Add(this.gridControlMenuGroup8);
     this.panelControl25.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl25.Location = new System.Drawing.Point(0, 1519);
     this.panelControl25.Name = "panelControl25";
     this.panelControl25.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl25.Size = new System.Drawing.Size(538, 104);
     this.panelControl25.TabIndex = 26;
     //
     // gridControlMenuGroup8
     //
     this.gridControlMenuGroup8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup8.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup8.MainView = this.gridViewMenu8;
     this.gridControlMenuGroup8.Name = "gridControlMenuGroup8";
     this.gridControlMenuGroup8.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup8});
     this.gridControlMenuGroup8.Size = new System.Drawing.Size(524, 90);
     this.gridControlMenuGroup8.TabIndex = 7;
     this.gridControlMenuGroup8.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu8});
     //
     // gridViewMenu8
     //
     this.gridViewMenu8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn22,
     this.gridColumnMenuName8,
     this.gridColumn24,
     this.gridColumn25});
     this.gridViewMenu8.GridControl = this.gridControlMenuGroup8;
     this.gridViewMenu8.Name = "gridViewMenu8";
     this.gridViewMenu8.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu8.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu8.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu8.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu8.OptionsView.ShowVertLines = false;
     this.gridViewMenu8.PaintStyleName = "Skin";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = " ";
     this.gridColumn22.FieldName = "permission_flag_check";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 0;
     this.gridColumn22.Width = 20;
     //
     // gridColumnMenuName8
     //
     this.gridColumnMenuName8.Caption = " ";
     this.gridColumnMenuName8.Name = "gridColumnMenuName8";
     this.gridColumnMenuName8.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName8.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName8.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName8.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName8.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName8.Visible = true;
     this.gridColumnMenuName8.VisibleIndex = 1;
     this.gridColumnMenuName8.Width = 317;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = " ";
     this.gridColumn24.ColumnEdit = this.repositoryItemRadioGroup8;
     this.gridColumn24.FieldName = "permission_flag_access";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 2;
     this.gridColumn24.Width = 151;
     //
     // repositoryItemRadioGroup8
     //
     this.repositoryItemRadioGroup8.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup8.Name = "repositoryItemRadioGroup8";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "gridColumn1";
     this.gridColumn25.FieldName = "menu_parent";
     this.gridColumn25.Name = "gridColumn25";
     //
     // panelControl19
     //
     this.panelControl19.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl19.Controls.Add(this.checkEditHelp);
     this.panelControl19.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl19.Location = new System.Drawing.Point(0, 1494);
     this.panelControl19.Name = "panelControl19";
     this.panelControl19.Size = new System.Drawing.Size(538, 25);
     this.panelControl19.TabIndex = 19;
     //
     // checkEditHelp
     //
     this.checkEditHelp.Location = new System.Drawing.Point(5, 2);
     this.checkEditHelp.Name = "checkEditHelp";
     this.checkEditHelp.Properties.Caption = "ช่วยเหลือ";
     this.checkEditHelp.Size = new System.Drawing.Size(231, 19);
     this.checkEditHelp.TabIndex = 1;
     this.checkEditHelp.CheckedChanged += new System.EventHandler(this.checkEditHelp_CheckedChanged);
     //
     // panelControl26
     //
     this.panelControl26.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl26.Controls.Add(this.gridControlMenuGroup9);
     this.panelControl26.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl26.Location = new System.Drawing.Point(0, 1390);
     this.panelControl26.Name = "panelControl26";
     this.panelControl26.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl26.Size = new System.Drawing.Size(538, 104);
     this.panelControl26.TabIndex = 28;
     //
     // gridControlMenuGroup9
     //
     this.gridControlMenuGroup9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup9.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup9.MainView = this.gridViewMenu9;
     this.gridControlMenuGroup9.Name = "gridControlMenuGroup9";
     this.gridControlMenuGroup9.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup9});
     this.gridControlMenuGroup9.Size = new System.Drawing.Size(524, 90);
     this.gridControlMenuGroup9.TabIndex = 7;
     this.gridControlMenuGroup9.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu9});
     //
     // gridViewMenu9
     //
     this.gridViewMenu9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnBoxCheck,
     this.gridColumnMenuName9,
     this.gridColumn10,
     this.gridColumn11});
     this.gridViewMenu9.GridControl = this.gridControlMenuGroup9;
     this.gridViewMenu9.Name = "gridViewMenu9";
     this.gridViewMenu9.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu9.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu9.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu9.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu9.OptionsView.ShowVertLines = false;
     this.gridViewMenu9.PaintStyleName = "Skin";
     //
     // gridColumnBoxCheck
     //
     this.gridColumnBoxCheck.Caption = " ";
     this.gridColumnBoxCheck.FieldName = "permission_flag_check";
     this.gridColumnBoxCheck.Name = "gridColumnBoxCheck";
     this.gridColumnBoxCheck.OptionsColumn.AllowSize = false;
     this.gridColumnBoxCheck.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnBoxCheck.Visible = true;
     this.gridColumnBoxCheck.VisibleIndex = 0;
     this.gridColumnBoxCheck.Width = 20;
     //
     // gridColumnMenuName9
     //
     this.gridColumnMenuName9.Caption = " ";
     this.gridColumnMenuName9.Name = "gridColumnMenuName9";
     this.gridColumnMenuName9.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName9.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName9.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName9.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName9.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName9.Visible = true;
     this.gridColumnMenuName9.VisibleIndex = 1;
     this.gridColumnMenuName9.Width = 317;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = " ";
     this.gridColumn10.ColumnEdit = this.repositoryItemRadioGroup9;
     this.gridColumn10.FieldName = "permission_flag_access";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 151;
     //
     // repositoryItemRadioGroup9
     //
     this.repositoryItemRadioGroup9.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup9.Name = "repositoryItemRadioGroup9";
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "gridColumn1";
     this.gridColumn11.FieldName = "menu_parent";
     this.gridColumn11.Name = "gridColumn11";
     //
     // panelControl27
     //
     this.panelControl27.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl27.Controls.Add(this.checkEditRegistration);
     this.panelControl27.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl27.Location = new System.Drawing.Point(0, 1365);
     this.panelControl27.Name = "panelControl27";
     this.panelControl27.Size = new System.Drawing.Size(538, 25);
     this.panelControl27.TabIndex = 27;
     //
     // checkEditRegistration
     //
     this.checkEditRegistration.Location = new System.Drawing.Point(5, 2);
     this.checkEditRegistration.Name = "checkEditRegistration";
     this.checkEditRegistration.Properties.Caption = "ลงทะเบียน";
     this.checkEditRegistration.Size = new System.Drawing.Size(231, 19);
     this.checkEditRegistration.TabIndex = 1;
     //
     // panelControl24
     //
     this.panelControl24.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl24.Controls.Add(this.gridControlMenuGroup7);
     this.panelControl24.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl24.Location = new System.Drawing.Point(0, 1255);
     this.panelControl24.Name = "panelControl24";
     this.panelControl24.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl24.Size = new System.Drawing.Size(538, 110);
     this.panelControl24.TabIndex = 25;
     //
     // gridControlMenuGroup7
     //
     this.gridControlMenuGroup7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup7.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup7.MainView = this.gridViewMenu7;
     this.gridControlMenuGroup7.Name = "gridControlMenuGroup7";
     this.gridControlMenuGroup7.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup7});
     this.gridControlMenuGroup7.Size = new System.Drawing.Size(524, 96);
     this.gridControlMenuGroup7.TabIndex = 7;
     this.gridControlMenuGroup7.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu7});
     //
     // gridViewMenu7
     //
     this.gridViewMenu7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumnMenuName7,
     this.gridColumn20,
     this.gridColumn21});
     this.gridViewMenu7.GridControl = this.gridControlMenuGroup7;
     this.gridViewMenu7.Name = "gridViewMenu7";
     this.gridViewMenu7.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu7.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu7.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu7.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu7.OptionsView.ShowVertLines = false;
     this.gridViewMenu7.PaintStyleName = "Skin";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = " ";
     this.gridColumn18.FieldName = "permission_flag_check";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowSize = false;
     this.gridColumn18.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 20;
     //
     // gridColumnMenuName7
     //
     this.gridColumnMenuName7.Caption = " ";
     this.gridColumnMenuName7.Name = "gridColumnMenuName7";
     this.gridColumnMenuName7.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName7.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName7.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName7.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName7.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName7.Visible = true;
     this.gridColumnMenuName7.VisibleIndex = 1;
     this.gridColumnMenuName7.Width = 317;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = " ";
     this.gridColumn20.ColumnEdit = this.repositoryItemRadioGroup7;
     this.gridColumn20.FieldName = "permission_flag_access";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     this.gridColumn20.Width = 151;
     //
     // repositoryItemRadioGroup7
     //
     this.repositoryItemRadioGroup7.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup7.Name = "repositoryItemRadioGroup7";
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "gridColumn1";
     this.gridColumn21.FieldName = "menu_parent";
     this.gridColumn21.Name = "gridColumn21";
     //
     // panelControl18
     //
     this.panelControl18.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl18.Controls.Add(this.checkEditDeviceSetting);
     this.panelControl18.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl18.Location = new System.Drawing.Point(0, 1230);
     this.panelControl18.Name = "panelControl18";
     this.panelControl18.Size = new System.Drawing.Size(538, 25);
     this.panelControl18.TabIndex = 18;
     //
     // checkEditDeviceSetting
     //
     this.checkEditDeviceSetting.Location = new System.Drawing.Point(5, 2);
     this.checkEditDeviceSetting.Name = "checkEditDeviceSetting";
     this.checkEditDeviceSetting.Properties.Caption = "ตั้งค่าอุปกรณ์";
     this.checkEditDeviceSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditDeviceSetting.TabIndex = 1;
     this.checkEditDeviceSetting.CheckedChanged += new System.EventHandler(this.checkEditDeviceSetting_CheckedChanged);
     //
     // panelControl23
     //
     this.panelControl23.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl23.Controls.Add(this.gridControlMenuGroup6);
     this.panelControl23.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl23.Location = new System.Drawing.Point(0, 1150);
     this.panelControl23.Name = "panelControl23";
     this.panelControl23.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl23.Size = new System.Drawing.Size(538, 80);
     this.panelControl23.TabIndex = 24;
     //
     // gridControlMenuGroup6
     //
     this.gridControlMenuGroup6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup6.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup6.MainView = this.gridViewMenu6;
     this.gridControlMenuGroup6.Name = "gridControlMenuGroup6";
     this.gridControlMenuGroup6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup6});
     this.gridControlMenuGroup6.Size = new System.Drawing.Size(524, 66);
     this.gridControlMenuGroup6.TabIndex = 7;
     this.gridControlMenuGroup6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu6});
     //
     // gridViewMenu6
     //
     this.gridViewMenu6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14,
     this.gridColumnMenuName6,
     this.gridColumn16,
     this.gridColumn17});
     this.gridViewMenu6.GridControl = this.gridControlMenuGroup6;
     this.gridViewMenu6.Name = "gridViewMenu6";
     this.gridViewMenu6.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu6.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu6.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu6.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu6.OptionsView.ShowVertLines = false;
     this.gridViewMenu6.PaintStyleName = "Skin";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = " ";
     this.gridColumn14.FieldName = "permission_flag_check";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowSize = false;
     this.gridColumn14.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 20;
     //
     // gridColumnMenuName6
     //
     this.gridColumnMenuName6.Caption = " ";
     this.gridColumnMenuName6.Name = "gridColumnMenuName6";
     this.gridColumnMenuName6.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName6.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName6.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName6.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName6.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName6.Visible = true;
     this.gridColumnMenuName6.VisibleIndex = 1;
     this.gridColumnMenuName6.Width = 317;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = " ";
     this.gridColumn16.ColumnEdit = this.repositoryItemRadioGroup6;
     this.gridColumn16.FieldName = "permission_flag_access";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 2;
     this.gridColumn16.Width = 151;
     //
     // repositoryItemRadioGroup6
     //
     this.repositoryItemRadioGroup6.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup6.Name = "repositoryItemRadioGroup6";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "gridColumn1";
     this.gridColumn17.FieldName = "menu_parent";
     this.gridColumn17.Name = "gridColumn17";
     //
     // panelControl17
     //
     this.panelControl17.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl17.Controls.Add(this.checkEditDatabaseSetting);
     this.panelControl17.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl17.Location = new System.Drawing.Point(0, 1125);
     this.panelControl17.Name = "panelControl17";
     this.panelControl17.Size = new System.Drawing.Size(538, 25);
     this.panelControl17.TabIndex = 16;
     //
     // checkEditDatabaseSetting
     //
     this.checkEditDatabaseSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditDatabaseSetting.Name = "checkEditDatabaseSetting";
     this.checkEditDatabaseSetting.Properties.Caption = "ตั้งค่าฐานข้อมูล";
     this.checkEditDatabaseSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditDatabaseSetting.TabIndex = 1;
     this.checkEditDatabaseSetting.CheckedChanged += new System.EventHandler(this.checkEditDatabaseSetting_CheckedChanged);
     //
     // panelControl22
     //
     this.panelControl22.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl22.Controls.Add(this.gridControlMenuGroup5);
     this.panelControl22.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl22.Location = new System.Drawing.Point(0, 979);
     this.panelControl22.Name = "panelControl22";
     this.panelControl22.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl22.Size = new System.Drawing.Size(538, 146);
     this.panelControl22.TabIndex = 23;
     //
     // gridControlMenuGroup5
     //
     this.gridControlMenuGroup5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup5.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup5.MainView = this.gridViewMenu5;
     this.gridControlMenuGroup5.Name = "gridControlMenuGroup5";
     this.gridControlMenuGroup5.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup5});
     this.gridControlMenuGroup5.Size = new System.Drawing.Size(524, 132);
     this.gridControlMenuGroup5.TabIndex = 7;
     this.gridControlMenuGroup5.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu5});
     //
     // gridViewMenu5
     //
     this.gridViewMenu5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumnMenuName5,
     this.gridColumn8,
     this.gridColumn13});
     this.gridViewMenu5.GridControl = this.gridControlMenuGroup5;
     this.gridViewMenu5.Name = "gridViewMenu5";
     this.gridViewMenu5.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu5.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu5.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu5.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu5.OptionsView.ShowVertLines = false;
     this.gridViewMenu5.PaintStyleName = "Skin";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = " ";
     this.gridColumn6.FieldName = "permission_flag_check";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowSize = false;
     this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 20;
     //
     // gridColumnMenuName5
     //
     this.gridColumnMenuName5.Caption = " ";
     this.gridColumnMenuName5.Name = "gridColumnMenuName5";
     this.gridColumnMenuName5.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName5.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName5.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName5.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName5.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName5.Visible = true;
     this.gridColumnMenuName5.VisibleIndex = 1;
     this.gridColumnMenuName5.Width = 317;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = " ";
     this.gridColumn8.ColumnEdit = this.repositoryItemRadioGroup5;
     this.gridColumn8.FieldName = "permission_flag_access";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width = 151;
     //
     // repositoryItemRadioGroup5
     //
     this.repositoryItemRadioGroup5.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup5.Name = "repositoryItemRadioGroup5";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "gridColumn1";
     this.gridColumn13.FieldName = "menu_parent";
     this.gridColumn13.Name = "gridColumn13";
     //
     // panelControl15
     //
     this.panelControl15.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl15.Controls.Add(this.checkEditProgramSetting);
     this.panelControl15.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl15.Location = new System.Drawing.Point(0, 954);
     this.panelControl15.Name = "panelControl15";
     this.panelControl15.Size = new System.Drawing.Size(538, 25);
     this.panelControl15.TabIndex = 12;
     //
     // checkEditProgramSetting
     //
     this.checkEditProgramSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditProgramSetting.Name = "checkEditProgramSetting";
     this.checkEditProgramSetting.Properties.Caption = "ตั้งค่าโปรแกรม";
     this.checkEditProgramSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditProgramSetting.TabIndex = 1;
     this.checkEditProgramSetting.CheckedChanged += new System.EventHandler(this.checkEditProgramSetting_CheckedChanged);
     //
     // panelControl21
     //
     this.panelControl21.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl21.Controls.Add(this.gridControlMenuGroup4);
     this.panelControl21.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl21.Location = new System.Drawing.Point(0, 728);
     this.panelControl21.Name = "panelControl21";
     this.panelControl21.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl21.Size = new System.Drawing.Size(538, 226);
     this.panelControl21.TabIndex = 22;
     //
     // gridControlMenuGroup4
     //
     this.gridControlMenuGroup4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup4.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup4.MainView = this.gridViewMenu4;
     this.gridControlMenuGroup4.Name = "gridControlMenuGroup4";
     this.gridControlMenuGroup4.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup4});
     this.gridControlMenuGroup4.Size = new System.Drawing.Size(524, 212);
     this.gridControlMenuGroup4.TabIndex = 7;
     this.gridControlMenuGroup4.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu4});
     //
     // gridViewMenu4
     //
     this.gridViewMenu4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumnMenuName4,
     this.gridColumn4,
     this.gridColumn5});
     this.gridViewMenu4.GridControl = this.gridControlMenuGroup4;
     this.gridViewMenu4.Name = "gridViewMenu4";
     this.gridViewMenu4.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu4.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu4.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu4.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu4.OptionsView.ShowVertLines = false;
     this.gridViewMenu4.PaintStyleName = "Skin";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = " ";
     this.gridColumn2.FieldName = "permission_flag_check";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowSize = false;
     this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 20;
     //
     // gridColumnMenuName4
     //
     this.gridColumnMenuName4.Caption = " ";
     this.gridColumnMenuName4.Name = "gridColumnMenuName4";
     this.gridColumnMenuName4.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName4.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName4.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName4.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName4.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName4.Visible = true;
     this.gridColumnMenuName4.VisibleIndex = 1;
     this.gridColumnMenuName4.Width = 317;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = " ";
     this.gridColumn4.ColumnEdit = this.repositoryItemRadioGroup4;
     this.gridColumn4.FieldName = "permission_flag_access";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 151;
     //
     // repositoryItemRadioGroup4
     //
     this.repositoryItemRadioGroup4.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup4.Name = "repositoryItemRadioGroup4";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "gridColumn1";
     this.gridColumn5.FieldName = "menu_parent";
     this.gridColumn5.Name = "gridColumn5";
     //
     // panelControl11
     //
     this.panelControl11.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl11.Controls.Add(this.panelControl12);
     this.panelControl11.Controls.Add(this.panelControl10);
     this.panelControl11.Controls.Add(this.checkEdit4);
     this.panelControl11.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl11.Location = new System.Drawing.Point(0, 703);
     this.panelControl11.Name = "panelControl11";
     this.panelControl11.Size = new System.Drawing.Size(538, 25);
     this.panelControl11.TabIndex = 10;
     //
     // panelControl12
     //
     this.panelControl12.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl12.Controls.Add(this.panelControl13);
     this.panelControl12.Controls.Add(this.checkEdit6);
     this.panelControl12.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl12.Location = new System.Drawing.Point(0, 38);
     this.panelControl12.Name = "panelControl12";
     this.panelControl12.Size = new System.Drawing.Size(538, 38);
     this.panelControl12.TabIndex = 12;
     //
     // panelControl13
     //
     this.panelControl13.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl13.Controls.Add(this.panelControl14);
     this.panelControl13.Controls.Add(this.checkEdit7);
     this.panelControl13.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl13.Location = new System.Drawing.Point(0, 0);
     this.panelControl13.Name = "panelControl13";
     this.panelControl13.Size = new System.Drawing.Size(538, 38);
     this.panelControl13.TabIndex = 11;
     //
     // panelControl14
     //
     this.panelControl14.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl14.Controls.Add(this.checkEdit8);
     this.panelControl14.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl14.Location = new System.Drawing.Point(0, 0);
     this.panelControl14.Name = "panelControl14";
     this.panelControl14.Size = new System.Drawing.Size(538, 38);
     this.panelControl14.TabIndex = 11;
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(4, 13);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "บริการห้องพัก";
     this.checkEdit8.Size = new System.Drawing.Size(100, 19);
     this.checkEdit8.TabIndex = 1;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(4, 13);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "บริการห้องพัก";
     this.checkEdit7.Size = new System.Drawing.Size(100, 19);
     this.checkEdit7.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(4, 13);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "บริการห้องพัก";
     this.checkEdit6.Size = new System.Drawing.Size(100, 19);
     this.checkEdit6.TabIndex = 1;
     //
     // panelControl10
     //
     this.panelControl10.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl10.Controls.Add(this.checkEditBasicSetting);
     this.panelControl10.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl10.Location = new System.Drawing.Point(0, 0);
     this.panelControl10.Name = "panelControl10";
     this.panelControl10.Size = new System.Drawing.Size(538, 38);
     this.panelControl10.TabIndex = 11;
     //
     // checkEditBasicSetting
     //
     this.checkEditBasicSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditBasicSetting.Name = "checkEditBasicSetting";
     this.checkEditBasicSetting.Properties.Caption = "ตั้งค่าพื้นฐาน";
     this.checkEditBasicSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditBasicSetting.TabIndex = 1;
     this.checkEditBasicSetting.CheckedChanged += new System.EventHandler(this.checkEditBasicSetting_CheckedChanged);
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(4, 13);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "บริการห้องพัก";
     this.checkEdit4.Size = new System.Drawing.Size(100, 19);
     this.checkEdit4.TabIndex = 1;
     //
     // panelControl7
     //
     this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl7.Controls.Add(this.gridControlMenuGroup3);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl7.Location = new System.Drawing.Point(0, 531);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl7.Size = new System.Drawing.Size(538, 172);
     this.panelControl7.TabIndex = 7;
     //
     // gridControlMenuGroup3
     //
     this.gridControlMenuGroup3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup3.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup3.MainView = this.gridViewMenu3;
     this.gridControlMenuGroup3.Name = "gridControlMenuGroup3";
     this.gridControlMenuGroup3.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup3});
     this.gridControlMenuGroup3.Size = new System.Drawing.Size(524, 158);
     this.gridControlMenuGroup3.TabIndex = 7;
     this.gridControlMenuGroup3.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu3});
     //
     // gridViewMenu3
     //
     this.gridViewMenu3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox3,
     this.gridColumnMenuName3,
     this.gridColumnReadOrWrite3,
     this.gridColumn1});
     this.gridViewMenu3.GridControl = this.gridControlMenuGroup3;
     this.gridViewMenu3.Name = "gridViewMenu3";
     this.gridViewMenu3.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu3.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu3.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu3.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu3.OptionsView.ShowVertLines = false;
     this.gridViewMenu3.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox3
     //
     this.gridColumnCheckBox3.Caption = " ";
     this.gridColumnCheckBox3.FieldName = "permission_flag_check";
     this.gridColumnCheckBox3.Name = "gridColumnCheckBox3";
     this.gridColumnCheckBox3.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox3.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox3.Visible = true;
     this.gridColumnCheckBox3.VisibleIndex = 0;
     this.gridColumnCheckBox3.Width = 20;
     //
     // gridColumnMenuName3
     //
     this.gridColumnMenuName3.Caption = " ";
     this.gridColumnMenuName3.Name = "gridColumnMenuName3";
     this.gridColumnMenuName3.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName3.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName3.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName3.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName3.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName3.Visible = true;
     this.gridColumnMenuName3.VisibleIndex = 1;
     this.gridColumnMenuName3.Width = 317;
     //
     // gridColumnReadOrWrite3
     //
     this.gridColumnReadOrWrite3.Caption = " ";
     this.gridColumnReadOrWrite3.ColumnEdit = this.repositoryItemRadioGroup3;
     this.gridColumnReadOrWrite3.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite3.Name = "gridColumnReadOrWrite3";
     this.gridColumnReadOrWrite3.Visible = true;
     this.gridColumnReadOrWrite3.VisibleIndex = 2;
     this.gridColumnReadOrWrite3.Width = 151;
     //
     // repositoryItemRadioGroup3
     //
     this.repositoryItemRadioGroup3.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup3.Name = "repositoryItemRadioGroup3";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "gridColumn1";
     this.gridColumn1.FieldName = "menu_parent";
     this.gridColumn1.Name = "gridColumn1";
     //
     // panelControl9
     //
     this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl9.Controls.Add(this.checkEditReportManagement);
     this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl9.Location = new System.Drawing.Point(0, 506);
     this.panelControl9.Name = "panelControl9";
     this.panelControl9.Size = new System.Drawing.Size(538, 25);
     this.panelControl9.TabIndex = 8;
     //
     // checkEditReportManagement
     //
     this.checkEditReportManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditReportManagement.Name = "checkEditReportManagement";
     this.checkEditReportManagement.Properties.Caption = "รายงาน";
     this.checkEditReportManagement.Size = new System.Drawing.Size(100, 19);
     this.checkEditReportManagement.TabIndex = 1;
     this.checkEditReportManagement.CheckedChanged += new System.EventHandler(this.checkEditReportManagement_CheckedChanged);
     //
     // panelControl5
     //
     this.panelControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl5.Controls.Add(this.gridControlMenuGroup2);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 421);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl5.Size = new System.Drawing.Size(538, 85);
     this.panelControl5.TabIndex = 5;
     //
     // gridControlMenuGroup2
     //
     this.gridControlMenuGroup2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup2.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup2.MainView = this.gridViewMenu2;
     this.gridControlMenuGroup2.Name = "gridControlMenuGroup2";
     this.gridControlMenuGroup2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup2});
     this.gridControlMenuGroup2.Size = new System.Drawing.Size(524, 71);
     this.gridControlMenuGroup2.TabIndex = 6;
     this.gridControlMenuGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu2});
     //
     // gridViewMenu2
     //
     this.gridViewMenu2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox2,
     this.gridColumnMenuName2,
     this.gridColumnReadOrWrite2,
     this.gridColumnParent2});
     this.gridViewMenu2.GridControl = this.gridControlMenuGroup2;
     this.gridViewMenu2.Name = "gridViewMenu2";
     this.gridViewMenu2.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu2.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu2.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu2.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu2.OptionsView.ShowVertLines = false;
     this.gridViewMenu2.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox2
     //
     this.gridColumnCheckBox2.Caption = " ";
     this.gridColumnCheckBox2.FieldName = "permission_flag_check";
     this.gridColumnCheckBox2.Name = "gridColumnCheckBox2";
     this.gridColumnCheckBox2.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox2.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox2.Visible = true;
     this.gridColumnCheckBox2.VisibleIndex = 0;
     this.gridColumnCheckBox2.Width = 20;
     //
     // gridColumnMenuName2
     //
     this.gridColumnMenuName2.Caption = " ";
     this.gridColumnMenuName2.Name = "gridColumnMenuName2";
     this.gridColumnMenuName2.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName2.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName2.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName2.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName2.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName2.Visible = true;
     this.gridColumnMenuName2.VisibleIndex = 1;
     this.gridColumnMenuName2.Width = 317;
     //
     // gridColumnReadOrWrite2
     //
     this.gridColumnReadOrWrite2.Caption = " ";
     this.gridColumnReadOrWrite2.ColumnEdit = this.repositoryItemRadioGroup2;
     this.gridColumnReadOrWrite2.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite2.Name = "gridColumnReadOrWrite2";
     this.gridColumnReadOrWrite2.Visible = true;
     this.gridColumnReadOrWrite2.VisibleIndex = 2;
     this.gridColumnReadOrWrite2.Width = 151;
     //
     // repositoryItemRadioGroup2
     //
     this.repositoryItemRadioGroup2.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup2.Name = "repositoryItemRadioGroup2";
     //
     // gridColumnParent2
     //
     this.gridColumnParent2.Caption = "Parent";
     this.gridColumnParent2.FieldName = "menu_parent";
     this.gridColumnParent2.Name = "gridColumnParent2";
     //
     // panelControl6
     //
     this.panelControl6.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl6.Appearance.Options.UseBackColor = true;
     this.panelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl6.Controls.Add(this.checkEditMeterManagement);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl6.Location = new System.Drawing.Point(0, 396);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(538, 25);
     this.panelControl6.TabIndex = 6;
     //
     // checkEditMeterManagement
     //
     this.checkEditMeterManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditMeterManagement.Name = "checkEditMeterManagement";
     this.checkEditMeterManagement.Properties.Caption = "บันทึกค่ามิเตอร์";
     this.checkEditMeterManagement.Size = new System.Drawing.Size(206, 19);
     this.checkEditMeterManagement.TabIndex = 1;
     this.checkEditMeterManagement.CheckedChanged += new System.EventHandler(this.checkEditMeterManagement_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.gridControlMenuGroup1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 147);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl1.Size = new System.Drawing.Size(538, 249);
     this.panelControl1.TabIndex = 3;
     //
     // gridControlMenuGroup1
     //
     this.gridControlMenuGroup1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup1.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup1.MainView = this.gridViewMenu;
     this.gridControlMenuGroup1.Name = "gridControlMenuGroup1";
     this.gridControlMenuGroup1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup1});
     this.gridControlMenuGroup1.Size = new System.Drawing.Size(524, 235);
     this.gridControlMenuGroup1.TabIndex = 5;
     this.gridControlMenuGroup1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu});
     //
     // gridViewMenu
     //
     this.gridViewMenu.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox,
     this.gridColumnMenuName,
     this.gridColumnReadOrWrite,
     this.gridColumnParent});
     this.gridViewMenu.GridControl = this.gridControlMenuGroup1;
     this.gridViewMenu.Name = "gridViewMenu";
     this.gridViewMenu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu.OptionsView.ShowVertLines = false;
     this.gridViewMenu.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox
     //
     this.gridColumnCheckBox.Caption = " ";
     this.gridColumnCheckBox.FieldName = "permission_flag_check";
     this.gridColumnCheckBox.Name = "gridColumnCheckBox";
     this.gridColumnCheckBox.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox.Visible = true;
     this.gridColumnCheckBox.VisibleIndex = 0;
     this.gridColumnCheckBox.Width = 20;
     //
     // gridColumnMenuName
     //
     this.gridColumnMenuName.Caption = " ";
     this.gridColumnMenuName.Name = "gridColumnMenuName";
     this.gridColumnMenuName.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName.Visible = true;
     this.gridColumnMenuName.VisibleIndex = 1;
     this.gridColumnMenuName.Width = 317;
     //
     // gridColumnReadOrWrite
     //
     this.gridColumnReadOrWrite.Caption = " ";
     this.gridColumnReadOrWrite.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumnReadOrWrite.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite.Name = "gridColumnReadOrWrite";
     this.gridColumnReadOrWrite.Visible = true;
     this.gridColumnReadOrWrite.VisibleIndex = 2;
     this.gridColumnReadOrWrite.Width = 151;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     //
     // gridColumnParent
     //
     this.gridColumnParent.Caption = "parent";
     this.gridColumnParent.FieldName = "menu_parent";
     this.gridColumnParent.Name = "gridColumnParent";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.checkEditRoomManagement);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 122);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(538, 25);
     this.panelControl4.TabIndex = 4;
     //
     // checkEditRoomManagement
     //
     this.checkEditRoomManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditRoomManagement.Name = "checkEditRoomManagement";
     this.checkEditRoomManagement.Properties.Caption = "บริการห้องพัก";
     this.checkEditRoomManagement.Size = new System.Drawing.Size(243, 19);
     this.checkEditRoomManagement.TabIndex = 1;
     this.checkEditRoomManagement.CheckedChanged += new System.EventHandler(this.checkEditRoomManagement_CheckedChanged);
     //
     // panelControl20
     //
     this.panelControl20.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl20.Controls.Add(this.gridControlPermissionBar);
     this.panelControl20.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl20.Location = new System.Drawing.Point(0, 59);
     this.panelControl20.Name = "panelControl20";
     this.panelControl20.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl20.Size = new System.Drawing.Size(538, 63);
     this.panelControl20.TabIndex = 21;
     //
     // gridControlPermissionBar
     //
     this.gridControlPermissionBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlPermissionBar.Location = new System.Drawing.Point(7, 7);
     this.gridControlPermissionBar.MainView = this.gridView4;
     this.gridControlPermissionBar.Name = "gridControlPermissionBar";
     this.gridControlPermissionBar.Size = new System.Drawing.Size(524, 49);
     this.gridControlPermissionBar.TabIndex = 4;
     this.gridControlPermissionBar.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumnMenuNameBar,
     this.gridColumnReadWriteBar,
     this.gridColumnReadOnlyBar});
     this.gridView4.GridControl = this.gridControlPermissionBar;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsLayout.Columns.AddNewColumns = false;
     this.gridView4.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     this.gridView4.OptionsView.ShowHorzLines = false;
     this.gridView4.OptionsView.ShowVertLines = false;
     this.gridView4.OptionsView.ShowViewCaption = true;
     this.gridView4.PaintStyleName = "Skin";
     this.gridView4.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     this.gridView4.ViewCaption = "รายการเมนู";
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = " ";
     this.gridColumn9.FieldName = "checkbox";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSize = false;
     this.gridColumn9.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 20;
     //
     // gridColumnMenuNameBar
     //
     this.gridColumnMenuNameBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnMenuNameBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnMenuNameBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnMenuNameBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnMenuNameBar.Caption = " ชื่อเมนู";
     this.gridColumnMenuNameBar.Name = "gridColumnMenuNameBar";
     this.gridColumnMenuNameBar.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowMove = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuNameBar.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuNameBar.Visible = true;
     this.gridColumnMenuNameBar.VisibleIndex = 1;
     this.gridColumnMenuNameBar.Width = 318;
     //
     // gridColumnReadWriteBar
     //
     this.gridColumnReadWriteBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnReadWriteBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnReadWriteBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnReadWriteBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnReadWriteBar.Caption = "อ่านและเขียนได้";
     this.gridColumnReadWriteBar.Name = "gridColumnReadWriteBar";
     this.gridColumnReadWriteBar.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnReadWriteBar.Visible = true;
     this.gridColumnReadWriteBar.VisibleIndex = 2;
     this.gridColumnReadWriteBar.Width = 162;
     //
     // gridColumnReadOnlyBar
     //
     this.gridColumnReadOnlyBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnReadOnlyBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnReadOnlyBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnReadOnlyBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnReadOnlyBar.Caption = "อ่านอย่างเดียว";
     this.gridColumnReadOnlyBar.Name = "gridColumnReadOnlyBar";
     this.gridColumnReadOnlyBar.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnReadOnlyBar.Visible = true;
     this.gridColumnReadOnlyBar.VisibleIndex = 3;
     this.gridColumnReadOnlyBar.Width = 200;
     //
     // panelControl16
     //
     this.panelControl16.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl16.Controls.Add(this.labelControl2);
     this.panelControl16.Controls.Add(this.labelControlRequired);
     this.panelControl16.Controls.Add(this.textEditGroupID);
     this.panelControl16.Controls.Add(this.textEditGroupName);
     this.panelControl16.Controls.Add(this.labelGroupName);
     this.panelControl16.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl16.Location = new System.Drawing.Point(0, 0);
     this.panelControl16.Name = "panelControl16";
     this.panelControl16.Size = new System.Drawing.Size(538, 59);
     this.panelControl16.TabIndex = 20;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl2.Location = new System.Drawing.Point(15, 15);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(6, 13);
     this.labelControl2.TabIndex = 372;
     this.labelControl2.Text = "*";
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(103, 40);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 372;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // textEditGroupID
     //
     this.textEditGroupID.Location = new System.Drawing.Point(438, 12);
     this.textEditGroupID.Name = "textEditGroupID";
     this.textEditGroupID.Size = new System.Drawing.Size(70, 20);
     this.textEditGroupID.TabIndex = 1;
     this.textEditGroupID.Visible = false;
     //
     // textEditGroupName
     //
     this.textEditGroupName.Location = new System.Drawing.Point(103, 12);
     this.textEditGroupName.Name = "textEditGroupName";
     this.textEditGroupName.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,300}";
     this.textEditGroupName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditGroupName.Properties.MaxLength = 300;
     this.textEditGroupName.Size = new System.Drawing.Size(329, 20);
     this.textEditGroupName.TabIndex = 1;
     //
     // labelGroupName
     //
     this.labelGroupName.Location = new System.Drawing.Point(27, 15);
     this.labelGroupName.Name = "labelGroupName";
     this.labelGroupName.Size = new System.Drawing.Size(35, 13);
     this.labelGroupName.TabIndex = 0;
     this.labelGroupName.Text = "ชื่อกลุ่ม";
     //
     // panelControl8
     //
     this.panelControl8.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.panelControl8.Appearance.Options.UseBackColor = true;
     this.panelControl8.Controls.Add(this.bttDelete);
     this.panelControl8.Controls.Add(this.bttAdd);
     this.panelControl8.Controls.Add(this.bttEdit);
     this.panelControl8.Controls.Add(this.bttCancel);
     this.panelControl8.Controls.Add(this.bttSave);
     this.panelControl8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl8.Location = new System.Drawing.Point(0, 543);
     this.panelControl8.Name = "panelControl8";
     this.panelControl8.Size = new System.Drawing.Size(559, 66);
     this.panelControl8.TabIndex = 418;
     //
     // bttDelete
     //
     this.bttDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttDelete.Image = ((System.Drawing.Image)(resources.GetObject("bttDelete.Image")));
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(332, 5);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 20;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // bttAdd
     //
     this.bttAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttAdd.Image = ((System.Drawing.Image)(resources.GetObject("bttAdd.Image")));
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(180, 5);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 18;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = ((System.Drawing.Image)(resources.GetObject("bttEdit.Image")));
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(256, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = ((System.Drawing.Image)(resources.GetObject("bttCancel.Image")));
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(484, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = ((System.Drawing.Image)(resources.GetObject("bttSave.Image")));
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(408, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1064, 609);
     this.splitContainerControl1.SplitterPosition = 585;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlAuthorizeList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1064, 609);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 23;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlAuthorizeList
     //
     this.groupControlAuthorizeList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAuthorizeList.AppearanceCaption.Options.UseFont = true;
     this.groupControlAuthorizeList.Controls.Add(this.gridControlGroupPermission);
     this.groupControlAuthorizeList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAuthorizeList.Location = new System.Drawing.Point(0, 0);
     this.groupControlAuthorizeList.Name = "groupControlAuthorizeList";
     this.groupControlAuthorizeList.Size = new System.Drawing.Size(500, 609);
     this.groupControlAuthorizeList.TabIndex = 0;
     this.groupControlAuthorizeList.Text = "รายการกลุ่มผู้ใช้งาน";
     //
     // gridControlGroupPermission
     //
     this.gridControlGroupPermission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlGroupPermission.Location = new System.Drawing.Point(2, 22);
     this.gridControlGroupPermission.MainView = this.gridViewGroup;
     this.gridControlGroupPermission.Name = "gridControlGroupPermission";
     this.gridControlGroupPermission.Size = new System.Drawing.Size(496, 585);
     this.gridControlGroupPermission.TabIndex = 1;
     this.gridControlGroupPermission.UseEmbeddedNavigator = true;
     this.gridControlGroupPermission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGroup});
     //
     // gridViewGroup
     //
     this.gridViewGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnGroupId,
     this.gridColumnGroupName,
     this.gridColumnAmountUser});
     this.gridViewGroup.GridControl = this.gridControlGroupPermission;
     this.gridViewGroup.Name = "gridViewGroup";
     this.gridViewGroup.OptionsFind.AlwaysVisible = true;
     this.gridViewGroup.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGroup.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnGroupId
     //
     this.gridColumnGroupId.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnGroupId.AppearanceHeader.Options.UseFont = true;
     this.gridColumnGroupId.Caption = "รหัสกลุ่ม";
     this.gridColumnGroupId.FieldName = "group_id";
     this.gridColumnGroupId.Name = "gridColumnGroupId";
     this.gridColumnGroupId.OptionsColumn.AllowEdit = false;
     this.gridColumnGroupId.OptionsColumn.AllowFocus = false;
     this.gridColumnGroupId.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnGroupId.OptionsColumn.AllowMove = false;
     //
     // gridColumnGroupName
     //
     this.gridColumnGroupName.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnGroupName.AppearanceHeader.Options.UseFont = true;
     this.gridColumnGroupName.Caption = "ชื่อกลุ่ม";
     this.gridColumnGroupName.FieldName = "group_name";
     this.gridColumnGroupName.Name = "gridColumnGroupName";
     this.gridColumnGroupName.OptionsColumn.AllowEdit = false;
     this.gridColumnGroupName.OptionsColumn.AllowFocus = false;
     this.gridColumnGroupName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnGroupName.OptionsColumn.AllowMove = false;
     this.gridColumnGroupName.Visible = true;
     this.gridColumnGroupName.VisibleIndex = 0;
     //
     // gridColumnAmountUser
     //
     this.gridColumnAmountUser.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmountUser.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmountUser.Caption = "จำนวนผู้ใช้";
     this.gridColumnAmountUser.FieldName = "amount_user";
     this.gridColumnAmountUser.Name = "gridColumnAmountUser";
     this.gridColumnAmountUser.OptionsColumn.AllowEdit = false;
     this.gridColumnAmountUser.OptionsColumn.AllowFocus = false;
     this.gridColumnAmountUser.OptionsColumn.AllowMove = false;
     this.gridColumnAmountUser.OptionsColumn.ReadOnly = true;
     this.gridColumnAmountUser.Visible = true;
     this.gridColumnAmountUser.VisibleIndex = 1;
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.splitContainerControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(7, 7);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1064, 609);
     this.panelControl2.TabIndex = 22;
     //
     // ProgramPermission
     //
     this.AccessibleName = "ProgramPermission";
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.panelControl2);
     this.Name = "ProgramPermission";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1078, 623);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorize)).EndInit();
     this.groupControlAuthorize.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).EndInit();
     this.panelControl25.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).EndInit();
     this.panelControl19.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditHelp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).EndInit();
     this.panelControl26.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl27)).EndInit();
     this.panelControl27.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRegistration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).EndInit();
     this.panelControl24.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).EndInit();
     this.panelControl18.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDeviceSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).EndInit();
     this.panelControl23.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).EndInit();
     this.panelControl17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDatabaseSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).EndInit();
     this.panelControl22.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).EndInit();
     this.panelControl15.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditProgramSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).EndInit();
     this.panelControl21.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
     this.panelControl11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).EndInit();
     this.panelControl12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).EndInit();
     this.panelControl13.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).EndInit();
     this.panelControl14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
     this.panelControl10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditBasicSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
     this.panelControl9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditReportManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditMeterManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRoomManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).EndInit();
     this.panelControl20.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPermissionBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).EndInit();
     this.panelControl16.ResumeLayout(false);
     this.panelControl16.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
     this.panelControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorizeList)).EndInit();
     this.groupControlAuthorizeList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGroupPermission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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);
 }
示例#53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmZones));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.ZdatagridRegionalAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.ZtxtOtherGroup = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtManagerId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyGroupID = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.ZtxtManagerName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtSPOID = new DevExpress.XtraEditors.TextEdit();
     this.ZchkDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.ZchkMerck = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.ZPlManagerId = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyGroupID = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyId = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.ZPLSPOId = new DevExpress.XtraEditors.SimpleButton();
     this.ZtxtSPOName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.groupControl1);
     this.groupControl5.Controls.Add(this.ZtxtOtherGroup);
     this.groupControl5.Controls.Add(this.ZtxtManagerId);
     this.groupControl5.Controls.Add(this.ZtxtCompanyGroupID);
     this.groupControl5.Controls.Add(this.checkEdit2);
     this.groupControl5.Controls.Add(this.ZtxtManagerName);
     this.groupControl5.Controls.Add(this.ZtxtGroupName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyId);
     this.groupControl5.Controls.Add(this.ZtxtSPOID);
     this.groupControl5.Controls.Add(this.ZchkDiscontinue);
     this.groupControl5.Controls.Add(this.ZchkMerck);
     this.groupControl5.Controls.Add(this.labelControl14);
     this.groupControl5.Controls.Add(this.labelControl13);
     this.groupControl5.Controls.Add(this.labelControl15);
     this.groupControl5.Controls.Add(this.ZPlManagerId);
     this.groupControl5.Controls.Add(this.simpleButton5);
     this.groupControl5.Controls.Add(this.ZPLCompanyGroupID);
     this.groupControl5.Controls.Add(this.ZPLCompanyId);
     this.groupControl5.Controls.Add(this.labelControl11);
     this.groupControl5.Controls.Add(this.ZPLSPOId);
     this.groupControl5.Controls.Add(this.ZtxtSPOName);
     this.groupControl5.Controls.Add(this.labelControl12);
     this.groupControl5.Controls.Add(this.labelControl10);
     this.groupControl5.Controls.Add(this.labelControl8);
     this.groupControl5.Controls.Add(this.labelControl16);
     this.groupControl5.Controls.Add(this.labelControl9);
     this.groupControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(567, 390);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Zone Details";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.ZdatagridRegionalAllocation);
     this.groupControl1.Location = new System.Drawing.Point(0, 130);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(567, 226);
     this.groupControl1.TabIndex = 124261;
     this.groupControl1.Text = "groupControl1";
     //
     // ZdatagridRegionalAllocation
     //
     this.ZdatagridRegionalAllocation.AllowAddNew = true;
     this.ZdatagridRegionalAllocation.CaptionHeight = 17;
     this.ZdatagridRegionalAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.ZdatagridRegionalAllocation.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ZdatagridRegionalAllocation.ExtendRightColumn = true;
     this.ZdatagridRegionalAllocation.FetchRowStyles = true;
     this.ZdatagridRegionalAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("ZdatagridRegionalAllocation.Images"))));
     this.ZdatagridRegionalAllocation.LinesPerRow = 1;
     this.ZdatagridRegionalAllocation.Location = new System.Drawing.Point(2, 2);
     this.ZdatagridRegionalAllocation.Name = "ZdatagridRegionalAllocation";
     this.ZdatagridRegionalAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.ZoomFactor = 75D;
     this.ZdatagridRegionalAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("ZdatagridRegionalAllocation.PrintInfo.PageSettings")));
     this.ZdatagridRegionalAllocation.RecordSelectors = false;
     this.ZdatagridRegionalAllocation.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.ZdatagridRegionalAllocation.RowHeight = 20;
     this.ZdatagridRegionalAllocation.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.Size = new System.Drawing.Size(563, 222);
     this.ZdatagridRegionalAllocation.TabIndex = 124255;
     this.ZdatagridRegionalAllocation.Text = "c1TrueDBGrid1";
     this.ZdatagridRegionalAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.ZdatagridRegionalAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.ZdatagridRegionalAllocation_AfterColUpdate);
     this.ZdatagridRegionalAllocation.PropBag = resources.GetString("ZdatagridRegionalAllocation.PropBag");
     //
     // ZtxtOtherGroup
     //
     this.ZtxtOtherGroup.Location = new System.Drawing.Point(98, 104);
     this.ZtxtOtherGroup.Name = "ZtxtOtherGroup";
     this.ZtxtOtherGroup.Size = new System.Drawing.Size(258, 20);
     this.ZtxtOtherGroup.TabIndex = 5;
     this.ZtxtOtherGroup.TabStop = false;
     this.ZtxtOtherGroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtOtherGroup_PreviewKeyDown);
     //
     // ZtxtManagerId
     //
     this.ZtxtManagerId.Location = new System.Drawing.Point(98, 85);
     this.ZtxtManagerId.Name = "ZtxtManagerId";
     this.ZtxtManagerId.Properties.MaxLength = 6;
     this.ZtxtManagerId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtManagerId.TabIndex = 4;
     this.ZtxtManagerId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtManagerId_KeyPress);
     this.ZtxtManagerId.Leave += new System.EventHandler(this.ZtxtManagerId_Leave);
     this.ZtxtManagerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtManagerId_PreviewKeyDown);
     //
     // ZtxtCompanyGroupID
     //
     this.ZtxtCompanyGroupID.Location = new System.Drawing.Point(98, 66);
     this.ZtxtCompanyGroupID.Name = "ZtxtCompanyGroupID";
     this.ZtxtCompanyGroupID.Properties.MaxLength = 6;
     this.ZtxtCompanyGroupID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyGroupID.TabIndex = 3;
     this.ZtxtCompanyGroupID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyGroupID_KeyPress);
     this.ZtxtCompanyGroupID.Leave += new System.EventHandler(this.ZtxtCompanyGroupID_Leave);
     this.ZtxtCompanyGroupID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyGroupID_PreviewKeyDown);
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit2.Location = new System.Drawing.Point(421, 84);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkEdit2.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.checkEdit2.Properties.Appearance.Options.UseFont = true;
     this.checkEdit2.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdit2.Properties.Caption = "Select/UnSelect All";
     this.checkEdit2.Size = new System.Drawing.Size(141, 19);
     this.checkEdit2.TabIndex = 8;
     this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     this.checkEdit2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.checkEdit2_KeyPress);
     //
     // ZtxtManagerName
     //
     this.ZtxtManagerName.Enabled = false;
     this.ZtxtManagerName.Location = new System.Drawing.Point(220, 85);
     this.ZtxtManagerName.Name = "ZtxtManagerName";
     this.ZtxtManagerName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtManagerName.TabIndex = 124251;
     this.ZtxtManagerName.TabStop = false;
     //
     // ZtxtGroupName
     //
     this.ZtxtGroupName.Enabled = false;
     this.ZtxtGroupName.Location = new System.Drawing.Point(220, 66);
     this.ZtxtGroupName.Name = "ZtxtGroupName";
     this.ZtxtGroupName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtGroupName.TabIndex = 124246;
     this.ZtxtGroupName.TabStop = false;
     //
     // ZtxtCompanyName
     //
     this.ZtxtCompanyName.Enabled = false;
     this.ZtxtCompanyName.Location = new System.Drawing.Point(220, 47);
     this.ZtxtCompanyName.Name = "ZtxtCompanyName";
     this.ZtxtCompanyName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtCompanyName.TabIndex = 100015;
     this.ZtxtCompanyName.TabStop = false;
     //
     // ZtxtCompanyId
     //
     this.ZtxtCompanyId.Location = new System.Drawing.Point(98, 47);
     this.ZtxtCompanyId.Name = "ZtxtCompanyId";
     this.ZtxtCompanyId.Properties.MaxLength = 3;
     this.ZtxtCompanyId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyId.TabIndex = 2;
     this.ZtxtCompanyId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyId_KeyPress);
     this.ZtxtCompanyId.Leave += new System.EventHandler(this.ZtxtCompanyId_Leave);
     this.ZtxtCompanyId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyId_PreviewKeyDown);
     //
     // ZtxtSPOID
     //
     this.ZtxtSPOID.Location = new System.Drawing.Point(98, 28);
     this.ZtxtSPOID.Name = "ZtxtSPOID";
     this.ZtxtSPOID.Properties.MaxLength = 6;
     this.ZtxtSPOID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtSPOID.TabIndex = 0;
     this.ZtxtSPOID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOID_PreviewKeyDown);
     //
     // ZchkDiscontinue
     //
     this.ZchkDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkDiscontinue.Location = new System.Drawing.Point(421, 34);
     this.ZchkDiscontinue.Name = "ZchkDiscontinue";
     this.ZchkDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.ZchkDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkDiscontinue.Properties.Caption = "Discontinue";
     this.ZchkDiscontinue.Size = new System.Drawing.Size(93, 19);
     this.ZchkDiscontinue.TabIndex = 6;
     this.ZchkDiscontinue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkDiscontinue_KeyPress);
     //
     // ZchkMerck
     //
     this.ZchkMerck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkMerck.Location = new System.Drawing.Point(421, 59);
     this.ZchkMerck.Name = "ZchkMerck";
     this.ZchkMerck.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkMerck.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkMerck.Properties.Appearance.Options.UseFont = true;
     this.ZchkMerck.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkMerck.Properties.Caption = "MERCK";
     this.ZchkMerck.Size = new System.Drawing.Size(58, 19);
     this.ZchkMerck.TabIndex = 7;
     this.ZchkMerck.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkMerck_KeyPress);
     //
     // labelControl14
     //
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.Location = new System.Drawing.Point(183, 87);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(51, 20);
     this.labelControl14.TabIndex = 124250;
     this.labelControl14.Text = "Name";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(183, 68);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(40, 20);
     this.labelControl13.TabIndex = 124245;
     this.labelControl13.Text = "Name";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(10, 86);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(95, 20);
     this.labelControl15.TabIndex = 124248;
     this.labelControl15.Text = "Manager Id";
     //
     // ZPlManagerId
     //
     this.ZPlManagerId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPlManagerId.Appearance.Options.UseFont = true;
     this.ZPlManagerId.Image = ((System.Drawing.Image)(resources.GetObject("ZPlManagerId.Image")));
     this.ZPlManagerId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPlManagerId.Location = new System.Drawing.Point(149, 85);
     this.ZPlManagerId.Name = "ZPlManagerId";
     this.ZPlManagerId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPlManagerId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.ZPlManagerId.SuperTip = superToolTip1;
     this.ZPlManagerId.TabIndex = 124249;
     this.ZPlManagerId.TabStop = false;
     this.ZPlManagerId.Click += new System.EventHandler(this.ZPlManagerId_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(70, 66);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(27, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip2.Items.Add(toolTipItem1);
     this.simpleButton5.SuperTip = superToolTip2;
     this.simpleButton5.TabIndex = 100019;
     this.simpleButton5.TabStop = false;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // ZPLCompanyGroupID
     //
     this.ZPLCompanyGroupID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyGroupID.Appearance.Options.UseFont = true;
     this.ZPLCompanyGroupID.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyGroupID.Image")));
     this.ZPLCompanyGroupID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyGroupID.Location = new System.Drawing.Point(149, 66);
     this.ZPLCompanyGroupID.Name = "ZPLCompanyGroupID";
     this.ZPLCompanyGroupID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyGroupID.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.ZPLCompanyGroupID.SuperTip = superToolTip3;
     this.ZPLCompanyGroupID.TabIndex = 100018;
     this.ZPLCompanyGroupID.TabStop = false;
     this.ZPLCompanyGroupID.Click += new System.EventHandler(this.ZPLCompanyGroupID_Click);
     //
     // ZPLCompanyId
     //
     this.ZPLCompanyId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyId.Appearance.Options.UseFont = true;
     this.ZPLCompanyId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyId.Image")));
     this.ZPLCompanyId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyId.Location = new System.Drawing.Point(149, 47);
     this.ZPLCompanyId.Name = "ZPLCompanyId";
     this.ZPLCompanyId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem3);
     this.ZPLCompanyId.SuperTip = superToolTip4;
     this.ZPLCompanyId.TabIndex = 100014;
     this.ZPLCompanyId.TabStop = false;
     this.ZPLCompanyId.Click += new System.EventHandler(this.ZPLCompanyId_Click);
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(183, 49);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(40, 20);
     this.labelControl11.TabIndex = 100011;
     this.labelControl11.Text = "Name";
     //
     // ZPLSPOId
     //
     this.ZPLSPOId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLSPOId.Appearance.Options.UseFont = true;
     this.ZPLSPOId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLSPOId.Image")));
     this.ZPLSPOId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLSPOId.Location = new System.Drawing.Point(149, 28);
     this.ZPLSPOId.Name = "ZPLSPOId";
     this.ZPLSPOId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLSPOId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem4);
     this.ZPLSPOId.SuperTip = superToolTip5;
     this.ZPLSPOId.TabIndex = 100009;
     this.ZPLSPOId.TabStop = false;
     this.ZPLSPOId.Click += new System.EventHandler(this.ZPLSPOId_Click);
     //
     // ZtxtSPOName
     //
     this.ZtxtSPOName.Location = new System.Drawing.Point(220, 28);
     this.ZtxtSPOName.Name = "ZtxtSPOName";
     this.ZtxtSPOName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtSPOName.TabIndex = 1;
     this.ZtxtSPOName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOName_PreviewKeyDown);
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(10, 67);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(95, 20);
     this.labelControl12.TabIndex = 100017;
     this.labelControl12.Text = "CGroup Id";
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(10, 47);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(95, 20);
     this.labelControl10.TabIndex = 100013;
     this.labelControl10.Text = "Company Id";
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(10, 28);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(95, 20);
     this.labelControl8.TabIndex = 100008;
     this.labelControl8.Text = "SPO Id";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(10, 104);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(95, 20);
     this.labelControl16.TabIndex = 124255;
     this.labelControl16.Text = "Other Groups";
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(183, 30);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(40, 20);
     this.labelControl9.TabIndex = 100006;
     this.labelControl9.Text = "Name";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(88, 6);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Cancel Current Operation";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnCancel.SuperTip = superToolTip6;
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(12, 6);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Add New Module";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnAdd.SuperTip = superToolTip7;
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 356);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(567, 34);
     this.groupControl2.TabIndex = 13;
     //
     // frmZones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(567, 390);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl5);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmZones";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Zones";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmZones_FormClosing);
     this.Load += new System.EventHandler(this.VendorEmployees_Load);
     this.Enter += new System.EventHandler(this.frmZones_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#54
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.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();
 }
示例#55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dateedtDate = new DevExpress.XtraEditors.DateEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtReason = new DevExpress.XtraEditors.TextEdit();
     this.sbtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.timeedtStartTime = new DevExpress.XtraEditors.TimeEdit();
     this.timeedtEndTime = new DevExpress.XtraEditors.TimeEdit();
     this.chkPH = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReason.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtEndTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // dateedtDate
     //
     this.dateedtDate.EditValue = new System.DateTime(2006, 1, 28, 0, 0, 0, 0);
     this.dateedtDate.Location = new System.Drawing.Point(82, 8);
     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 = 0;
     this.dateedtDate.EditValueChanged += new System.EventHandler(this.dateedtDate_EditValueChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(12, 66);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(68, 18);
     this.label3.TabIndex = 39;
     this.label3.Text = "End time:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 38);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(68, 18);
     this.label2.TabIndex = 38;
     this.label2.Text = "Start time:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 10);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(68, 18);
     this.label1.TabIndex = 37;
     this.label1.Text = "Date:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(12, 94);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(68, 18);
     this.label5.TabIndex = 46;
     this.label5.Text = "Reason:";
     //
     // txtReason
     //
     this.txtReason.EditValue = "";
     this.txtReason.Location = new System.Drawing.Point(82, 92);
     this.txtReason.Name = "txtReason";
     this.txtReason.Properties.MaxLength = 50;
     this.txtReason.Size = new System.Drawing.Size(314, 20);
     this.txtReason.TabIndex = 3;
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnSave.Location = new System.Drawing.Point(240, 118);
     this.sbtnSave.Name = "sbtnSave";
     this.sbtnSave.Size = new System.Drawing.Size(75, 23);
     this.sbtnSave.TabIndex = 4;
     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(322, 118);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.Size = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex = 5;
     this.sbtnCancel.Text = "Cancel";
     this.sbtnCancel.Click += new System.EventHandler(this.sbtnCancel_Click);
     //
     // timeedtStartTime
     //
     this.timeedtStartTime.EditValue = new System.DateTime(2006, 4, 11, 0, 0, 0, 0);
     this.timeedtStartTime.Location = new System.Drawing.Point(82, 36);
     this.timeedtStartTime.Name = "timeedtStartTime";
     this.timeedtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeedtStartTime.Properties.Mask.EditMask = "hh:mm tt";
     this.timeedtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.timeedtStartTime.Size = new System.Drawing.Size(100, 20);
     this.timeedtStartTime.TabIndex = 1;
     //
     // timeedtEndTime
     //
     this.timeedtEndTime.EditValue = new System.DateTime(2006, 4, 11, 0, 0, 0, 0);
     this.timeedtEndTime.Location = new System.Drawing.Point(82, 64);
     this.timeedtEndTime.Name = "timeedtEndTime";
     this.timeedtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeedtEndTime.Properties.Mask.EditMask = "hh:mm tt";
     this.timeedtEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.timeedtEndTime.Size = new System.Drawing.Size(100, 20);
     this.timeedtEndTime.TabIndex = 2;
     //
     // chkPH
     //
     this.chkPH.AutoSize = true;
     this.chkPH.Location = new System.Drawing.Point(266, 11);
     this.chkPH.Name = "chkPH";
     this.chkPH.Size = new System.Drawing.Size(93, 17);
     this.chkPH.TabIndex = 47;
     this.chkPH.Text = "Public Holiday";
     this.chkPH.UseVisualStyleBackColor = true;
     this.chkPH.CheckedChanged += new System.EventHandler(this.chkPH_CheckedChanged);
     //
     // frmOvertime
     //
     this.AcceptButton = this.sbtnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(402, 146);
     this.Controls.Add(this.chkPH);
     this.Controls.Add(this.timeedtEndTime);
     this.Controls.Add(this.timeedtStartTime);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.txtReason);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.dateedtDate);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmOvertime";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Apply Overtime";
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReason.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtEndTime.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.TxtUserName = new DevExpress.XtraEditors.TextEdit();
     this.BtnEnter = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.TxtPassword = new DevExpress.XtraEditors.TextEdit();
     this.BtnEnd = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.TxtUserName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtPassword.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl1
     //
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl1.Location = new System.Drawing.Point(206, 21);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(74, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اسم المستخدم";
     //
     // TxtUserName
     //
     this.TxtUserName.EditValue = "";
     this.TxtUserName.Location = new System.Drawing.Point(18, 17);
     this.TxtUserName.Name = "TxtUserName";
     this.TxtUserName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.TxtUserName.Size = new System.Drawing.Size(182, 22);
     this.TxtUserName.TabIndex = 0;
     this.TxtUserName.EditValueChanged += new System.EventHandler(this.text_EditValueChanged);
     //
     // BtnEnter
     //
     this.BtnEnter.Location = new System.Drawing.Point(18, 107);
     this.BtnEnter.Name = "BtnEnter";
     this.BtnEnter.Size = new System.Drawing.Size(182, 23);
     this.BtnEnter.TabIndex = 2;
     this.BtnEnter.Text = "دخــــــــــــــــــــــــــول";
     this.BtnEnter.Click += new System.EventHandler(this.BtnEnter_Click);
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl2.Location = new System.Drawing.Point(227, 52);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(54, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "كلمة الســر";
     //
     // TxtPassword
     //
     this.TxtPassword.EditValue = "";
     this.TxtPassword.Location = new System.Drawing.Point(18, 48);
     this.TxtPassword.Name = "TxtPassword";
     this.TxtPassword.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.TxtPassword.Properties.PasswordChar = '*';
     this.TxtPassword.Size = new System.Drawing.Size(182, 22);
     this.TxtPassword.TabIndex = 1;
     this.TxtPassword.EditValueChanged += new System.EventHandler(this.text_EditValueChanged);
     //
     // BtnEnd
     //
     this.BtnEnd.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.BtnEnd.Location = new System.Drawing.Point(215, 107);
     this.BtnEnd.Name = "BtnEnd";
     this.BtnEnd.Size = new System.Drawing.Size(75, 23);
     this.BtnEnd.TabIndex = 3;
     this.BtnEnd.Text = "خروج";
     this.BtnEnd.Click += new System.EventHandler(this.BtnEnd_Click);
     //
     // LoginFrm
     //
     this.AcceptButton = this.BtnEnter;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Tile;
     this.BackgroundImageStore = global::schoolStore.Properties.Resources.Login_Back;
     this.CancelButton = this.BtnEnd;
     this.ClientSize = new System.Drawing.Size(288, 138);
     this.ControlBox = false;
     this.Controls.Add(this.BtnEnd);
     this.Controls.Add(this.BtnEnter);
     this.Controls.Add(this.TxtPassword);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.TxtUserName);
     this.Controls.Add(this.labelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "LoginFrm";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "المستخدميـــــــــــــن";
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.TxtUserName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtPassword.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#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.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.textEditPW = new DevExpress.XtraEditors.TextEdit();
     this.textEditUserID = new DevExpress.XtraEditors.TextEdit();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPW.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUserID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.textEditPW);
     this.panelControl1.Controls.Add(this.textEditUserID);
     this.panelControl1.Controls.Add(this.simpleButtonCancel);
     this.panelControl1.Controls.Add(this.simpleButtonOK);
     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(264, 142);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 56);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(80, 23);
     this.label2.TabIndex = 36;
     this.label2.Text = "Password";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(80, 23);
     this.label1.TabIndex = 35;
     this.label1.Text = "Instructor ID";
     //
     // textEditPW
     //
     this.textEditPW.EditValue = "";
     this.textEditPW.Location = new System.Drawing.Point(112, 56);
     this.textEditPW.Name = "textEditPW";
     //
     // textEditPW.Properties
     //
     this.textEditPW.Properties.PasswordChar = '*';
     this.textEditPW.Size = new System.Drawing.Size(136, 20);
     this.textEditPW.TabIndex = 0;
     //
     // textEditUserID
     //
     this.textEditUserID.EditValue = "";
     this.textEditUserID.Location = new System.Drawing.Point(112, 24);
     this.textEditUserID.Name = "textEditUserID";
     this.textEditUserID.Size = new System.Drawing.Size(136, 20);
     this.textEditUserID.TabIndex = 1;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(152, 96);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 32;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(48, 96);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 31;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // InstructorLogin
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(264, 142);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "InstructorLogin";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "InstructorLogin";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditPW.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUserID.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()
 {
     this.lblCashOpeningFloat = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.strRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.lblRemark = new System.Windows.Forms.Label();
     this.txtNumLockerBal = new DevExpress.XtraEditors.TextEdit();
     this.txtMineralWaterBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtCashOpeningFLoat = new DevExpress.XtraEditors.TextEdit();
     this.Open = new DevExpress.XtraEditors.SimpleButton();
     this.Cancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNumLockerBal.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMineralWaterBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCashOpeningFLoat.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblCashOpeningFloat
     //
     this.lblCashOpeningFloat.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblCashOpeningFloat.Location = new System.Drawing.Point(16, 16);
     this.lblCashOpeningFloat.Name = "lblCashOpeningFloat";
     this.lblCashOpeningFloat.Size = new System.Drawing.Size(112, 23);
     this.lblCashOpeningFloat.TabIndex = 0;
     this.lblCashOpeningFloat.Text = "Cash Opening Point";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 48);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(192, 16);
     this.label1.TabIndex = 1;
     this.label1.Text = "Mineral Water Balance";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 88);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(216, 16);
     this.label2.TabIndex = 2;
     this.label2.Text = "Number of Lock Balance";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.strRemarks);
     this.groupControl1.Controls.Add(this.lblRemark);
     this.groupControl1.Controls.Add(this.txtNumLockerBal);
     this.groupControl1.Controls.Add(this.txtMineralWaterBalance);
     this.groupControl1.Controls.Add(this.txtCashOpeningFLoat);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.lblCashOpeningFloat);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.Open);
     this.groupControl1.Controls.Add(this.Cancel);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(400, 237);
     this.groupControl1.TabIndex = 3;
     this.groupControl1.Text = "groupControl1";
     //
     // strRemarks
     //
     this.strRemarks.EditValue = "";
     this.strRemarks.Location = new System.Drawing.Point(176, 112);
     this.strRemarks.Name = "strRemarks";
     this.strRemarks.Size = new System.Drawing.Size(216, 80);
     this.strRemarks.TabIndex = 7;
     //
     // lblRemark
     //
     this.lblRemark.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRemark.Location = new System.Drawing.Point(16, 120);
     this.lblRemark.Name = "lblRemark";
     this.lblRemark.Size = new System.Drawing.Size(152, 72);
     this.lblRemark.TabIndex = 6;
     this.lblRemark.Text = "Remarks";
     this.lblRemark.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtNumLockerBal
     //
     this.txtNumLockerBal.EditValue = 0;
     this.txtNumLockerBal.Location = new System.Drawing.Point(176, 80);
     this.txtNumLockerBal.Name = "txtNumLockerBal";
     //
     // txtNumLockerBal.Properties
     //
     this.txtNumLockerBal.Properties.Mask.EditMask = "f0";
     this.txtNumLockerBal.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtNumLockerBal.Properties.ReadOnly = true;
     this.txtNumLockerBal.TabIndex = 5;
     //
     // txtMineralWaterBalance
     //
     this.txtMineralWaterBalance.EditValue = "0";
     this.txtMineralWaterBalance.Location = new System.Drawing.Point(176, 48);
     this.txtMineralWaterBalance.Name = "txtMineralWaterBalance";
     //
     // txtMineralWaterBalance.Properties
     //
     this.txtMineralWaterBalance.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtMineralWaterBalance.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtMineralWaterBalance.Properties.Mask.EditMask = "n0";
     this.txtMineralWaterBalance.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtMineralWaterBalance.Properties.ReadOnly = true;
     this.txtMineralWaterBalance.TabIndex = 4;
     //
     // txtCashOpeningFLoat
     //
     this.txtCashOpeningFLoat.EditValue = "0.00";
     this.txtCashOpeningFLoat.Location = new System.Drawing.Point(176, 16);
     this.txtCashOpeningFLoat.Name = "txtCashOpeningFLoat";
     //
     // txtCashOpeningFLoat.Properties
     //
     this.txtCashOpeningFLoat.Properties.DisplayFormat.FormatString = "f2";
     this.txtCashOpeningFLoat.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtCashOpeningFLoat.Properties.EditFormat.FormatString = "f2";
     this.txtCashOpeningFLoat.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtCashOpeningFLoat.Properties.Mask.BeepOnError = true;
     this.txtCashOpeningFLoat.Properties.Mask.EditMask = "[0-9]+\\.[0-9][0-9]";
     this.txtCashOpeningFLoat.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.txtCashOpeningFLoat.Properties.Mask.ShowPlaceHolders = false;
     this.txtCashOpeningFLoat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtCashOpeningFLoat.Properties.ReadOnly = true;
     this.txtCashOpeningFLoat.TabIndex = 3;
     //
     // Open
     //
     this.Open.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Open.Appearance.Options.UseFont = true;
     this.Open.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Open.Location = new System.Drawing.Point(240, 208);
     this.Open.Name = "Open";
     this.Open.Size = new System.Drawing.Size(72, 20);
     this.Open.TabIndex = 5;
     this.Open.Text = "Open";
     this.Open.Click += new System.EventHandler(this.Open_Click);
     //
     // Cancel
     //
     this.Cancel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Cancel.Appearance.Options.UseFont = true;
     this.Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Cancel.Location = new System.Drawing.Point(320, 208);
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(72, 20);
     this.Cancel.TabIndex = 6;
     this.Cancel.Text = "Cancel";
     this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // frmOpenShift
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(400, 237);
     this.Controls.Add(this.groupControl1);
     this.Name = "frmOpenShift";
     this.Text = "Open Shift .....";
     this.Load += new System.EventHandler(this.frmOpenShift_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.strRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNumLockerBal.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMineralWaterBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCashOpeningFLoat.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#60
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmTnLogin));
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.bgwLogin = new System.ComponentModel.BackgroundWorker();
     this.bgwLoadUsers = new System.ComponentModel.BackgroundWorker();
     this.bgwLoadParams = new System.ComponentModel.BackgroundWorker();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.AliceBlue;
     this.labelControl1.Location = new System.Drawing.Point(26, 60);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(100, 16);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Tên đăng nhập:";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.AliceBlue;
     this.labelControl2.Location = new System.Drawing.Point(26, 105);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(65, 16);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "Mật khẩu:";
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "Admin";
     this.textEdit1.Location = new System.Drawing.Point(150, 58);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.textEdit1.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.textEdit1.Properties.Appearance.Options.UseFont = true;
     this.textEdit1.Properties.Appearance.Options.UseForeColor = true;
     this.textEdit1.Size = new System.Drawing.Size(176, 21);
     this.textEdit1.TabIndex = 1;
     this.textEdit1.EditValueChanged += new System.EventHandler(this.textEdit1_EditValueChanged);
     //
     // textEdit2
     //
     this.textEdit2.EditValue = "123";
     this.textEdit2.Location = new System.Drawing.Point(150, 103);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.textEdit2.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.textEdit2.Properties.Appearance.Options.UseFont = true;
     this.textEdit2.Properties.Appearance.Options.UseForeColor = true;
     this.textEdit2.Properties.PasswordChar = '*';
     this.textEdit2.Size = new System.Drawing.Size(176, 21);
     this.textEdit2.TabIndex = 2;
     //
     // simpleButton1
     //
     this.simpleButton1.Image = global::TNPro.Properties.Resources.login_24;
     this.simpleButton1.Location = new System.Drawing.Point(149, 147);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(86, 27);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = "Đăng nhập";
     this.simpleButton1.Click += new System.EventHandler(this.btnDangNhap_Click);
     //
     // btnExit
     //
     this.btnExit.Image = global::TNPro.Properties.Resources.close_24;
     this.btnExit.Location = new System.Drawing.Point(241, 147);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(85, 27);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "Thoát";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(24, 155);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Appearance.ForeColor = System.Drawing.Color.AliceBlue;
     this.checkEdit1.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdit1.Properties.Caption = "Nhớ mật khẩu";
     this.checkEdit1.Size = new System.Drawing.Size(100, 19);
     this.checkEdit1.TabIndex = 3;
     //
     // btnClose
     //
     this.btnClose.Appearance.Font = new System.Drawing.Font("Technic", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnClose.Appearance.ForeColor = System.Drawing.Color.Red;
     this.btnClose.Appearance.Options.UseFont = true;
     this.btnClose.Appearance.Options.UseForeColor = true;
     this.btnClose.Location = new System.Drawing.Point(480, 2);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(17, 17);
     this.btnClose.TabIndex = 7;
     this.btnClose.Text = "X";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // bgwLogin
     //
     this.bgwLogin.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwLogin_DoWork);
     //
     // bgwLoadUsers
     //
     this.bgwLoadUsers.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwLoadUsers_DoWork);
     this.bgwLoadUsers.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwLoadUsers_RunWorkerCompleted);
     //
     // bgwLoadParams
     //
     this.bgwLoadParams.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwLoadParams_DoWork);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(241, 194);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "simpleButton2";
     this.simpleButton2.Visible = false;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // FrmTnLogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Tile;
     this.BackgroundImageStore = global::TNPro.Properties.Resources.login2_500_375;
     this.ClientSize = new System.Drawing.Size(500, 375);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.checkEdit1);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.textEdit2);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmTnLogin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Đăng nhập hệ thống";
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }