/// <summary>
 ///
 /// </summary>
 /// <param name="spinEdit"></param>
 /// <param name="min"></param>
 /// <param name="max"></param>
 /// <param name="mask"></param>
 public static void ConfigSpinEdit(DevExpress.XtraEditors.SpinEdit spinEdit, int min, int max, string mask)
 {
     spinEdit.Properties.EditMask = mask;
     spinEdit.Properties.MinValue = min;
     spinEdit.Properties.MaxValue = max;
     spinEdit.EditValue           = min;
 }
Exemple #2
0
 private void CalculatePriceBound(DevExpress.XtraEditors.SpinEdit spinPriceBound, DevExpress.XtraEditors.TextEdit txtPrice, DevExpress.XtraEditors.LabelControl lblPriceBound)
 {
     if (!string.IsNullOrEmpty(spinPriceBound.EditValue.ToString()) && !string.IsNullOrEmpty(txtPrice.Text.Trim()))
     {
         decimal dealUpBound   = CommonHelper.SetDecimalDigits((1 + decimal.Parse(spinPriceBound.EditValue.ToString()) / (int)EnumLibrary.NumericUnit.Hundred) * decimal.Parse(txtPrice.Text.Trim()), 2);
         decimal dealDownBound = CommonHelper.SetDecimalDigits((1 - decimal.Parse(spinPriceBound.EditValue.ToString()) / (int)EnumLibrary.NumericUnit.Hundred) * decimal.Parse(txtPrice.Text.Trim()), 2);
         lblPriceBound.Text = dealDownBound.ToString() + " ~ " + dealUpBound.ToString();
     }
 }
        private void editProductionmonth_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.SpinEdit theEdit = sender as DevExpress.XtraEditors.SpinEdit;
            SetProdmonth theNewMonth = new SetProdmonth();
            decimal      theProdMonth;

            theProdMonth = Convert.ToDecimal(theEdit.EditValue.ToString());
            theNewMonth.getNewProdmonth(theProdMonth);
            if (theNewMonth.getProdmonth.ToString() != "-1")
            {
                productionmonth1.EditValue = theNewMonth.getProdmonth.ToString();
            }
        }
Exemple #4
0
        //验证保温厚度范围
        private void repositoryItemSpinEdit1_Leave(object sender, EventArgs e)
        {
            DataRowView currRow = this.bindingSource1.Current as DataRowView;

            //获取计算直径  即设备直径
            this.GCZJZHBindingSource.Filter = string.Format("YSGG = '{0}'", currRow["GG"]);
            DataRowView sjzj = GCZJZHBindingSource.Current as DataRowView;
            decimal     sbzj = sjzj == null ? -1 : ToolKit.ParseDecimal(sjzj["JSZJ"]);

            this.BWJRGCBindingSource.Filter = string.Format("FL='保温绝热工程' and BWLB ='保温层' and  BWFL='{0}'  and (JRCL='{1}' or JRCL is null) and ((MaxSBZJ>={2} and MinSBZJ<={2}) or SBZJ is null)", currRow["FL"], currRow["BWJRCLZL"], sbzj);

            //获取保温厚度范围
            decimal minValue = 0;
            decimal maxValue = 0;
            int     i        = 0;

            foreach (DataRowView item in BWJRGCBindingSource)
            {
                if (item != null && item["JRHD"] != null)
                {
                    string[] jrhd = toString(item["JRHD"]).Split('~');
                    if (jrhd.Length == 2)
                    {
                        if (i == 0)
                        {
                            minValue = decimal.Parse(jrhd[0]);
                            maxValue = decimal.Parse(jrhd[1]);
                            i++;
                        }
                        if (decimal.Parse(jrhd[0]) <= minValue)
                        {
                            minValue = decimal.Parse(jrhd[0]);
                        }
                        if (decimal.Parse(jrhd[1]) >= maxValue)
                        {
                            maxValue = decimal.Parse(jrhd[1]);
                        }
                    }
                }
            }
            DevExpress.XtraEditors.SpinEdit edit = sender as DevExpress.XtraEditors.SpinEdit;
            if (edit.Value < minValue)
            {
                edit.Value = minValue;
            }
            else if (edit.Value > maxValue)
            {
                edit.Value = maxValue;
            }
        }
Exemple #5
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.simpleButton3       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1       = new DevExpress.XtraEditors.SimpleButton();
     this.spinEdit2           = new DevExpress.XtraEditors.SpinEdit();
     this.spinEdit1           = new DevExpress.XtraEditors.SpinEdit();
     this.radioGroup2         = new DevExpress.XtraEditors.RadioGroup();
     this.radioGroup1         = new DevExpress.XtraEditors.RadioGroup();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.simpleButton3);
     this.layoutControl1.Controls.Add(this.simpleButton2);
     this.layoutControl1.Controls.Add(this.simpleButton1);
     this.layoutControl1.Controls.Add(this.spinEdit2);
     this.layoutControl1.Controls.Add(this.spinEdit1);
     this.layoutControl1.Controls.Add(this.radioGroup2);
     this.layoutControl1.Controls.Add(this.radioGroup1);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(310, 251);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // simpleButton3
     //
     this.simpleButton3.ImageLocation   = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location        = new System.Drawing.Point(216, 213);
     this.simpleButton3.Name            = "simpleButton3";
     this.simpleButton3.Size            = new System.Drawing.Size(89, 22);
     this.simpleButton3.StyleController = this.layoutControl1;
     this.simpleButton3.TabIndex        = 10;
     this.simpleButton3.Text            = "多边形";
     //
     // simpleButton2
     //
     this.simpleButton2.ImageLocation   = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location        = new System.Drawing.Point(123, 213);
     this.simpleButton2.Name            = "simpleButton2";
     this.simpleButton2.Size            = new System.Drawing.Size(89, 22);
     this.simpleButton2.StyleController = this.layoutControl1;
     this.simpleButton2.TabIndex        = 9;
     this.simpleButton2.Text            = "矩形";
     //
     // simpleButton1
     //
     this.simpleButton1.ImageLocation   = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location        = new System.Drawing.Point(5, 213);
     this.simpleButton1.Name            = "simpleButton1";
     this.simpleButton1.Size            = new System.Drawing.Size(114, 22);
     this.simpleButton1.StyleController = this.layoutControl1;
     this.simpleButton1.TabIndex        = 8;
     this.simpleButton1.Text            = "圆形";
     //
     // spinEdit2
     //
     this.spinEdit2.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinEdit2.Location = new System.Drawing.Point(88, 161);
     this.spinEdit2.Name     = "spinEdit2";
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.spinEdit2.Size            = new System.Drawing.Size(217, 22);
     this.spinEdit2.StyleController = this.layoutControl1;
     this.spinEdit2.TabIndex        = 7;
     //
     // spinEdit1
     //
     this.spinEdit1.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinEdit1.Location = new System.Drawing.Point(88, 109);
     this.spinEdit1.Name     = "spinEdit1";
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.spinEdit1.Size            = new System.Drawing.Size(217, 22);
     this.spinEdit1.StyleController = this.layoutControl1;
     this.spinEdit1.TabIndex        = 6;
     //
     // radioGroup2
     //
     this.radioGroup2.Location           = new System.Drawing.Point(5, 80);
     this.radioGroup2.Name               = "radioGroup2";
     this.radioGroup2.Properties.Columns = 3;
     this.radioGroup2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "边缘最低点"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "区域中心点"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "区域最低点")
     });
     this.radioGroup2.Size            = new System.Drawing.Size(300, 25);
     this.radioGroup2.StyleController = this.layoutControl1;
     this.radioGroup2.TabIndex        = 5;
     //
     // radioGroup1
     //
     this.radioGroup1.Location           = new System.Drawing.Point(5, 25);
     this.radioGroup1.Name               = "radioGroup1";
     this.radioGroup1.Properties.Columns = 2;
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "参考点 + 开挖深度"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "绝对参考高度")
     });
     this.radioGroup1.Size            = new System.Drawing.Size(300, 25);
     this.radioGroup1.StyleController = this.layoutControl1;
     this.radioGroup1.TabIndex        = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup2,
         this.layoutControlGroup3,
         this.layoutControlGroup4,
         this.layoutControlGroup5,
         this.emptySpaceItem1
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(310, 251);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1
     });
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name     = "layoutControlGroup2";
     this.layoutControlGroup2.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size     = new System.Drawing.Size(310, 55);
     this.layoutControlGroup2.Text     = "开挖方式";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.radioGroup1;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(304, 29);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem2,
         this.layoutControlItem3
     });
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 55);
     this.layoutControlGroup3.Name     = "layoutControlGroup3";
     this.layoutControlGroup3.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size     = new System.Drawing.Size(310, 81);
     this.layoutControlGroup3.Text     = "参考点设置";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.radioGroup2;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(304, 29);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.spinEdit1;
     this.layoutControlItem3.CustomizationFormText = "开挖深度(m):";
     this.layoutControlItem3.Location            = new System.Drawing.Point(0, 29);
     this.layoutControlItem3.MaxSize             = new System.Drawing.Size(304, 26);
     this.layoutControlItem3.MinSize             = new System.Drawing.Size(304, 26);
     this.layoutControlItem3.Name                = "layoutControlItem3";
     this.layoutControlItem3.Size                = new System.Drawing.Size(304, 26);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text                = "开挖深度(m):";
     this.layoutControlItem3.TextSize            = new System.Drawing.Size(80, 14);
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem4
     });
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 136);
     this.layoutControlGroup4.Name     = "layoutControlGroup4";
     this.layoutControlGroup4.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup4.Size     = new System.Drawing.Size(310, 52);
     this.layoutControlGroup4.Text     = "参考高度设置";
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.spinEdit2;
     this.layoutControlItem4.CustomizationFormText = "参考高度(m):";
     this.layoutControlItem4.Location            = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.MaxSize             = new System.Drawing.Size(304, 26);
     this.layoutControlItem4.MinSize             = new System.Drawing.Size(304, 26);
     this.layoutControlItem4.Name                = "layoutControlItem4";
     this.layoutControlItem4.Size                = new System.Drawing.Size(304, 26);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text                = "参考高度(m):";
     this.layoutControlItem4.TextSize            = new System.Drawing.Size(80, 14);
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "layoutControlGroup5";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem5,
         this.layoutControlItem6,
         this.layoutControlItem7
     });
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 188);
     this.layoutControlGroup5.Name     = "layoutControlGroup5";
     this.layoutControlGroup5.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup5.Size     = new System.Drawing.Size(310, 52);
     this.layoutControlGroup5.Text     = "开挖形状";
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.simpleButton1;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(118, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.simpleButton2;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(118, 0);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(93, 26);
     this.layoutControlItem6.Text     = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible           = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.simpleButton3;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(211, 0);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(93, 26);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack         = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 240);
     this.emptySpaceItem1.Name     = "emptySpaceItem1";
     this.emptySpaceItem1.Size     = new System.Drawing.Size(310, 11);
     this.emptySpaceItem1.Text     = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // FrmEarthworkCalculation
     //
     this.ClientSize = new System.Drawing.Size(310, 251);
     this.Controls.Add(this.layoutControl1);
     this.Name = "FrmEarthworkCalculation";
     this.Text = "开挖分析";
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).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(ucThongKeBanTheoThang));
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnIn = new DevExpress.XtraEditors.SimpleButton();
     this.lblTienBan = new DevExpress.XtraEditors.LabelControl();
     this.lblTienLai = new DevExpress.XtraEditors.LabelControl();
     this.lblTienNhap = new DevExpress.XtraEditors.LabelControl();
     this.lblSoLuong = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gcDanhSachThongKe = new DevExpress.XtraGrid.GridControl();
     this.gvDanhSachThongKe = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.lueLoaiThongKe = new DevExpress.XtraEditors.LookUpEdit();
     this.btnThongKe = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.cboNam = new DevExpress.XtraEditors.ComboBoxEdit();
     this.spedThang = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcDanhSachThongKe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDanhSachThongKe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueLoaiThongKe.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboNam.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spedThang.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // 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.Controls.Add(this.btnIn);
     this.panelControl1.Controls.Add(this.lblTienBan);
     this.panelControl1.Controls.Add(this.lblTienLai);
     this.panelControl1.Controls.Add(this.lblTienNhap);
     this.panelControl1.Controls.Add(this.lblSoLuong);
     this.panelControl1.Controls.Add(this.groupControl1);
     this.panelControl1.Location = new System.Drawing.Point(209, 64);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(739, 460);
     this.panelControl1.TabIndex = 0;
     //
     // btnIn
     //
     this.btnIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnIn.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnIn.Appearance.Options.UseFont = true;
     this.btnIn.Image = ((System.Drawing.Image)(resources.GetObject("btnIn.Image")));
     this.btnIn.Location = new System.Drawing.Point(488, 381);
     this.btnIn.Name = "btnIn";
     this.btnIn.Size = new System.Drawing.Size(222, 64);
     this.btnIn.TabIndex = 10;
     this.btnIn.Text = "In danh sách";
     this.btnIn.Click += new System.EventHandler(this.btnIn_Click);
     //
     // lblTienBan
     //
     this.lblTienBan.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.lblTienBan.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTienBan.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblTienBan.Location = new System.Drawing.Point(72, 409);
     this.lblTienBan.Name = "lblTienBan";
     this.lblTienBan.Size = new System.Drawing.Size(124, 19);
     this.lblTienBan.TabIndex = 9;
     this.lblTienBan.Text = "Tổng tiền bán: ";
     //
     // lblTienLai
     //
     this.lblTienLai.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.lblTienLai.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTienLai.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblTienLai.Location = new System.Drawing.Point(72, 436);
     this.lblTienLai.Name = "lblTienLai";
     this.lblTienLai.Size = new System.Drawing.Size(114, 19);
     this.lblTienLai.TabIndex = 8;
     this.lblTienLai.Text = "Tổng tiền lãi: ";
     //
     // lblTienNhap
     //
     this.lblTienNhap.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.lblTienNhap.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTienNhap.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblTienNhap.Location = new System.Drawing.Point(72, 382);
     this.lblTienNhap.Name = "lblTienNhap";
     this.lblTienNhap.Size = new System.Drawing.Size(134, 19);
     this.lblTienNhap.TabIndex = 7;
     this.lblTienNhap.Text = "Tổng tiền nhập: ";
     //
     // lblSoLuong
     //
     this.lblSoLuong.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.lblSoLuong.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSoLuong.Appearance.ForeColor = System.Drawing.Color.Red;
     this.lblSoLuong.Location = new System.Drawing.Point(72, 355);
     this.lblSoLuong.Name = "lblSoLuong";
     this.lblSoLuong.Size = new System.Drawing.Size(126, 19);
     this.lblSoLuong.TabIndex = 6;
     this.lblSoLuong.Text = "Tổng số lượng: ";
     //
     // 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.gcDanhSachThongKe);
     this.groupControl1.Location = new System.Drawing.Point(29, 22);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(681, 327);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "Danh sách";
     //
     // gcDanhSachThongKe
     //
     this.gcDanhSachThongKe.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcDanhSachThongKe.Location = new System.Drawing.Point(2, 20);
     this.gcDanhSachThongKe.MainView = this.gvDanhSachThongKe;
     this.gcDanhSachThongKe.Name = "gcDanhSachThongKe";
     this.gcDanhSachThongKe.Size = new System.Drawing.Size(677, 305);
     this.gcDanhSachThongKe.TabIndex = 0;
     this.gcDanhSachThongKe.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvDanhSachThongKe});
     //
     // gvDanhSachThongKe
     //
     this.gvDanhSachThongKe.GridControl = this.gcDanhSachThongKe;
     this.gvDanhSachThongKe.Name = "gvDanhSachThongKe";
     this.gvDanhSachThongKe.OptionsView.ShowGroupPanel = false;
     //
     // panelControl2
     //
     this.panelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelControl2.Controls.Add(this.labelControl1);
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(948, 66);
     this.panelControl2.TabIndex = 1;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.labelControl1.Location = new System.Drawing.Point(260, 14);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(429, 29);
     this.labelControl1.TabIndex = 3;
     this.labelControl1.Text = "THỐNG KÊ BÁN HÀNG THEO THÁNG";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location = new System.Drawing.Point(15, 22);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(180, 23);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "Chọn loại thống kê";
     //
     // panelControl3
     //
     this.panelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.panelControl3.Controls.Add(this.lueLoaiThongKe);
     this.panelControl3.Controls.Add(this.btnThongKe);
     this.panelControl3.Controls.Add(this.labelControl4);
     this.panelControl3.Controls.Add(this.cboNam);
     this.panelControl3.Controls.Add(this.spedThang);
     this.panelControl3.Controls.Add(this.labelControl3);
     this.panelControl3.Controls.Add(this.labelControl2);
     this.panelControl3.Location = new System.Drawing.Point(0, 64);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(211, 460);
     this.panelControl3.TabIndex = 2;
     //
     // lueLoaiThongKe
     //
     this.lueLoaiThongKe.Location = new System.Drawing.Point(37, 62);
     this.lueLoaiThongKe.Name = "lueLoaiThongKe";
     this.lueLoaiThongKe.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lueLoaiThongKe.Properties.Appearance.Options.UseFont = true;
     this.lueLoaiThongKe.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueLoaiThongKe.Size = new System.Drawing.Size(136, 26);
     this.lueLoaiThongKe.TabIndex = 11;
     //
     // btnThongKe
     //
     this.btnThongKe.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnThongKe.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnThongKe.Appearance.Options.UseFont = true;
     this.btnThongKe.Image = ((System.Drawing.Image)(resources.GetObject("btnThongKe.Image")));
     this.btnThongKe.Location = new System.Drawing.Point(5, 337);
     this.btnThongKe.Name = "btnThongKe";
     this.btnThongKe.Size = new System.Drawing.Size(198, 73);
     this.btnThongKe.TabIndex = 10;
     this.btnThongKe.Text = "Thống kê";
     this.btnThongKe.Click += new System.EventHandler(this.btnThongKe_Click);
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl4.Location = new System.Drawing.Point(37, 228);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(96, 23);
     this.labelControl4.TabIndex = 9;
     this.labelControl4.Text = "Chọn năm";
     //
     // cboNam
     //
     this.cboNam.Location = new System.Drawing.Point(37, 266);
     this.cboNam.Name = "cboNam";
     this.cboNam.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboNam.Properties.Appearance.Options.UseFont = true;
     this.cboNam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboNam.Size = new System.Drawing.Size(136, 26);
     this.cboNam.TabIndex = 8;
     //
     // spedThang
     //
     this.spedThang.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.spedThang.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spedThang.Location = new System.Drawing.Point(37, 162);
     this.spedThang.Name = "spedThang";
     this.spedThang.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.spedThang.Properties.Appearance.Options.UseFont = true;
     this.spedThang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.spedThang.Properties.Mask.EditMask = "d";
     this.spedThang.Properties.MaxValue = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.spedThang.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spedThang.Size = new System.Drawing.Size(136, 26);
     this.spedThang.TabIndex = 7;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(37, 124);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(110, 23);
     this.labelControl3.TabIndex = 6;
     this.labelControl3.Text = "Chọn tháng";
     //
     // ucThongKeBanTheoThang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Name = "ucThongKeBanTheoThang";
     this.Size = new System.Drawing.Size(948, 524);
     this.Load += new System.EventHandler(this.ucThongKeBanTheoThang_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcDanhSachThongKe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDanhSachThongKe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueLoaiThongKe.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboNam.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spedThang.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ColumnHeader columnHeader5;
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.spnSoLuong = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txtTenHang = new System.Windows.Forms.TextBox();
     this.txtMaVach = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.dtpThoiGian = new System.Windows.Forms.DateTimePicker();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtTimKiem = new DevExpress.XtraEditors.TextEdit();
     this.lbSanPham = new DevExpress.XtraEditors.ListBoxControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.lvHangNhap = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.lblThongBao = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtDonGia = new System.Windows.Forms.TextBox();
     this.lblTongTien = new DevExpress.XtraEditors.LabelControl();
     this.ep = new System.Windows.Forms.ErrorProvider(this.components);
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnChiTietXoa = new DevExpress.XtraEditors.SimpleButton();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnQuet = new DevExpress.XtraEditors.SimpleButton();
     this.btnChiTietSua = new DevExpress.XtraEditors.SimpleButton();
     this.btnThem = new DevExpress.XtraEditors.SimpleButton();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     ((System.ComponentModel.ISupportInitialize)(this.spnSoLuong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtTimKiem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbSanPham)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ep)).BeginInit();
     this.SuspendLayout();
     //
     // columnHeader5
     //
     columnHeader5.DisplayIndex = 4;
     columnHeader5.Text = "Mã hàng";
     //
     // columnHeader4
     //
     this.columnHeader4.DisplayIndex = 3;
     this.columnHeader4.Text = "Thành tiền";
     this.columnHeader4.Width = 197;
     //
     // spnSoLuong
     //
     this.spnSoLuong.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spnSoLuong.Location = new System.Drawing.Point(430, 272);
     this.spnSoLuong.Name = "spnSoLuong";
     this.spnSoLuong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.spnSoLuong.Size = new System.Drawing.Size(173, 20);
     this.spnSoLuong.TabIndex = 4;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(380, 239);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(45, 13);
     this.labelControl6.TabIndex = 55;
     this.labelControl6.Text = "Tên hàng";
     //
     // txtTenHang
     //
     this.txtTenHang.Location = new System.Drawing.Point(430, 236);
     this.txtTenHang.Name = "txtTenHang";
     this.txtTenHang.ReadOnly = true;
     this.txtTenHang.Size = new System.Drawing.Size(173, 20);
     this.txtTenHang.TabIndex = 46;
     //
     // txtMaVach
     //
     this.txtMaVach.Enabled = false;
     this.txtMaVach.Location = new System.Drawing.Point(430, 197);
     this.txtMaVach.Name = "txtMaVach";
     this.txtMaVach.ReadOnly = true;
     this.txtMaVach.Size = new System.Drawing.Size(173, 20);
     this.txtMaVach.TabIndex = 45;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(380, 275);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 53;
     this.labelControl3.Text = "Số lượng";
     //
     // columnHeader3
     //
     this.columnHeader3.DisplayIndex = 2;
     this.columnHeader3.Text = "Đơn giá";
     this.columnHeader3.Width = 79;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.dtpThoiGian);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Location = new System.Drawing.Point(380, 93);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(222, 64);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "Thông tin hóa đơn";
     //
     // dtpThoiGian
     //
     this.dtpThoiGian.CustomFormat = "dd/MM/yyyy";
     this.dtpThoiGian.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpThoiGian.Location = new System.Drawing.Point(63, 28);
     this.dtpThoiGian.Name = "dtpThoiGian";
     this.dtpThoiGian.Size = new System.Drawing.Size(153, 20);
     this.dtpThoiGian.TabIndex = 0;
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(5, 31);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(52, 13);
     this.labelControl10.TabIndex = 4;
     this.labelControl10.Text = "Ngày nhập";
     //
     // txtTimKiem
     //
     this.txtTimKiem.Location = new System.Drawing.Point(80, 94);
     this.txtTimKiem.Name = "txtTimKiem";
     this.txtTimKiem.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTimKiem.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.txtTimKiem.Properties.Appearance.Options.UseFont = true;
     this.txtTimKiem.Properties.Appearance.Options.UseForeColor = true;
     this.txtTimKiem.Size = new System.Drawing.Size(275, 24);
     this.txtTimKiem.TabIndex = 1;
     this.txtTimKiem.ToolTip = "Gõ để tìm kiếm, kết quả tức thì";
     this.txtTimKiem.EditValueChanged += new System.EventHandler(this.txtTenHangTim_EditValueChanged);
     this.txtTimKiem.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTenHangTim_KeyPress);
     //
     // lbSanPham
     //
     this.lbSanPham.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.lbSanPham.DisplayMember = "TenHang";
     this.lbSanPham.Location = new System.Drawing.Point(29, 200);
     this.lbSanPham.Name = "lbSanPham";
     this.lbSanPham.Size = new System.Drawing.Size(326, 200);
     this.lbSanPham.TabIndex = 3;
     this.lbSanPham.SelectedIndexChanged += new System.EventHandler(this.lbHang_SelectedIndexChanged);
     this.lbSanPham.MeasureItem += new System.Windows.Forms.MeasureItemEventHandler(this.lbSanPham_MeasureItem);
     this.lbSanPham.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lbSanPham_MouseDoubleClick);
     this.lbSanPham.Validating += new System.ComponentModel.CancelEventHandler(this.lbSanPham_Validating);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(29, 178);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(99, 13);
     this.labelControl12.TabIndex = 51;
     this.labelControl12.Text = "Danh sách sản phẩm";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(29, 97);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(41, 13);
     this.labelControl2.TabIndex = 52;
     this.labelControl2.Text = "Mã hàng";
     //
     // lvHangNhap
     //
     this.lvHangNhap.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.lvHangNhap.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     columnHeader5,
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4});
     this.lvHangNhap.FullRowSelect = true;
     this.lvHangNhap.Location = new System.Drawing.Point(638, 91);
     this.lvHangNhap.Name = "lvHangNhap";
     this.lvHangNhap.Size = new System.Drawing.Size(402, 168);
     this.lvHangNhap.TabIndex = 8;
     this.lvHangNhap.UseCompatibleStateImageBehavior = false;
     this.lvHangNhap.View = System.Windows.Forms.View.Details;
     this.lvHangNhap.DrawItem += new System.Windows.Forms.DrawListViewItemEventHandler(this.lvHangNhap_DrawItem);
     //
     // columnHeader1
     //
     this.columnHeader1.DisplayIndex = 0;
     this.columnHeader1.Text = "Tên hàng";
     this.columnHeader1.Width = 132;
     //
     // columnHeader2
     //
     this.columnHeader2.DisplayIndex = 1;
     this.columnHeader2.Text = "Số lượng";
     this.columnHeader2.Width = 87;
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl7.Location = new System.Drawing.Point(638, 276);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(54, 16);
     this.labelControl7.TabIndex = 55;
     this.labelControl7.Text = "Tổng tiền";
     //
     // lblThongBao
     //
     this.lblThongBao.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblThongBao.Appearance.ForeColor = System.Drawing.Color.Maroon;
     this.lblThongBao.Location = new System.Drawing.Point(116, 141);
     this.lblThongBao.Name = "lblThongBao";
     this.lblThongBao.Size = new System.Drawing.Size(134, 16);
     this.lblThongBao.TabIndex = 51;
     this.lblThongBao.Text = "Không có mặt hàng này";
     this.lblThongBao.Visible = false;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(380, 312);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(37, 13);
     this.labelControl1.TabIndex = 55;
     this.labelControl1.Text = "Đơn giá";
     //
     // txtDonGia
     //
     this.txtDonGia.Location = new System.Drawing.Point(430, 309);
     this.txtDonGia.Name = "txtDonGia";
     this.txtDonGia.Size = new System.Drawing.Size(173, 20);
     this.txtDonGia.TabIndex = 5;
     //
     // lblTongTien
     //
     this.lblTongTien.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblTongTien.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTongTien.Location = new System.Drawing.Point(698, 265);
     this.lblTongTien.Name = "lblTongTien";
     this.lblTongTien.Size = new System.Drawing.Size(17, 33);
     this.lblTongTien.TabIndex = 71;
     this.lblTongTien.Text = "0";
     //
     // ep
     //
     this.ep.ContainerControl = this;
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::GymFitnessOlympic.Properties.Resources._1447576907_ok;
     this.btnSave.Location = new System.Drawing.Point(629, 348);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(193, 52);
     this.btnSave.TabIndex = 9;
     this.btnSave.Text = "Tạo hóa đơn";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click_1);
     //
     // btnChiTietXoa
     //
     this.btnChiTietXoa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnChiTietXoa.Image = global::GymFitnessOlympic.Properties.Resources.delete;
     this.btnChiTietXoa.Location = new System.Drawing.Point(940, 50);
     this.btnChiTietXoa.Name = "btnChiTietXoa";
     this.btnChiTietXoa.Size = new System.Drawing.Size(100, 24);
     this.btnChiTietXoa.TabIndex = 8;
     this.btnChiTietXoa.Text = "Xóa";
     this.btnChiTietXoa.Click += new System.EventHandler(this.btnChiTietXoa_Click);
     //
     // btnReset
     //
     this.btnReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.Image = global::GymFitnessOlympic.Properties.Resources.update;
     this.btnReset.Location = new System.Drawing.Point(839, 347);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(190, 52);
     this.btnReset.TabIndex = 10;
     this.btnReset.Text = "Hủy hóa đơn hiện tại";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // btnQuet
     //
     this.btnQuet.Image = global::GymFitnessOlympic.Properties.Resources.Find;
     this.btnQuet.Location = new System.Drawing.Point(260, 128);
     this.btnQuet.Name = "btnQuet";
     this.btnQuet.Size = new System.Drawing.Size(95, 41);
     this.btnQuet.TabIndex = 2;
     this.btnQuet.Text = "Quyét";
     this.btnQuet.Click += new System.EventHandler(this.btnQuet_Click);
     //
     // btnChiTietSua
     //
     this.btnChiTietSua.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnChiTietSua.Image = global::GymFitnessOlympic.Properties.Resources.Edit;
     this.btnChiTietSua.Location = new System.Drawing.Point(839, 50);
     this.btnChiTietSua.Name = "btnChiTietSua";
     this.btnChiTietSua.Size = new System.Drawing.Size(95, 24);
     this.btnChiTietSua.TabIndex = 7;
     this.btnChiTietSua.Text = "Sửa";
     this.btnChiTietSua.Click += new System.EventHandler(this.btnChiTietSua_Click);
     //
     // btnThem
     //
     this.btnThem.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnThem.Appearance.Options.UseFont = true;
     this.btnThem.Image = global::GymFitnessOlympic.Properties.Resources.add;
     this.btnThem.Location = new System.Drawing.Point(430, 347);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(172, 52);
     this.btnThem.TabIndex = 6;
     this.btnThem.Text = "Thêm";
     this.btnThem.ToolTip = "Thêm mặt hàng vào danh sách nhập, một khi đã click, không\r\nthể thay đổi nhà cung " +
     "cấp được nữa, trừ khi click \"Làm lại từ đầu\"\r\nđể tạo phiếu nhập mới.";
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Location = new System.Drawing.Point(24, 17);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(228, 58);
     this.lblTitle.TabIndex = 52;
     this.lblTitle.Text = "Bán hàng";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(380, 200);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(40, 13);
     this.labelControl4.TabIndex = 55;
     this.labelControl4.Text = "Mã vạch";
     //
     // FrmBanHang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.lblTongTien);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnChiTietXoa);
     this.Controls.Add(this.lbSanPham);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.btnQuet);
     this.Controls.Add(this.btnChiTietSua);
     this.Controls.Add(this.btnThem);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.txtMaVach);
     this.Controls.Add(this.txtDonGia);
     this.Controls.Add(this.txtTenHang);
     this.Controls.Add(this.spnSoLuong);
     this.Controls.Add(this.lvHangNhap);
     this.Controls.Add(this.txtTimKiem);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.lblThongBao);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.labelControl12);
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.labelControl6);
     this.Controls.Add(this.labelControl7);
     this.Controls.Add(this.groupControl1);
     this.Name = "FrmBanHang";
     this.Size = new System.Drawing.Size(1053, 423);
     this.Load += new System.EventHandler(this.FrmBanHang_Load);
     ((System.ComponentModel.ISupportInitialize)(this.spnSoLuong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtTimKiem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbSanPham)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ep)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #8
0
 public void EnabledControls(DevExpress.XtraEditors.TextEdit edittext, DevExpress.XtraEditors.SpinEdit spinedit, bool status)
 {
     edittext.Enabled = !status;
     spinedit.Enabled = status;
 }
Exemple #9
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCEarthworkCalculation));
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl4       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.btn_polygon         = new DevExpress.XtraEditors.SimpleButton();
     this.btn_rectangle       = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Circle          = new DevExpress.XtraEditors.SimpleButton();
     this.se_height           = new DevExpress.XtraEditors.SpinEdit();
     this.se_depth            = new DevExpress.XtraEditors.SpinEdit();
     this.rg_pointType        = new DevExpress.XtraEditors.RadioGroup();
     this.rg_digWay           = new DevExpress.XtraEditors.RadioGroup();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem8  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.se_height.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.se_depth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rg_pointType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rg_digWay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.labelControl4);
     this.layoutControl1.Controls.Add(this.labelControl3);
     this.layoutControl1.Controls.Add(this.labelControl2);
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.btn_polygon);
     this.layoutControl1.Controls.Add(this.btn_rectangle);
     this.layoutControl1.Controls.Add(this.btn_Circle);
     this.layoutControl1.Controls.Add(this.se_height);
     this.layoutControl1.Controls.Add(this.se_depth);
     this.layoutControl1.Controls.Add(this.rg_pointType);
     this.layoutControl1.Controls.Add(this.rg_digWay);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(294, 351);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // labelControl4
     //
     this.labelControl4.Location        = new System.Drawing.Point(5, 308);
     this.labelControl4.Name            = "labelControl4";
     this.labelControl4.Size            = new System.Drawing.Size(48, 14);
     this.labelControl4.StyleController = this.layoutControl1;
     this.labelControl4.TabIndex        = 14;
     this.labelControl4.Text            = "填方量:";
     //
     // labelControl3
     //
     this.labelControl3.Location        = new System.Drawing.Point(5, 290);
     this.labelControl3.Name            = "labelControl3";
     this.labelControl3.Size            = new System.Drawing.Size(48, 14);
     this.labelControl3.StyleController = this.layoutControl1;
     this.labelControl3.TabIndex        = 13;
     this.labelControl3.Text            = "挖方量:";
     //
     // labelControl2
     //
     this.labelControl2.Location        = new System.Drawing.Point(5, 272);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.Size            = new System.Drawing.Size(60, 14);
     this.labelControl2.StyleController = this.layoutControl1;
     this.labelControl2.TabIndex        = 12;
     this.labelControl2.Text            = "投影面积:";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(5, 254);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(60, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 11;
     this.labelControl1.Text            = "地表面积:";
     //
     // btn_polygon
     //
     this.btn_polygon.Image           = ((System.Drawing.Image)(resources.GetObject("btn_polygon.Image")));
     this.btn_polygon.ImageLocation   = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_polygon.Location        = new System.Drawing.Point(200, 194);
     this.btn_polygon.Name            = "btn_polygon";
     this.btn_polygon.Size            = new System.Drawing.Size(89, 30);
     this.btn_polygon.StyleController = this.layoutControl1;
     this.btn_polygon.TabIndex        = 10;
     this.btn_polygon.Text            = "多边形";
     this.btn_polygon.Click          += new System.EventHandler(this.btn_polygon_Click);
     //
     // btn_rectangle
     //
     this.btn_rectangle.Image           = ((System.Drawing.Image)(resources.GetObject("btn_rectangle.Image")));
     this.btn_rectangle.ImageLocation   = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_rectangle.Location        = new System.Drawing.Point(100, 194);
     this.btn_rectangle.Name            = "btn_rectangle";
     this.btn_rectangle.Size            = new System.Drawing.Size(96, 30);
     this.btn_rectangle.StyleController = this.layoutControl1;
     this.btn_rectangle.TabIndex        = 9;
     this.btn_rectangle.Text            = "矩形";
     this.btn_rectangle.Click          += new System.EventHandler(this.btn_rectangle_Click);
     //
     // btn_Circle
     //
     this.btn_Circle.Image           = ((System.Drawing.Image)(resources.GetObject("btn_Circle.Image")));
     this.btn_Circle.ImageLocation   = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_Circle.Location        = new System.Drawing.Point(5, 194);
     this.btn_Circle.Name            = "btn_Circle";
     this.btn_Circle.Size            = new System.Drawing.Size(91, 30);
     this.btn_Circle.StyleController = this.layoutControl1;
     this.btn_Circle.TabIndex        = 8;
     this.btn_Circle.Text            = "圆形";
     this.btn_Circle.Click          += new System.EventHandler(this.btn_Circle_Click);
     //
     // se_height
     //
     this.se_height.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.se_height.Location = new System.Drawing.Point(80, 142);
     this.se_height.Name     = "se_height";
     this.se_height.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.se_height.Size            = new System.Drawing.Size(209, 22);
     this.se_height.StyleController = this.layoutControl1;
     this.se_height.TabIndex        = 7;
     //
     // se_depth
     //
     this.se_depth.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.se_depth.Location = new System.Drawing.Point(80, 116);
     this.se_depth.Name     = "se_depth";
     this.se_depth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.se_depth.Size            = new System.Drawing.Size(209, 22);
     this.se_depth.StyleController = this.layoutControl1;
     this.se_depth.TabIndex        = 6;
     //
     // rg_pointType
     //
     this.rg_pointType.Location           = new System.Drawing.Point(5, 81);
     this.rg_pointType.Name               = "rg_pointType";
     this.rg_pointType.Properties.Columns = 3;
     this.rg_pointType.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "边缘最低点"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "区域中心点"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "区域最低点")
     });
     this.rg_pointType.Size                  = new System.Drawing.Size(284, 31);
     this.rg_pointType.StyleController       = this.layoutControl1;
     this.rg_pointType.TabIndex              = 5;
     this.rg_pointType.SelectedIndexChanged += new System.EventHandler(this.rg_pointType_SelectedIndexChanged);
     //
     // rg_digWay
     //
     this.rg_digWay.Location           = new System.Drawing.Point(5, 25);
     this.rg_digWay.Name               = "rg_digWay";
     this.rg_digWay.Properties.Columns = 2;
     this.rg_digWay.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "参考点+开挖深度"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "绝对参考高度")
     });
     this.rg_digWay.Size                  = new System.Drawing.Size(284, 26);
     this.rg_digWay.StyleController       = this.layoutControl1;
     this.rg_digWay.TabIndex              = 4;
     this.rg_digWay.SelectedIndexChanged += new System.EventHandler(this.rg_digWay_SelectedIndexChanged);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup2,
         this.layoutControlGroup3,
         this.layoutControlGroup4,
         this.layoutControlGroup5
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(294, 351);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1
     });
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name     = "layoutControlGroup2";
     this.layoutControlGroup2.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size     = new System.Drawing.Size(294, 56);
     this.layoutControlGroup2.Text     = "开挖方式";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.rg_digWay;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(288, 30);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem4
     });
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 56);
     this.layoutControlGroup3.Name     = "layoutControlGroup3";
     this.layoutControlGroup3.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size     = new System.Drawing.Size(294, 113);
     this.layoutControlGroup3.Text     = "参数设置";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.rg_pointType;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(288, 35);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.se_depth;
     this.layoutControlItem3.CustomizationFormText = "开挖深度(m):";
     this.layoutControlItem3.Location            = new System.Drawing.Point(0, 35);
     this.layoutControlItem3.MaxSize             = new System.Drawing.Size(288, 26);
     this.layoutControlItem3.MinSize             = new System.Drawing.Size(288, 26);
     this.layoutControlItem3.Name                = "layoutControlItem3";
     this.layoutControlItem3.Size                = new System.Drawing.Size(288, 26);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text                = "开挖深度(m):";
     this.layoutControlItem3.TextSize            = new System.Drawing.Size(72, 14);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.se_height;
     this.layoutControlItem4.CustomizationFormText = "参考高度(m):";
     this.layoutControlItem4.Location            = new System.Drawing.Point(0, 61);
     this.layoutControlItem4.MaxSize             = new System.Drawing.Size(288, 26);
     this.layoutControlItem4.MinSize             = new System.Drawing.Size(288, 26);
     this.layoutControlItem4.Name                = "layoutControlItem4";
     this.layoutControlItem4.Size                = new System.Drawing.Size(288, 26);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text                = "参考高度(m):";
     this.layoutControlItem4.TextSize            = new System.Drawing.Size(72, 14);
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem5,
         this.layoutControlItem6,
         this.layoutControlItem7
     });
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 169);
     this.layoutControlGroup4.Name     = "layoutControlGroup4";
     this.layoutControlGroup4.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup4.Size     = new System.Drawing.Size(294, 60);
     this.layoutControlGroup4.Text     = "区域形状";
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btn_Circle;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(95, 34);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btn_rectangle;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(95, 0);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(100, 34);
     this.layoutControlItem6.Text     = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible           = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btn_polygon;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(195, 0);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(93, 34);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "计算结果";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.emptySpaceItem1,
         this.layoutControlItem8,
         this.layoutControlItem9,
         this.layoutControlItem10,
         this.layoutControlItem11
     });
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 229);
     this.layoutControlGroup5.Name     = "layoutControlGroup5";
     this.layoutControlGroup5.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup5.Size     = new System.Drawing.Size(294, 122);
     this.layoutControlGroup5.Text     = "计算结果";
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack         = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location            = new System.Drawing.Point(0, 72);
     this.emptySpaceItem1.MaxSize             = new System.Drawing.Size(288, 24);
     this.emptySpaceItem1.MinSize             = new System.Drawing.Size(288, 24);
     this.emptySpaceItem1.Name                = "emptySpaceItem1";
     this.emptySpaceItem1.Size                = new System.Drawing.Size(288, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text                = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize            = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.labelControl1;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem8.Name     = "layoutControlItem8";
     this.layoutControlItem8.Size     = new System.Drawing.Size(288, 18);
     this.layoutControlItem8.Text     = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible           = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.labelControl2;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 18);
     this.layoutControlItem9.Name     = "layoutControlItem9";
     this.layoutControlItem9.Size     = new System.Drawing.Size(288, 18);
     this.layoutControlItem9.Text     = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible           = false;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.labelControl3;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 36);
     this.layoutControlItem10.Name     = "layoutControlItem10";
     this.layoutControlItem10.Size     = new System.Drawing.Size(288, 18);
     this.layoutControlItem10.Text     = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible           = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.labelControl4;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 54);
     this.layoutControlItem11.Name     = "layoutControlItem11";
     this.layoutControlItem11.Size     = new System.Drawing.Size(288, 18);
     this.layoutControlItem11.Text     = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible           = false;
     //
     // UCEarthworkCalculation
     //
     this.Controls.Add(this.layoutControl1);
     this.Name = "UCEarthworkCalculation";
     this.Size = new System.Drawing.Size(294, 351);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.se_height.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.se_depth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rg_pointType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rg_digWay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormForecast6));
     Dundas.Charting.WinControl.ChartArea chartArea1 = new Dundas.Charting.WinControl.ChartArea();
     Dundas.Charting.WinControl.Legend legend1 = new Dundas.Charting.WinControl.Legend();
     Dundas.Charting.WinControl.Series series1 = new Dundas.Charting.WinControl.Series();
     Dundas.Charting.WinControl.Title title1 = new Dundas.Charting.WinControl.Title();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem26 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem21 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem22 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem25 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = 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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.chart1 = new Dundas.Charting.WinControl.Chart();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.label2 = new System.Windows.Forms.Label();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem14,
     this.barButtonItem17,
     this.barSubItem3,
     this.barButtonItem20,
     this.barButtonItem21,
     this.barButtonItem22,
     this.barButtonItem6,
     this.barButtonItem25,
     this.barButtonItem26});
     this.barManager1.MaxItemId = 46;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem14, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem17, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem26, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem22, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem25, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "��ȡԤ��ԭʼ����";
     this.barButtonItem14.Id = 22;
     this.barButtonItem14.ImageIndex = 13;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem14_ItemClick);
     //
     // barButtonItem17
     //
     this.barButtonItem17.Caption = "��������";
     this.barButtonItem17.Id = 26;
     this.barButtonItem17.ImageIndex = 14;
     this.barButtonItem17.Name = "barButtonItem17";
     this.barButtonItem17.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem17.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem17.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem17_ItemClick);
     //
     // barButtonItem26
     //
     this.barButtonItem26.Caption = "��ʼ��ȡ��ʷ����";
     this.barButtonItem26.Id = 45;
     this.barButtonItem26.ImageIndex = 9;
     this.barButtonItem26.Name = "barButtonItem26";
     this.barButtonItem26.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem26.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem26_ItemClick);
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "����";
     this.barSubItem3.Id = 29;
     this.barSubItem3.ImageIndex = 5;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem21)});
     this.barSubItem3.Name = "barSubItem3";
     this.barSubItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem20
     //
     this.barButtonItem20.Caption = "��������";
     this.barButtonItem20.Id = 30;
     this.barButtonItem20.ImageIndex = 5;
     this.barButtonItem20.Name = "barButtonItem20";
     this.barButtonItem20.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem20.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem20_ItemClick);
     //
     // barButtonItem21
     //
     this.barButtonItem21.Caption = "����ͼ��";
     this.barButtonItem21.Id = 31;
     this.barButtonItem21.ImageIndex = 5;
     this.barButtonItem21.Name = "barButtonItem21";
     this.barButtonItem21.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem21.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem21_ItemClick);
     //
     // barButtonItem22
     //
     this.barButtonItem22.Caption = "ͼ����ɫ";
     this.barButtonItem22.Id = 32;
     this.barButtonItem22.ImageIndex = 12;
     this.barButtonItem22.Name = "barButtonItem22";
     this.barButtonItem22.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem22.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem22_ItemClick);
     //
     // barButtonItem25
     //
     this.barButtonItem25.Caption = "����";
     this.barButtonItem25.Id = 44;
     this.barButtonItem25.ImageIndex = 0;
     this.barButtonItem25.Name = "barButtonItem25";
     this.barButtonItem25.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem25.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem25_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "�ر�";
     this.barButtonItem6.Id = 35;
     this.barButtonItem6.ImageIndex = 7;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "����.ico");
     this.imageList1.Images.SetKeyName(1, "����.ico");
     this.imageList1.Images.SetKeyName(2, "��ѯ.ico");
     this.imageList1.Images.SetKeyName(3, "������±�.ico");
     this.imageList1.Images.SetKeyName(4, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(5, "����.ico");
     this.imageList1.Images.SetKeyName(6, "�ر�1.ico");
     this.imageList1.Images.SetKeyName(7, "�ر�.ico");
     this.imageList1.Images.SetKeyName(8, "��ɫ.ico");
     this.imageList1.Images.SetKeyName(9, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(10, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(11, "���.ico");
     this.imageList1.Images.SetKeyName(12, "����.ico");
     this.imageList1.Images.SetKeyName(13, "��Ȩ.ico");
     this.imageList1.Images.SetKeyName(14, "ˢ��.ico");
     this.imageList1.Images.SetKeyName(15, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(16, "����¼�.ico");
     this.imageList1.Images.SetKeyName(17, "�½�.ico");
     this.imageList1.Images.SetKeyName(18, "�޸�.ico");
     this.imageList1.Images.SetKeyName(19, "����.ico");
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 34);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(921, 4);
     this.splitterControl1.TabIndex = 5;
     this.splitterControl1.TabStop = false;
     //
     // 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.Controls.Add(this.checkBox1);
     this.splitContainerControl1.Panel1.Controls.Add(this.chart1);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton7);
     this.splitContainerControl1.Panel2.Controls.Add(this.label2);
     this.splitContainerControl1.Panel2.Controls.Add(this.spinEdit2);
     this.splitContainerControl1.Panel2.Controls.Add(this.label1);
     this.splitContainerControl1.Panel2.Controls.Add(this.spinEdit1);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton6);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton2);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton5);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton3);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton1);
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(915, 381);
     this.splitContainerControl1.SplitterPosition = 541;
     this.splitContainerControl1.TabIndex = 8;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // chart1
     //
     chartArea1.BorderColor = System.Drawing.Color.Empty;
     chartArea1.Name = "Default";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend1.Name = "Default";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(0, 0);
     this.chart1.Name = "chart1";
     series1.BorderWidth = 2;
     series1.ChartType = "Spline";
     series1.MarkerBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     series1.MarkerStyle = Dundas.Charting.WinControl.MarkerStyle.Circle;
     series1.Name = "Default";
     series1.ShadowOffset = 1;
     this.chart1.Series.Add(series1);
     this.chart1.Size = new System.Drawing.Size(535, 375);
     this.chart1.TabIndex = 7;
     this.chart1.Text = "chart1";
     title1.Name = "Title1";
     this.chart1.Titles.Add(title1);
     this.chart1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseDown);
     //
     // simpleButton7
     //
     this.simpleButton7.Location = new System.Drawing.Point(27, 74);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(100, 40);
     this.simpleButton7.TabIndex = 10;
     this.simpleButton7.Text = "����a uϵ��";
     this.simpleButton7.Visible = false;
     this.simpleButton7.Click += new System.EventHandler(this.button7_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("����", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(32, 161);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(40, 27);
     this.label2.TabIndex = 9;
     this.label2.Text = "u=";
     //
     // spinEdit2
     //
     this.spinEdit2.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit2.Enabled = false;
     this.spinEdit2.Location = new System.Drawing.Point(79, 163);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit2.Properties.Increment = new decimal(new int[] {
     1,
     0,
     0,
     131072});
     this.spinEdit2.Size = new System.Drawing.Size(137, 23);
     this.spinEdit2.TabIndex = 8;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("����", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(31, 130);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 27);
     this.label1.TabIndex = 7;
     this.label1.Text = "a=";
     //
     // spinEdit1
     //
     this.spinEdit1.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit1.Enabled = false;
     this.spinEdit1.Location = new System.Drawing.Point(78, 132);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit1.Properties.Increment = new decimal(new int[] {
     1,
     0,
     0,
     131072});
     this.spinEdit1.Size = new System.Drawing.Size(137, 23);
     this.spinEdit1.TabIndex = 6;
     //
     // simpleButton6
     //
     this.simpleButton6.Location = new System.Drawing.Point(185, 203);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(100, 40);
     this.simpleButton6.TabIndex = 5;
     this.simpleButton6.Text = "��   ��";
     this.simpleButton6.Click += new System.EventHandler(this.button4_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(27, 203);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(100, 40);
     this.simpleButton2.TabIndex = 5;
     this.simpleButton2.Text = "����Ԥ��ֵ";
     this.simpleButton2.Click += new System.EventHandler(this.button2_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Location = new System.Drawing.Point(185, 74);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(100, 40);
     this.simpleButton5.TabIndex = 5;
     this.simpleButton5.Text = "ȫ������ͼ";
     this.simpleButton5.Click += new System.EventHandler(this.button6_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.Location = new System.Drawing.Point(185, 18);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(100, 40);
     this.simpleButton3.TabIndex = 5;
     this.simpleButton3.Text = "Ԥ����������ͼ";
     this.simpleButton3.Click += new System.EventHandler(this.button5_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(27, 18);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(100, 40);
     this.simpleButton1.TabIndex = 5;
     this.simpleButton1.Text = "��ʷ��������ͼ";
     this.simpleButton1.Click += new System.EventHandler(this.button1_Click);
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Horizontal = false;
     this.splitContainerControl2.Location = new System.Drawing.Point(0, 38);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.splitContainerControl1);
     this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(921, 587);
     this.splitContainerControl2.SplitterPosition = 196;
     this.splitContainerControl2.TabIndex = 10;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // treeList1
     //
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.Size = new System.Drawing.Size(915, 190);
     this.treeList1.TabIndex = 4;
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeList1_MouseUp);
     this.treeList1.NodeCellStyle += new DevExpress.XtraTreeList.GetCustomNodeCellStyleEventHandler(this.treeList1_NodeCellStyle);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // checkBox1
     //
     this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBox1.AutoSize = true;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location = new System.Drawing.Point(484, 3);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(48, 16);
     this.checkBox1.TabIndex = 8;
     this.checkBox1.Text = "ȫѡ";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.Click += new System.EventHandler(this.checkBox1_Click);
     //
     // FormForecast6
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(921, 625);
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FormForecast6";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "����Ԥ���";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.FormForecast6_Load);
     this.Resize += new System.EventHandler(this.FormAverageForecast_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).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.label_S7PlcSimInstNum = new System.Windows.Forms.Label();
     this.groupBox_S7PLCSim = new System.Windows.Forms.GroupBox();
     this.spinEdit_InstNum = new DevExpress.XtraEditors.SpinEdit();
     this.button_Disconnect = new System.Windows.Forms.Button();
     this.button_Connect = new System.Windows.Forms.Button();
     this.errorProvider = new System.Windows.Forms.ErrorProvider();
     this.groupBox_Options = new System.Windows.Forms.GroupBox();
     this.label_WriteRequests = new System.Windows.Forms.Label();
     this.label_WR = new System.Windows.Forms.Label();
     this.label_CycleTime = new System.Windows.Forms.Label();
     this.label_CTime = new System.Windows.Forms.Label();
     this.spinEdit_Slowing = new DevExpress.XtraEditors.SpinEdit();
     this.label_Slowdown = new System.Windows.Forms.Label();
     this.checkBox_CScan = new System.Windows.Forms.CheckBox();
     this.groupBox_Items = new System.Windows.Forms.GroupBox();
     this.label_CountN = new System.Windows.Forms.Label();
     this.label_Count = new System.Windows.Forms.Label();
     this.okCancelButton = new Utils.SpecialControls.OKCancelButton();
     this.groupBox_S7PLCSim.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit_InstNum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.groupBox_Options.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Slowing.Properties)).BeginInit();
     this.groupBox_Items.SuspendLayout();
     this.SuspendLayout();
     //
     // label_S7PlcSimInstNum
     //
     this.label_S7PlcSimInstNum.AutoSize = true;
     this.label_S7PlcSimInstNum.Location = new System.Drawing.Point(79, 24);
     this.label_S7PlcSimInstNum.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_S7PlcSimInstNum.Name = "label_S7PlcSimInstNum";
     this.label_S7PlcSimInstNum.Size = new System.Drawing.Size(119, 17);
     this.label_S7PlcSimInstNum.TabIndex = 0;
     this.label_S7PlcSimInstNum.Text = "Instance Number:";
     //
     // groupBox_S7PLCSim
     //
     this.groupBox_S7PLCSim.Controls.Add(this.spinEdit_InstNum);
     this.groupBox_S7PLCSim.Controls.Add(this.button_Disconnect);
     this.groupBox_S7PLCSim.Controls.Add(this.button_Connect);
     this.groupBox_S7PLCSim.Controls.Add(this.label_S7PlcSimInstNum);
     this.groupBox_S7PLCSim.Location = new System.Drawing.Point(9, 1);
     this.groupBox_S7PLCSim.Margin = new System.Windows.Forms.Padding(4);
     this.groupBox_S7PLCSim.Name = "groupBox_S7PLCSim";
     this.groupBox_S7PLCSim.Padding = new System.Windows.Forms.Padding(4);
     this.groupBox_S7PLCSim.Size = new System.Drawing.Size(345, 90);
     this.groupBox_S7PLCSim.TabIndex = 0;
     this.groupBox_S7PLCSim.TabStop = false;
     this.groupBox_S7PLCSim.Text = "Instance";
     //
     // spinEdit_InstNum
     //
     this.spinEdit_InstNum.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spinEdit_InstNum.Location = new System.Drawing.Point(207, 19);
     this.spinEdit_InstNum.Margin = new System.Windows.Forms.Padding(4);
     this.spinEdit_InstNum.Name = "spinEdit_InstNum";
     this.spinEdit_InstNum.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit_InstNum.Properties.IsFloatValue = false;
     this.spinEdit_InstNum.Properties.LookAndFeel.SkinName = "Office 2010 Black";
     this.spinEdit_InstNum.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
     this.spinEdit_InstNum.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.spinEdit_InstNum.Properties.Mask.EditMask = "N00";
     this.spinEdit_InstNum.Properties.MaxValue = new decimal(new int[] {
     8,
     0,
     0,
     0});
     this.spinEdit_InstNum.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spinEdit_InstNum.Size = new System.Drawing.Size(59, 24);
     this.spinEdit_InstNum.TabIndex = 0;
     this.spinEdit_InstNum.EditValueChanged += new System.EventHandler(this.spinEdit_InstNum_EditValueChanged);
     //
     // button_Disconnect
     //
     this.button_Disconnect.Location = new System.Drawing.Point(177, 54);
     this.button_Disconnect.Margin = new System.Windows.Forms.Padding(4);
     this.button_Disconnect.Name = "button_Disconnect";
     this.button_Disconnect.Size = new System.Drawing.Size(105, 27);
     this.button_Disconnect.TabIndex = 2;
     this.button_Disconnect.Text = "Disconnect";
     this.button_Disconnect.UseVisualStyleBackColor = true;
     this.button_Disconnect.Click += new System.EventHandler(this.button_Disconnect_Click);
     //
     // button_Connect
     //
     this.button_Connect.Location = new System.Drawing.Point(63, 54);
     this.button_Connect.Margin = new System.Windows.Forms.Padding(4);
     this.button_Connect.Name = "button_Connect";
     this.button_Connect.Size = new System.Drawing.Size(105, 27);
     this.button_Connect.TabIndex = 1;
     this.button_Connect.Text = "Connect";
     this.button_Connect.UseVisualStyleBackColor = true;
     this.button_Connect.Click += new System.EventHandler(this.button_Connect_Click);
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     //
     // groupBox_Options
     //
     this.groupBox_Options.Controls.Add(this.label_WriteRequests);
     this.groupBox_Options.Controls.Add(this.label_WR);
     this.groupBox_Options.Controls.Add(this.label_CycleTime);
     this.groupBox_Options.Controls.Add(this.label_CTime);
     this.groupBox_Options.Controls.Add(this.spinEdit_Slowing);
     this.groupBox_Options.Controls.Add(this.label_Slowdown);
     this.groupBox_Options.Controls.Add(this.checkBox_CScan);
     this.groupBox_Options.Location = new System.Drawing.Point(9, 99);
     this.groupBox_Options.Margin = new System.Windows.Forms.Padding(4);
     this.groupBox_Options.Name = "groupBox_Options";
     this.groupBox_Options.Padding = new System.Windows.Forms.Padding(4);
     this.groupBox_Options.Size = new System.Drawing.Size(345, 131);
     this.groupBox_Options.TabIndex = 1;
     this.groupBox_Options.TabStop = false;
     this.groupBox_Options.Text = "Options";
     //
     // label_WriteRequests
     //
     this.label_WriteRequests.AutoSize = true;
     this.label_WriteRequests.Location = new System.Drawing.Point(223, 106);
     this.label_WriteRequests.Name = "label_WriteRequests";
     this.label_WriteRequests.Size = new System.Drawing.Size(16, 17);
     this.label_WriteRequests.TabIndex = 16;
     this.label_WriteRequests.Text = "0";
     this.label_WriteRequests.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label_WR
     //
     this.label_WR.AutoSize = true;
     this.label_WR.Location = new System.Drawing.Point(112, 106);
     this.label_WR.Name = "label_WR";
     this.label_WR.Size = new System.Drawing.Size(104, 17);
     this.label_WR.TabIndex = 15;
     this.label_WR.Text = "Write requests:";
     //
     // label_CycleTime
     //
     this.label_CycleTime.AutoSize = true;
     this.label_CycleTime.Location = new System.Drawing.Point(105, 79);
     this.label_CycleTime.Name = "label_CycleTime";
     this.label_CycleTime.Size = new System.Drawing.Size(111, 17);
     this.label_CycleTime.TabIndex = 14;
     this.label_CycleTime.Text = "Cycle Time [ms]:";
     this.label_CycleTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label_CTime
     //
     this.label_CTime.AutoSize = true;
     this.label_CTime.Location = new System.Drawing.Point(223, 79);
     this.label_CTime.Name = "label_CTime";
     this.label_CTime.Size = new System.Drawing.Size(16, 17);
     this.label_CTime.TabIndex = 13;
     this.label_CTime.Text = "0";
     this.label_CTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // spinEdit_Slowing
     //
     this.spinEdit_Slowing.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit_Slowing.Location = new System.Drawing.Point(166, 47);
     this.spinEdit_Slowing.Margin = new System.Windows.Forms.Padding(4);
     this.spinEdit_Slowing.Name = "spinEdit_Slowing";
     this.spinEdit_Slowing.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit_Slowing.Properties.IsFloatValue = false;
     this.spinEdit_Slowing.Properties.LookAndFeel.SkinName = "Office 2010 Black";
     this.spinEdit_Slowing.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
     this.spinEdit_Slowing.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.spinEdit_Slowing.Properties.Mask.EditMask = "N00";
     this.spinEdit_Slowing.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.spinEdit_Slowing.Size = new System.Drawing.Size(93, 24);
     this.spinEdit_Slowing.TabIndex = 1;
     this.spinEdit_Slowing.EditValueChanged += new System.EventHandler(this.spinEdit_Slowing_EditValueChanged);
     //
     // label_Slowdown
     //
     this.label_Slowdown.AutoSize = true;
     this.label_Slowdown.Location = new System.Drawing.Point(86, 51);
     this.label_Slowdown.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_Slowdown.Name = "label_Slowdown";
     this.label_Slowdown.Size = new System.Drawing.Size(74, 17);
     this.label_Slowdown.TabIndex = 6;
     this.label_Slowdown.Text = "Slowdown:";
     //
     // checkBox_CScan
     //
     this.checkBox_CScan.AutoSize = true;
     this.checkBox_CScan.Location = new System.Drawing.Point(25, 20);
     this.checkBox_CScan.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.checkBox_CScan.Name = "checkBox_CScan";
     this.checkBox_CScan.Size = new System.Drawing.Size(284, 21);
     this.checkBox_CScan.TabIndex = 0;
     this.checkBox_CScan.Text = "Switch on continuous scan after connect";
     this.checkBox_CScan.UseVisualStyleBackColor = true;
     this.checkBox_CScan.CheckedChanged += new System.EventHandler(this.checkBox_CScan_CheckedChanged);
     //
     // groupBox_Items
     //
     this.groupBox_Items.Controls.Add(this.label_CountN);
     this.groupBox_Items.Controls.Add(this.label_Count);
     this.groupBox_Items.Location = new System.Drawing.Point(9, 236);
     this.groupBox_Items.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox_Items.Name = "groupBox_Items";
     this.groupBox_Items.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox_Items.Size = new System.Drawing.Size(345, 43);
     this.groupBox_Items.TabIndex = 2;
     this.groupBox_Items.TabStop = false;
     this.groupBox_Items.Text = "Items";
     //
     // label_CountN
     //
     this.label_CountN.AutoSize = true;
     this.label_CountN.Location = new System.Drawing.Point(191, 16);
     this.label_CountN.Name = "label_CountN";
     this.label_CountN.Size = new System.Drawing.Size(16, 17);
     this.label_CountN.TabIndex = 1;
     this.label_CountN.Text = "0";
     //
     // label_Count
     //
     this.label_Count.AutoSize = true;
     this.label_Count.Location = new System.Drawing.Point(136, 16);
     this.label_Count.Name = "label_Count";
     this.label_Count.Size = new System.Drawing.Size(49, 17);
     this.label_Count.TabIndex = 0;
     this.label_Count.Text = "Count:";
     //
     // okCancelButton
     //
     this.okCancelButton.Location = new System.Drawing.Point(87, 286);
     this.okCancelButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.okCancelButton.MaximumSize = new System.Drawing.Size(188, 33);
     this.okCancelButton.MinimumSize = new System.Drawing.Size(188, 33);
     this.okCancelButton.Name = "okCancelButton";
     this.okCancelButton.Size = new System.Drawing.Size(188, 33);
     this.okCancelButton.TabIndex = 3;
     this.okCancelButton.ButtonClick += new System.EventHandler(this.okCancelButton_ButtonClick);
     //
     // ConnectionSetupForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(362, 324);
     this.ControlBox = false;
     this.Controls.Add(this.okCancelButton);
     this.Controls.Add(this.groupBox_Items);
     this.Controls.Add(this.groupBox_Options);
     this.Controls.Add(this.groupBox_S7PLCSim);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ConnectionSetupForm";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "S7PLCSim Connection";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.SetupForm_FormClosed);
     this.Load += new System.EventHandler(this.ConnectionSetupForm_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConnectionSetupForm_KeyDown);
     this.groupBox_S7PLCSim.ResumeLayout(false);
     this.groupBox_S7PLCSim.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit_InstNum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.groupBox_Options.ResumeLayout(false);
     this.groupBox_Options.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Slowing.Properties)).EndInit();
     this.groupBox_Items.ResumeLayout(false);
     this.groupBox_Items.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSetPlaneParam));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.spinEdit4 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.buttonEdit1 = new DevExpress.XtraEditors.ButtonEdit();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.checkButton1 = new DevExpress.XtraEditors.CheckButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.AppearanceCaption.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.AppearanceCaption.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.AppearanceCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.CaptionImageLocation = DevExpress.Utils.GroupElementLocation.Default;
     this.groupControl1.CaptionLocation = DevExpress.Utils.Locations.Default;
     this.groupControl1.ContentImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.groupControl1.Controls.Add(this.spinEdit4);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.spinEdit3);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.comboBoxEdit3);
     this.groupControl1.Controls.Add(this.comboBoxEdit2);
     this.groupControl1.Controls.Add(this.buttonEdit1);
     this.groupControl1.Controls.Add(this.spinEdit2);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.simpleButton5);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.simpleButton4);
     this.groupControl1.Controls.Add(this.simpleButton3);
     this.groupControl1.Controls.Add(this.checkButton1);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.textBox1);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.comboBoxEdit1);
     this.groupControl1.Controls.Add(this.spinEdit1);
     this.groupControl1.Controls.Add(this.textEdit2);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.simpleButton2);
     this.groupControl1.Controls.Add(this.simpleButton1);
     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.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(289, 266);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "飞行参数";
     //
     // spinEdit4
     //
     this.spinEdit4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit4.Location = new System.Drawing.Point(57, 147);
     this.spinEdit4.Name = "spinEdit4";
     this.spinEdit4.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit4.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject1.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject1.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject1.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject1.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.spinEdit4.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit4.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit4.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit4.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit4.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit4.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit4.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit4.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit4.Size = new System.Drawing.Size(49, 21);
     this.spinEdit4.TabIndex = 27;
     this.spinEdit4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl11
     //
     this.labelControl11.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl11.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl11.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl11.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl11.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl11.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl11.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl11.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl11.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl11.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl11.Location = new System.Drawing.Point(140, 31);
     this.labelControl11.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 14);
     this.labelControl11.TabIndex = 26;
     this.labelControl11.Text = "米/秒";
     this.labelControl11.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl10
     //
     this.labelControl10.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl10.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl10.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl10.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl10.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl10.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl10.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl10.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl10.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl10.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl10.Location = new System.Drawing.Point(140, 58);
     this.labelControl10.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 14);
     this.labelControl10.TabIndex = 25;
     this.labelControl10.Text = "米/秒";
     this.labelControl10.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl9
     //
     this.labelControl9.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl9.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl9.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl9.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl9.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl9.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl9.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl9.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl9.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl9.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl9.Location = new System.Drawing.Point(4, 92);
     this.labelControl9.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 14);
     this.labelControl9.TabIndex = 24;
     this.labelControl9.Text = "动态类型:";
     this.labelControl9.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // spinEdit3
     //
     this.spinEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spinEdit3.Location = new System.Drawing.Point(57, 172);
     this.spinEdit3.Name = "spinEdit3";
     this.spinEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject2.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject2.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject2.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject2.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.spinEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit3.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit3.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit3.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit3.Size = new System.Drawing.Size(49, 21);
     this.spinEdit3.TabIndex = 23;
     this.spinEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit3.EditValueChanged += new System.EventHandler(this.spinEdit3_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl8.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl8.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl8.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl8.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl8.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl8.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl8.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl8.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl8.Location = new System.Drawing.Point(1, 176);
     this.labelControl8.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(60, 14);
     this.labelControl8.TabIndex = 22;
     this.labelControl8.Text = "模型比例:";
     this.labelControl8.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl7
     //
     this.labelControl7.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl7.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl7.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl7.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl7.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl7.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl7.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl7.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl7.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl7.Location = new System.Drawing.Point(4, 123);
     this.labelControl7.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(52, 14);
     this.labelControl7.TabIndex = 21;
     this.labelControl7.Text = "表现类型:";
     this.labelControl7.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // comboBoxEdit3
     //
     this.comboBoxEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Enabled = false;
     this.comboBoxEdit3.Location = new System.Drawing.Point(57, 120);
     this.comboBoxEdit3.Name = "comboBoxEdit3";
     this.comboBoxEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject3.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject3.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject3.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject3.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject3.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.comboBoxEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit3.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit3.Properties.Items.AddRange(new object[] {
     "根据地表",
     "客机",
     "直升机"});
     this.comboBoxEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit3.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit3.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit3.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit3.TabIndex = 20;
     this.comboBoxEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit3_SelectedIndexChanged);
     //
     // comboBoxEdit2
     //
     this.comboBoxEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Location = new System.Drawing.Point(58, 89);
     this.comboBoxEdit2.Name = "comboBoxEdit2";
     this.comboBoxEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject4.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject4.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject4.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject4.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject4.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.comboBoxEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit2.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit2.Properties.Items.AddRange(new object[] {
     "无模型",
     "有模型"});
     this.comboBoxEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit2.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit2.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit2.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit2.TabIndex = 19;
     this.comboBoxEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit2_SelectedIndexChanged);
     //
     // buttonEdit1
     //
     this.buttonEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Location = new System.Drawing.Point(165, 120);
     this.buttonEdit1.Name = "buttonEdit1";
     this.buttonEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.buttonEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject5.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject5.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject5.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject5.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject5.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
     this.buttonEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.buttonEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.buttonEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.buttonEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.buttonEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.buttonEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.buttonEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.buttonEdit1.Properties.Click += new System.EventHandler(this.buttonEdit1_Properties_Click);
     this.buttonEdit1.Size = new System.Drawing.Size(100, 21);
     this.buttonEdit1.TabIndex = 18;
     this.buttonEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.buttonEdit1.Visible = false;
     //
     // spinEdit2
     //
     this.spinEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.EditValue = new decimal(new int[] {
     30,
     0,
     0,
     0});
     this.spinEdit2.Location = new System.Drawing.Point(58, 55);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject6.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject6.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject6.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject6.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject6.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.spinEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit2.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit2.Size = new System.Drawing.Size(76, 21);
     this.spinEdit2.TabIndex = 17;
     this.spinEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl6
     //
     this.labelControl6.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl6.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl6.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl6.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl6.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl6.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl6.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl6.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl6.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl6.Location = new System.Drawing.Point(4, 58);
     this.labelControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(36, 14);
     this.labelControl6.TabIndex = 16;
     this.labelControl6.Text = "速度:";
     this.labelControl6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton5
     //
     this.simpleButton5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton5.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton5.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton5.Location = new System.Drawing.Point(160, 170);
     this.simpleButton5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(24, 23);
     this.simpleButton5.TabIndex = 15;
     this.simpleButton5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // labelControl5
     //
     this.labelControl5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl5.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl5.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl5.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl5.Location = new System.Drawing.Point(112, 150);
     this.labelControl5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(12, 14);
     this.labelControl5.TabIndex = 14;
     this.labelControl5.Text = "米";
     this.labelControl5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton4
     //
     this.simpleButton4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton4.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton4.Location = new System.Drawing.Point(130, 170);
     this.simpleButton4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(24, 23);
     this.simpleButton4.TabIndex = 13;
     this.simpleButton4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton3.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton3.Location = new System.Drawing.Point(13, 233);
     this.simpleButton3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(49, 23);
     this.simpleButton3.TabIndex = 12;
     this.simpleButton3.Text = "确定";
     this.simpleButton3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton3.Visible = false;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // checkButton1
     //
     this.checkButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.checkButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.checkButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.checkButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.checkButton1.Location = new System.Drawing.Point(201, 170);
     this.checkButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.checkButton1.Name = "checkButton1";
     this.checkButton1.Size = new System.Drawing.Size(75, 23);
     this.checkButton1.TabIndex = 11;
     this.checkButton1.Text = "地下模式";
     this.checkButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.checkButton1.CheckedChanged += new System.EventHandler(this.checkButton1_CheckedChanged);
     //
     // labelControl4
     //
     this.labelControl4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl4.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl4.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl4.Location = new System.Drawing.Point(116, 213);
     this.labelControl4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(12, 14);
     this.labelControl4.TabIndex = 10;
     this.labelControl4.Text = "度";
     this.labelControl4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl4.Visible = false;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(78, 209);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(32, 22);
     this.textBox1.TabIndex = 9;
     this.textBox1.Text = "-53";
     this.textBox1.Visible = false;
     //
     // labelControl3
     //
     this.labelControl3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl3.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl3.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl3.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl3.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl3.Location = new System.Drawing.Point(12, 213);
     this.labelControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "方向角度:";
     this.labelControl3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl3.Visible = false;
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.EditValue = "米";
     this.comboBoxEdit1.Location = new System.Drawing.Point(231, 28);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject7.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject7.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject7.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject7.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject7.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true)});
     this.comboBoxEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit1.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
     "米",
     "英尺",
     "千米"});
     this.comboBoxEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit1.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit1.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit1.Size = new System.Drawing.Size(35, 21);
     this.comboBoxEdit1.TabIndex = 7;
     this.comboBoxEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit1.Visible = false;
     //
     // spinEdit1
     //
     this.spinEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.EditValue = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(58, 28);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject8.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject8.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject8.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject8.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject8.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject8, "", null, null, true)});
     this.spinEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit1.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit1.Size = new System.Drawing.Size(76, 21);
     this.spinEdit1.TabIndex = 6;
     this.spinEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit1.EditValueChanged += new System.EventHandler(this.spinEdit1_EditValueChanged);
     //
     // textEdit2
     //
     this.textEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.EditValue = "80";
     this.textEdit2.Location = new System.Drawing.Point(130, 147);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.textEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.textEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.textEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.textEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.textEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.textEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.textEdit2.Size = new System.Drawing.Size(40, 21);
     this.textEdit2.TabIndex = 5;
     this.textEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.textEdit2.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl2.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl2.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl2.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl2.Location = new System.Drawing.Point(4, 150);
     this.labelControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(36, 14);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "高程:";
     this.labelControl2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl1
     //
     this.labelControl1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl1.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl1.Location = new System.Drawing.Point(4, 31);
     this.labelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "转弯速度:";
     this.labelControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton2
     //
     this.simpleButton2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton2.Location = new System.Drawing.Point(217, 228);
     this.simpleButton2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(49, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "关闭";
     this.simpleButton2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton1.Location = new System.Drawing.Point(162, 228);
     this.simpleButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(49, 23);
     this.simpleButton1.TabIndex = 0;
     this.simpleButton1.Text = "应用";
     this.simpleButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // FrmSetPlaneParam
     //
     this.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(289, 266);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Name = "FrmSetPlaneParam";
     this.Opacity = 0.8D;
     this.Text = "飞行参数设定";
     this.Load += new System.EventHandler(this.FrmSetPlaneParam_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Material));
     this.iclSmall = new DevExpress.Utils.ImageCollection(this.components);
     this.tabctrlMain = new DevExpress.XtraTab.XtraTabControl();
     this.tabpageMaterial = new DevExpress.XtraTab.XtraTabPage();
     this.cbxActive = new DevExpress.XtraEditors.CheckEdit();
     this.cbxBroken = new DevExpress.XtraEditors.CheckEdit();
     this.louResponsable = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louCreator = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoSurname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.louSubType = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louType = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louCategory = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.louVehicle = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louSupplier = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.memoDescription = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.txtInternalNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtSerieNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.tabpageHistory = new DevExpress.XtraTab.XtraTabPage();
     this.btnRemoveMemo = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddMemo = new DevExpress.XtraEditors.SimpleButton();
     this.gdcMemo = new DevExpress.XtraGrid.GridControl();
     this.gdvMemo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoMemoDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoMemo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.tabpageMaintenance = new DevExpress.XtraTab.XtraTabPage();
     this.btnRemoveMaintenance = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddMaintenance = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.spinMaintenanceFrequency = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.dteNextMaintenance = new DevExpress.XtraEditors.DateEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.gdcMaintenance = new DevExpress.XtraGrid.GridControl();
     this.gdvMaintenance = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoRemark = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEditRemark = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.tabpageFinancial = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.calcPrice = new DevExpress.XtraEditors.CalcEdit();
     this.dtePurchasedOn = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.tabpageDocuments = new DevExpress.XtraTab.XtraTabPage();
     this.iclMedium = new DevExpress.Utils.ImageCollection(this.components);
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.gdcoMemoDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutViewField_gdcoMileage = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     ((System.ComponentModel.ISupportInitialize)(this.iclSmall)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlMain)).BeginInit();
     this.tabctrlMain.SuspendLayout();
     this.tabpageMaterial.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBroken.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louResponsable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCreator.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louSubType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louVehicle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louSupplier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInternalNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSerieNumber.Properties)).BeginInit();
     this.tabpageHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit)).BeginInit();
     this.tabpageMaintenance.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaintenanceFrequency.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMaintenance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMaintenance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEditRemark)).BeginInit();
     this.tabpageFinancial.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_gdcoMileage)).BeginInit();
     this.SuspendLayout();
     //
     // iclSmall
     //
     this.iclSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("iclSmall.ImageStream")));
     this.iclSmall.Images.SetKeyName(0, "add_user_16.png");
     this.iclSmall.Images.SetKeyName(1, "arrow_left_16.png");
     this.iclSmall.Images.SetKeyName(2, "arrow_left_16_d.png");
     this.iclSmall.Images.SetKeyName(3, "arrow_left_16_h.png");
     this.iclSmall.Images.SetKeyName(4, "arrow_right_16.png");
     this.iclSmall.Images.SetKeyName(5, "arrow_right_16_d.png");
     this.iclSmall.Images.SetKeyName(6, "arrow_right_16_h.png");
     this.iclSmall.Images.SetKeyName(7, "copy_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(8, "copy_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(9, "copy_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(10, "copy_clipboard_lined_16.png");
     this.iclSmall.Images.SetKeyName(11, "copy_clipboard_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(12, "copy_clipboard_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(13, "copy_to_folder_16.png");
     this.iclSmall.Images.SetKeyName(14, "copy_to_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(15, "copy_to_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(16, "cut_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(17, "cut_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(18, "cut_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(19, "delete_16.png");
     this.iclSmall.Images.SetKeyName(20, "delete_16_d.png");
     this.iclSmall.Images.SetKeyName(21, "delete_16_h.png");
     this.iclSmall.Images.SetKeyName(22, "dollar_16.png");
     this.iclSmall.Images.SetKeyName(23, "equipment_16.png");
     this.iclSmall.Images.SetKeyName(24, "excel-16.png");
     this.iclSmall.Images.SetKeyName(25, "favorites_16.png");
     this.iclSmall.Images.SetKeyName(26, "favorites_16_d.png");
     this.iclSmall.Images.SetKeyName(27, "favorites_16_h.png");
     this.iclSmall.Images.SetKeyName(28, "folder_closed_16.png");
     this.iclSmall.Images.SetKeyName(29, "folder_closed_16_d.png");
     this.iclSmall.Images.SetKeyName(30, "folder_closed_16_h.png");
     this.iclSmall.Images.SetKeyName(31, "folder_open_16.png");
     this.iclSmall.Images.SetKeyName(32, "folder_open_16_d.png");
     this.iclSmall.Images.SetKeyName(33, "folder_open_16_h.png");
     this.iclSmall.Images.SetKeyName(34, "folder_options_16.png");
     this.iclSmall.Images.SetKeyName(35, "folder_options_16_d.png");
     this.iclSmall.Images.SetKeyName(36, "folder_options_16_h.png");
     this.iclSmall.Images.SetKeyName(37, "folder_options_b_16.png");
     this.iclSmall.Images.SetKeyName(38, "folder_options_b_16_d.png");
     this.iclSmall.Images.SetKeyName(39, "folder_options_b_16_h.png");
     this.iclSmall.Images.SetKeyName(40, "folders_16.png");
     this.iclSmall.Images.SetKeyName(41, "folders_16_d.png");
     this.iclSmall.Images.SetKeyName(42, "folders_16_h.png");
     this.iclSmall.Images.SetKeyName(43, "help-16.png");
     this.iclSmall.Images.SetKeyName(44, "history_1_16.png");
     this.iclSmall.Images.SetKeyName(45, "history_1_16_d.png");
     this.iclSmall.Images.SetKeyName(46, "history_1_16_h.png");
     this.iclSmall.Images.SetKeyName(47, "history_16.png");
     this.iclSmall.Images.SetKeyName(48, "history_16_d.png");
     this.iclSmall.Images.SetKeyName(49, "history_16_h.png");
     this.iclSmall.Images.SetKeyName(50, "history_b1_16.png");
     this.iclSmall.Images.SetKeyName(51, "history_b1_16_d.png");
     this.iclSmall.Images.SetKeyName(52, "history_b1_16_h.png");
     this.iclSmall.Images.SetKeyName(53, "history_b_16.png");
     this.iclSmall.Images.SetKeyName(54, "history_b_16_d.png");
     this.iclSmall.Images.SetKeyName(55, "history_b_16_h.png");
     this.iclSmall.Images.SetKeyName(56, "home_16.png");
     this.iclSmall.Images.SetKeyName(57, "home_16_d.png");
     this.iclSmall.Images.SetKeyName(58, "home_16_h.png");
     this.iclSmall.Images.SetKeyName(59, "info-16.png");
     this.iclSmall.Images.SetKeyName(60, "logout_16.png");
     this.iclSmall.Images.SetKeyName(61, "mail_16.png");
     this.iclSmall.Images.SetKeyName(62, "mail_16_d.png");
     this.iclSmall.Images.SetKeyName(63, "mail_16_h.png");
     this.iclSmall.Images.SetKeyName(64, "mail_b_16.png");
     this.iclSmall.Images.SetKeyName(65, "mail_b_16_d.png");
     this.iclSmall.Images.SetKeyName(66, "mail_b_16_h.png");
     this.iclSmall.Images.SetKeyName(67, "move_to_folder_16.png");
     this.iclSmall.Images.SetKeyName(68, "move_to_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(69, "move_to_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(70, "new_document_16.png");
     this.iclSmall.Images.SetKeyName(71, "new_document_16_d.png");
     this.iclSmall.Images.SetKeyName(72, "new_document_16_h.png");
     this.iclSmall.Images.SetKeyName(73, "new_document_lined_16.png");
     this.iclSmall.Images.SetKeyName(74, "new_document_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(75, "new_document_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(76, "ok_16.png");
     this.iclSmall.Images.SetKeyName(77, "open_document_16.png");
     this.iclSmall.Images.SetKeyName(78, "open_document_16_d.png");
     this.iclSmall.Images.SetKeyName(79, "open_document_16_h.png");
     this.iclSmall.Images.SetKeyName(80, "paste_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(81, "paste_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(82, "paste_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(83, "paste_clipboard_lined_16.png");
     this.iclSmall.Images.SetKeyName(84, "paste_clipboard_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(85, "paste_clipboard_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(86, "print_16.png");
     this.iclSmall.Images.SetKeyName(87, "print_16_d.png");
     this.iclSmall.Images.SetKeyName(88, "print_16_h.png");
     this.iclSmall.Images.SetKeyName(89, "print_preview_16.png");
     this.iclSmall.Images.SetKeyName(90, "print_preview_16_d.png");
     this.iclSmall.Images.SetKeyName(91, "print_preview_16_h.png");
     this.iclSmall.Images.SetKeyName(92, "print_preview_lined_16.png");
     this.iclSmall.Images.SetKeyName(93, "print_preview_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(94, "print_preview_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(95, "properties_document_16.png");
     this.iclSmall.Images.SetKeyName(96, "properties_document_16_d.png");
     this.iclSmall.Images.SetKeyName(97, "properties_document_16_h.png");
     this.iclSmall.Images.SetKeyName(98, "properties_document_b_16.png");
     this.iclSmall.Images.SetKeyName(99, "properties_document_b_16_d.png");
     this.iclSmall.Images.SetKeyName(100, "properties_document_b_16_h.png");
     this.iclSmall.Images.SetKeyName(101, "properties_document_b_lined_16.png");
     this.iclSmall.Images.SetKeyName(102, "properties_document_b_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(103, "properties_document_b_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(104, "properties_document_lined_16.png");
     this.iclSmall.Images.SetKeyName(105, "properties_document_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(106, "properties_document_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(107, "redo_16.png");
     this.iclSmall.Images.SetKeyName(108, "redo_16_d.png");
     this.iclSmall.Images.SetKeyName(109, "redo_16_h.png");
     this.iclSmall.Images.SetKeyName(110, "redo_square_16.png");
     this.iclSmall.Images.SetKeyName(111, "redo_square_16_d.png");
     this.iclSmall.Images.SetKeyName(112, "redo_square_16_h.png");
     this.iclSmall.Images.SetKeyName(113, "refresh_document_16.png");
     this.iclSmall.Images.SetKeyName(114, "refresh_document_16_d.png");
     this.iclSmall.Images.SetKeyName(115, "refresh_document_16_h.png");
     this.iclSmall.Images.SetKeyName(116, "run_16.png");
     this.iclSmall.Images.SetKeyName(117, "save_16.png");
     this.iclSmall.Images.SetKeyName(118, "save_16_d.png");
     this.iclSmall.Images.SetKeyName(119, "save_16_h.png");
     this.iclSmall.Images.SetKeyName(120, "search_16.png");
     this.iclSmall.Images.SetKeyName(121, "search_16_d.png");
     this.iclSmall.Images.SetKeyName(122, "search_16_h.png");
     this.iclSmall.Images.SetKeyName(123, "stop_16.png");
     this.iclSmall.Images.SetKeyName(124, "stop_16_d.png");
     this.iclSmall.Images.SetKeyName(125, "stop_16_h.png");
     this.iclSmall.Images.SetKeyName(126, "undo_16.png");
     this.iclSmall.Images.SetKeyName(127, "undo_16_d.png");
     this.iclSmall.Images.SetKeyName(128, "undo_16_h.png");
     this.iclSmall.Images.SetKeyName(129, "undo_square_16.png");
     this.iclSmall.Images.SetKeyName(130, "undo_square_16_d.png");
     this.iclSmall.Images.SetKeyName(131, "undo_square_16_h.png");
     this.iclSmall.Images.SetKeyName(132, "up_folder_16.png");
     this.iclSmall.Images.SetKeyName(133, "up_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(134, "up_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(135, "user_16.png");
     this.iclSmall.Images.SetKeyName(136, "users_16.png");
     this.iclSmall.Images.SetKeyName(137, "view_16.png");
     this.iclSmall.Images.SetKeyName(138, "view_16_d.png");
     this.iclSmall.Images.SetKeyName(139, "view_16_h.png");
     this.iclSmall.Images.SetKeyName(140, "label_16.png");
     //
     // tabctrlMain
     //
     this.tabctrlMain.Location = new System.Drawing.Point(12, 12);
     this.tabctrlMain.Name = "tabctrlMain";
     this.tabctrlMain.SelectedTabPage = this.tabpageMaterial;
     this.tabctrlMain.Size = new System.Drawing.Size(754, 413);
     this.tabctrlMain.TabIndex = 0;
     this.tabctrlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabpageMaterial,
     this.tabpageHistory,
     this.tabpageMaintenance,
     this.tabpageFinancial,
     this.tabpageDocuments});
     //
     // tabpageMaterial
     //
     this.tabpageMaterial.Controls.Add(this.cbxActive);
     this.tabpageMaterial.Controls.Add(this.cbxBroken);
     this.tabpageMaterial.Controls.Add(this.louResponsable);
     this.tabpageMaterial.Controls.Add(this.louCreator);
     this.tabpageMaterial.Controls.Add(this.labelControl4);
     this.tabpageMaterial.Controls.Add(this.labelControl2);
     this.tabpageMaterial.Controls.Add(this.labelControl1);
     this.tabpageMaterial.Controls.Add(this.txtName);
     this.tabpageMaterial.Controls.Add(this.panelControl1);
     this.tabpageMaterial.Name = "tabpageMaterial";
     this.tabpageMaterial.Size = new System.Drawing.Size(748, 385);
     this.tabpageMaterial.Text = "Algemeen";
     //
     // cbxActive
     //
     this.cbxActive.Location = new System.Drawing.Point(22, 63);
     this.cbxActive.Name = "cbxActive";
     this.cbxActive.Properties.Caption = "Actief";
     this.cbxActive.Size = new System.Drawing.Size(75, 19);
     this.cbxActive.TabIndex = 15;
     //
     // cbxBroken
     //
     this.cbxBroken.Location = new System.Drawing.Point(103, 63);
     this.cbxBroken.Name = "cbxBroken";
     this.cbxBroken.Properties.Caption = "Gebroken";
     this.cbxBroken.Size = new System.Drawing.Size(75, 19);
     this.cbxBroken.TabIndex = 14;
     //
     // louResponsable
     //
     this.louResponsable.Location = new System.Drawing.Point(537, 52);
     this.louResponsable.Name = "louResponsable";
     this.louResponsable.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louResponsable.Properties.DisplayMember = "DisplayName";
     this.louResponsable.Properties.NullText = "";
     this.louResponsable.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louResponsable.Properties.View = this.gridView1;
     this.louResponsable.Size = new System.Drawing.Size(180, 20);
     this.louResponsable.TabIndex = 2;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Naam";
     this.gridColumn3.FieldName = "Name";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 150;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Achternaam";
     this.gridColumn4.FieldName = "Surname";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     this.gridColumn4.Width = 150;
     //
     // louCreator
     //
     this.louCreator.Location = new System.Drawing.Point(537, 26);
     this.louCreator.Name = "louCreator";
     this.louCreator.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louCreator.Properties.DisplayMember = "DisplayName";
     this.louCreator.Properties.NullText = "";
     this.louCreator.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louCreator.Properties.View = this.gridLookUpEdit1View;
     this.louCreator.Size = new System.Drawing.Size(180, 20);
     this.louCreator.TabIndex = 1;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoName,
     this.gdcoSurname});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gdcoName
     //
     this.gdcoName.Caption = "Naam";
     this.gdcoName.FieldName = "Name";
     this.gdcoName.Name = "gdcoName";
     this.gdcoName.OptionsColumn.AllowEdit = false;
     this.gdcoName.Visible = true;
     this.gdcoName.VisibleIndex = 0;
     this.gdcoName.Width = 150;
     //
     // gdcoSurname
     //
     this.gdcoSurname.Caption = "Achternaam";
     this.gdcoSurname.FieldName = "Surname";
     this.gdcoSurname.Name = "gdcoSurname";
     this.gdcoSurname.Visible = true;
     this.gdcoSurname.VisibleIndex = 1;
     this.gdcoSurname.Width = 150;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(24, 29);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(31, 13);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "Naam:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(427, 55);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(90, 13);
     this.labelControl2.TabIndex = 6;
     this.labelControl2.Text = "Verantwoordelijke:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(427, 29);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(89, 13);
     this.labelControl1.TabIndex = 5;
     this.labelControl1.Text = "Aangemaakt door:";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(79, 26);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(183, 20);
     this.txtName.TabIndex = 0;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.louSubType);
     this.panelControl1.Controls.Add(this.louType);
     this.panelControl1.Controls.Add(this.louCategory);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl5);
     this.panelControl1.Controls.Add(this.louVehicle);
     this.panelControl1.Controls.Add(this.louSupplier);
     this.panelControl1.Controls.Add(this.labelControl14);
     this.panelControl1.Controls.Add(this.memoDescription);
     this.panelControl1.Controls.Add(this.labelControl10);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.txtInternalNumber);
     this.panelControl1.Controls.Add(this.labelControl7);
     this.panelControl1.Controls.Add(this.txtSerieNumber);
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Location = new System.Drawing.Point(24, 88);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(693, 272);
     this.panelControl1.TabIndex = 13;
     //
     // louSubType
     //
     this.louSubType.Location = new System.Drawing.Point(503, 32);
     this.louSubType.Name = "louSubType";
     this.louSubType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louSubType.Properties.DisplayMember = "SubType";
     this.louSubType.Properties.NullText = "";
     this.louSubType.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louSubType.Properties.View = this.gridView6;
     this.louSubType.Size = new System.Drawing.Size(157, 20);
     this.louSubType.TabIndex = 5;
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15});
     this.gridView6.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView6.OptionsView.ColumnAutoWidth = false;
     this.gridView6.OptionsView.ShowAutoFilterRow = true;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Subtype";
     this.gridColumn15.FieldName = "SubType";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 150;
     //
     // louType
     //
     this.louType.Location = new System.Drawing.Point(312, 32);
     this.louType.Name = "louType";
     this.louType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louType.Properties.DisplayMember = "Type";
     this.louType.Properties.NullText = "";
     this.louType.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louType.Properties.View = this.gridView5;
     this.louType.Size = new System.Drawing.Size(185, 20);
     this.louType.TabIndex = 4;
     this.louType.EditValueChanged += new System.EventHandler(this.louType_EditValueChanged);
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14});
     this.gridView5.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView5.OptionsView.ColumnAutoWidth = false;
     this.gridView5.OptionsView.ShowAutoFilterRow = true;
     this.gridView5.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Type";
     this.gridColumn14.FieldName = "Type";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 84;
     //
     // louCategory
     //
     this.louCategory.Location = new System.Drawing.Point(121, 32);
     this.louCategory.Name = "louCategory";
     this.louCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louCategory.Properties.DisplayMember = "Category";
     this.louCategory.Properties.NullText = "";
     this.louCategory.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louCategory.Properties.View = this.gridView4;
     this.louCategory.Size = new System.Drawing.Size(185, 20);
     this.louCategory.TabIndex = 3;
     this.louCategory.EditValueChanged += new System.EventHandler(this.louCategory_EditValueChanged);
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ColumnAutoWidth = false;
     this.gridView4.OptionsView.ShowAutoFilterRow = true;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Categorie";
     this.gridColumn1.FieldName = "Category";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 150;
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(499, 13);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(40, 13);
     this.labelControl16.TabIndex = 23;
     this.labelControl16.Text = "Subtype";
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(310, 13);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(24, 13);
     this.labelControl15.TabIndex = 22;
     this.labelControl15.Text = "Type";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(121, 13);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(47, 13);
     this.labelControl5.TabIndex = 19;
     this.labelControl5.Text = "Categorie";
     //
     // louVehicle
     //
     this.louVehicle.Location = new System.Drawing.Point(121, 84);
     this.louVehicle.Name = "louVehicle";
     this.louVehicle.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louVehicle.Properties.DisplayMember = "Name";
     this.louVehicle.Properties.NullText = "";
     this.louVehicle.Properties.View = this.gridView3;
     this.louVehicle.Size = new System.Drawing.Size(185, 20);
     this.louVehicle.TabIndex = 7;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn7,
     this.gridColumn8});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowAutoFilterRow = true;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Naam";
     this.gridColumn7.FieldName = "Name";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Kenteken";
     this.gridColumn8.FieldName = "LicenseNumber";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     //
     // louSupplier
     //
     this.louSupplier.Location = new System.Drawing.Point(121, 58);
     this.louSupplier.Name = "louSupplier";
     this.louSupplier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louSupplier.Properties.DisplayMember = "Name";
     this.louSupplier.Properties.NullText = "";
     this.louSupplier.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louSupplier.Properties.View = this.gridView2;
     this.louSupplier.Size = new System.Drawing.Size(185, 20);
     this.louSupplier.TabIndex = 6;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn9,
     this.gridColumn10});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ColumnAutoWidth = false;
     this.gridView2.OptionsView.ShowAutoFilterRow = true;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Naam";
     this.gridColumn5.FieldName = "Name";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width = 150;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "straat";
     this.gridColumn9.FieldName = "Street";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     this.gridColumn9.Width = 150;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "postcode";
     this.gridColumn10.FieldName = "Zipcode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 84;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(17, 163);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(65, 13);
     this.labelControl14.TabIndex = 17;
     this.labelControl14.Text = "Omschrijving:";
     //
     // memoDescription
     //
     this.memoDescription.Location = new System.Drawing.Point(121, 160);
     this.memoDescription.Name = "memoDescription";
     this.memoDescription.Size = new System.Drawing.Size(539, 97);
     this.memoDescription.TabIndex = 10;
     this.memoDescription.UseOptimizedRendering = true;
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(17, 87);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(44, 13);
     this.labelControl10.TabIndex = 14;
     this.labelControl10.Text = "Voertuig:";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(17, 61);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(60, 13);
     this.labelControl9.TabIndex = 12;
     this.labelControl9.Text = "Leverancier:";
     //
     // txtInternalNumber
     //
     this.txtInternalNumber.Location = new System.Drawing.Point(121, 134);
     this.txtInternalNumber.Name = "txtInternalNumber";
     this.txtInternalNumber.Size = new System.Drawing.Size(185, 20);
     this.txtInternalNumber.TabIndex = 9;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(17, 137);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(75, 13);
     this.labelControl7.TabIndex = 9;
     this.labelControl7.Text = "Intern nummer:";
     //
     // txtSerieNumber
     //
     this.txtSerieNumber.Location = new System.Drawing.Point(121, 110);
     this.txtSerieNumber.Name = "txtSerieNumber";
     this.txtSerieNumber.Size = new System.Drawing.Size(185, 20);
     this.txtSerieNumber.TabIndex = 8;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(17, 113);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(69, 13);
     this.labelControl3.TabIndex = 7;
     this.labelControl3.Text = "Serie nummer:";
     //
     // tabpageHistory
     //
     this.tabpageHistory.Controls.Add(this.btnRemoveMemo);
     this.tabpageHistory.Controls.Add(this.btnAddMemo);
     this.tabpageHistory.Controls.Add(this.gdcMemo);
     this.tabpageHistory.Name = "tabpageHistory";
     this.tabpageHistory.Size = new System.Drawing.Size(748, 385);
     this.tabpageHistory.Text = "Historiek";
     //
     // btnRemoveMemo
     //
     this.btnRemoveMemo.ImageIndex = 21;
     this.btnRemoveMemo.ImageList = this.iclSmall;
     this.btnRemoveMemo.Location = new System.Drawing.Point(9, 44);
     this.btnRemoveMemo.Name = "btnRemoveMemo";
     this.btnRemoveMemo.Size = new System.Drawing.Size(24, 24);
     this.btnRemoveMemo.TabIndex = 20;
     this.btnRemoveMemo.Click += new System.EventHandler(this.btnRemoveMemo_Click);
     //
     // btnAddMemo
     //
     this.btnAddMemo.ImageIndex = 27;
     this.btnAddMemo.ImageList = this.iclSmall;
     this.btnAddMemo.Location = new System.Drawing.Point(9, 14);
     this.btnAddMemo.Name = "btnAddMemo";
     this.btnAddMemo.Size = new System.Drawing.Size(24, 24);
     this.btnAddMemo.TabIndex = 19;
     this.btnAddMemo.Click += new System.EventHandler(this.btnAddMemo_Click);
     //
     // gdcMemo
     //
     this.gdcMemo.Location = new System.Drawing.Point(39, 13);
     this.gdcMemo.MainView = this.gdvMemo;
     this.gdcMemo.Name = "gdcMemo";
     this.gdcMemo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit});
     this.gdcMemo.Size = new System.Drawing.Size(707, 369);
     this.gdcMemo.TabIndex = 2;
     this.gdcMemo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvMemo});
     //
     // gdvMemo
     //
     this.gdvMemo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoMemoDateTime,
     this.gdcoMemo});
     this.gdvMemo.DetailHeight = 500;
     this.gdvMemo.GridControl = this.gdcMemo;
     this.gdvMemo.Name = "gdvMemo";
     this.gdvMemo.OptionsView.RowAutoHeight = true;
     this.gdvMemo.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.ShowAlways;
     this.gdvMemo.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gdcoMemoDateTime, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gdvMemo.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gdvMemo_RowUpdated);
     //
     // gdcoMemoDateTime
     //
     this.gdcoMemoDateTime.Caption = "Datum";
     this.gdcoMemoDateTime.DisplayFormat.FormatString = "g";
     this.gdcoMemoDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gdcoMemoDateTime.FieldName = "DateTime";
     this.gdcoMemoDateTime.Name = "gdcoMemoDateTime";
     this.gdcoMemoDateTime.OptionsColumn.AllowEdit = false;
     this.gdcoMemoDateTime.Visible = true;
     this.gdcoMemoDateTime.VisibleIndex = 0;
     //
     // gdcoMemo
     //
     this.gdcoMemo.Caption = "Memo";
     this.gdcoMemo.ColumnEdit = this.repositoryItemMemoEdit;
     this.gdcoMemo.FieldName = "Memo";
     this.gdcoMemo.Name = "gdcoMemo";
     this.gdcoMemo.Visible = true;
     this.gdcoMemo.VisibleIndex = 1;
     //
     // repositoryItemMemoEdit
     //
     this.repositoryItemMemoEdit.Name = "repositoryItemMemoEdit";
     //
     // tabpageMaintenance
     //
     this.tabpageMaintenance.Controls.Add(this.btnRemoveMaintenance);
     this.tabpageMaintenance.Controls.Add(this.btnAddMaintenance);
     this.tabpageMaintenance.Controls.Add(this.labelControl13);
     this.tabpageMaintenance.Controls.Add(this.spinMaintenanceFrequency);
     this.tabpageMaintenance.Controls.Add(this.labelControl12);
     this.tabpageMaintenance.Controls.Add(this.dteNextMaintenance);
     this.tabpageMaintenance.Controls.Add(this.labelControl11);
     this.tabpageMaintenance.Controls.Add(this.gdcMaintenance);
     this.tabpageMaintenance.Name = "tabpageMaintenance";
     this.tabpageMaintenance.Size = new System.Drawing.Size(748, 385);
     this.tabpageMaintenance.Text = "Onderhoud";
     //
     // btnRemoveMaintenance
     //
     this.btnRemoveMaintenance.ImageIndex = 21;
     this.btnRemoveMaintenance.ImageList = this.iclSmall;
     this.btnRemoveMaintenance.Location = new System.Drawing.Point(7, 103);
     this.btnRemoveMaintenance.Name = "btnRemoveMaintenance";
     this.btnRemoveMaintenance.Size = new System.Drawing.Size(24, 24);
     this.btnRemoveMaintenance.TabIndex = 18;
     this.btnRemoveMaintenance.Click += new System.EventHandler(this.btnRemoveMaintenance_Click);
     //
     // btnAddMaintenance
     //
     this.btnAddMaintenance.ImageIndex = 27;
     this.btnAddMaintenance.ImageList = this.iclSmall;
     this.btnAddMaintenance.Location = new System.Drawing.Point(7, 73);
     this.btnAddMaintenance.Name = "btnAddMaintenance";
     this.btnAddMaintenance.Size = new System.Drawing.Size(24, 24);
     this.btnAddMaintenance.TabIndex = 17;
     this.btnAddMaintenance.Click += new System.EventHandler(this.btnAddMaintenance_Click);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(273, 40);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(30, 13);
     this.labelControl13.TabIndex = 16;
     this.labelControl13.Text = "dagen";
     //
     // spinMaintenanceFrequency
     //
     this.spinMaintenanceFrequency.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinMaintenanceFrequency.Location = new System.Drawing.Point(157, 37);
     this.spinMaintenanceFrequency.Name = "spinMaintenanceFrequency";
     this.spinMaintenanceFrequency.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinMaintenanceFrequency.Size = new System.Drawing.Size(99, 20);
     this.spinMaintenanceFrequency.TabIndex = 12;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(13, 40);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(111, 13);
     this.labelControl12.TabIndex = 14;
     this.labelControl12.Text = "Onderhoud frequentie:";
     //
     // dteNextMaintenance
     //
     this.dteNextMaintenance.EditValue = null;
     this.dteNextMaintenance.Location = new System.Drawing.Point(157, 11);
     this.dteNextMaintenance.Name = "dteNextMaintenance";
     this.dteNextMaintenance.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dteNextMaintenance.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dteNextMaintenance.Properties.ReadOnly = true;
     this.dteNextMaintenance.Size = new System.Drawing.Size(146, 20);
     this.dteNextMaintenance.TabIndex = 11;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(13, 14);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(103, 13);
     this.labelControl11.TabIndex = 12;
     this.labelControl11.Text = "Volgende onderhoud:";
     //
     // gdcMaintenance
     //
     this.gdcMaintenance.Location = new System.Drawing.Point(37, 73);
     this.gdcMaintenance.MainView = this.gdvMaintenance;
     this.gdcMaintenance.Name = "gdcMaintenance";
     this.gdcMaintenance.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEditRemark});
     this.gdcMaintenance.Size = new System.Drawing.Size(695, 295);
     this.gdcMaintenance.TabIndex = 1;
     this.gdcMaintenance.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvMaintenance});
     //
     // gdvMaintenance
     //
     this.gdvMaintenance.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoDate,
     this.gdcoRemark});
     this.gdvMaintenance.GridControl = this.gdcMaintenance;
     this.gdvMaintenance.Name = "gdvMaintenance";
     this.gdvMaintenance.OptionsView.RowAutoHeight = true;
     this.gdvMaintenance.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.ShowAlways;
     this.gdvMaintenance.OptionsView.ShowGroupPanel = false;
     this.gdvMaintenance.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gdvMaintenance_RowUpdated);
     this.gdvMaintenance.DoubleClick += new System.EventHandler(this.gdvMaintenance_DoubleClick);
     //
     // gdcoDate
     //
     this.gdcoDate.Caption = "Start onderhoud";
     this.gdcoDate.DisplayFormat.FormatString = "g";
     this.gdcoDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gdcoDate.FieldName = "StartMaintenance";
     this.gdcoDate.Name = "gdcoDate";
     this.gdcoDate.OptionsColumn.AllowEdit = false;
     this.gdcoDate.Visible = true;
     this.gdcoDate.VisibleIndex = 0;
     this.gdcoDate.Width = 100;
     //
     // gdcoRemark
     //
     this.gdcoRemark.Caption = "Opmerking";
     this.gdcoRemark.ColumnEdit = this.repositoryItemMemoEditRemark;
     this.gdcoRemark.FieldName = "Remark";
     this.gdcoRemark.Name = "gdcoRemark";
     this.gdcoRemark.Visible = true;
     this.gdcoRemark.VisibleIndex = 1;
     this.gdcoRemark.Width = 577;
     //
     // repositoryItemMemoEditRemark
     //
     this.repositoryItemMemoEditRemark.Name = "repositoryItemMemoEditRemark";
     //
     // tabpageFinancial
     //
     this.tabpageFinancial.Controls.Add(this.labelControl8);
     this.tabpageFinancial.Controls.Add(this.calcPrice);
     this.tabpageFinancial.Controls.Add(this.dtePurchasedOn);
     this.tabpageFinancial.Controls.Add(this.labelControl6);
     this.tabpageFinancial.Name = "tabpageFinancial";
     this.tabpageFinancial.Size = new System.Drawing.Size(748, 385);
     this.tabpageFinancial.Text = "Financieel";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(17, 49);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(24, 13);
     this.labelControl8.TabIndex = 13;
     this.labelControl8.Text = "Prijs:";
     //
     // calcPrice
     //
     this.calcPrice.Location = new System.Drawing.Point(109, 46);
     this.calcPrice.Name = "calcPrice";
     this.calcPrice.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.calcPrice.Properties.Mask.EditMask = "c";
     this.calcPrice.Size = new System.Drawing.Size(146, 20);
     this.calcPrice.TabIndex = 14;
     //
     // dtePurchasedOn
     //
     this.dtePurchasedOn.EditValue = null;
     this.dtePurchasedOn.Location = new System.Drawing.Point(109, 20);
     this.dtePurchasedOn.Name = "dtePurchasedOn";
     this.dtePurchasedOn.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtePurchasedOn.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtePurchasedOn.Size = new System.Drawing.Size(146, 20);
     this.dtePurchasedOn.TabIndex = 13;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(17, 23);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(76, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "Datum gekocht:";
     //
     // tabpageDocuments
     //
     this.tabpageDocuments.Name = "tabpageDocuments";
     this.tabpageDocuments.Size = new System.Drawing.Size(748, 385);
     this.tabpageDocuments.Text = "Documenten";
     //
     // iclMedium
     //
     this.iclMedium.ImageSize = new System.Drawing.Size(24, 24);
     this.iclMedium.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("iclMedium.ImageStream")));
     this.iclMedium.Images.SetKeyName(0, "add_user_24.png");
     this.iclMedium.Images.SetKeyName(1, "arrow_left_24.png");
     this.iclMedium.Images.SetKeyName(2, "arrow_left_24_d.png");
     this.iclMedium.Images.SetKeyName(3, "arrow_left_24_h.png");
     this.iclMedium.Images.SetKeyName(4, "arrow_right_24.png");
     this.iclMedium.Images.SetKeyName(5, "arrow_right_24_d.png");
     this.iclMedium.Images.SetKeyName(6, "arrow_right_24_h.png");
     this.iclMedium.Images.SetKeyName(7, "copy_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(8, "copy_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(9, "copy_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(10, "copy_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(11, "copy_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(12, "copy_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(13, "copy_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(14, "copy_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(15, "copy_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(16, "cut_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(17, "cut_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(18, "cut_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(19, "delete_24.png");
     this.iclMedium.Images.SetKeyName(20, "delete_24_d.png");
     this.iclMedium.Images.SetKeyName(21, "delete_24_h.png");
     this.iclMedium.Images.SetKeyName(22, "equipment_24.png");
     this.iclMedium.Images.SetKeyName(23, "excel-24.png");
     this.iclMedium.Images.SetKeyName(24, "favorites_24.png");
     this.iclMedium.Images.SetKeyName(25, "favorites_24_d.png");
     this.iclMedium.Images.SetKeyName(26, "favorites_24_h.png");
     this.iclMedium.Images.SetKeyName(27, "folder_closed_24.png");
     this.iclMedium.Images.SetKeyName(28, "folder_closed_24_d.png");
     this.iclMedium.Images.SetKeyName(29, "folder_closed_24_h.png");
     this.iclMedium.Images.SetKeyName(30, "folder_open_24.png");
     this.iclMedium.Images.SetKeyName(31, "folder_open_24_d.png");
     this.iclMedium.Images.SetKeyName(32, "folder_open_24_h.png");
     this.iclMedium.Images.SetKeyName(33, "folder_options_24.png");
     this.iclMedium.Images.SetKeyName(34, "folder_options_24_d.png");
     this.iclMedium.Images.SetKeyName(35, "folder_options_24_h.png");
     this.iclMedium.Images.SetKeyName(36, "folder_options_b_24.png");
     this.iclMedium.Images.SetKeyName(37, "folder_options_b_24_d.png");
     this.iclMedium.Images.SetKeyName(38, "folder_options_b_24_h.png");
     this.iclMedium.Images.SetKeyName(39, "folders_24.png");
     this.iclMedium.Images.SetKeyName(40, "folders_24_d.png");
     this.iclMedium.Images.SetKeyName(41, "folders_24_h.png");
     this.iclMedium.Images.SetKeyName(42, "help-24.png");
     this.iclMedium.Images.SetKeyName(43, "history_1_24.png");
     this.iclMedium.Images.SetKeyName(44, "history_1_24_d.png");
     this.iclMedium.Images.SetKeyName(45, "history_1_24_h.png");
     this.iclMedium.Images.SetKeyName(46, "history_24.png");
     this.iclMedium.Images.SetKeyName(47, "history_24_d.png");
     this.iclMedium.Images.SetKeyName(48, "history_24_h.png");
     this.iclMedium.Images.SetKeyName(49, "history_b1_24.png");
     this.iclMedium.Images.SetKeyName(50, "history_b1_24_d.png");
     this.iclMedium.Images.SetKeyName(51, "history_b1_24_h.png");
     this.iclMedium.Images.SetKeyName(52, "history_b_24.png");
     this.iclMedium.Images.SetKeyName(53, "history_b_24_d.png");
     this.iclMedium.Images.SetKeyName(54, "history_b_24_h.png");
     this.iclMedium.Images.SetKeyName(55, "home_24.png");
     this.iclMedium.Images.SetKeyName(56, "home_24_d.png");
     this.iclMedium.Images.SetKeyName(57, "home_24_h.png");
     this.iclMedium.Images.SetKeyName(58, "info-24.png");
     this.iclMedium.Images.SetKeyName(59, "logo-24.png");
     this.iclMedium.Images.SetKeyName(60, "mail_24.png");
     this.iclMedium.Images.SetKeyName(61, "mail_24_d.png");
     this.iclMedium.Images.SetKeyName(62, "mail_24_h.png");
     this.iclMedium.Images.SetKeyName(63, "mail_b_24.png");
     this.iclMedium.Images.SetKeyName(64, "mail_b_24_d.png");
     this.iclMedium.Images.SetKeyName(65, "mail_b_24_h.png");
     this.iclMedium.Images.SetKeyName(66, "move_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(67, "move_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(68, "move_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(69, "new_document_24.png");
     this.iclMedium.Images.SetKeyName(70, "new_document_24_d.png");
     this.iclMedium.Images.SetKeyName(71, "new_document_24_h.png");
     this.iclMedium.Images.SetKeyName(72, "new_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(73, "new_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(74, "new_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(75, "open_document_24.png");
     this.iclMedium.Images.SetKeyName(76, "open_document_24_d.png");
     this.iclMedium.Images.SetKeyName(77, "open_document_24_h.png");
     this.iclMedium.Images.SetKeyName(78, "paste_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(79, "paste_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(80, "paste_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(81, "paste_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(82, "paste_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(83, "paste_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(84, "print_24.png");
     this.iclMedium.Images.SetKeyName(85, "print_24_d.png");
     this.iclMedium.Images.SetKeyName(86, "print_24_h.png");
     this.iclMedium.Images.SetKeyName(87, "print_preview_24.png");
     this.iclMedium.Images.SetKeyName(88, "print_preview_24_d.png");
     this.iclMedium.Images.SetKeyName(89, "print_preview_24_h.png");
     this.iclMedium.Images.SetKeyName(90, "print_preview_lined_24.png");
     this.iclMedium.Images.SetKeyName(91, "print_preview_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(92, "print_preview_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(93, "properties_document_24.png");
     this.iclMedium.Images.SetKeyName(94, "properties_document_24_d.png");
     this.iclMedium.Images.SetKeyName(95, "properties_document_24_h.png");
     this.iclMedium.Images.SetKeyName(96, "properties_document_b_24.png");
     this.iclMedium.Images.SetKeyName(97, "properties_document_b_24_d.png");
     this.iclMedium.Images.SetKeyName(98, "properties_document_b_24_h.png");
     this.iclMedium.Images.SetKeyName(99, "properties_document_b_lined_24.png");
     this.iclMedium.Images.SetKeyName(100, "properties_document_b_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(101, "properties_document_b_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(102, "properties_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(103, "properties_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(104, "properties_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(105, "redo_24.png");
     this.iclMedium.Images.SetKeyName(106, "redo_24_d.png");
     this.iclMedium.Images.SetKeyName(107, "redo_24_h.png");
     this.iclMedium.Images.SetKeyName(108, "redo_square_24.png");
     this.iclMedium.Images.SetKeyName(109, "redo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(110, "redo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(111, "refresh_document_24.png");
     this.iclMedium.Images.SetKeyName(112, "refresh_document_24_d.png");
     this.iclMedium.Images.SetKeyName(113, "refresh_document_24_h.png");
     this.iclMedium.Images.SetKeyName(114, "save_24.png");
     this.iclMedium.Images.SetKeyName(115, "save_24_d.png");
     this.iclMedium.Images.SetKeyName(116, "save_24_h.png");
     this.iclMedium.Images.SetKeyName(117, "search_24.png");
     this.iclMedium.Images.SetKeyName(118, "search_24_d.png");
     this.iclMedium.Images.SetKeyName(119, "search_24_h.png");
     this.iclMedium.Images.SetKeyName(120, "stop_24.png");
     this.iclMedium.Images.SetKeyName(121, "stop_24_d.png");
     this.iclMedium.Images.SetKeyName(122, "stop_24_h.png");
     this.iclMedium.Images.SetKeyName(123, "undo_24.png");
     this.iclMedium.Images.SetKeyName(124, "undo_24_d.png");
     this.iclMedium.Images.SetKeyName(125, "undo_24_h.png");
     this.iclMedium.Images.SetKeyName(126, "undo_square_24.png");
     this.iclMedium.Images.SetKeyName(127, "undo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(128, "undo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(129, "up_folder_24.png");
     this.iclMedium.Images.SetKeyName(130, "up_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(131, "up_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(132, "users_24.png");
     this.iclMedium.Images.SetKeyName(133, "view_24.png");
     this.iclMedium.Images.SetKeyName(134, "view_24_d.png");
     this.iclMedium.Images.SetKeyName(135, "view_24_h.png");
     this.iclMedium.Images.SetKeyName(136, "ok_24.png");
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.ImageIndex = 120;
     this.btnCancel.ImageList = this.iclMedium;
     this.btnCancel.Location = new System.Drawing.Point(674, 431);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(92, 32);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "Annuleren";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.ImageIndex = 114;
     this.btnSave.ImageList = this.iclMedium;
     this.btnSave.Location = new System.Drawing.Point(593, 431);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 32);
     this.btnSave.TabIndex = 6;
     this.btnSave.Text = "Opslaan";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // gdcoMemoDate
     //
     this.gdcoMemoDate.Caption = "Datum";
     this.gdcoMemoDate.FieldName = "DateTime";
     this.gdcoMemoDate.Name = "gdcoMemoDate";
     this.gdcoMemoDate.OptionsColumn.AllowEdit = false;
     this.gdcoMemoDate.Visible = true;
     this.gdcoMemoDate.VisibleIndex = 0;
     this.gdcoMemoDate.Width = 450;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Memo";
     this.gridColumn2.FieldName = "Memo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 150;
     //
     // layoutViewField_gdcoMileage
     //
     this.layoutViewField_gdcoMileage.EditorPreferredWidth = 0;
     this.layoutViewField_gdcoMileage.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_gdcoMileage.Name = "layoutViewField_gdcoMileage";
     this.layoutViewField_gdcoMileage.Size = new System.Drawing.Size(0, 0);
     this.layoutViewField_gdcoMileage.TextSize = new System.Drawing.Size(50, 20);
     this.layoutViewField_gdcoMileage.TextToControlDistance = 5;
     //
     // Material
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(778, 475);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabctrlMain);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.LookAndFeel.SkinName = "Office 2010 Blue";
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.MaximizeBox = false;
     this.Name = "Material";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Materiaal";
     ((System.ComponentModel.ISupportInitialize)(this.iclSmall)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlMain)).EndInit();
     this.tabctrlMain.ResumeLayout(false);
     this.tabpageMaterial.ResumeLayout(false);
     this.tabpageMaterial.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBroken.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louResponsable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCreator.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louSubType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louVehicle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louSupplier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInternalNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSerieNumber.Properties)).EndInit();
     this.tabpageHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdcMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit)).EndInit();
     this.tabpageMaintenance.ResumeLayout(false);
     this.tabpageMaintenance.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaintenanceFrequency.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMaintenance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMaintenance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEditRemark)).EndInit();
     this.tabpageFinancial.ResumeLayout(false);
     this.tabpageFinancial.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_gdcoMileage)).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.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageProfile = new DevExpress.XtraTab.XtraTabPage();
     this.label4 = new System.Windows.Forms.Label();
     this.mmeAddress = new DevExpress.XtraEditors.MemoEdit();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.txtTaxCode = new DevExpress.XtraEditors.TextEdit();
     this.txtBankName = new DevExpress.XtraEditors.TextEdit();
     this.lblTaxCode = new System.Windows.Forms.Label();
     this.txtRepresentative = new DevExpress.XtraEditors.TextEdit();
     this.txtAccountNo = new DevExpress.XtraEditors.TextEdit();
     this.lblBankName = new System.Windows.Forms.Label();
     this.lblRepresentative = new System.Windows.Forms.Label();
     this.txtWebsite = new DevExpress.XtraEditors.TextEdit();
     this.lblAccountNo = new System.Windows.Forms.Label();
     this.txtEmail = new DevExpress.XtraEditors.TextEdit();
     this.lblWebsite = new System.Windows.Forms.Label();
     this.txtFax = new DevExpress.XtraEditors.TextEdit();
     this.lblEmail = new System.Windows.Forms.Label();
     this.txtPhone = new DevExpress.XtraEditors.TextEdit();
     this.lblFax = new System.Windows.Forms.Label();
     this.lblPhone = new System.Windows.Forms.Label();
     this.txtTradeName = new DevExpress.XtraEditors.TextEdit();
     this.lblAddress = new System.Windows.Forms.Label();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.lblTradeName = new System.Windows.Forms.Label();
     this.lblCompanyName = new System.Windows.Forms.Label();
     this.xtraTabPageOption = new DevExpress.XtraTab.XtraTabPage();
     this.CauHinhFTP = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.cbInstalledPrinters = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.cbSkin = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.rgSperactorDec = new DevExpress.XtraEditors.RadioGroup();
     this.rgSperactorThousand = new DevExpress.XtraEditors.RadioGroup();
     this.cbFormatHour = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cbFormatDay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.seRound = new DevExpress.XtraEditors.SpinEdit();
     this.lblDecSeparator = new System.Windows.Forms.Label();
     this.lblThousandSeparator = new System.Windows.Forms.Label();
     this.lblRound = new System.Windows.Forms.Label();
     this.lblTimeFormat = new System.Windows.Forms.Label();
     this.lblDateFormat = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPageProfile.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mmeAddress.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBankName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRepresentative.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtWebsite.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradeName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     this.xtraTabPageOption.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbInstalledPrinters.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSkin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgSperactorDec.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgSperactorThousand.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbFormatHour.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbFormatDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.seRound.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl1.Appearance.Options.UseBackColor = true;
     this.xtraTabControl1.Location = new System.Drawing.Point(1, 2);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPageProfile;
     this.xtraTabControl1.Size = new System.Drawing.Size(622, 339);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageProfile,
     this.xtraTabPageOption});
     //
     // xtraTabPageProfile
     //
     this.xtraTabPageProfile.Appearance.PageClient.BackColor = System.Drawing.Color.White;
     this.xtraTabPageProfile.Appearance.PageClient.Options.UseBackColor = true;
     this.xtraTabPageProfile.Controls.Add(this.label4);
     this.xtraTabPageProfile.Controls.Add(this.mmeAddress);
     this.xtraTabPageProfile.Controls.Add(this.pictureEdit1);
     this.xtraTabPageProfile.Controls.Add(this.txtTaxCode);
     this.xtraTabPageProfile.Controls.Add(this.txtBankName);
     this.xtraTabPageProfile.Controls.Add(this.lblTaxCode);
     this.xtraTabPageProfile.Controls.Add(this.txtRepresentative);
     this.xtraTabPageProfile.Controls.Add(this.txtAccountNo);
     this.xtraTabPageProfile.Controls.Add(this.lblBankName);
     this.xtraTabPageProfile.Controls.Add(this.lblRepresentative);
     this.xtraTabPageProfile.Controls.Add(this.txtWebsite);
     this.xtraTabPageProfile.Controls.Add(this.lblAccountNo);
     this.xtraTabPageProfile.Controls.Add(this.txtEmail);
     this.xtraTabPageProfile.Controls.Add(this.lblWebsite);
     this.xtraTabPageProfile.Controls.Add(this.txtFax);
     this.xtraTabPageProfile.Controls.Add(this.lblEmail);
     this.xtraTabPageProfile.Controls.Add(this.txtPhone);
     this.xtraTabPageProfile.Controls.Add(this.lblFax);
     this.xtraTabPageProfile.Controls.Add(this.lblPhone);
     this.xtraTabPageProfile.Controls.Add(this.txtTradeName);
     this.xtraTabPageProfile.Controls.Add(this.lblAddress);
     this.xtraTabPageProfile.Controls.Add(this.txtCompanyName);
     this.xtraTabPageProfile.Controls.Add(this.lblTradeName);
     this.xtraTabPageProfile.Controls.Add(this.lblCompanyName);
     this.xtraTabPageProfile.Name = "xtraTabPageProfile";
     this.xtraTabPageProfile.Size = new System.Drawing.Size(613, 308);
     this.xtraTabPageProfile.Text = "Hồ sơ công ty";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(252, 13);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(30, 13);
     this.label4.TabIndex = 12;
     this.label4.Text = "Logo";
     //
     // mmeAddress
     //
     this.mmeAddress.Location = new System.Drawing.Point(87, 98);
     this.mmeAddress.Name = "mmeAddress";
     this.mmeAddress.Properties.MaxLength = 127;
     this.mmeAddress.Properties.ReadOnly = true;
     this.mmeAddress.Size = new System.Drawing.Size(142, 53);
     this.mmeAddress.TabIndex = 4;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Location = new System.Drawing.Point(253, 32);
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.ReadOnly = true;
     this.pictureEdit1.Size = new System.Drawing.Size(206, 147);
     this.pictureEdit1.TabIndex = 0;
     this.pictureEdit1.DoubleClick += new System.EventHandler(this.pictureEdit1_DoubleClick);
     //
     // txtTaxCode
     //
     this.txtTaxCode.Location = new System.Drawing.Point(317, 241);
     this.txtTaxCode.Name = "txtTaxCode";
     this.txtTaxCode.Properties.MaxLength = 31;
     this.txtTaxCode.Properties.ReadOnly = true;
     this.txtTaxCode.Size = new System.Drawing.Size(142, 20);
     this.txtTaxCode.TabIndex = 11;
     //
     // txtBankName
     //
     this.txtBankName.Location = new System.Drawing.Point(317, 213);
     this.txtBankName.Name = "txtBankName";
     this.txtBankName.Properties.MaxLength = 63;
     this.txtBankName.Properties.ReadOnly = true;
     this.txtBankName.Size = new System.Drawing.Size(142, 20);
     this.txtBankName.TabIndex = 10;
     //
     // lblTaxCode
     //
     this.lblTaxCode.AutoSize = true;
     this.lblTaxCode.Location = new System.Drawing.Point(250, 245);
     this.lblTaxCode.Name = "lblTaxCode";
     this.lblTaxCode.Size = new System.Drawing.Size(60, 13);
     this.lblTaxCode.TabIndex = 0;
     this.lblTaxCode.Text = "Mã số thuế";
     //
     // txtRepresentative
     //
     this.txtRepresentative.Location = new System.Drawing.Point(87, 69);
     this.txtRepresentative.Name = "txtRepresentative";
     this.txtRepresentative.Properties.MaxLength = 63;
     this.txtRepresentative.Properties.ReadOnly = true;
     this.txtRepresentative.Size = new System.Drawing.Size(142, 20);
     this.txtRepresentative.TabIndex = 3;
     //
     // txtAccountNo
     //
     this.txtAccountNo.Location = new System.Drawing.Point(317, 185);
     this.txtAccountNo.Name = "txtAccountNo";
     this.txtAccountNo.Properties.MaxLength = 31;
     this.txtAccountNo.Properties.ReadOnly = true;
     this.txtAccountNo.Size = new System.Drawing.Size(142, 20);
     this.txtAccountNo.TabIndex = 9;
     //
     // lblBankName
     //
     this.lblBankName.AutoSize = true;
     this.lblBankName.Location = new System.Drawing.Point(250, 217);
     this.lblBankName.Name = "lblBankName";
     this.lblBankName.Size = new System.Drawing.Size(59, 13);
     this.lblBankName.TabIndex = 0;
     this.lblBankName.Text = "Ngân hàng";
     //
     // lblRepresentative
     //
     this.lblRepresentative.AutoSize = true;
     this.lblRepresentative.Location = new System.Drawing.Point(10, 73);
     this.lblRepresentative.Name = "lblRepresentative";
     this.lblRepresentative.Size = new System.Drawing.Size(75, 13);
     this.lblRepresentative.TabIndex = 0;
     this.lblRepresentative.Text = "Người đại diện";
     //
     // txtWebsite
     //
     this.txtWebsite.Location = new System.Drawing.Point(87, 241);
     this.txtWebsite.Name = "txtWebsite";
     this.txtWebsite.Properties.MaxLength = 31;
     this.txtWebsite.Properties.ReadOnly = true;
     this.txtWebsite.Size = new System.Drawing.Size(142, 20);
     this.txtWebsite.TabIndex = 8;
     //
     // lblAccountNo
     //
     this.lblAccountNo.AutoSize = true;
     this.lblAccountNo.Location = new System.Drawing.Point(250, 189);
     this.lblAccountNo.Name = "lblAccountNo";
     this.lblAccountNo.Size = new System.Drawing.Size(66, 13);
     this.lblAccountNo.TabIndex = 0;
     this.lblAccountNo.Text = "Số tài khoản";
     //
     // txtEmail
     //
     this.txtEmail.Location = new System.Drawing.Point(87, 213);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Properties.MaxLength = 63;
     this.txtEmail.Properties.ReadOnly = true;
     this.txtEmail.Size = new System.Drawing.Size(142, 20);
     this.txtEmail.TabIndex = 7;
     //
     // lblWebsite
     //
     this.lblWebsite.AutoSize = true;
     this.lblWebsite.Location = new System.Drawing.Point(10, 245);
     this.lblWebsite.Name = "lblWebsite";
     this.lblWebsite.Size = new System.Drawing.Size(46, 13);
     this.lblWebsite.TabIndex = 0;
     this.lblWebsite.Text = "Website";
     //
     // txtFax
     //
     this.txtFax.Location = new System.Drawing.Point(87, 185);
     this.txtFax.Name = "txtFax";
     this.txtFax.Properties.MaxLength = 15;
     this.txtFax.Properties.ReadOnly = true;
     this.txtFax.Size = new System.Drawing.Size(142, 20);
     this.txtFax.TabIndex = 6;
     //
     // lblEmail
     //
     this.lblEmail.AutoSize = true;
     this.lblEmail.Location = new System.Drawing.Point(10, 217);
     this.lblEmail.Name = "lblEmail";
     this.lblEmail.Size = new System.Drawing.Size(31, 13);
     this.lblEmail.TabIndex = 0;
     this.lblEmail.Text = "Email";
     //
     // txtPhone
     //
     this.txtPhone.Location = new System.Drawing.Point(87, 157);
     this.txtPhone.Name = "txtPhone";
     this.txtPhone.Properties.MaxLength = 15;
     this.txtPhone.Properties.ReadOnly = true;
     this.txtPhone.Size = new System.Drawing.Size(142, 20);
     this.txtPhone.TabIndex = 5;
     //
     // lblFax
     //
     this.lblFax.AutoSize = true;
     this.lblFax.Location = new System.Drawing.Point(10, 189);
     this.lblFax.Name = "lblFax";
     this.lblFax.Size = new System.Drawing.Size(25, 13);
     this.lblFax.TabIndex = 0;
     this.lblFax.Text = "Fax";
     //
     // lblPhone
     //
     this.lblPhone.AutoSize = true;
     this.lblPhone.Location = new System.Drawing.Point(10, 161);
     this.lblPhone.Name = "lblPhone";
     this.lblPhone.Size = new System.Drawing.Size(56, 13);
     this.lblPhone.TabIndex = 0;
     this.lblPhone.Text = "Điện thoại";
     //
     // txtTradeName
     //
     this.txtTradeName.Location = new System.Drawing.Point(87, 41);
     this.txtTradeName.Name = "txtTradeName";
     this.txtTradeName.Properties.MaxLength = 63;
     this.txtTradeName.Properties.ReadOnly = true;
     this.txtTradeName.Size = new System.Drawing.Size(142, 20);
     this.txtTradeName.TabIndex = 2;
     //
     // lblAddress
     //
     this.lblAddress.AutoSize = true;
     this.lblAddress.Location = new System.Drawing.Point(10, 101);
     this.lblAddress.Name = "lblAddress";
     this.lblAddress.Size = new System.Drawing.Size(39, 13);
     this.lblAddress.TabIndex = 0;
     this.lblAddress.Text = "Địa chỉ";
     //
     // txtCompanyName
     //
     this.txtCompanyName.Location = new System.Drawing.Point(87, 12);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Properties.MaxLength = 63;
     this.txtCompanyName.Properties.ReadOnly = true;
     this.txtCompanyName.Size = new System.Drawing.Size(142, 20);
     this.txtCompanyName.TabIndex = 1;
     //
     // lblTradeName
     //
     this.lblTradeName.AutoSize = true;
     this.lblTradeName.Location = new System.Drawing.Point(10, 45);
     this.lblTradeName.Name = "lblTradeName";
     this.lblTradeName.Size = new System.Drawing.Size(70, 13);
     this.lblTradeName.TabIndex = 0;
     this.lblTradeName.Text = "Tên giao dịch";
     //
     // lblCompanyName
     //
     this.lblCompanyName.AutoSize = true;
     this.lblCompanyName.Location = new System.Drawing.Point(10, 16);
     this.lblCompanyName.Name = "lblCompanyName";
     this.lblCompanyName.Size = new System.Drawing.Size(64, 13);
     this.lblCompanyName.TabIndex = 0;
     this.lblCompanyName.Text = "Tên công ty";
     //
     // xtraTabPageOption
     //
     this.xtraTabPageOption.Appearance.PageClient.BackColor = System.Drawing.Color.White;
     this.xtraTabPageOption.Appearance.PageClient.Options.UseBackColor = true;
     this.xtraTabPageOption.Controls.Add(this.CauHinhFTP);
     this.xtraTabPageOption.Controls.Add(this.simpleButton1);
     this.xtraTabPageOption.Controls.Add(this.cbInstalledPrinters);
     this.xtraTabPageOption.Controls.Add(this.label5);
     this.xtraTabPageOption.Controls.Add(this.cbSkin);
     this.xtraTabPageOption.Controls.Add(this.label2);
     this.xtraTabPageOption.Controls.Add(this.label1);
     this.xtraTabPageOption.Controls.Add(this.rgSperactorDec);
     this.xtraTabPageOption.Controls.Add(this.rgSperactorThousand);
     this.xtraTabPageOption.Controls.Add(this.cbFormatHour);
     this.xtraTabPageOption.Controls.Add(this.cbFormatDay);
     this.xtraTabPageOption.Controls.Add(this.seRound);
     this.xtraTabPageOption.Controls.Add(this.lblDecSeparator);
     this.xtraTabPageOption.Controls.Add(this.lblThousandSeparator);
     this.xtraTabPageOption.Controls.Add(this.lblRound);
     this.xtraTabPageOption.Controls.Add(this.lblTimeFormat);
     this.xtraTabPageOption.Controls.Add(this.lblDateFormat);
     this.xtraTabPageOption.Controls.Add(this.label20);
     this.xtraTabPageOption.Controls.Add(this.label12);
     this.xtraTabPageOption.Controls.Add(this.groupBox4);
     this.xtraTabPageOption.Controls.Add(this.groupBox3);
     this.xtraTabPageOption.Controls.Add(this.groupBox1);
     this.xtraTabPageOption.Controls.Add(this.groupBox2);
     this.xtraTabPageOption.Name = "xtraTabPageOption";
     this.xtraTabPageOption.Size = new System.Drawing.Size(613, 308);
     this.xtraTabPageOption.Text = "Tuỳ chọn";
     //
     // CauHinhFTP
     //
     this.CauHinhFTP.Location = new System.Drawing.Point(12, 224);
     this.CauHinhFTP.Name = "CauHinhFTP";
     this.CauHinhFTP.Size = new System.Drawing.Size(138, 23);
     this.CauHinhFTP.TabIndex = 15;
     this.CauHinhFTP.Text = "Cấu hình FTP Server";
     this.CauHinhFTP.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(12, 195);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(138, 23);
     this.simpleButton1.TabIndex = 15;
     this.simpleButton1.Text = "Xóa dữ liệu rác";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // cbInstalledPrinters
     //
     this.cbInstalledPrinters.Location = new System.Drawing.Point(262, 159);
     this.cbInstalledPrinters.Name = "cbInstalledPrinters";
     this.cbInstalledPrinters.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbInstalledPrinters.Size = new System.Drawing.Size(212, 20);
     this.cbInstalledPrinters.TabIndex = 14;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Location = new System.Drawing.Point(259, 132);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 13);
     this.label5.TabIndex = 13;
     this.label5.Text = "Chọn máy in";
     //
     // cbSkin
     //
     this.cbSkin.Location = new System.Drawing.Point(120, 159);
     this.cbSkin.Name = "cbSkin";
     this.cbSkin.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbSkin.Properties.Items.AddRange(new object[] {
     "Normal",
     "Flat",
     "Ultra Flat",
     "Style3D",
     "Office2003",
     "Caramel",
     "Money Twins",
     "Lilian",
     "The Asphalt World",
     "iMaginary",
     "Black",
     "Blue",
     "Office 2007 Blue",
     "Office 2007 Black",
     "Office 2007 Silver",
     "Office 2007 Green",
     "Office 2007 Pink",
     "Coffee",
     "Liquid Sky",
     "Lodon Liquid Sky",
     "Glass Oceans",
     "Stardust",
     "Valentine",
     "Xmas 2008 Blue",
     "McSkin"});
     this.cbSkin.Size = new System.Drawing.Size(113, 20);
     this.cbSkin.TabIndex = 9;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(9, 162);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 13);
     this.label2.TabIndex = 8;
     this.label2.Text = "Loại giao diện";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(9, 132);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(51, 13);
     this.label1.TabIndex = 6;
     this.label1.Text = "Giao diện";
     //
     // rgSperactorDec
     //
     this.rgSperactorDec.EditValue = false;
     this.rgSperactorDec.Location = new System.Drawing.Point(120, 100);
     this.rgSperactorDec.Name = "rgSperactorDec";
     this.rgSperactorDec.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rgSperactorDec.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rgSperactorDec.Properties.Appearance.Options.UseBackColor = true;
     this.rgSperactorDec.Properties.Appearance.Options.UseFont = true;
     this.rgSperactorDec.Properties.Appearance.Options.UseTextOptions = true;
     this.rgSperactorDec.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.rgSperactorDec.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rgSperactorDec.Properties.Columns = 2;
     this.rgSperactorDec.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.rgSperactorDec.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(false, ","),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, ".")});
     this.rgSperactorDec.Size = new System.Drawing.Size(67, 23);
     this.rgSperactorDec.TabIndex = 2;
     this.rgSperactorDec.SelectedIndexChanged += new System.EventHandler(this.rgSperactorDec_SelectedIndexChanged);
     //
     // rgSperactorThousand
     //
     this.rgSperactorThousand.EditValue = true;
     this.rgSperactorThousand.Location = new System.Drawing.Point(120, 70);
     this.rgSperactorThousand.Name = "rgSperactorThousand";
     this.rgSperactorThousand.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rgSperactorThousand.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rgSperactorThousand.Properties.Appearance.Options.UseBackColor = true;
     this.rgSperactorThousand.Properties.Appearance.Options.UseFont = true;
     this.rgSperactorThousand.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rgSperactorThousand.Properties.Columns = 2;
     this.rgSperactorThousand.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.rgSperactorThousand.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "."),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(false, ",")});
     this.rgSperactorThousand.Size = new System.Drawing.Size(67, 24);
     this.rgSperactorThousand.TabIndex = 1;
     this.rgSperactorThousand.SelectedIndexChanged += new System.EventHandler(this.rgSperactorThousand_SelectedIndexChanged);
     //
     // cbFormatHour
     //
     this.cbFormatHour.EditValue = "h:mm:ss ";
     this.cbFormatHour.Location = new System.Drawing.Point(348, 75);
     this.cbFormatHour.Name = "cbFormatHour";
     this.cbFormatHour.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbFormatHour.Properties.Items.AddRange(new object[] {
     "H:m:s",
     "HH:mm:ss",
     "H:m",
     "HH:mm",
     "h:m:s t",
     "hh:mm:ss t",
     "h:m t",
     "hh:mm t"});
     this.cbFormatHour.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbFormatHour.Size = new System.Drawing.Size(125, 20);
     this.cbFormatHour.TabIndex = 4;
     //
     // cbFormatDay
     //
     this.cbFormatDay.EditValue = "M/d/yyyy";
     this.cbFormatDay.Location = new System.Drawing.Point(349, 44);
     this.cbFormatDay.Name = "cbFormatDay";
     this.cbFormatDay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbFormatDay.Properties.Items.AddRange(new object[] {
     "dd/MM/yyyy",
     "MM/dd/yyyy",
     "yyyy/MM/dd"});
     this.cbFormatDay.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbFormatDay.Size = new System.Drawing.Size(125, 20);
     this.cbFormatDay.TabIndex = 3;
     //
     // seRound
     //
     this.seRound.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.seRound.Location = new System.Drawing.Point(120, 44);
     this.seRound.Name = "seRound";
     this.seRound.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.seRound.Properties.Mask.BeepOnError = true;
     this.seRound.Size = new System.Drawing.Size(67, 20);
     this.seRound.TabIndex = 0;
     //
     // lblDecSeparator
     //
     this.lblDecSeparator.AutoSize = true;
     this.lblDecSeparator.Location = new System.Drawing.Point(9, 104);
     this.lblDecSeparator.Name = "lblDecSeparator";
     this.lblDecSeparator.Size = new System.Drawing.Size(108, 13);
     this.lblDecSeparator.TabIndex = 2;
     this.lblDecSeparator.Text = "Phân cách thập phân";
     //
     // lblThousandSeparator
     //
     this.lblThousandSeparator.AutoSize = true;
     this.lblThousandSeparator.Location = new System.Drawing.Point(9, 74);
     this.lblThousandSeparator.Name = "lblThousandSeparator";
     this.lblThousandSeparator.Size = new System.Drawing.Size(110, 13);
     this.lblThousandSeparator.TabIndex = 2;
     this.lblThousandSeparator.Text = "Phân cách hàng ngàn";
     //
     // lblRound
     //
     this.lblRound.AutoSize = true;
     this.lblRound.Location = new System.Drawing.Point(9, 46);
     this.lblRound.Name = "lblRound";
     this.lblRound.Size = new System.Drawing.Size(106, 13);
     this.lblRound.TabIndex = 2;
     this.lblRound.Text = "Số chữ số thập phân";
     //
     // lblTimeFormat
     //
     this.lblTimeFormat.AutoSize = true;
     this.lblTimeFormat.Location = new System.Drawing.Point(259, 77);
     this.lblTimeFormat.Name = "lblTimeFormat";
     this.lblTimeFormat.Size = new System.Drawing.Size(73, 13);
     this.lblTimeFormat.TabIndex = 2;
     this.lblTimeFormat.Text = "Định dạng giờ";
     //
     // lblDateFormat
     //
     this.lblDateFormat.AutoSize = true;
     this.lblDateFormat.Location = new System.Drawing.Point(259, 47);
     this.lblDateFormat.Name = "lblDateFormat";
     this.lblDateFormat.Size = new System.Drawing.Size(83, 13);
     this.lblDateFormat.TabIndex = 2;
     this.lblDateFormat.Text = "Định dạng ngày";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Location = new System.Drawing.Point(259, 8);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(87, 13);
     this.label20.TabIndex = 2;
     this.label20.Text = "Hiển thị ngày giờ";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Location = new System.Drawing.Point(9, 8);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(57, 13);
     this.label12.TabIndex = 2;
     this.label12.Text = "Hiển thị số";
     //
     // groupBox4
     //
     this.groupBox4.Location = new System.Drawing.Point(262, 150);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(209, 3);
     this.groupBox4.TabIndex = 12;
     this.groupBox4.TabStop = false;
     //
     // groupBox3
     //
     this.groupBox3.Location = new System.Drawing.Point(12, 150);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(221, 3);
     this.groupBox3.TabIndex = 7;
     this.groupBox3.TabStop = false;
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(262, 27);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(211, 3);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop = false;
     //
     // groupBox2
     //
     this.groupBox2.Location = new System.Drawing.Point(12, 27);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(221, 3);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(540, 347);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 1;
     this.btnClose.Text = "Đón&g";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(444, 347);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(90, 23);
     this.btnSave.TabIndex = 1;
     this.btnSave.Text = "&Lưu tất cả";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.Filter = "GIF|*.gif|BMP|*.bmp|JPEG|*.jpg;*.jpeg|All Files|*.*";
     this.openFileDialog1.Title = "Select a photo to update logo";
     //
     // frmOption
     //
     this.AcceptButton = this.btnClose;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(622, 376);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.xtraTabControl1);
     this.Name = "frmOption";
     this.Text = "Tùy chọn hệ thống";
     this.Load += new System.EventHandler(this.frmOption_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPageProfile.ResumeLayout(false);
     this.xtraTabPageProfile.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mmeAddress.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBankName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRepresentative.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtWebsite.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradeName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).EndInit();
     this.xtraTabPageOption.ResumeLayout(false);
     this.xtraTabPageOption.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbInstalledPrinters.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSkin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgSperactorDec.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgSperactorThousand.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbFormatHour.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbFormatDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.seRound.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormNewQaQc));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition();
     this.bgvBatchCalc1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcBachCalc = new DevExpress.XtraGrid.GridControl();
     this.bgvBatchCalc3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bgvBatchCalc4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.bgvBatchCalc2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand13 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_par_prev_batch = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_Previous_par = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.imageStatus = new System.Windows.Forms.ImageList(this.components);
     this.gbSample = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Cod_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Cod_des_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repDes_Sample = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gv2col_Fum = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idunit_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idtemplate_method = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_mri = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail_elem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Weight1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Weight2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand10 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Volumen1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Volumen2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Reading1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Reading2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gbDilution = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Flag_dila1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repCheckDilution = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Dilua1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_dilb1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Dilub1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Rank1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Rank2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Factor1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Factor2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Law1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Law2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand12 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Str_result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand9 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_text_obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_observation = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowPopup = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gv2col_Qaqc_mr = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_blk = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_par = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_parity = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_approve = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_approve = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_review = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_review = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_status_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_StatusResult = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_error = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowObs = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridBand14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_has_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_HasRetest = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_tmp_retest_idmethod = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_tmp_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idretest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_approve_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_review_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.imgChecks = new System.Windows.Forms.ImageList(this.components);
     this.repProcedence2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.treeCol_Urgent_sample = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeTrayWaiting = new DevExpress.XtraTreeList.TreeList();
     this.treeCol_Idtemplate_method = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Idrecep_sample_detail_elem = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Abbreviation = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Cod_repetition = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repRepetition = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeCol_Id = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Parentid = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Num_tray = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Date_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.treeCol_Hour_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repHour = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.imgPriority = new System.Windows.Forms.ImageList(this.components);
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabTreeQaqc = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationWait = new DevExpress.XtraEditors.LookUpEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.treeTrayFinished = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn8 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn9 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.paListAuthorization = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationApproved = new DevExpress.XtraEditors.LookUpEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.paHistoryFilter = new DevExpress.XtraEditors.GroupControl();
     this.txYear = new DevExpress.XtraEditors.TextEdit();
     this.txSample = new DevExpress.XtraEditors.SpinEdit();
     this.cbTypeSample = new DevExpress.XtraEditors.LookUpEdit();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.btSearchTray = new DevExpress.XtraEditors.SimpleButton();
     this.label22 = new System.Windows.Forms.Label();
     this.ckSample = new DevExpress.XtraEditors.CheckEdit();
     this.ckCompany = new DevExpress.XtraEditors.CheckEdit();
     this.panel9 = new System.Windows.Forms.Panel();
     this.deFrom = new DevExpress.XtraEditors.DateEdit();
     this.deUntil = new DevExpress.XtraEditors.DateEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.paButtons = new DevExpress.XtraEditors.PanelControl();
     this.paNewTray = new System.Windows.Forms.Panel();
     this.btRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel5 = new System.Windows.Forms.Panel();
     this.gbApprove = new System.Windows.Forms.GroupBox();
     this.laDate_approved = new System.Windows.Forms.Label();
     this.laUser_approved = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.paAuthorization = new System.Windows.Forms.Panel();
     this.ucSign1 = new LimsProject.UcSign();
     this.gbReview = new System.Windows.Forms.GroupBox();
     this.laDate_revised = new System.Windows.Forms.Label();
     this.laUser_revised = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.tbStd = new DevExpress.XtraEditors.SpinEdit();
     this.tbAbs = new DevExpress.XtraEditors.SpinEdit();
     this.btRegAbsStd = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.tbTitle = new DevExpress.XtraEditors.MemoEdit();
     this.label16 = new System.Windows.Forms.Label();
     this.tbCodMethod = new DevExpress.XtraEditors.ButtonEdit();
     this.tbAbbreviation = new DevExpress.XtraEditors.TextEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.ucSignCloseTray = new LimsProject.UcSign();
     this.laTitleModule = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbUnitMeasure = new DevExpress.XtraEditors.TextEdit();
     this.tbLawMri = new DevExpress.XtraEditors.TextEdit();
     this.tbSdMr = new DevExpress.XtraEditors.TextEdit();
     this.tbSdBlk = new DevExpress.XtraEditors.TextEdit();
     this.tbMri = new DevExpress.XtraEditors.TextEdit();
     this.label18 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.tbErrorAllowed = new DevExpress.XtraEditors.TextEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.deDate_allowed_error = new DevExpress.XtraEditors.DateEdit();
     this.label14 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc2 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc1 = new DevExpress.XtraEditors.PanelControl();
     this.panel7 = new System.Windows.Forms.Panel();
     this.img32x32 = new System.Windows.Forms.ImageList(this.components);
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).BeginInit();
     this.tabTreeQaqc.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).BeginInit();
     this.xtraTabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).BeginInit();
     this.paListAuthorization.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).BeginInit();
     this.paHistoryFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).BeginInit();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).BeginInit();
     this.paButtons.SuspendLayout();
     this.panel5.SuspendLayout();
     this.gbApprove.SuspendLayout();
     this.paAuthorization.SuspendLayout();
     this.gbReview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).BeginInit();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).BeginInit();
     this.paQaqc2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).BeginInit();
     this.paQaqc1.SuspendLayout();
     this.panel7.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Módulo de QaQc - Búsqueda";
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Size = new System.Drawing.Size(282, 35);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     //
     // btGuardar
     //
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(5, 5);
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(84, 5);
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(163, 5);
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 57);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 194);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(1144, 0);
     this.panel1.Size = new System.Drawing.Size(72, 35);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Size = new System.Drawing.Size(526, 97);
     //
     // panel2
     //
     this.panel2.Location = new System.Drawing.Point(1132, 0);
     //
     // paInferior
     //
     this.paInferior.Location = new System.Drawing.Point(3, 544);
     this.paInferior.Size = new System.Drawing.Size(1216, 35);
     this.paInferior.Visible = false;
     //
     // paTitulo
     //
     this.paTitulo.Size = new System.Drawing.Size(1216, 36);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.gcBachCalc);
     this.paCentral.Controls.Add(this.panelControl1);
     this.paCentral.Controls.Add(this.panel5);
     this.paCentral.Controls.Add(this.splitter1);
     this.paCentral.Controls.Add(this.expandablePanel1);
     this.paCentral.Location = new System.Drawing.Point(3, 51);
     this.paCentral.Size = new System.Drawing.Size(1216, 493);
     //
     // paSuperior
     //
     this.paSuperior.Size = new System.Drawing.Size(1216, 12);
     this.paSuperior.Visible = false;
     //
     // laTitulo
     //
     this.laTitulo.Size = new System.Drawing.Size(1132, 36);
     this.laTitulo.Text = "QaQc";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Size = new System.Drawing.Size(1230, 611);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1222, 582);
     //
     // paSupBotones
     //
     this.paSupBotones.Size = new System.Drawing.Size(1230, 32);
     //
     // bgvBatchCalc1
     //
     this.bgvBatchCalc1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.bgvBatchCalc1.GridControl = this.gcBachCalc;
     this.bgvBatchCalc1.Name = "bgvBatchCalc1";
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // gcBachCalc
     //
     this.gcBachCalc.AllowDrop = true;
     this.gcBachCalc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcBachCalc.EmbeddedNavigator.Name = "";
     gridLevelNode1.LevelTemplate = this.bgvBatchCalc1;
     gridLevelNode1.RelationName = "Level1";
     gridLevelNode2.LevelTemplate = this.bgvBatchCalc3;
     gridLevelNode2.RelationName = "Level2";
     gridLevelNode3.LevelTemplate = this.bgvBatchCalc4;
     gridLevelNode3.RelationName = "Level3";
     this.gcBachCalc.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode2,
     gridLevelNode3});
     this.gcBachCalc.Location = new System.Drawing.Point(231, 103);
     this.gcBachCalc.MainView = this.bgvBatchCalc2;
     this.gcBachCalc.Name = "gcBachCalc";
     this.gcBachCalc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repQaqc_parity,
     this.repQaqc_ShowObs,
     this.repQaqc_review,
     this.repQaqc_StatusResult,
     this.repQaqc_ShowPopup,
     this.repQaqc_Previous_par,
     this.repQaqc_approve,
     this.repQaqc_HasRetest,
     this.repCheckDilution,
     this.repProcedence2,
     this.repDes_Sample});
     this.gcBachCalc.Size = new System.Drawing.Size(985, 341);
     this.gcBachCalc.TabIndex = 7;
     this.gcBachCalc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bgvBatchCalc3,
     this.bgvBatchCalc4,
     this.bgvBatchCalc2,
     this.bgvBatchCalc1});
     this.gcBachCalc.DragDrop += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragDrop);
     this.gcBachCalc.DragOver += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragOver);
     this.gcBachCalc.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseDown);
     this.gcBachCalc.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseMove);
     //
     // bgvBatchCalc3
     //
     this.bgvBatchCalc3.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand2});
     this.bgvBatchCalc3.GridControl = this.gcBachCalc;
     this.bgvBatchCalc3.Name = "bgvBatchCalc3";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // bgvBatchCalc4
     //
     this.bgvBatchCalc4.GridControl = this.gcBachCalc;
     this.bgvBatchCalc4.Name = "bgvBatchCalc4";
     //
     // bgvBatchCalc2
     //
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.BandPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.BandPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Empty.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.bgvBatchCalc2.Appearance.FixedLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FocusedCell.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.HorzLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.Preview.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Preview.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.Row.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Row.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.RowSeparator.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.VertLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand13,
     this.gbSample,
     this.gridBand3,
     this.gridBand10,
     this.gridBand4,
     this.gbDilution,
     this.gridBand6,
     this.gridBand5,
     this.gridBand7,
     this.gridBand12,
     this.gridBand9,
     this.gridBand14});
     this.bgvBatchCalc2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gv2col_Idrecep_sample_detail,
     this.gv2col_Idrecep_sample_detail_elem,
     this.gv2col_Qaqc_par_prev_batch,
     this.gv2col_Cod_sample,
     this.gv2col_Result_analysis,
     this.gv2col_Fum,
     this.gv2col_Idtemplate_method,
     this.gv2col_Flag_mri,
     this.gv2col_Qaqc_blk,
     this.gv2col_Qaqc_par,
     this.gv2col_Qaqc_mr,
     this.gv2col_Qaqc_observation,
     this.gv2col_Qaqc_text_obs,
     this.gv2col_Qaqc_error,
     this.gv2col_Str_result_analysis,
     this.gv2col_Qaqc_approve,
     this.gv2col_Qaqc_review,
     this.gv2col_Qaqc_status_result,
     this.gv2col_Qaqc_has_retest,
     this.gv2col_Qaqc_tmp_retest_idmethod,
     this.gv2col_Qaqc_tmp_retest,
     this.gv2col_Idunit_result,
     this.gv2col_Idretest,
     this.gv2col_Weight1,
     this.gv2col_Weight2,
     this.gv2col_Reading1,
     this.gv2col_Reading2,
     this.gv2col_Factor1,
     this.gv2col_Factor2,
     this.gv2col_Rank1,
     this.gv2col_Rank2,
     this.gv2col_Law1,
     this.gv2col_Law2,
     this.gv2col_Volumen1,
     this.gv2col_Volumen2,
     this.gv2col_Flag_dila1,
     this.gv2col_Dilua1,
     this.gv2col_Flag_dilb1,
     this.gv2col_Dilub1,
     this.gv2col_Qaqc_approve_text,
     this.gv2col_Qaqc_review_text,
     this.gv2col_Cod_des_sample});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Orange;
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.gv2col_Flag_mri;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition1.Value1 = "1";
     this.bgvBatchCalc2.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.bgvBatchCalc2.GridControl = this.gcBachCalc;
     this.bgvBatchCalc2.Images = this.imgChecks;
     this.bgvBatchCalc2.Name = "bgvBatchCalc2";
     this.bgvBatchCalc2.OptionsBehavior.Editable = false;
     this.bgvBatchCalc2.OptionsCustomization.AllowSort = false;
     this.bgvBatchCalc2.OptionsView.ColumnAutoWidth = false;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceEvenRow = true;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceOddRow = true;
     this.bgvBatchCalc2.OptionsView.ShowGroupPanel = false;
     this.bgvBatchCalc2.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.bgvBatchCalc2_RowCellStyle);
     this.bgvBatchCalc2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanged);
     this.bgvBatchCalc2.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanging);
     this.bgvBatchCalc2.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.bgvBatchCalc2_InvalidRowException);
     this.bgvBatchCalc2.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.bgvBatchCalc2_ValidateRow);
     this.bgvBatchCalc2.Click += new System.EventHandler(this.bgvBatchCalc2_Click);
     //
     // gridBand13
     //
     this.gridBand13.Caption = "A. P";
     this.gridBand13.Columns.Add(this.gv2col_Qaqc_par_prev_batch);
     this.gridBand13.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gridBand13.Name = "gridBand13";
     this.gridBand13.Width = 37;
     //
     // gv2col_Qaqc_par_prev_batch
     //
     this.gv2col_Qaqc_par_prev_batch.Caption = "Par";
     this.gv2col_Qaqc_par_prev_batch.ColumnEdit = this.repQaqc_Previous_par;
     this.gv2col_Qaqc_par_prev_batch.FieldName = "Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.Name = "gv2col_Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par_prev_batch.Visible = true;
     this.gv2col_Qaqc_par_prev_batch.Width = 37;
     //
     // repQaqc_Previous_par
     //
     this.repQaqc_Previous_par.AutoHeight = false;
     this.repQaqc_Previous_par.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_Previous_par.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_Previous_par.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_Previous_par.Name = "repQaqc_Previous_par";
     this.repQaqc_Previous_par.SmallImages = this.imageStatus;
     //
     // imageStatus
     //
     this.imageStatus.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageStatus.ImageStream")));
     this.imageStatus.TransparentColor = System.Drawing.Color.Transparent;
     this.imageStatus.Images.SetKeyName(0, "gray.png");
     this.imageStatus.Images.SetKeyName(1, "green.png");
     this.imageStatus.Images.SetKeyName(2, "ambar.png");
     this.imageStatus.Images.SetKeyName(3, "blue.png");
     this.imageStatus.Images.SetKeyName(4, "purple.png");
     this.imageStatus.Images.SetKeyName(5, "red.png");
     this.imageStatus.Images.SetKeyName(6, "yellow.png");
     this.imageStatus.Images.SetKeyName(7, "obs.png");
     this.imageStatus.Images.SetKeyName(8, "exclamation.png");
     this.imageStatus.Images.SetKeyName(9, "tick.png");
     this.imageStatus.Images.SetKeyName(10, "tick_lup.png");
     this.imageStatus.Images.SetKeyName(11, "espera.png");
     this.imageStatus.Images.SetKeyName(12, "incorrecto.png");
     this.imageStatus.Images.SetKeyName(13, "plausible.png");
     this.imageStatus.Images.SetKeyName(14, "aceptado.png");
     this.imageStatus.Images.SetKeyName(15, "reensayo.png");
     //
     // gbSample
     //
     this.gbSample.Caption = "Muestra";
     this.gbSample.Columns.Add(this.gv2col_Cod_sample);
     this.gbSample.Columns.Add(this.gv2col_Cod_des_sample);
     this.gbSample.Columns.Add(this.gv2col_Fum);
     this.gbSample.Columns.Add(this.gv2col_Idunit_result);
     this.gbSample.Columns.Add(this.gv2col_Idtemplate_method);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail);
     this.gbSample.Columns.Add(this.gv2col_Flag_mri);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail_elem);
     this.gbSample.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gbSample.Name = "gbSample";
     this.gbSample.Width = 150;
     //
     // gv2col_Cod_sample
     //
     this.gv2col_Cod_sample.Caption = "Cod.Muestra";
     this.gv2col_Cod_sample.FieldName = "Cod_sample";
     this.gv2col_Cod_sample.MinWidth = 75;
     this.gv2col_Cod_sample.Name = "gv2col_Cod_sample";
     this.gv2col_Cod_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_sample.Visible = true;
     //
     // gv2col_Cod_des_sample
     //
     this.gv2col_Cod_des_sample.Caption = "Descripción";
     this.gv2col_Cod_des_sample.ColumnEdit = this.repDes_Sample;
     this.gv2col_Cod_des_sample.FieldName = "Cod_des_sample";
     this.gv2col_Cod_des_sample.Name = "gv2col_Cod_des_sample";
     this.gv2col_Cod_des_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_des_sample.Visible = true;
     //
     // repDes_Sample
     //
     this.repDes_Sample.AutoHeight = false;
     this.repDes_Sample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDes_Sample.Name = "repDes_Sample";
     this.repDes_Sample.NullText = "";
     //
     // gv2col_Fum
     //
     this.gv2col_Fum.Caption = "Fum";
     this.gv2col_Fum.FieldName = "Fum";
     this.gv2col_Fum.Name = "gv2col_Fum";
     //
     // gv2col_Idunit_result
     //
     this.gv2col_Idunit_result.Caption = "Idunit_result";
     this.gv2col_Idunit_result.FieldName = "Idunit_result";
     this.gv2col_Idunit_result.Name = "gv2col_Idunit_result";
     //
     // gv2col_Idtemplate_method
     //
     this.gv2col_Idtemplate_method.Caption = "Idtemplate_method";
     this.gv2col_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gv2col_Idtemplate_method.Name = "gv2col_Idtemplate_method";
     //
     // gv2col_Idrecep_sample_detail
     //
     this.gv2col_Idrecep_sample_detail.Caption = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.Name = "gv2col_Idrecep_sample_detail";
     //
     // gv2col_Flag_mri
     //
     this.gv2col_Flag_mri.Caption = "Flag_mri";
     this.gv2col_Flag_mri.FieldName = "Flag_mri";
     this.gv2col_Flag_mri.Name = "gv2col_Flag_mri";
     //
     // gv2col_Idrecep_sample_detail_elem
     //
     this.gv2col_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.Name = "gv2col_Idrecep_sample_detail_elem";
     //
     // gridBand3
     //
     this.gridBand3.Caption = "Pesos";
     this.gridBand3.Columns.Add(this.gv2col_Weight1);
     this.gridBand3.Columns.Add(this.gv2col_Weight2);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 112;
     //
     // gv2col_Weight1
     //
     this.gv2col_Weight1.Caption = "Peso-1";
     this.gv2col_Weight1.FieldName = "Weight1";
     this.gv2col_Weight1.Name = "gv2col_Weight1";
     this.gv2col_Weight1.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight1.Visible = true;
     this.gv2col_Weight1.Width = 56;
     //
     // gv2col_Weight2
     //
     this.gv2col_Weight2.Caption = "Peso-2";
     this.gv2col_Weight2.FieldName = "Weight2";
     this.gv2col_Weight2.Name = "gv2col_Weight2";
     this.gv2col_Weight2.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight2.Visible = true;
     this.gv2col_Weight2.Width = 56;
     //
     // gridBand10
     //
     this.gridBand10.Caption = "Volumen";
     this.gridBand10.Columns.Add(this.gv2col_Volumen1);
     this.gridBand10.Columns.Add(this.gv2col_Volumen2);
     this.gridBand10.Name = "gridBand10";
     this.gridBand10.Width = 116;
     //
     // gv2col_Volumen1
     //
     this.gv2col_Volumen1.Caption = "Vol-1";
     this.gv2col_Volumen1.FieldName = "Volumen1";
     this.gv2col_Volumen1.Name = "gv2col_Volumen1";
     this.gv2col_Volumen1.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen1.Visible = true;
     this.gv2col_Volumen1.Width = 58;
     //
     // gv2col_Volumen2
     //
     this.gv2col_Volumen2.Caption = "Vol-2";
     this.gv2col_Volumen2.FieldName = "Volumen2";
     this.gv2col_Volumen2.Name = "gv2col_Volumen2";
     this.gv2col_Volumen2.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen2.Visible = true;
     this.gv2col_Volumen2.Width = 58;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "Lecturas";
     this.gridBand4.Columns.Add(this.gv2col_Reading1);
     this.gridBand4.Columns.Add(this.gv2col_Reading2);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 120;
     //
     // gv2col_Reading1
     //
     this.gv2col_Reading1.Caption = "Lec-1";
     this.gv2col_Reading1.FieldName = "Reading1";
     this.gv2col_Reading1.Name = "gv2col_Reading1";
     this.gv2col_Reading1.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading1.Visible = true;
     this.gv2col_Reading1.Width = 60;
     //
     // gv2col_Reading2
     //
     this.gv2col_Reading2.Caption = "Lec-2";
     this.gv2col_Reading2.FieldName = "Reading2";
     this.gv2col_Reading2.Name = "gv2col_Reading2";
     this.gv2col_Reading2.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading2.Visible = true;
     this.gv2col_Reading2.Width = 60;
     //
     // gbDilution
     //
     this.gbDilution.Caption = "Dilución";
     this.gbDilution.Columns.Add(this.gv2col_Flag_dila1);
     this.gbDilution.Columns.Add(this.gv2col_Dilua1);
     this.gbDilution.Columns.Add(this.gv2col_Flag_dilb1);
     this.gbDilution.Columns.Add(this.gv2col_Dilub1);
     this.gbDilution.Name = "gbDilution";
     this.gbDilution.Width = 212;
     //
     // gv2col_Flag_dila1
     //
     this.gv2col_Flag_dila1.Caption = "# Dil 2";
     this.gv2col_Flag_dila1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dila1.FieldName = "Flag_dilu2";
     this.gv2col_Flag_dila1.Name = "gv2col_Flag_dila1";
     this.gv2col_Flag_dila1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dila1.Visible = true;
     this.gv2col_Flag_dila1.Width = 53;
     //
     // repCheckDilution
     //
     this.repCheckDilution.AutoHeight = false;
     this.repCheckDilution.Name = "repCheckDilution";
     //
     // gv2col_Dilua1
     //
     this.gv2col_Dilua1.Caption = "Dil 2";
     this.gv2col_Dilua1.FieldName = "Dilu2";
     this.gv2col_Dilua1.Name = "gv2col_Dilua1";
     this.gv2col_Dilua1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilua1.Visible = true;
     this.gv2col_Dilua1.Width = 53;
     //
     // gv2col_Flag_dilb1
     //
     this.gv2col_Flag_dilb1.Caption = "# Dil 3";
     this.gv2col_Flag_dilb1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dilb1.FieldName = "Flag_dilu3";
     this.gv2col_Flag_dilb1.Name = "gv2col_Flag_dilb1";
     this.gv2col_Flag_dilb1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dilb1.Visible = true;
     this.gv2col_Flag_dilb1.Width = 53;
     //
     // gv2col_Dilub1
     //
     this.gv2col_Dilub1.Caption = "Dil 3";
     this.gv2col_Dilub1.FieldName = "Dilu3";
     this.gv2col_Dilub1.Name = "gv2col_Dilub1";
     this.gv2col_Dilub1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilub1.Visible = true;
     this.gv2col_Dilub1.Width = 53;
     //
     // gridBand6
     //
     this.gridBand6.Caption = "Rangos";
     this.gridBand6.Columns.Add(this.gv2col_Rank1);
     this.gridBand6.Columns.Add(this.gv2col_Rank2);
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.Visible = false;
     this.gridBand6.Width = 150;
     //
     // gv2col_Rank1
     //
     this.gv2col_Rank1.Caption = "Rango1";
     this.gv2col_Rank1.FieldName = "Rank1";
     this.gv2col_Rank1.Name = "gv2col_Rank1";
     this.gv2col_Rank1.Visible = true;
     //
     // gv2col_Rank2
     //
     this.gv2col_Rank2.Caption = "Rango2";
     this.gv2col_Rank2.FieldName = "Rank2";
     this.gv2col_Rank2.Name = "gv2col_Rank2";
     this.gv2col_Rank2.Visible = true;
     //
     // gridBand5
     //
     this.gridBand5.Caption = "Factores";
     this.gridBand5.Columns.Add(this.gv2col_Factor1);
     this.gridBand5.Columns.Add(this.gv2col_Factor2);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.Width = 114;
     //
     // gv2col_Factor1
     //
     this.gv2col_Factor1.Caption = "Factor1";
     this.gv2col_Factor1.FieldName = "Factor1";
     this.gv2col_Factor1.Name = "gv2col_Factor1";
     this.gv2col_Factor1.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor1.Visible = true;
     this.gv2col_Factor1.Width = 57;
     //
     // gv2col_Factor2
     //
     this.gv2col_Factor2.Caption = "Factor2";
     this.gv2col_Factor2.FieldName = "Factor2";
     this.gv2col_Factor2.Name = "gv2col_Factor2";
     this.gv2col_Factor2.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor2.Visible = true;
     this.gv2col_Factor2.Width = 57;
     //
     // gridBand7
     //
     this.gridBand7.Caption = "Ley Parcial";
     this.gridBand7.Columns.Add(this.gv2col_Law1);
     this.gridBand7.Columns.Add(this.gv2col_Law2);
     this.gridBand7.Name = "gridBand7";
     this.gridBand7.Width = 119;
     //
     // gv2col_Law1
     //
     this.gv2col_Law1.Caption = "Ley-1";
     this.gv2col_Law1.FieldName = "Law1";
     this.gv2col_Law1.Name = "gv2col_Law1";
     this.gv2col_Law1.OptionsColumn.ReadOnly = true;
     this.gv2col_Law1.Visible = true;
     this.gv2col_Law1.Width = 59;
     //
     // gv2col_Law2
     //
     this.gv2col_Law2.Caption = "Ley-2";
     this.gv2col_Law2.FieldName = "Law2";
     this.gv2col_Law2.Name = "gv2col_Law2";
     this.gv2col_Law2.OptionsColumn.ReadOnly = true;
     this.gv2col_Law2.Visible = true;
     this.gv2col_Law2.Width = 60;
     //
     // gridBand12
     //
     this.gridBand12.Caption = "Ley";
     this.gridBand12.Columns.Add(this.gv2col_Str_result_analysis);
     this.gridBand12.Columns.Add(this.gv2col_Result_analysis);
     this.gridBand12.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand12.Name = "gridBand12";
     this.gridBand12.Width = 60;
     //
     // gv2col_Str_result_analysis
     //
     this.gv2col_Str_result_analysis.Caption = "Ley";
     this.gv2col_Str_result_analysis.FieldName = "Str_result_analysis";
     this.gv2col_Str_result_analysis.Name = "gv2col_Str_result_analysis";
     this.gv2col_Str_result_analysis.OptionsColumn.ReadOnly = true;
     this.gv2col_Str_result_analysis.Visible = true;
     this.gv2col_Str_result_analysis.Width = 60;
     //
     // gv2col_Result_analysis
     //
     this.gv2col_Result_analysis.Caption = "Result_analysis";
     this.gv2col_Result_analysis.FieldName = "Result_analysis";
     this.gv2col_Result_analysis.Name = "gv2col_Result_analysis";
     //
     // gridBand9
     //
     this.gridBand9.Caption = "Qaqc";
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_text_obs);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_observation);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_mr);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_blk);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_par);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_approve);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_review);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_status_result);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_error);
     this.gridBand9.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand9.Name = "gridBand9";
     this.gridBand9.Width = 145;
     //
     // gv2col_Qaqc_text_obs
     //
     this.gv2col_Qaqc_text_obs.Caption = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.FieldName = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.Name = "gv2col_Qaqc_text_obs";
     //
     // gv2col_Qaqc_observation
     //
     this.gv2col_Qaqc_observation.Caption = "#";
     this.gv2col_Qaqc_observation.ColumnEdit = this.repQaqc_ShowPopup;
     this.gv2col_Qaqc_observation.FieldName = "Qaqc_observation";
     this.gv2col_Qaqc_observation.MinWidth = 25;
     this.gv2col_Qaqc_observation.Name = "gv2col_Qaqc_observation";
     this.gv2col_Qaqc_observation.Visible = true;
     this.gv2col_Qaqc_observation.Width = 25;
     //
     // repQaqc_ShowPopup
     //
     this.repQaqc_ShowPopup.AutoHeight = false;
     this.repQaqc_ShowPopup.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repQaqc_ShowPopup.Name = "repQaqc_ShowPopup";
     this.repQaqc_ShowPopup.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repQaqc_ShowPopup.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repQaqc_ShowPopup_ButtonClick);
     //
     // gv2col_Qaqc_mr
     //
     this.gv2col_Qaqc_mr.Caption = "Mr";
     this.gv2col_Qaqc_mr.FieldName = "Qaqc_mr";
     this.gv2col_Qaqc_mr.Name = "gv2col_Qaqc_mr";
     //
     // gv2col_Qaqc_blk
     //
     this.gv2col_Qaqc_blk.Caption = "Blk";
     this.gv2col_Qaqc_blk.FieldName = "Qaqc_blk";
     this.gv2col_Qaqc_blk.Name = "gv2col_Qaqc_blk";
     //
     // gv2col_Qaqc_par
     //
     this.gv2col_Qaqc_par.Caption = "Par";
     this.gv2col_Qaqc_par.ColumnEdit = this.repQaqc_parity;
     this.gv2col_Qaqc_par.FieldName = "Qaqc_par";
     this.gv2col_Qaqc_par.MinWidth = 40;
     this.gv2col_Qaqc_par.Name = "gv2col_Qaqc_par";
     this.gv2col_Qaqc_par.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par.Visible = true;
     this.gv2col_Qaqc_par.Width = 40;
     //
     // repQaqc_parity
     //
     this.repQaqc_parity.AutoHeight = false;
     this.repQaqc_parity.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_parity.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_parity.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_parity.LargeImages = this.imageStatus;
     this.repQaqc_parity.Name = "repQaqc_parity";
     //
     // gv2col_Qaqc_approve
     //
     this.gv2col_Qaqc_approve.Caption = "Aprobar";
     this.gv2col_Qaqc_approve.ColumnEdit = this.repQaqc_approve;
     this.gv2col_Qaqc_approve.FieldName = "Qaqc_approve";
     this.gv2col_Qaqc_approve.ImageIndex = 0;
     this.gv2col_Qaqc_approve.MinWidth = 80;
     this.gv2col_Qaqc_approve.Name = "gv2col_Qaqc_approve";
     this.gv2col_Qaqc_approve.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_approve.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_approve.Visible = true;
     this.gv2col_Qaqc_approve.Width = 80;
     //
     // repQaqc_approve
     //
     this.repQaqc_approve.AutoHeight = false;
     this.repQaqc_approve.Name = "repQaqc_approve";
     //
     // gv2col_Qaqc_review
     //
     this.gv2col_Qaqc_review.Caption = "Revisar";
     this.gv2col_Qaqc_review.ColumnEdit = this.repQaqc_review;
     this.gv2col_Qaqc_review.FieldName = "Qaqc_review";
     this.gv2col_Qaqc_review.ImageIndex = 0;
     this.gv2col_Qaqc_review.MinWidth = 80;
     this.gv2col_Qaqc_review.Name = "gv2col_Qaqc_review";
     this.gv2col_Qaqc_review.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_review.Width = 80;
     //
     // repQaqc_review
     //
     this.repQaqc_review.AutoHeight = false;
     this.repQaqc_review.Name = "repQaqc_review";
     //
     // gv2col_Qaqc_status_result
     //
     this.gv2col_Qaqc_status_result.Caption = ".";
     this.gv2col_Qaqc_status_result.ColumnEdit = this.repQaqc_StatusResult;
     this.gv2col_Qaqc_status_result.FieldName = "Qaqc_status_result";
     this.gv2col_Qaqc_status_result.MinWidth = 40;
     this.gv2col_Qaqc_status_result.Name = "gv2col_Qaqc_status_result";
     this.gv2col_Qaqc_status_result.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_status_result.Width = 40;
     //
     // repQaqc_StatusResult
     //
     this.repQaqc_StatusResult.AutoHeight = false;
     this.repQaqc_StatusResult.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_StatusResult.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_StatusResult.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 11),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 12),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 13),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 14),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 12)});
     this.repQaqc_StatusResult.Name = "repQaqc_StatusResult";
     this.repQaqc_StatusResult.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_error
     //
     this.gv2col_Qaqc_error.Caption = ".";
     this.gv2col_Qaqc_error.ColumnEdit = this.repQaqc_ShowObs;
     this.gv2col_Qaqc_error.FieldName = "Qaqc_error";
     this.gv2col_Qaqc_error.MinWidth = 25;
     this.gv2col_Qaqc_error.Name = "gv2col_Qaqc_error";
     this.gv2col_Qaqc_error.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_error.Width = 25;
     //
     // repQaqc_ShowObs
     //
     this.repQaqc_ShowObs.AutoHeight = false;
     this.repQaqc_ShowObs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_ShowObs.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 9),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 6, 10)});
     this.repQaqc_ShowObs.Name = "repQaqc_ShowObs";
     this.repQaqc_ShowObs.SmallImages = this.imageStatus;
     //
     // gridBand14
     //
     this.gridBand14.Caption = "Ryo";
     this.gridBand14.Columns.Add(this.gv2col_Qaqc_has_retest);
     this.gridBand14.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand14.Name = "gridBand14";
     this.gridBand14.Width = 40;
     //
     // gv2col_Qaqc_has_retest
     //
     this.gv2col_Qaqc_has_retest.Caption = "Ryo";
     this.gv2col_Qaqc_has_retest.ColumnEdit = this.repQaqc_HasRetest;
     this.gv2col_Qaqc_has_retest.FieldName = "Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gv2col_Qaqc_has_retest.Name = "gv2col_Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_has_retest.Visible = true;
     this.gv2col_Qaqc_has_retest.Width = 40;
     //
     // repQaqc_HasRetest
     //
     this.repQaqc_HasRetest.AutoHeight = false;
     this.repQaqc_HasRetest.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_HasRetest.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_HasRetest.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 15)});
     this.repQaqc_HasRetest.Name = "repQaqc_HasRetest";
     this.repQaqc_HasRetest.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_tmp_retest_idmethod
     //
     this.gv2col_Qaqc_tmp_retest_idmethod.Caption = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.FieldName = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.Name = "gv2col_Qaqc_tmp_retest_idmethod";
     //
     // gv2col_Qaqc_tmp_retest
     //
     this.gv2col_Qaqc_tmp_retest.Caption = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.FieldName = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.Name = "gv2col_Qaqc_tmp_retest";
     //
     // gv2col_Idretest
     //
     this.gv2col_Idretest.Caption = "gv2col_Qaqc_idretest";
     this.gv2col_Idretest.FieldName = "Qaqc_Qaqc_idretest";
     this.gv2col_Idretest.Name = "gv2col_Idretest";
     //
     // gv2col_Qaqc_approve_text
     //
     this.gv2col_Qaqc_approve_text.Caption = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.FieldName = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Name = "gv2col_Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Visible = true;
     //
     // gv2col_Qaqc_review_text
     //
     this.gv2col_Qaqc_review_text.Caption = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.FieldName = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Name = "gv2col_Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Visible = true;
     //
     // imgChecks
     //
     this.imgChecks.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgChecks.ImageStream")));
     this.imgChecks.TransparentColor = System.Drawing.Color.Transparent;
     this.imgChecks.Images.SetKeyName(0, "uncheck16x16.png");
     this.imgChecks.Images.SetKeyName(1, "check16x16.png");
     //
     // repProcedence2
     //
     this.repProcedence2.AutoHeight = false;
     this.repProcedence2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProcedence2.Name = "repProcedence2";
     //
     // treeCol_Urgent_sample
     //
     this.treeCol_Urgent_sample.Caption = "treeListColumn10";
     this.treeCol_Urgent_sample.FieldName = "Urgent_sample";
     this.treeCol_Urgent_sample.Name = "treeCol_Urgent_sample";
     //
     // treeTrayWaiting
     //
     this.treeTrayWaiting.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Empty.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(180)))), ((int)(((byte)(191)))));
     this.treeTrayWaiting.Appearance.FocusedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(219)))), ((int)(((byte)(226)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(131)))), ((int)(((byte)(161)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.HorzLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(253)))));
     this.treeTrayWaiting.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(165)))), ((int)(((byte)(177)))));
     this.treeTrayWaiting.Appearance.Preview.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Preview.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.Row.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(197)))), ((int)(((byte)(205)))));
     this.treeTrayWaiting.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.TreeLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(148)))));
     this.treeTrayWaiting.Appearance.TreeLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.VertLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeCol_Idtemplate_method,
     this.treeCol_Idrecep_sample_detail_elem,
     this.treeCol_Abbreviation,
     this.treeCol_Cod_repetition,
     this.treeCol_Id,
     this.treeCol_Parentid,
     this.treeCol_Num_tray,
     this.treeCol_Date_result,
     this.treeCol_Hour_result,
     this.treeCol_Urgent_sample});
     this.treeTrayWaiting.Dock = System.Windows.Forms.DockStyle.Fill;
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Column = this.treeCol_Urgent_sample;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition2.Value1 = 1D;
     this.treeTrayWaiting.FormatConditions.AddRange(new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition[] {
     styleFormatCondition2});
     this.treeTrayWaiting.ImageIndexFieldName = "Image_index";
     this.treeTrayWaiting.KeyFieldName = "Id";
     this.treeTrayWaiting.Location = new System.Drawing.Point(0, 0);
     this.treeTrayWaiting.Name = "treeTrayWaiting";
     this.treeTrayWaiting.OptionsBehavior.DragNodes = true;
     this.treeTrayWaiting.OptionsBehavior.SmartMouseHover = false;
     this.treeTrayWaiting.OptionsView.AutoWidth = false;
     this.treeTrayWaiting.OptionsView.EnableAppearanceEvenRow = true;
     this.treeTrayWaiting.OptionsView.EnableAppearanceOddRow = true;
     this.treeTrayWaiting.ParentFieldName = "Parentid";
     this.treeTrayWaiting.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repRepetition,
     this.repDate,
     this.repHour});
     this.treeTrayWaiting.SelectImageList = this.imgPriority;
     this.treeTrayWaiting.Size = new System.Drawing.Size(217, 343);
     this.treeTrayWaiting.TabIndex = 1;
     this.treeTrayWaiting.AfterDragNode += new DevExpress.XtraTreeList.NodeEventHandler(this.treeTrayWaiting_AfterDragNode);
     this.treeTrayWaiting.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     this.treeTrayWaiting.DragOver += new System.Windows.Forms.DragEventHandler(this.treeTrayWaiting_DragOver);
     this.treeTrayWaiting.MouseMove += new System.Windows.Forms.MouseEventHandler(this.treeTrayWaiting_MouseMove);
     //
     // treeCol_Idtemplate_method
     //
     this.treeCol_Idtemplate_method.Caption = "Idtemplate_method";
     this.treeCol_Idtemplate_method.FieldName = "Idtemplate_method";
     this.treeCol_Idtemplate_method.Name = "treeCol_Idtemplate_method";
     //
     // treeCol_Idrecep_sample_detail_elem
     //
     this.treeCol_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.Name = "treeCol_Idrecep_sample_detail_elem";
     //
     // treeCol_Abbreviation
     //
     this.treeCol_Abbreviation.Caption = "Bandeja";
     this.treeCol_Abbreviation.FieldName = "Abbreviation";
     this.treeCol_Abbreviation.MinWidth = 27;
     this.treeCol_Abbreviation.Name = "treeCol_Abbreviation";
     this.treeCol_Abbreviation.OptionsColumn.AllowEdit = false;
     this.treeCol_Abbreviation.VisibleIndex = 0;
     this.treeCol_Abbreviation.Width = 60;
     //
     // treeCol_Cod_repetition
     //
     this.treeCol_Cod_repetition.Caption = "N°Repeticiones";
     this.treeCol_Cod_repetition.ColumnEdit = this.repRepetition;
     this.treeCol_Cod_repetition.FieldName = "Cod_repetition";
     this.treeCol_Cod_repetition.Name = "treeCol_Cod_repetition";
     this.treeCol_Cod_repetition.OptionsColumn.ReadOnly = true;
     this.treeCol_Cod_repetition.Width = 63;
     //
     // repRepetition
     //
     this.repRepetition.AutoHeight = false;
     this.repRepetition.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repRepetition.Name = "repRepetition";
     this.repRepetition.NullText = "";
     //
     // treeCol_Id
     //
     this.treeCol_Id.Caption = "Id";
     this.treeCol_Id.FieldName = "Id";
     this.treeCol_Id.Name = "treeCol_Id";
     //
     // treeCol_Parentid
     //
     this.treeCol_Parentid.Caption = "Parentid";
     this.treeCol_Parentid.FieldName = "Parentid";
     this.treeCol_Parentid.Name = "treeCol_Parentid";
     //
     // treeCol_Num_tray
     //
     this.treeCol_Num_tray.Caption = "N°Bandeja";
     this.treeCol_Num_tray.FieldName = "Num_tray";
     this.treeCol_Num_tray.Name = "treeCol_Num_tray";
     this.treeCol_Num_tray.OptionsColumn.AllowEdit = false;
     this.treeCol_Num_tray.VisibleIndex = 1;
     this.treeCol_Num_tray.Width = 65;
     //
     // treeCol_Date_result
     //
     this.treeCol_Date_result.Caption = "Fecha";
     this.treeCol_Date_result.ColumnEdit = this.repDate;
     this.treeCol_Date_result.FieldName = "Date_result";
     this.treeCol_Date_result.Name = "treeCol_Date_result";
     this.treeCol_Date_result.VisibleIndex = 2;
     this.treeCol_Date_result.Width = 54;
     //
     // repDate
     //
     this.repDate.AutoHeight = false;
     this.repDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDate.Name = "repDate";
     //
     // treeCol_Hour_result
     //
     this.treeCol_Hour_result.Caption = "Hora";
     this.treeCol_Hour_result.ColumnEdit = this.repHour;
     this.treeCol_Hour_result.FieldName = "Hour_result";
     this.treeCol_Hour_result.Name = "treeCol_Hour_result";
     this.treeCol_Hour_result.VisibleIndex = 3;
     this.treeCol_Hour_result.Width = 53;
     //
     // repHour
     //
     this.repHour.AutoHeight = false;
     this.repHour.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repHour.Name = "repHour";
     //
     // imgPriority
     //
     this.imgPriority.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgPriority.ImageStream")));
     this.imgPriority.TransparentColor = System.Drawing.Color.Transparent;
     this.imgPriority.Images.SetKeyName(0, "high.png");
     this.imgPriority.Images.SetKeyName(1, "medium.png");
     this.imgPriority.Images.SetKeyName(2, "low.png");
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabTreeQaqc);
     this.expandablePanel1.Controls.Add(this.paButtons);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.expandablePanel1.Location = new System.Drawing.Point(0, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(226, 493);
     this.expandablePanel1.TabIndex = 9;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Bandejas";
     //
     // tabTreeQaqc
     //
     this.tabTreeQaqc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabTreeQaqc.Location = new System.Drawing.Point(0, 66);
     this.tabTreeQaqc.Name = "tabTreeQaqc";
     this.tabTreeQaqc.SelectedTabPage = this.xtraTabPage4;
     this.tabTreeQaqc.Size = new System.Drawing.Size(226, 427);
     this.tabTreeQaqc.TabIndex = 2;
     this.tabTreeQaqc.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5});
     this.tabTreeQaqc.Text = "xtraTabControl2";
     this.tabTreeQaqc.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabTreeQaqc_SelectedPageChanged);
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.treeTrayWaiting);
     this.xtraTabPage4.Controls.Add(this.groupControl1);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(217, 397);
     this.xtraTabPage4.Text = "En Espera";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cbAuthorizationWait);
     this.groupControl1.Controls.Add(this.label23);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl1.Location = new System.Drawing.Point(0, 343);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(217, 54);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Listar";
     //
     // cbAuthorizationWait
     //
     this.cbAuthorizationWait.Location = new System.Drawing.Point(81, 23);
     this.cbAuthorizationWait.Name = "cbAuthorizationWait";
     this.cbAuthorizationWait.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationWait.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationWait.Properties.NullText = "Seleccionar";
     this.cbAuthorizationWait.Properties.PopupWidth = 100;
     this.cbAuthorizationWait.Properties.ShowFooter = false;
     this.cbAuthorizationWait.Properties.ShowHeader = false;
     this.cbAuthorizationWait.Size = new System.Drawing.Size(112, 20);
     this.cbAuthorizationWait.TabIndex = 0;
     this.cbAuthorizationWait.EditValueChanged += new System.EventHandler(this.cbAuthorizationWait_EditValueChanged);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(27, 26);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(53, 13);
     this.label23.TabIndex = 1;
     this.label23.Text = "Listar por:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Controls.Add(this.treeTrayFinished);
     this.xtraTabPage5.Controls.Add(this.paListAuthorization);
     this.xtraTabPage5.Controls.Add(this.paHistoryFilter);
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(217, 55);
     this.xtraTabPage5.Text = "Gerencia";
     //
     // treeTrayFinished
     //
     this.treeTrayFinished.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn6,
     this.treeListColumn7,
     this.treeListColumn8,
     this.treeListColumn9});
     this.treeTrayFinished.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeTrayFinished.ImageIndexFieldName = "Image_index";
     this.treeTrayFinished.KeyFieldName = "Id";
     this.treeTrayFinished.Location = new System.Drawing.Point(0, 0);
     this.treeTrayFinished.Name = "treeTrayFinished";
     this.treeTrayFinished.OptionsView.AutoWidth = false;
     this.treeTrayFinished.ParentFieldName = "Parentid";
     this.treeTrayFinished.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1});
     this.treeTrayFinished.SelectImageList = this.imgPriority;
     this.treeTrayFinished.Size = new System.Drawing.Size(217, 0);
     this.treeTrayFinished.TabIndex = 2;
     this.treeTrayFinished.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeTrayFinished_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "Idtemplate_method";
     this.treeListColumn1.FieldName = "Idtemplate_method";
     this.treeListColumn1.Name = "treeListColumn1";
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "Idrecep_sample_detail_elem";
     this.treeListColumn2.FieldName = "Idrecep_sample_detail_elem";
     this.treeListColumn2.Name = "treeListColumn2";
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "Bandeja";
     this.treeListColumn3.FieldName = "Abbreviation";
     this.treeListColumn3.MinWidth = 27;
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.OptionsColumn.AllowEdit = false;
     this.treeListColumn3.VisibleIndex = 0;
     this.treeListColumn3.Width = 110;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "N°Repeticiones";
     this.treeListColumn4.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.treeListColumn4.FieldName = "Cod_repetition";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.OptionsColumn.ReadOnly = true;
     this.treeListColumn4.Width = 63;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "";
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "Id";
     this.treeListColumn5.FieldName = "Id";
     this.treeListColumn5.Name = "treeListColumn5";
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "Parentid";
     this.treeListColumn6.FieldName = "Parentid";
     this.treeListColumn6.Name = "treeListColumn6";
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "N°Bandeja";
     this.treeListColumn7.FieldName = "Num_tray";
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.OptionsColumn.AllowEdit = false;
     this.treeListColumn7.VisibleIndex = 1;
     //
     // treeListColumn8
     //
     this.treeListColumn8.Caption = "Fecha";
     this.treeListColumn8.FieldName = "Date_result";
     this.treeListColumn8.Name = "treeListColumn8";
     this.treeListColumn8.VisibleIndex = 2;
     //
     // treeListColumn9
     //
     this.treeListColumn9.Caption = "Hora";
     this.treeListColumn9.FieldName = "Hour_result";
     this.treeListColumn9.Name = "treeListColumn9";
     this.treeListColumn9.VisibleIndex = 3;
     //
     // paListAuthorization
     //
     this.paListAuthorization.Controls.Add(this.cbAuthorizationApproved);
     this.paListAuthorization.Controls.Add(this.label25);
     this.paListAuthorization.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paListAuthorization.Location = new System.Drawing.Point(0, -149);
     this.paListAuthorization.Name = "paListAuthorization";
     this.paListAuthorization.Size = new System.Drawing.Size(217, 54);
     this.paListAuthorization.TabIndex = 4;
     this.paListAuthorization.Text = "Listar";
     //
     // cbAuthorizationApproved
     //
     this.cbAuthorizationApproved.Location = new System.Drawing.Point(98, 23);
     this.cbAuthorizationApproved.Name = "cbAuthorizationApproved";
     this.cbAuthorizationApproved.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationApproved.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationApproved.Properties.NullText = "Seleccionar";
     this.cbAuthorizationApproved.Properties.PopupWidth = 100;
     this.cbAuthorizationApproved.Properties.ShowFooter = false;
     this.cbAuthorizationApproved.Properties.ShowHeader = false;
     this.cbAuthorizationApproved.Size = new System.Drawing.Size(103, 20);
     this.cbAuthorizationApproved.TabIndex = 0;
     this.cbAuthorizationApproved.EditValueChanged += new System.EventHandler(this.cbAuthorization_EditValueChanged);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(25, 26);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(53, 13);
     this.label25.TabIndex = 1;
     this.label25.Text = "Listar por:";
     //
     // paHistoryFilter
     //
     this.paHistoryFilter.Controls.Add(this.txYear);
     this.paHistoryFilter.Controls.Add(this.txSample);
     this.paHistoryFilter.Controls.Add(this.cbTypeSample);
     this.paHistoryFilter.Controls.Add(this.cbCompany);
     this.paHistoryFilter.Controls.Add(this.btSearchTray);
     this.paHistoryFilter.Controls.Add(this.label22);
     this.paHistoryFilter.Controls.Add(this.ckSample);
     this.paHistoryFilter.Controls.Add(this.ckCompany);
     this.paHistoryFilter.Controls.Add(this.panel9);
     this.paHistoryFilter.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paHistoryFilter.Location = new System.Drawing.Point(0, -95);
     this.paHistoryFilter.Name = "paHistoryFilter";
     this.paHistoryFilter.Size = new System.Drawing.Size(217, 150);
     this.paHistoryFilter.TabIndex = 3;
     this.paHistoryFilter.Text = "Filtrar por";
     this.paHistoryFilter.Visible = false;
     //
     // txYear
     //
     this.txYear.EditValue = "12";
     this.txYear.Location = new System.Drawing.Point(117, 96);
     this.txYear.Name = "txYear";
     this.txYear.Size = new System.Drawing.Size(22, 20);
     this.txYear.TabIndex = 12;
     this.txYear.Visible = false;
     //
     // txSample
     //
     this.txSample.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txSample.Location = new System.Drawing.Point(141, 96);
     this.txSample.Name = "txSample";
     this.txSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txSample.Size = new System.Drawing.Size(61, 20);
     this.txSample.TabIndex = 11;
     this.txSample.Visible = false;
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(67, 96);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 10, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.PopupWidth = 100;
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Size = new System.Drawing.Size(48, 20);
     this.cbTypeSample.TabIndex = 10;
     this.cbTypeSample.Visible = false;
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(67, 73);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(135, 20);
     this.cbCompany.TabIndex = 8;
     this.cbCompany.Visible = false;
     //
     // btSearchTray
     //
     this.btSearchTray.ImageAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.btSearchTray.ImageIndex = 3;
     this.btSearchTray.ImageList = this.imageList1;
     this.btSearchTray.Location = new System.Drawing.Point(141, 120);
     this.btSearchTray.Name = "btSearchTray";
     this.btSearchTray.Size = new System.Drawing.Size(62, 25);
     this.btSearchTray.TabIndex = 7;
     this.btSearchTray.Text = "Buscar";
     this.btSearchTray.Click += new System.EventHandler(this.btSearchTray_Click);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(22, 24);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(37, 13);
     this.label22.TabIndex = 1;
     this.label22.Text = "Fecha";
     //
     // ckSample
     //
     this.ckSample.Location = new System.Drawing.Point(4, 96);
     this.ckSample.Name = "ckSample";
     this.ckSample.Properties.Caption = "Muestra";
     this.ckSample.Size = new System.Drawing.Size(71, 19);
     this.ckSample.TabIndex = 4;
     this.ckSample.CheckedChanged += new System.EventHandler(this.ckSample_CheckedChanged);
     //
     // ckCompany
     //
     this.ckCompany.Location = new System.Drawing.Point(4, 73);
     this.ckCompany.Name = "ckCompany";
     this.ckCompany.Properties.Caption = "Cliente";
     this.ckCompany.Size = new System.Drawing.Size(75, 19);
     this.ckCompany.TabIndex = 4;
     this.ckCompany.CheckedChanged += new System.EventHandler(this.ckCompany_CheckedChanged);
     //
     // panel9
     //
     this.panel9.Controls.Add(this.deFrom);
     this.panel9.Controls.Add(this.deUntil);
     this.panel9.Controls.Add(this.label21);
     this.panel9.Controls.Add(this.label26);
     this.panel9.Location = new System.Drawing.Point(65, 19);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(140, 47);
     this.panel9.TabIndex = 3;
     //
     // deFrom
     //
     this.deFrom.EditValue = null;
     this.deFrom.Location = new System.Drawing.Point(50, 3);
     this.deFrom.Name = "deFrom";
     this.deFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFrom.Size = new System.Drawing.Size(86, 20);
     this.deFrom.TabIndex = 2;
     //
     // deUntil
     //
     this.deUntil.EditValue = null;
     this.deUntil.Location = new System.Drawing.Point(50, 25);
     this.deUntil.Name = "deUntil";
     this.deUntil.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deUntil.Size = new System.Drawing.Size(86, 20);
     this.deUntil.TabIndex = 2;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(5, 6);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 13);
     this.label21.TabIndex = 1;
     this.label21.Text = "Desde:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 28);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(38, 13);
     this.label26.TabIndex = 1;
     this.label26.Text = "Hasta:";
     //
     // paButtons
     //
     this.paButtons.Controls.Add(this.paNewTray);
     this.paButtons.Controls.Add(this.btRefresh);
     this.paButtons.Dock = System.Windows.Forms.DockStyle.Top;
     this.paButtons.Location = new System.Drawing.Point(0, 26);
     this.paButtons.Name = "paButtons";
     this.paButtons.Size = new System.Drawing.Size(226, 40);
     this.paButtons.TabIndex = 3;
     this.paButtons.Text = "paSettingsTree";
     //
     // paNewTray
     //
     this.paNewTray.AllowDrop = true;
     this.paNewTray.BackgroundImage = global::LimsProject.Properties.Resources.add_tray2;
     this.paNewTray.Location = new System.Drawing.Point(200, 11);
     this.paNewTray.Name = "paNewTray";
     this.paNewTray.Size = new System.Drawing.Size(20, 20);
     this.paNewTray.TabIndex = 1;
     this.paNewTray.DragDrop += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragDrop);
     this.paNewTray.DragEnter += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragEnter);
     //
     // btRefresh
     //
     this.btRefresh.Location = new System.Drawing.Point(8, 11);
     this.btRefresh.Name = "btRefresh";
     this.btRefresh.Size = new System.Drawing.Size(75, 23);
     this.btRefresh.TabIndex = 0;
     this.btRefresh.Text = "Refrescar";
     this.btRefresh.Click += new System.EventHandler(this.btRefresh_Click);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(226, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(5, 493);
     this.splitter1.TabIndex = 10;
     this.splitter1.TabStop = false;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.gbApprove);
     this.panel5.Controls.Add(this.paAuthorization);
     this.panel5.Controls.Add(this.gbReview);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(231, 444);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(985, 49);
     this.panel5.TabIndex = 10;
     //
     // gbApprove
     //
     this.gbApprove.Controls.Add(this.laDate_approved);
     this.gbApprove.Controls.Add(this.laUser_approved);
     this.gbApprove.Controls.Add(this.label13);
     this.gbApprove.Controls.Add(this.label7);
     this.gbApprove.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbApprove.Location = new System.Drawing.Point(11, 6);
     this.gbApprove.Name = "gbApprove";
     this.gbApprove.Size = new System.Drawing.Size(267, 38);
     this.gbApprove.TabIndex = 4;
     this.gbApprove.TabStop = false;
     this.gbApprove.Text = "Aprobación";
     this.gbApprove.Visible = false;
     //
     // laDate_approved
     //
     this.laDate_approved.AutoSize = true;
     this.laDate_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_approved.Location = new System.Drawing.Point(153, 16);
     this.laDate_approved.Name = "laDate_approved";
     this.laDate_approved.Size = new System.Drawing.Size(47, 13);
     this.laDate_approved.TabIndex = 3;
     this.laDate_approved.Text = "[fecha]";
     //
     // laUser_approved
     //
     this.laUser_approved.AutoSize = true;
     this.laUser_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_approved.Location = new System.Drawing.Point(58, 16);
     this.laUser_approved.Name = "laUser_approved";
     this.laUser_approved.Size = new System.Drawing.Size(39, 13);
     this.laUser_approved.TabIndex = 3;
     this.laUser_approved.Text = "[user]";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(103, 16);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(46, 13);
     this.label13.TabIndex = 2;
     this.label13.Text = "Fecha:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 16);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(54, 13);
     this.label7.TabIndex = 2;
     this.label7.Text = "Usuario:";
     //
     // paAuthorization
     //
     this.paAuthorization.Controls.Add(this.ucSign1);
     this.paAuthorization.Dock = System.Windows.Forms.DockStyle.Right;
     this.paAuthorization.Location = new System.Drawing.Point(811, 0);
     this.paAuthorization.Name = "paAuthorization";
     this.paAuthorization.Padding = new System.Windows.Forms.Padding(0, 19, 5, 14);
     this.paAuthorization.Size = new System.Drawing.Size(174, 49);
     this.paAuthorization.TabIndex = 5;
     this.paAuthorization.Visible = false;
     //
     // ucSign1
     //
     this.ucSign1.Location = new System.Drawing.Point(8, 5);
     this.ucSign1.Margin = new System.Windows.Forms.Padding(0);
     this.ucSign1.Name = "ucSign1";
     this.ucSign1.Pwd = null;
     this.ucSign1.Size = new System.Drawing.Size(160, 39);
     this.ucSign1.TabIndex = 13;
     this.ucSign1.Title = "Firmar";
     this.ucSign1.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // gbReview
     //
     this.gbReview.Controls.Add(this.laDate_revised);
     this.gbReview.Controls.Add(this.laUser_revised);
     this.gbReview.Controls.Add(this.label28);
     this.gbReview.Controls.Add(this.label29);
     this.gbReview.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbReview.Location = new System.Drawing.Point(284, 6);
     this.gbReview.Name = "gbReview";
     this.gbReview.Size = new System.Drawing.Size(269, 38);
     this.gbReview.TabIndex = 4;
     this.gbReview.TabStop = false;
     this.gbReview.Text = "Revisión";
     this.gbReview.Visible = false;
     //
     // laDate_revised
     //
     this.laDate_revised.AutoSize = true;
     this.laDate_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_revised.Location = new System.Drawing.Point(158, 16);
     this.laDate_revised.Name = "laDate_revised";
     this.laDate_revised.Size = new System.Drawing.Size(47, 13);
     this.laDate_revised.TabIndex = 3;
     this.laDate_revised.Text = "[fecha]";
     //
     // laUser_revised
     //
     this.laUser_revised.AutoSize = true;
     this.laUser_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_revised.Location = new System.Drawing.Point(57, 16);
     this.laUser_revised.Name = "laUser_revised";
     this.laUser_revised.Size = new System.Drawing.Size(39, 13);
     this.laUser_revised.TabIndex = 3;
     this.laUser_revised.Text = "[user]";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(112, 16);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(46, 13);
     this.label28.TabIndex = 2;
     this.label28.Text = "Fecha:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 16);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(54, 13);
     this.label29.TabIndex = 2;
     this.label29.Text = "Usuario:";
     //
     // tbStd
     //
     this.tbStd.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbStd.Location = new System.Drawing.Point(62, 28);
     this.tbStd.Name = "tbStd";
     this.tbStd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbStd.Size = new System.Drawing.Size(57, 20);
     this.tbStd.TabIndex = 1;
     this.tbStd.Leave += new System.EventHandler(this.tbStd_Leave);
     //
     // tbAbs
     //
     this.tbAbs.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAbs.Location = new System.Drawing.Point(62, 5);
     this.tbAbs.Name = "tbAbs";
     this.tbAbs.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAbs.Size = new System.Drawing.Size(57, 20);
     this.tbAbs.TabIndex = 0;
     this.tbAbs.Leave += new System.EventHandler(this.tbAbs_Leave);
     //
     // btRegAbsStd
     //
     this.btRegAbsStd.Location = new System.Drawing.Point(125, 26);
     this.btRegAbsStd.Name = "btRegAbsStd";
     this.btRegAbsStd.Size = new System.Drawing.Size(61, 23);
     this.btRegAbsStd.TabIndex = 2;
     this.btRegAbsStd.Text = "Registrar";
     this.btRegAbsStd.Click += new System.EventHandler(this.btRegAbsStd_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 31);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Std Ver:";
     //
     // panel6
     //
     this.panel6.Controls.Add(this.tbTitle);
     this.panel6.Controls.Add(this.label16);
     this.panel6.Controls.Add(this.tbCodMethod);
     this.panel6.Controls.Add(this.tbAbbreviation);
     this.panel6.Controls.Add(this.label12);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(375, 2);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(434, 43);
     this.panel6.TabIndex = 14;
     //
     // tbTitle
     //
     this.tbTitle.Location = new System.Drawing.Point(137, 6);
     this.tbTitle.Name = "tbTitle";
     this.tbTitle.Properties.ReadOnly = true;
     this.tbTitle.Size = new System.Drawing.Size(288, 33);
     this.tbTitle.TabIndex = 6;
     this.tbTitle.TabStop = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(71, 4);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(61, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "Abreviatura";
     //
     // tbCodMethod
     //
     this.tbCodMethod.Location = new System.Drawing.Point(4, 19);
     this.tbCodMethod.Name = "tbCodMethod";
     this.tbCodMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, true, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbCodMethod.Properties.ReadOnly = true;
     this.tbCodMethod.Size = new System.Drawing.Size(61, 20);
     this.tbCodMethod.TabIndex = 13;
     this.tbCodMethod.TabStop = false;
     this.tbCodMethod.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.tbCodMethod_ButtonClick);
     //
     // tbAbbreviation
     //
     this.tbAbbreviation.Location = new System.Drawing.Point(66, 19);
     this.tbAbbreviation.Name = "tbAbbreviation";
     this.tbAbbreviation.Properties.ReadOnly = true;
     this.tbAbbreviation.Size = new System.Drawing.Size(70, 20);
     this.tbAbbreviation.TabIndex = 7;
     this.tbAbbreviation.TabStop = false;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(15, 4);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "Código";
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ucSignCloseTray);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(809, 2);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(170, 43);
     this.panel4.TabIndex = 12;
     //
     // ucSignCloseTray
     //
     this.ucSignCloseTray.Location = new System.Drawing.Point(6, 1);
     this.ucSignCloseTray.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignCloseTray.Name = "ucSignCloseTray";
     this.ucSignCloseTray.Pwd = null;
     this.ucSignCloseTray.Size = new System.Drawing.Size(158, 40);
     this.ucSignCloseTray.TabIndex = 12;
     this.ucSignCloseTray.Title = "Cerrar bandeja";
     this.ucSignCloseTray.OnSign += new LimsProject.sign(this.ucSignCloseTray_OnSign);
     //
     // laTitleModule
     //
     this.laTitleModule.AutoSize = true;
     this.laTitleModule.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.laTitleModule.Location = new System.Drawing.Point(0, 1);
     this.laTitleModule.Margin = new System.Windows.Forms.Padding(0);
     this.laTitleModule.Name = "laTitleModule";
     this.laTitleModule.Size = new System.Drawing.Size(57, 20);
     this.laTitleModule.TabIndex = 10;
     this.laTitleModule.Text = "label7";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(10, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 13);
     this.label5.TabIndex = 2;
     this.label5.Text = "Abs1 Std:";
     //
     // tbUnitMeasure
     //
     this.tbUnitMeasure.Location = new System.Drawing.Point(284, 28);
     this.tbUnitMeasure.Name = "tbUnitMeasure";
     this.tbUnitMeasure.Properties.ReadOnly = true;
     this.tbUnitMeasure.Size = new System.Drawing.Size(31, 20);
     this.tbUnitMeasure.TabIndex = 9;
     this.tbUnitMeasure.TabStop = false;
     //
     // tbLawMri
     //
     this.tbLawMri.Location = new System.Drawing.Point(225, 28);
     this.tbLawMri.Name = "tbLawMri";
     this.tbLawMri.Properties.ReadOnly = true;
     this.tbLawMri.Size = new System.Drawing.Size(56, 20);
     this.tbLawMri.TabIndex = 9;
     this.tbLawMri.TabStop = false;
     //
     // tbSdMr
     //
     this.tbSdMr.Location = new System.Drawing.Point(353, 28);
     this.tbSdMr.Name = "tbSdMr";
     this.tbSdMr.Properties.ReadOnly = true;
     this.tbSdMr.Size = new System.Drawing.Size(75, 20);
     this.tbSdMr.TabIndex = 9;
     this.tbSdMr.TabStop = false;
     //
     // tbSdBlk
     //
     this.tbSdBlk.Location = new System.Drawing.Point(353, 5);
     this.tbSdBlk.Name = "tbSdBlk";
     this.tbSdBlk.Properties.ReadOnly = true;
     this.tbSdBlk.Size = new System.Drawing.Size(75, 20);
     this.tbSdBlk.TabIndex = 9;
     this.tbSdBlk.TabStop = false;
     //
     // tbMri
     //
     this.tbMri.Location = new System.Drawing.Point(225, 5);
     this.tbMri.Name = "tbMri";
     this.tbMri.Properties.ReadOnly = true;
     this.tbMri.Size = new System.Drawing.Size(56, 20);
     this.tbMri.TabIndex = 9;
     this.tbMri.TabStop = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(194, 31);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(27, 13);
     this.label18.TabIndex = 4;
     this.label18.Text = "Ley:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(434, 31);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(77, 13);
     this.label15.TabIndex = 4;
     this.label15.Text = "Error permitido:";
     //
     // tbErrorAllowed
     //
     this.tbErrorAllowed.Location = new System.Drawing.Point(514, 28);
     this.tbErrorAllowed.Name = "tbErrorAllowed";
     this.tbErrorAllowed.Properties.ReadOnly = true;
     this.tbErrorAllowed.Size = new System.Drawing.Size(52, 20);
     this.tbErrorAllowed.TabIndex = 5;
     this.tbErrorAllowed.TabStop = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(320, 8);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(31, 13);
     this.label20.TabIndex = 2;
     this.label20.Text = "LRB:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(320, 31);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(30, 13);
     this.label19.TabIndex = 2;
     this.label19.Text = "MRI:";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(194, 9);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(24, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Mri:";
     //
     // deDate_allowed_error
     //
     this.deDate_allowed_error.EditValue = null;
     this.deDate_allowed_error.Location = new System.Drawing.Point(477, 5);
     this.deDate_allowed_error.Name = "deDate_allowed_error";
     this.deDate_allowed_error.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate_allowed_error.Properties.ReadOnly = true;
     this.deDate_allowed_error.Size = new System.Drawing.Size(89, 20);
     this.deDate_allowed_error.TabIndex = 3;
     this.deDate_allowed_error.TabStop = false;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(434, 6);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(40, 13);
     this.label14.TabIndex = 2;
     this.label14.Text = "Fecha:";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.paQaqc2);
     this.panelControl1.Controls.Add(this.paQaqc1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(231, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(985, 103);
     this.panelControl1.TabIndex = 11;
     this.panelControl1.Text = "panelControl1";
     //
     // paQaqc2
     //
     this.paQaqc2.Controls.Add(this.deDate_allowed_error);
     this.paQaqc2.Controls.Add(this.tbSdBlk);
     this.paQaqc2.Controls.Add(this.tbStd);
     this.paQaqc2.Controls.Add(this.tbMri);
     this.paQaqc2.Controls.Add(this.tbSdMr);
     this.paQaqc2.Controls.Add(this.tbAbs);
     this.paQaqc2.Controls.Add(this.label18);
     this.paQaqc2.Controls.Add(this.label14);
     this.paQaqc2.Controls.Add(this.tbLawMri);
     this.paQaqc2.Controls.Add(this.btRegAbsStd);
     this.paQaqc2.Controls.Add(this.label15);
     this.paQaqc2.Controls.Add(this.label17);
     this.paQaqc2.Controls.Add(this.tbUnitMeasure);
     this.paQaqc2.Controls.Add(this.label4);
     this.paQaqc2.Controls.Add(this.tbErrorAllowed);
     this.paQaqc2.Controls.Add(this.label19);
     this.paQaqc2.Controls.Add(this.label5);
     this.paQaqc2.Controls.Add(this.label20);
     this.paQaqc2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.paQaqc2.Enabled = false;
     this.paQaqc2.Location = new System.Drawing.Point(2, 49);
     this.paQaqc2.Name = "paQaqc2";
     this.paQaqc2.Size = new System.Drawing.Size(981, 52);
     this.paQaqc2.TabIndex = 17;
     this.paQaqc2.Text = "paQaqc2";
     //
     // paQaqc1
     //
     this.paQaqc1.Appearance.BackColor = System.Drawing.Color.LightSteelBlue;
     this.paQaqc1.Appearance.Options.UseBackColor = true;
     this.paQaqc1.Controls.Add(this.panel6);
     this.paQaqc1.Controls.Add(this.panel4);
     this.paQaqc1.Controls.Add(this.panel7);
     this.paQaqc1.Dock = System.Windows.Forms.DockStyle.Top;
     this.paQaqc1.Location = new System.Drawing.Point(2, 2);
     this.paQaqc1.Name = "paQaqc1";
     this.paQaqc1.Size = new System.Drawing.Size(981, 47);
     this.paQaqc1.TabIndex = 16;
     this.paQaqc1.Text = "paTitle2";
     //
     // panel7
     //
     this.panel7.Controls.Add(this.laTitleModule);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(2, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(977, 43);
     this.panel7.TabIndex = 15;
     //
     // img32x32
     //
     this.img32x32.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("img32x32.ImageStream")));
     this.img32x32.TransparentColor = System.Drawing.Color.Transparent;
     this.img32x32.Images.SetKeyName(0, "add_file.png");
     //
     // FormNewQaQc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1230, 643);
     this.Name = "FormNewQaQc";
     this.Text = "Módulo de QaQc";
     this.Load += new System.EventHandler(this.FormQaQc_Load);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).EndInit();
     this.tabTreeQaqc.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).EndInit();
     this.xtraTabPage5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).EndInit();
     this.paListAuthorization.ResumeLayout(false);
     this.paListAuthorization.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).EndInit();
     this.paHistoryFilter.ResumeLayout(false);
     this.paHistoryFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).EndInit();
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).EndInit();
     this.paButtons.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.gbApprove.ResumeLayout(false);
     this.gbApprove.PerformLayout();
     this.paAuthorization.ResumeLayout(false);
     this.gbReview.ResumeLayout(false);
     this.gbReview.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).EndInit();
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).EndInit();
     this.paQaqc2.ResumeLayout(false);
     this.paQaqc2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).EndInit();
     this.paQaqc1.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel7.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormGotoPage));
            this.lbTotalPageCount = new DevExpress.XtraEditors.LabelControl();
            this.efDevSpinPageTo = new DevExpress.XtraEditors.SpinEdit();
            this.efLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
            this.btnOk = new  DevExpress.XtraEditors.SimpleButton();
            this.efDevSpinPageSize = new DevExpress.XtraEditors.SpinEdit();
            this.efLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.lblTotalRecordCount = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.efDevSpinPageTo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnOk)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.efDevSpinPageSize.Properties)).BeginInit();
            this.SuspendLayout();
            //
            // lbTotalPageCount
            //
            resources.ApplyResources(this.lbTotalPageCount, "lbTotalPageCount");
            this.lbTotalPageCount.Name = "lbTotalPageCount";
            //
            // efDevSpinPageTo
            //
            resources.ApplyResources(this.efDevSpinPageTo, "efDevSpinPageTo");
            this.efDevSpinPageTo.Name = "efDevSpinPageTo";
            this.efDevSpinPageTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.efDevSpinPageTo.Properties.IsFloatValue = false;
            this.efDevSpinPageTo.Properties.Mask.EditMask = resources.GetString("efDevSpinPageTo.Properties.Mask.EditMask");
            //
            // efLabel1
            //
            resources.ApplyResources(this.efLabel1, "efLabel1");
            this.efLabel1.Name = "efLabel1";
            //
            // btnCancel
            //

            resources.ApplyResources(this.btnCancel, "btnCancel");
            this.btnCancel.Name = "btnCancel";
             this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            //
            // btnOk
            //

            resources.ApplyResources(this.btnOk, "btnOk");
            this.btnOk.Name = "btnOk";

            this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
            //
            // efDevSpinPageSize
            //
            resources.ApplyResources(this.efDevSpinPageSize, "efDevSpinPageSize");
            this.efDevSpinPageSize.Name = "efDevSpinPageSize";
            this.efDevSpinPageSize.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.efDevSpinPageSize.Properties.IsFloatValue = false;
            this.efDevSpinPageSize.Properties.Mask.EditMask = resources.GetString("efDevSpinPageSize.Properties.Mask.EditMask");
            this.efDevSpinPageSize.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.efDevSpinPageSize_EditValueChanging);
            //
            // efLabel2
            //
            resources.ApplyResources(this.efLabel2, "efLabel2");
            this.efLabel2.Name = "efLabel2";
            //
            // lblTotalRecordCount
            //
            resources.ApplyResources(this.lblTotalRecordCount, "lblTotalRecordCount");
            this.lblTotalRecordCount.Name = "lblTotalRecordCount";
            //
            // FormGotoPage
            //
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.lblTotalRecordCount);
            this.Controls.Add(this.efLabel2);
            this.Controls.Add(this.efDevSpinPageSize);
            this.Controls.Add(this.lbTotalPageCount);
            this.Controls.Add(this.efDevSpinPageTo);
            this.Controls.Add(this.efLabel1);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnOk);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FormGotoPage";
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.Load += new System.EventHandler(this.FormGotoPage_Load);
            ((System.ComponentModel.ISupportInitialize)(this.efDevSpinPageTo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnOk)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.efDevSpinPageSize.Properties)).EndInit();
            this.ResumeLayout(false);
        }
Exemple #17
0
 private void SettingView_Load(object sender, EventArgs e)
 {
     gateWay = InitialMethod.GateWayLoad();
     taiwan_DistricsSetting = InitialMethod.Taiwan_DistricsLoad();
     #region 產生電錶填入欄位
     for (int i = 0; i < 30; i++) //toggleSwitch = 啟動, toggleSwitch2 = 總錶
     {
         DevExpress.XtraEditors.ToggleSwitch toggleSwitch = new DevExpress.XtraEditors.ToggleSwitch
         {
             Name     = $"toggleSwitch{ 1 + i * 2}",
             Location = new Point(10, 8 + 25 * i),
             Size     = new Size(48, 19),
             IsOn     = false
         };
         toggleSwitch.Properties.ShowText = false;
         xtraScrollableControl1.Controls.Add(toggleSwitch);
         DevExpress.XtraEditors.ToggleSwitch toggleSwitch2 = new DevExpress.XtraEditors.ToggleSwitch
         {
             Name     = $"toggleSwitch{ 2 + i * 2}",
             Location = new Point(600, 8 + 25 * i),
             Size     = new Size(48, 19),
             IsOn     = false
         };
         toggleSwitch2.Properties.ShowText = false;
         xtraScrollableControl1.Controls.Add(toggleSwitch2);
         toggleSwitches.Add(toggleSwitch);
         toggleSwitches2.Add(toggleSwitch2);
     }
     for (int i = 0; i < 30; i++) //設備名稱
     {
         DevExpress.XtraEditors.TextEdit textEdit = new DevExpress.XtraEditors.TextEdit
         {
             Name     = $"textEdit{1 + i}",
             Location = new Point(65, 6 + 25 * i),
             Size     = new Size(105, 22)
         };
         xtraScrollableControl1.Controls.Add(textEdit);
         textEdits.Add(textEdit);
     }
     for (int i = 0; i < 30; i++) //設備ID
     {
         DevExpress.XtraEditors.SpinEdit spinEdit = new DevExpress.XtraEditors.SpinEdit
         {
             Name     = $"spinEdit{1 + i}",
             Location = new Point(185, 6 + 25 * i),
             Size     = new Size(55, 20)
         };
         spinEdit.Properties.MaxValue     = 254;
         spinEdit.Properties.MinValue     = 1;
         spinEdit.Properties.IsFloatValue = false;
         xtraScrollableControl1.Controls.Add(spinEdit);
         spinEdits.Add(spinEdit);
     }
     for (int i = 0; i < 30; i++) //電錶廠牌
     {
         DevExpress.XtraEditors.ComboBoxEdit comboBoxEdit = new DevExpress.XtraEditors.ComboBoxEdit
         {
             Name     = $"comboBoxEdit{1 + i * 4}",
             Location = new Point(250, 6 + 25 * i),
             Size     = new Size(105, 22),
             Tag      = i
         };
         comboBoxEdit.SelectedIndexChanged += ComboBoxEdit1_SelectedIndexChanged;
         comboBoxEdit.Properties.Items.Add("PA310");
         comboBoxEdit.Properties.Items.Add("HC6600");
         comboBoxEdit.Properties.Items.Add("CPM6");
         comboBoxEdit.Properties.Items.Add("PA60");
         comboBoxEdit.Properties.Items.Add("ABBM2M");
         comboBoxEdit.Properties.AllowFocused    = false;
         comboBoxEdit.Properties.AllowMouseWheel = false;
         comboBoxEdit.Properties.TextEditStyle   = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
         xtraScrollableControl1.Controls.Add(comboBoxEdit);
         comboBoxEdits.Add(comboBoxEdit);
     }
     for (int i = 0; i < 30; i++) //comboBoxEdit2 = 電錶類型, comboBoxEdit3 = 迴路, comboBoxEdit4 = 相位
     {
         DevExpress.XtraEditors.ComboBoxEdit comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit
         {
             Name     = $"comboBoxEdit{2 + i * 4}",
             Location = new Point(365, 6 + 25 * i),
             Size     = new Size(68, 22),
             Tag      = i
         };
         comboBoxEdit2.SelectedIndexChanged += ComboBoxEdit2_SelectedIndexChanged;
         comboBoxEdit2.Properties.Items.Add("三相");
         comboBoxEdit2.Properties.Items.Add("單相");
         comboBoxEdit2.Properties.AllowFocused    = false;
         comboBoxEdit2.Properties.AllowMouseWheel = false;
         comboBoxEdit2.Properties.TextEditStyle   = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
         xtraScrollableControl1.Controls.Add(comboBoxEdit2);
         DevExpress.XtraEditors.ComboBoxEdit comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit
         {
             Name     = $"comboBoxEdit{3 + i * 4}",
             Location = new Point(442, 6 + 25 * i),
             Size     = new Size(68, 22),
             Tag      = i
         };
         comboBoxEdit3.Properties.Items.Add("迴路1");
         comboBoxEdit3.Properties.Items.Add("迴路2");
         comboBoxEdit3.Properties.Items.Add("迴路3");
         comboBoxEdit3.Properties.Items.Add("迴路4");
         comboBoxEdit3.Properties.AllowFocused    = false;
         comboBoxEdit3.Properties.AllowMouseWheel = false;
         comboBoxEdit3.Properties.TextEditStyle   = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
         xtraScrollableControl1.Controls.Add(comboBoxEdit3);
         DevExpress.XtraEditors.ComboBoxEdit comboBoxEdit4 = new DevExpress.XtraEditors.ComboBoxEdit
         {
             Name     = $"comboBoxEdit{4 + i * 4}",
             Location = new Point(518, 6 + 25 * i),
             Size     = new Size(68, 22),
             Tag      = i
         };
         comboBoxEdit4.Properties.Items.Add("R相");
         comboBoxEdit4.Properties.Items.Add("S相");
         comboBoxEdit4.Properties.Items.Add("T相");
         comboBoxEdit4.Properties.AllowFocused    = false;
         comboBoxEdit4.Properties.AllowMouseWheel = false;
         comboBoxEdit4.Properties.TextEditStyle   = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
         xtraScrollableControl1.Controls.Add(comboBoxEdit4);
         comboBoxEdits2.Add(comboBoxEdit2);
         comboBoxEdits3.Add(comboBoxEdit3);
         comboBoxEdits4.Add(comboBoxEdit4);
     }
     #endregion
     #region 抓取原先設定
     #region  層資料
     ComtoggleSwitch.IsOn    = gateWay.ControlFlag;
     RecordtoggleSwitch.IsOn = gateWay.RecordFlag;
     ATMtextEdit.Text        = gateWay.GateWays[0].Authorization;
     if (gateWay.GateWays[0].GatewayEnumType == 0)
     {
         labelControl4.Visible         = true;
         labelControl22.Visible        = true;
         ComPortcomboBoxEdit.Visible   = true;
         RTURatetextEdit.Visible       = true;
         ComcomboBoxEdit.SelectedIndex = 0;
         ComPortcomboBoxEdit.Text      = gateWay.GateWays[0].ModbusRTULocation;
         RTURatetextEdit.Text          = Convert.ToString(gateWay.GateWays[0].ModbusRTURate);
     }
     else if (gateWay.GateWays[0].GatewayEnumType == 1)
     {
         labelControl19.Visible        = true;
         labelControl21.Visible        = true;
         ComTCPtextEdit.Visible        = true;
         RatetextEdit.Visible          = true;
         ComcomboBoxEdit.SelectedIndex = 1;
         ComTCPtextEdit.Text           = gateWay.GateWays[0].ModbusTCPLocation;
         RatetextEdit.Text             = Convert.ToString(gateWay.GateWays[0].ModbusTCPRate);
     }
     else if (gateWay.GateWays[0].GatewayEnumType == 2)
     {
         labelControl20.Visible        = true;
         HTTPtextEdit.Visible          = true;
         ComcomboBoxEdit.SelectedIndex = 2;
         HTTPtextEdit.Text             = gateWay.GateWays[0].APILocation;
     }
     else if (gateWay.GateWays[0].GatewayEnumType == 3)
     {
         labelControl19.Visible        = true;
         labelControl21.Visible        = true;
         ComTCPtextEdit.Visible        = true;
         RatetextEdit.Visible          = true;
         ComcomboBoxEdit.SelectedIndex = 3;
         ComTCPtextEdit.Text           = gateWay.GateWays[0].EMSLocation;
         RatetextEdit.Text             = Convert.ToString(gateWay.GateWays[0].EMSRate);
     }
     #endregion
     #region 天氣
     ATMtextEdit.Text      = gateWay.GateWays[0].Authorization;
     CitycomboBoxEdit.Text = gateWay.GateWays[0].LocationName;
     ZonecomboBoxEdit.Text = gateWay.GateWays[0].DistrictName;
     DeviceTypecomboBoxEdit.SelectedIndex = gateWay.GateWays[0].GateWaySenserIDs[0].SenserEnumType;
     DeviceNametextEdit.Text = gateWay.GateWays[0].GateWaySenserIDs[0].DeviceName;
     IDspinEdit.Text         = Convert.ToString(gateWay.GateWays[0].GateWaySenserIDs[0].DeviceID);
     #endregion
     #region 電表
     for (int i = 0; i < gateWay.GateWays[0].GateWayElectricIDs.Count; i++)
     {
         toggleSwitches[i].IsOn          = true;
         textEdits[i].Text               = gateWay.GateWays[0].GateWayElectricIDs[i].DeviceName;
         spinEdits[i].Text               = Convert.ToString(gateWay.GateWays[0].GateWayElectricIDs[i].DeviceID);
         comboBoxEdits[i].SelectedIndex  = gateWay.GateWays[0].GateWayElectricIDs[i].ElectricEnumType;
         comboBoxEdits2[i].SelectedIndex = gateWay.GateWays[0].GateWayElectricIDs[i].PhaseEnumType;
         comboBoxEdits3[i].SelectedIndex = gateWay.GateWays[0].GateWayElectricIDs[i].LoopEnumType;
         comboBoxEdits4[i].SelectedIndex = gateWay.GateWays[0].GateWayElectricIDs[i].PhaseAngleEnumType;
         toggleSwitches2[i].IsOn         = gateWay.GateWays[0].GateWayElectricIDs[i].TotalMeterFlag;
     }
     #endregion
     #endregion
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormReception));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gcShowColumns = new DevExpress.XtraEditors.GroupControl();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.panel7 = new System.Windows.Forms.Panel();
     this.paDelete = new System.Windows.Forms.Panel();
     this.tbResidue = new DevExpress.XtraEditors.SpinEdit();
     this.tbAmortization = new DevExpress.XtraEditors.SpinEdit();
     this.panel5 = new System.Windows.Forms.Panel();
     this.tbTotalIgv = new DevExpress.XtraEditors.SpinEdit();
     this.tbTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.tbSubTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.gcReception = new DevExpress.XtraGrid.GridControl();
     this.gvReception = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRec_idrecep_sample_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_OrderSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDescription = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRec_Idmr_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Type_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Procedence = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProcedence = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRec_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Flag_envelope_sealed = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repEnvelope_sealed = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcRec_CantKg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Reject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Counter_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Days = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repSelect = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcDyn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Hour = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_matrix = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_campo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Ubigeo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_UTM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_plastic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_glass = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Volumen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repResult = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repSendReport = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repLink = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repDesLink = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repSample = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.tbFax = new DevExpress.XtraEditors.TextEdit();
     this.tbClientPhone = new DevExpress.XtraEditors.TextEdit();
     this.tbClientRuc = new DevExpress.XtraEditors.TextEdit();
     this.tbClientDomicile = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.gcContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCon_Idrecep_company_person = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idperson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idcompany = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Allname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Mail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Person_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPerson_type = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcCon_Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gcCon_Cellphone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCellPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repNum = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.ckDispatchFax = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchPerson = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchTransport = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchCurier = new DevExpress.XtraEditors.CheckEdit();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabOptionRight = new DevExpress.XtraTab.XtraTabControl();
     this.tpRightMethods = new DevExpress.XtraTab.XtraTabPage();
     this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit();
     this.gcMethods = new DevExpress.XtraGrid.GridControl();
     this.gvMethods = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcMet_Cod_template_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Cod_element = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Abbreviation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Name_type_analisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Title = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_TypeAnalisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Button = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAddColumn = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcMet_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit_Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idelement = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idtemplate_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Analisys_time = new DevExpress.XtraGrid.Columns.GridColumn();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.tpRightReports = new DevExpress.XtraTab.XtraTabPage();
     this.gcReport = new DevExpress.XtraGrid.GridControl();
     this.gvReport = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRep_idrecep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_report_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repStatusReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRep_type_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Option = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repReportOption = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRep_Str_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateReport = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repTimeReport = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repTypeReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btMakePartialReport = new DevExpress.XtraEditors.SimpleButton();
     this.btMakeFinalReport = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightAttach = new DevExpress.XtraTab.XtraTabPage();
     this.gcAttachFile = new DevExpress.XtraGrid.GridControl();
     this.gvAttachFile = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcAtt_Iddocument_recep = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_FileName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_file = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Attach_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_status = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Buttons = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repButtons = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcAtt_SourcePath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Order_file = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample_attach = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btNewFile = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightProgram = new DevExpress.XtraTab.XtraTabPage();
     this.gcProgram = new DevExpress.XtraGrid.GridControl();
     this.gvProgram = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcProg_Idrecep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Program_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramStatus = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramButton = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcProg_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateProgram = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gcProg_Time_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repTimeProgram = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gcProg_Str_cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btProgramSelection = new DevExpress.XtraEditors.SimpleButton();
     this.btPrintTicket = new System.Windows.Forms.Button();
     this.btDesignPrint = new System.Windows.Forms.Button();
     this.deReception = new DevExpress.XtraEditors.DateEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.deResult = new DevExpress.XtraEditors.DateEdit();
     this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
     this.tabDateRegRecep = new DevExpress.XtraTab.XtraTabPage();
     this.tbNumDays = new DevExpress.XtraEditors.SpinEdit();
     this.deHourResult = new DevExpress.XtraEditors.TimeEdit();
     this.deHourReception = new DevExpress.XtraEditors.TimeEdit();
     this.label27 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.btReportClient = new System.Windows.Forms.Button();
     this.txIdrecep_sample = new DevExpress.XtraEditors.TextEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.cbTypeSample = new LimsProject.MyLookUpEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.ofdRecepFileAttach = new System.Windows.Forms.OpenFileDialog();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.label14 = new System.Windows.Forms.Label();
     this.tbAdministrativeExpense = new DevExpress.XtraEditors.SpinEdit();
     this.tbCod_recep_sample = new DevExpress.XtraEditors.TextEdit();
     this.ucSignReception = new LimsProject.UcSign();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel11 = new System.Windows.Forms.Panel();
     this.paTypeSample = new System.Windows.Forms.Panel();
     this.paCodRegisterRecep = new System.Windows.Forms.Panel();
     this.ucTitleRegisterRecep = new LimsProject.UcTitle();
     this.ucToolStrip1 = new LimsProject.UcToolStrip();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ucGenerarA = new LimsProject.UcGenerar();
     this.ucGenerarDesde = new LimsProject.UcGenerar();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl3 = new DevExpress.XtraTab.XtraTabControl();
     this.tpMuestras = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.tpAnexos = new DevExpress.XtraTab.XtraTabPage();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tpReject = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.gcRejection = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_Code = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_NameSample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Date = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Hora = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_C1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.tpDecree = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl4 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gridDecretos = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcDec_Idmetodo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repMetodo = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Parametro = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Unidad_medida = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repUnidadMedida = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Result = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Criterio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCriterio = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Valor1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Valor2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Conclusion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit3 = new DevExpress.XtraEditors.MemoEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit4 = new DevExpress.XtraEditors.MemoEdit();
     this.label22 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.paSuperior.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     this.paSupBotones.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).BeginInit();
     this.gcShowColumns.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).BeginInit();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).BeginInit();
     this.tabOptionRight.SuspendLayout();
     this.tpRightMethods.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.tpRightReports.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.tpRightAttach.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.tpRightProgram.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
     this.xtraTabControl2.SuspendLayout();
     this.tabDateRegRecep.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel11.SuspendLayout();
     this.paTypeSample.SuspendLayout();
     this.paCodRegisterRecep.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).BeginInit();
     this.xtraTabControl3.SuspendLayout();
     this.tpMuestras.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     this.tpAnexos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.tpReject.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.tpDecree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).BeginInit();
     this.xtraTabControl4.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     this.imageList1.Images.SetKeyName(9, "uncheck16x16.png");
     this.imageList1.Images.SetKeyName(10, "check16x16.png");
     this.imageList1.Images.SetKeyName(11, "stock-copy.png");
     this.imageList1.Images.SetKeyName(12, "copy_blusky.png");
     this.imageList1.Images.SetKeyName(13, "copy_price.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Recepción de Muestras - Búsqueda";
     //
     // txtBuscar
     //
     this.txtBuscar.Location = new System.Drawing.Point(774, 56);
     this.txtBuscar.Size = new System.Drawing.Size(40, 21);
     this.txtBuscar.Visible = false;
     //
     // cbCampo
     //
     this.cbCampo.Location = new System.Drawing.Point(872, 56);
     this.cbCampo.Size = new System.Drawing.Size(35, 21);
     this.cbCampo.Visible = false;
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Controls.Add(this.ucGenerarDesde);
     this.paTopBasicButtons.Controls.Add(this.ucGenerarA);
     this.paTopBasicButtons.Controls.Add(this.ucSignReception);
     this.paTopBasicButtons.Size = new System.Drawing.Size(714, 46);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btEliminar2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btNuevo2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btGuardar, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucSignReception, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarA, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarDesde, 0);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     this.btSalir2.TabStop = false;
     //
     // btGuardar
     //
     this.btGuardar.Enabled = false;
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(138, 4);
     this.btGuardar.Size = new System.Drawing.Size(62, 25);
     this.btGuardar.Text = "&Firmar";
     this.btGuardar.Visible = false;
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(151, 10);
     this.btNuevo2.Visible = false;
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(138, 21);
     this.btEliminar2.Visible = false;
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 53);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 201);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     this.paBottomSearch.Visible = false;
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     this.btBuscar.Location = new System.Drawing.Point(12, 2);
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(927, 0);
     this.panel1.Size = new System.Drawing.Size(72, 46);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     this.btFiltroBuscar.Location = new System.Drawing.Point(495, 17);
     //
     // paSearchGen
     //
     this.paSearchGen.Location = new System.Drawing.Point(5, 2);
     this.paSearchGen.Size = new System.Drawing.Size(930, 49);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(823, 58);
     this.label3.Visible = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(656, 52);
     this.label2.Visible = false;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Location = new System.Drawing.Point(3, 93);
     this.paMiddleFind.Size = new System.Drawing.Size(526, 108);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.None;
     this.panel2.Size = new System.Drawing.Size(74, 21);
     //
     // paInferior
     //
     this.paInferior.Controls.Add(this.btReportClient);
     this.paInferior.Controls.Add(this.btDesignPrint);
     this.paInferior.Controls.Add(this.btPrintTicket);
     this.paInferior.Location = new System.Drawing.Point(3, 559);
     this.paInferior.Size = new System.Drawing.Size(999, 46);
     this.paInferior.Controls.SetChildIndex(this.panel1, 0);
     this.paInferior.Controls.SetChildIndex(this.paTopBasicButtons, 0);
     this.paInferior.Controls.SetChildIndex(this.btPrintTicket, 0);
     this.paInferior.Controls.SetChildIndex(this.btDesignPrint, 0);
     this.paInferior.Controls.SetChildIndex(this.btReportClient, 0);
     //
     // paTitulo
     //
     this.paTitulo.Controls.Add(this.ucTitleRegisterRecep);
     this.paTitulo.Size = new System.Drawing.Size(999, 27);
     this.paTitulo.Visible = false;
     this.paTitulo.Controls.SetChildIndex(this.panel2, 0);
     this.paTitulo.Controls.SetChildIndex(this.laTitulo, 0);
     this.paTitulo.Controls.SetChildIndex(this.ucTitleRegisterRecep, 0);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.panelControl2);
     this.paCentral.Location = new System.Drawing.Point(3, 176);
     this.paCentral.Size = new System.Drawing.Size(999, 383);
     //
     // paSuperior
     //
     this.paSuperior.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.paSuperior.Controls.Add(this.panelControl1);
     this.paSuperior.Location = new System.Drawing.Point(3, 30);
     this.paSuperior.Size = new System.Drawing.Size(999, 146);
     //
     // laTitulo
     //
     this.laTitulo.Dock = System.Windows.Forms.DockStyle.None;
     this.laTitulo.Size = new System.Drawing.Size(602, 27);
     this.laTitulo.Text = "Registro de Recepción";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Location = new System.Drawing.Point(0, 25);
     this.thePanelTab1.Size = new System.Drawing.Size(1013, 637);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1005, 608);
     //
     // paSupBotones
     //
     this.paSupBotones.Controls.Add(this.ucToolStrip1);
     this.paSupBotones.Padding = new System.Windows.Forms.Padding(0);
     this.paSupBotones.Size = new System.Drawing.Size(1013, 25);
     this.paSupBotones.Visible = true;
     //
     // gcShowColumns
     //
     this.gcShowColumns.Controls.Add(this.checkEdit10);
     this.gcShowColumns.Controls.Add(this.checkEdit9);
     this.gcShowColumns.Location = new System.Drawing.Point(230, 8);
     this.gcShowColumns.Name = "gcShowColumns";
     this.gcShowColumns.Size = new System.Drawing.Size(176, 46);
     this.gcShowColumns.TabIndex = 24;
     this.gcShowColumns.Text = "Mostrar columnas";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(96, 21);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "Métodos";
     this.checkEdit10.Size = new System.Drawing.Size(75, 19);
     this.checkEdit10.TabIndex = 23;
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 21);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "Datos";
     this.checkEdit9.Size = new System.Drawing.Size(75, 19);
     this.checkEdit9.TabIndex = 23;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.paDelete);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel7.Location = new System.Drawing.Point(492, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(53, 66);
     this.panel7.TabIndex = 22;
     //
     // paDelete
     //
     this.paDelete.AllowDrop = true;
     this.paDelete.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.paDelete.BackgroundImage = global::LimsProject.Properties.Resources.delete_column;
     this.paDelete.Location = new System.Drawing.Point(19, 2);
     this.paDelete.Name = "paDelete";
     this.paDelete.Size = new System.Drawing.Size(31, 32);
     this.paDelete.TabIndex = 21;
     this.paDelete.DragDrop += new System.Windows.Forms.DragEventHandler(this.paDelete_DragDrop);
     this.paDelete.DragEnter += new System.Windows.Forms.DragEventHandler(this.paDelete_DragEnter);
     //
     // tbResidue
     //
     this.tbResidue.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbResidue.Location = new System.Drawing.Point(82, 25);
     this.tbResidue.Name = "tbResidue";
     this.tbResidue.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbResidue.Properties.Appearance.Options.UseBackColor = true;
     this.tbResidue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbResidue.Properties.Mask.EditMask = "n2";
     this.tbResidue.Size = new System.Drawing.Size(87, 20);
     this.tbResidue.TabIndex = 17;
     //
     // tbAmortization
     //
     this.tbAmortization.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAmortization.Location = new System.Drawing.Point(82, 5);
     this.tbAmortization.Name = "tbAmortization";
     this.tbAmortization.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbAmortization.Properties.Appearance.Options.UseBackColor = true;
     this.tbAmortization.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAmortization.Properties.Mask.EditMask = "n2";
     this.tbAmortization.Size = new System.Drawing.Size(87, 20);
     this.tbAmortization.TabIndex = 17;
     this.tbAmortization.EditValueChanged += new System.EventHandler(this.tbAmortization_EditValueChanged);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.tbTotalIgv);
     this.panel5.Controls.Add(this.tbTotalAmount);
     this.panel5.Controls.Add(this.tbSubTotalAmount);
     this.panel5.Controls.Add(this.label7);
     this.panel5.Controls.Add(this.label5);
     this.panel5.Controls.Add(this.label4);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel5.Location = new System.Drawing.Point(545, 2);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(152, 66);
     this.panel5.TabIndex = 22;
     //
     // tbTotalIgv
     //
     this.tbTotalIgv.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalIgv.Location = new System.Drawing.Point(58, 23);
     this.tbTotalIgv.Name = "tbTotalIgv";
     this.tbTotalIgv.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalIgv.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalIgv.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalIgv.Properties.Mask.EditMask = "n2";
     this.tbTotalIgv.Properties.ReadOnly = true;
     this.tbTotalIgv.Size = new System.Drawing.Size(87, 20);
     this.tbTotalIgv.TabIndex = 17;
     this.tbTotalIgv.TabStop = false;
     //
     // tbTotalAmount
     //
     this.tbTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalAmount.Location = new System.Drawing.Point(58, 43);
     this.tbTotalAmount.Name = "tbTotalAmount";
     this.tbTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbTotalAmount.Properties.ReadOnly = true;
     this.tbTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbTotalAmount.TabIndex = 17;
     this.tbTotalAmount.TabStop = false;
     //
     // tbSubTotalAmount
     //
     this.tbSubTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbSubTotalAmount.Location = new System.Drawing.Point(58, 3);
     this.tbSubTotalAmount.Name = "tbSubTotalAmount";
     this.tbSubTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbSubTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbSubTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbSubTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbSubTotalAmount.Properties.ReadOnly = true;
     this.tbSubTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbSubTotalAmount.TabIndex = 17;
     this.tbSubTotalAmount.TabStop = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 46);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 13);
     this.label7.TabIndex = 16;
     this.label7.Text = "Total:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 26);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(25, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Igv:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 6);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(52, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Sub total:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(10, 8);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Amortización:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(12, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(37, 13);
     this.label10.TabIndex = 16;
     this.label10.Text = "Saldo:";
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(542, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(191, 77);
     this.panel6.TabIndex = 3;
     //
     // gcReception
     //
     this.gcReception.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReception.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Enabled = false;
     this.gcReception.EmbeddedNavigator.Name = "";
     this.gcReception.Location = new System.Drawing.Point(0, 0);
     this.gcReception.MainView = this.gvReception;
     this.gcReception.Name = "gcReception";
     this.gcReception.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repDescription,
     this.repSelect,
     this.repResult,
     this.repSendReport,
     this.repLink,
     this.repDesLink,
     this.repProcedence,
     this.repSample,
     this.repEnvelope_sealed});
     this.gcReception.Size = new System.Drawing.Size(699, 288);
     this.gcReception.TabIndex = 1;
     this.gcReception.UseEmbeddedNavigator = true;
     this.gcReception.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReception});
     this.gcReception.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseDown);
     this.gcReception.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseMove);
     //
     // gvReception
     //
     this.gvReception.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReception.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Empty.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReception.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReception.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvReception.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReception.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseFont = true;
     this.gvReception.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HeaderPanel.BackColor = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReception.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReception.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.Preview.Options.UseBackColor = true;
     this.gvReception.Appearance.Preview.Options.UseForeColor = true;
     this.gvReception.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.Row.Options.UseBackColor = true;
     this.gvReception.Appearance.Row.Options.UseForeColor = true;
     this.gvReception.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvReception.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReception.ColumnPanelRowHeight = 125;
     this.gvReception.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRec_idrecep_sample_detail,
     this.gcRec_OrderSample,
     this.gcRec_Description,
     this.gcRec_Idmr_detail,
     this.gcRec_Type_Sample,
     this.gcRec_Procedence,
     this.gcRec_Code,
     this.gcRec_Cod_interno,
     this.gcRec_NameSample,
     this.gcRec_Flag_envelope_sealed,
     this.gcRec_CantKg,
     this.gcRec_Reject,
     this.gcRec_Counter_Sample,
     this.gcRec_Days,
     this.gcRec_Cost,
     this.gcDyn1,
     this.gcDyn2,
     this.gcDyn3,
     this.gcDyn4,
     this.gcDyn5,
     this.gcDyn6,
     this.gcDyn7,
     this.gcDyn8,
     this.gcDyn9,
     this.gcDyn10,
     this.gcDyn11,
     this.gcDyn12,
     this.gcDyn13,
     this.gcDyn14,
     this.gcDyn15,
     this.gcDyn16,
     this.gcDyn17,
     this.gcDyn18,
     this.gcDyn19,
     this.gcDyn20,
     this.gcAgua_Code,
     this.gcAgua_Cod_interno,
     this.gcAgua_Date,
     this.gcAgua_Hour,
     this.gcAgua_Cod_matrix,
     this.gcAgua_Cod_campo,
     this.gcAgua_NameSample,
     this.gcAgua_Ubigeo,
     this.gcAgua_UTM,
     this.gcAgua_Num_bottle_plastic,
     this.gcAgua_Num_bottle_glass,
     this.gcAgua_Volumen});
     this.gvReception.GridControl = this.gcReception;
     this.gvReception.Images = this.imageList1;
     this.gvReception.Name = "gvReception";
     this.gvReception.OptionsCustomization.AllowColumnMoving = false;
     this.gvReception.OptionsCustomization.AllowSort = false;
     this.gvReception.OptionsFilter.AllowColumnMRUFilterList = false;
     this.gvReception.OptionsFilter.AllowMRUFilterList = false;
     this.gvReception.OptionsSelection.MultiSelect = true;
     this.gvReception.OptionsView.ColumnAutoWidth = false;
     this.gvReception.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReception.OptionsView.EnableAppearanceOddRow = true;
     this.gvReception.OptionsView.ShowFilterPanel = false;
     this.gvReception.OptionsView.ShowGroupPanel = false;
     this.gvReception.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gvReception_CustomDrawColumnHeader);
     this.gvReception.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReception_RowCellStyle);
     this.gvReception.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReception_InitNewRow);
     this.gvReception.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReception_FocusedRowChanged);
     this.gvReception.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvReception_CellValueChanging);
     this.gvReception.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gvReception_KeyDown);
     this.gvReception.Click += new System.EventHandler(this.gvReception_Click);
     this.gvReception.RowCountChanged += new System.EventHandler(this.gvReception_RowCountChanged);
     //
     // gcRec_idrecep_sample_detail
     //
     this.gcRec_idrecep_sample_detail.Caption = "gridColumn1";
     this.gcRec_idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gcRec_idrecep_sample_detail.Name = "gcRec_idrecep_sample_detail";
     //
     // gcRec_OrderSample
     //
     this.gcRec_OrderSample.Caption = "N°";
     this.gcRec_OrderSample.FieldName = "Order_sample";
     this.gcRec_OrderSample.Name = "gcRec_OrderSample";
     this.gcRec_OrderSample.OptionsColumn.AllowEdit = false;
     this.gcRec_OrderSample.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gcRec_OrderSample.Visible = true;
     this.gcRec_OrderSample.VisibleIndex = 0;
     this.gcRec_OrderSample.Width = 32;
     //
     // gcRec_Description
     //
     this.gcRec_Description.Caption = "Descripción";
     this.gcRec_Description.ColumnEdit = this.repDescription;
     this.gcRec_Description.FieldName = "Cod_des_sample";
     this.gcRec_Description.Name = "gcRec_Description";
     this.gcRec_Description.Visible = true;
     this.gcRec_Description.VisibleIndex = 1;
     this.gcRec_Description.Width = 108;
     //
     // repDescription
     //
     this.repDescription.AutoHeight = false;
     serializableAppearanceObject1.BackColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BackColor2 = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BorderColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.Options.UseBackColor = true;
     serializableAppearanceObject1.Options.UseBorderColor = true;
     this.repDescription.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1)});
     this.repDescription.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_des_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description")});
     this.repDescription.DisplayMember = "Description";
     this.repDescription.Name = "repDescription";
     this.repDescription.NullText = "Seleccionar";
     this.repDescription.ShowHeader = false;
     this.repDescription.ValueMember = "Cod_des_sample";
     this.repDescription.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repDescription_ButtonClick);
     this.repDescription.EditValueChanged += new System.EventHandler(this.repDescription_EditValueChanged);
     //
     // gcRec_Idmr_detail
     //
     this.gcRec_Idmr_detail.Caption = "Idmr_detail";
     this.gcRec_Idmr_detail.FieldName = "Idmr_detail";
     this.gcRec_Idmr_detail.Name = "gcRec_Idmr_detail";
     //
     // gcRec_Type_Sample
     //
     this.gcRec_Type_Sample.Caption = "Tipo de Muestra";
     this.gcRec_Type_Sample.FieldName = "Cod_type_sample";
     this.gcRec_Type_Sample.Name = "gcRec_Type_Sample";
     this.gcRec_Type_Sample.Width = 125;
     //
     // gcRec_Procedence
     //
     this.gcRec_Procedence.Caption = "Procedencia";
     this.gcRec_Procedence.ColumnEdit = this.repProcedence;
     this.gcRec_Procedence.FieldName = "Procedence";
     this.gcRec_Procedence.Name = "gcRec_Procedence";
     this.gcRec_Procedence.Visible = true;
     this.gcRec_Procedence.VisibleIndex = 2;
     this.gcRec_Procedence.Width = 113;
     //
     // repProcedence
     //
     this.repProcedence.AutoHeight = false;
     this.repProcedence.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar)});
     this.repProcedence.Name = "repProcedence";
     this.repProcedence.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProcedence_ButtonClick);
     //
     // gcRec_Code
     //
     this.gcRec_Code.Caption = "Código";
     this.gcRec_Code.FieldName = "Cod_sample";
     this.gcRec_Code.Name = "gcRec_Code";
     this.gcRec_Code.OptionsColumn.AllowEdit = false;
     this.gcRec_Code.Visible = true;
     this.gcRec_Code.VisibleIndex = 3;
     this.gcRec_Code.Width = 82;
     //
     // gcRec_Cod_interno
     //
     this.gcRec_Cod_interno.Caption = "Cod_interno";
     this.gcRec_Cod_interno.FieldName = "Cod_interno";
     this.gcRec_Cod_interno.Name = "gcRec_Cod_interno";
     //
     // gcRec_NameSample
     //
     this.gcRec_NameSample.Caption = "Nombre ";
     this.gcRec_NameSample.FieldName = "Name_sample";
     this.gcRec_NameSample.Name = "gcRec_NameSample";
     this.gcRec_NameSample.Visible = true;
     this.gcRec_NameSample.VisibleIndex = 4;
     this.gcRec_NameSample.Width = 114;
     //
     // gcRec_Flag_envelope_sealed
     //
     this.gcRec_Flag_envelope_sealed.Caption = "Sobre sellado";
     this.gcRec_Flag_envelope_sealed.ColumnEdit = this.repEnvelope_sealed;
     this.gcRec_Flag_envelope_sealed.FieldName = "Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Name = "gcRec_Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Visible = true;
     this.gcRec_Flag_envelope_sealed.VisibleIndex = 5;
     this.gcRec_Flag_envelope_sealed.Width = 41;
     //
     // repEnvelope_sealed
     //
     this.repEnvelope_sealed.AutoHeight = false;
     this.repEnvelope_sealed.Name = "repEnvelope_sealed";
     //
     // gcRec_CantKg
     //
     this.gcRec_CantKg.Caption = "Cant (kg)";
     this.gcRec_CantKg.FieldName = "Amount_weight";
     this.gcRec_CantKg.Name = "gcRec_CantKg";
     this.gcRec_CantKg.Visible = true;
     this.gcRec_CantKg.VisibleIndex = 6;
     this.gcRec_CantKg.Width = 52;
     //
     // gcRec_Reject
     //
     this.gcRec_Reject.Caption = "Rechazo";
     this.gcRec_Reject.FieldName = "Flag_reject";
     this.gcRec_Reject.ImageIndex = 9;
     this.gcRec_Reject.Name = "gcRec_Reject";
     this.gcRec_Reject.Visible = true;
     this.gcRec_Reject.VisibleIndex = 7;
     this.gcRec_Reject.Width = 50;
     //
     // gcRec_Counter_Sample
     //
     this.gcRec_Counter_Sample.Caption = "Contramuestra";
     this.gcRec_Counter_Sample.FieldName = "Flag_counter_sample";
     this.gcRec_Counter_Sample.Name = "gcRec_Counter_Sample";
     this.gcRec_Counter_Sample.Visible = true;
     this.gcRec_Counter_Sample.VisibleIndex = 8;
     this.gcRec_Counter_Sample.Width = 50;
     //
     // gcRec_Days
     //
     this.gcRec_Days.Caption = "Entrega(dias)";
     this.gcRec_Days.FieldName = "Analisys_time";
     this.gcRec_Days.Name = "gcRec_Days";
     this.gcRec_Days.Width = 41;
     //
     // gcRec_Cost
     //
     this.gcRec_Cost.Caption = "Costo";
     this.gcRec_Cost.FieldName = "Cost_sample";
     this.gcRec_Cost.Name = "gcRec_Cost";
     this.gcRec_Cost.Visible = true;
     this.gcRec_Cost.VisibleIndex = 9;
     this.gcRec_Cost.Width = 50;
     //
     // gcDyn1
     //
     this.gcDyn1.Caption = "gridColumn1";
     this.gcDyn1.ColumnEdit = this.repSelect;
     this.gcDyn1.FieldName = "rec1";
     this.gcDyn1.Name = "gcDyn1";
     this.gcDyn1.Width = 40;
     //
     // repSelect
     //
     this.repSelect.AutoHeight = false;
     this.repSelect.Name = "repSelect";
     //
     // gcDyn2
     //
     this.gcDyn2.Caption = "gridColumn2";
     this.gcDyn2.ColumnEdit = this.repSelect;
     this.gcDyn2.FieldName = "rec2";
     this.gcDyn2.Name = "gcDyn2";
     this.gcDyn2.Width = 40;
     //
     // gcDyn3
     //
     this.gcDyn3.Caption = "gridColumn3";
     this.gcDyn3.ColumnEdit = this.repSelect;
     this.gcDyn3.FieldName = "rec3";
     this.gcDyn3.Name = "gcDyn3";
     this.gcDyn3.Width = 35;
     //
     // gcDyn4
     //
     this.gcDyn4.Caption = "gridColumn4";
     this.gcDyn4.ColumnEdit = this.repSelect;
     this.gcDyn4.FieldName = "rec4";
     this.gcDyn4.Name = "gcDyn4";
     this.gcDyn4.Width = 35;
     //
     // gcDyn5
     //
     this.gcDyn5.Caption = "gridColumn5";
     this.gcDyn5.ColumnEdit = this.repSelect;
     this.gcDyn5.FieldName = "rec5";
     this.gcDyn5.Name = "gcDyn5";
     this.gcDyn5.Width = 35;
     //
     // gcDyn6
     //
     this.gcDyn6.Caption = "gridColumn6";
     this.gcDyn6.ColumnEdit = this.repSelect;
     this.gcDyn6.FieldName = "rec6";
     this.gcDyn6.Name = "gcDyn6";
     this.gcDyn6.Width = 35;
     //
     // gcDyn7
     //
     this.gcDyn7.Caption = "gridColumn7";
     this.gcDyn7.ColumnEdit = this.repSelect;
     this.gcDyn7.FieldName = "rec7";
     this.gcDyn7.Name = "gcDyn7";
     this.gcDyn7.Width = 35;
     //
     // gcDyn8
     //
     this.gcDyn8.Caption = "gridColumn8";
     this.gcDyn8.ColumnEdit = this.repSelect;
     this.gcDyn8.FieldName = "rec8";
     this.gcDyn8.Name = "gcDyn8";
     this.gcDyn8.Width = 35;
     //
     // gcDyn9
     //
     this.gcDyn9.Caption = "gridColumn9";
     this.gcDyn9.ColumnEdit = this.repSelect;
     this.gcDyn9.FieldName = "rec9";
     this.gcDyn9.Name = "gcDyn9";
     this.gcDyn9.Width = 35;
     //
     // gcDyn10
     //
     this.gcDyn10.Caption = "gridColumn10";
     this.gcDyn10.ColumnEdit = this.repSelect;
     this.gcDyn10.FieldName = "rec10";
     this.gcDyn10.Name = "gcDyn10";
     this.gcDyn10.Width = 35;
     //
     // gcDyn11
     //
     this.gcDyn11.Caption = "gridColumn11";
     this.gcDyn11.ColumnEdit = this.repSelect;
     this.gcDyn11.FieldName = "rec11";
     this.gcDyn11.Name = "gcDyn11";
     this.gcDyn11.Width = 35;
     //
     // gcDyn12
     //
     this.gcDyn12.Caption = "gridColumn12";
     this.gcDyn12.ColumnEdit = this.repSelect;
     this.gcDyn12.FieldName = "rec12";
     this.gcDyn12.Name = "gcDyn12";
     this.gcDyn12.Width = 35;
     //
     // gcDyn13
     //
     this.gcDyn13.Caption = "gridColumn13";
     this.gcDyn13.ColumnEdit = this.repSelect;
     this.gcDyn13.FieldName = "rec13";
     this.gcDyn13.Name = "gcDyn13";
     this.gcDyn13.Width = 35;
     //
     // gcDyn14
     //
     this.gcDyn14.Caption = "gridColumn14";
     this.gcDyn14.ColumnEdit = this.repSelect;
     this.gcDyn14.FieldName = "rec14";
     this.gcDyn14.Name = "gcDyn14";
     this.gcDyn14.Width = 35;
     //
     // gcDyn15
     //
     this.gcDyn15.Caption = "gridColumn15";
     this.gcDyn15.ColumnEdit = this.repSelect;
     this.gcDyn15.FieldName = "rec15";
     this.gcDyn15.Name = "gcDyn15";
     this.gcDyn15.Width = 35;
     //
     // gcDyn16
     //
     this.gcDyn16.Caption = "gridColumn16";
     this.gcDyn16.ColumnEdit = this.repSelect;
     this.gcDyn16.FieldName = "rec16";
     this.gcDyn16.Name = "gcDyn16";
     this.gcDyn16.Width = 35;
     //
     // gcDyn17
     //
     this.gcDyn17.Caption = "gridColumn17";
     this.gcDyn17.ColumnEdit = this.repSelect;
     this.gcDyn17.FieldName = "rec17";
     this.gcDyn17.Name = "gcDyn17";
     this.gcDyn17.Width = 35;
     //
     // gcDyn18
     //
     this.gcDyn18.Caption = "gridColumn18";
     this.gcDyn18.ColumnEdit = this.repSelect;
     this.gcDyn18.FieldName = "rec18";
     this.gcDyn18.Name = "gcDyn18";
     this.gcDyn18.Width = 35;
     //
     // gcDyn19
     //
     this.gcDyn19.Caption = "gridColumn19";
     this.gcDyn19.ColumnEdit = this.repSelect;
     this.gcDyn19.FieldName = "rec19";
     this.gcDyn19.Name = "gcDyn19";
     this.gcDyn19.Width = 35;
     //
     // gcDyn20
     //
     this.gcDyn20.Caption = "gridColumn20";
     this.gcDyn20.ColumnEdit = this.repSelect;
     this.gcDyn20.FieldName = "rec20";
     this.gcDyn20.Name = "gcDyn20";
     this.gcDyn20.Width = 35;
     //
     // gcAgua_Code
     //
     this.gcAgua_Code.Caption = "Código";
     this.gcAgua_Code.Name = "gcAgua_Code";
     //
     // gcAgua_Cod_interno
     //
     this.gcAgua_Cod_interno.Caption = "Cod_interno";
     this.gcAgua_Cod_interno.Name = "gcAgua_Cod_interno";
     //
     // gcAgua_Date
     //
     this.gcAgua_Date.Caption = "Fecha";
     this.gcAgua_Date.Name = "gcAgua_Date";
     //
     // gcAgua_Hour
     //
     this.gcAgua_Hour.Caption = "Hora";
     this.gcAgua_Hour.Name = "gcAgua_Hour";
     //
     // gcAgua_Cod_matrix
     //
     this.gcAgua_Cod_matrix.Caption = "Matriz";
     this.gcAgua_Cod_matrix.Name = "gcAgua_Cod_matrix";
     //
     // gcAgua_Cod_campo
     //
     this.gcAgua_Cod_campo.Caption = "Código de campo";
     this.gcAgua_Cod_campo.Name = "gcAgua_Cod_campo";
     //
     // gcAgua_NameSample
     //
     this.gcAgua_NameSample.Caption = "Nombre de muestra";
     this.gcAgua_NameSample.Name = "gcAgua_NameSample";
     //
     // gcAgua_Ubigeo
     //
     this.gcAgua_Ubigeo.Caption = "Zona, Urb, AAHH / Dist. / Prov. / Depart.";
     this.gcAgua_Ubigeo.Name = "gcAgua_Ubigeo";
     //
     // gcAgua_UTM
     //
     this.gcAgua_UTM.Caption = "Punto de muestreo y/o coordenadas UTM ";
     this.gcAgua_UTM.Name = "gcAgua_UTM";
     //
     // gcAgua_Num_bottle_plastic
     //
     this.gcAgua_Num_bottle_plastic.Caption = "N°Frascos de vidrio";
     this.gcAgua_Num_bottle_plastic.Name = "gcAgua_Num_bottle_plastic";
     //
     // gcAgua_Num_bottle_glass
     //
     this.gcAgua_Num_bottle_glass.Caption = "N°Frascos de plastico";
     this.gcAgua_Num_bottle_glass.Name = "gcAgua_Num_bottle_glass";
     //
     // gcAgua_Volumen
     //
     this.gcAgua_Volumen.Caption = "Volumen (L)";
     this.gcAgua_Volumen.Name = "gcAgua_Volumen";
     //
     // repResult
     //
     this.repResult.AutoHeight = false;
     this.repResult.Name = "repResult";
     //
     // repSendReport
     //
     this.repSendReport.AutoHeight = false;
     this.repSendReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Right)});
     this.repSendReport.Name = "repSendReport";
     //
     // repLink
     //
     this.repLink.AutoHeight = false;
     this.repLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.attach2)});
     this.repLink.Name = "repLink";
     this.repLink.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repLink_ButtonClick);
     //
     // repDesLink
     //
     this.repDesLink.AutoHeight = false;
     this.repDesLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDesLink.Name = "repDesLink";
     //
     // repSample
     //
     this.repSample.AutoHeight = false;
     this.repSample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repSample.Name = "repSample";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl1.Appearance.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl1.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl1.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Location = new System.Drawing.Point(11, 29);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.PaintStyleName = "PropertyView";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(534, 114);
     this.xtraTabControl1.TabIndex = 4;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3,
     this.xtraTabPage6,
     this.xtraTabPage1});
     this.xtraTabControl1.Text = "Anexos";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.tbFax);
     this.xtraTabPage3.Controls.Add(this.tbClientPhone);
     this.xtraTabPage3.Controls.Add(this.tbClientRuc);
     this.xtraTabPage3.Controls.Add(this.tbClientDomicile);
     this.xtraTabPage3.Controls.Add(this.label9);
     this.xtraTabPage3.Controls.Add(this.label28);
     this.xtraTabPage3.Controls.Add(this.label11);
     this.xtraTabPage3.Controls.Add(this.label8);
     this.xtraTabPage3.Controls.Add(this.label6);
     this.xtraTabPage3.Controls.Add(this.cbCompany);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage3.Text = "Cliente";
     //
     // tbFax
     //
     this.tbFax.Location = new System.Drawing.Point(176, 54);
     this.tbFax.Name = "tbFax";
     this.tbFax.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbFax.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbFax.Size = new System.Drawing.Size(74, 20);
     this.tbFax.TabIndex = 6;
     //
     // tbClientPhone
     //
     this.tbClientPhone.Location = new System.Drawing.Point(66, 54);
     this.tbClientPhone.Name = "tbClientPhone";
     this.tbClientPhone.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbClientPhone.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientPhone.Size = new System.Drawing.Size(74, 20);
     this.tbClientPhone.TabIndex = 6;
     //
     // tbClientRuc
     //
     this.tbClientRuc.Location = new System.Drawing.Point(367, 12);
     this.tbClientRuc.Name = "tbClientRuc";
     this.tbClientRuc.Properties.Mask.EditMask = "\\d{0,11}";
     this.tbClientRuc.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientRuc.Size = new System.Drawing.Size(123, 20);
     this.tbClientRuc.TabIndex = 3;
     //
     // tbClientDomicile
     //
     this.tbClientDomicile.Location = new System.Drawing.Point(66, 33);
     this.tbClientDomicile.Name = "tbClientDomicile";
     this.tbClientDomicile.Size = new System.Drawing.Size(424, 20);
     this.tbClientDomicile.TabIndex = 4;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(331, 15);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(30, 13);
     this.label9.TabIndex = 9;
     this.label9.Text = "Ruc:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(143, 57);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(27, 13);
     this.label28.TabIndex = 9;
     this.label28.Text = "Fax:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(11, 57);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(25, 13);
     this.label11.TabIndex = 9;
     this.label11.Text = "Tel:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(52, 13);
     this.label8.TabIndex = 9;
     this.label8.Text = "Domicilio:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(11, 15);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(47, 13);
     this.label6.TabIndex = 9;
     this.label6.Text = "Nombre:";
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(66, 12);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(259, 20);
     this.cbCompany.TabIndex = 2;
     this.cbCompany.ProcessNewValue += new DevExpress.XtraEditors.Controls.ProcessNewValueEventHandler(this.cbClientName_ProcessNewValue);
     this.cbCompany.EditValueChanged += new System.EventHandler(this.cbClientName_EditValueChanged);
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.gcContact);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage6.Text = "Contactos";
     //
     // gcContact
     //
     this.gcContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcContact.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Name = "";
     this.gcContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gcContact.Location = new System.Drawing.Point(0, 0);
     this.gcContact.MainView = this.gvContact;
     this.gcContact.Name = "gcContact";
     this.gcContact.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repPerson_type,
     this.repNum,
     this.repCellPhone,
     this.repPhone});
     this.gcContact.Size = new System.Drawing.Size(532, 93);
     this.gcContact.TabIndex = 0;
     this.gcContact.UseEmbeddedNavigator = true;
     this.gcContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCon_Idrecep_company_person,
     this.gcCon_Idperson,
     this.gcCon_Idcompany,
     this.gcCon_Idrecep_sample,
     this.gcCon_Allname,
     this.gcCon_Mail,
     this.gcCon_Person_type,
     this.gcCon_Phone,
     this.gcCon_Cellphone});
     this.gvContact.GridControl = this.gcContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsView.ShowGroupPanel = false;
     this.gvContact.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvContact_InitNewRow);
     //
     // gcCon_Idrecep_company_person
     //
     this.gcCon_Idrecep_company_person.Caption = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.FieldName = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.Name = "gcCon_Idrecep_company_person";
     //
     // gcCon_Idperson
     //
     this.gcCon_Idperson.Caption = "Idperson";
     this.gcCon_Idperson.FieldName = "Idperson";
     this.gcCon_Idperson.Name = "gcCon_Idperson";
     //
     // gcCon_Idcompany
     //
     this.gcCon_Idcompany.Caption = "Idcompany";
     this.gcCon_Idcompany.FieldName = "Idcompany";
     this.gcCon_Idcompany.Name = "gcCon_Idcompany";
     //
     // gcCon_Idrecep_sample
     //
     this.gcCon_Idrecep_sample.Caption = "Idrecep_sample";
     this.gcCon_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcCon_Idrecep_sample.Name = "gcCon_Idrecep_sample";
     //
     // gcCon_Allname
     //
     this.gcCon_Allname.Caption = "Nombre";
     this.gcCon_Allname.FieldName = "Allname";
     this.gcCon_Allname.Name = "gcCon_Allname";
     this.gcCon_Allname.Visible = true;
     this.gcCon_Allname.VisibleIndex = 0;
     this.gcCon_Allname.Width = 152;
     //
     // gcCon_Mail
     //
     this.gcCon_Mail.Caption = "Email";
     this.gcCon_Mail.FieldName = "Mail";
     this.gcCon_Mail.Name = "gcCon_Mail";
     this.gcCon_Mail.Visible = true;
     this.gcCon_Mail.VisibleIndex = 1;
     this.gcCon_Mail.Width = 122;
     //
     // gcCon_Person_type
     //
     this.gcCon_Person_type.Caption = "Tipo";
     this.gcCon_Person_type.ColumnEdit = this.repPerson_type;
     this.gcCon_Person_type.FieldName = "Person_type";
     this.gcCon_Person_type.Name = "gcCon_Person_type";
     this.gcCon_Person_type.Visible = true;
     this.gcCon_Person_type.VisibleIndex = 2;
     this.gcCon_Person_type.Width = 64;
     //
     // repPerson_type
     //
     this.repPerson_type.AutoHeight = false;
     this.repPerson_type.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPerson_type.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name")});
     this.repPerson_type.Name = "repPerson_type";
     this.repPerson_type.NullText = "";
     this.repPerson_type.ShowFooter = false;
     this.repPerson_type.ShowHeader = false;
     //
     // gcCon_Phone
     //
     this.gcCon_Phone.Caption = "Teléfono";
     this.gcCon_Phone.ColumnEdit = this.repPhone;
     this.gcCon_Phone.FieldName = "Phone";
     this.gcCon_Phone.Name = "gcCon_Phone";
     this.gcCon_Phone.Visible = true;
     this.gcCon_Phone.VisibleIndex = 3;
     this.gcCon_Phone.Width = 85;
     //
     // repPhone
     //
     this.repPhone.AutoHeight = false;
     this.repPhone.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,2}\\))\\d{1,10}";
     this.repPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repPhone.Name = "repPhone";
     //
     // gcCon_Cellphone
     //
     this.gcCon_Cellphone.Caption = "Celular";
     this.gcCon_Cellphone.ColumnEdit = this.repCellPhone;
     this.gcCon_Cellphone.FieldName = "Cellphone";
     this.gcCon_Cellphone.Name = "gcCon_Cellphone";
     this.gcCon_Cellphone.Visible = true;
     this.gcCon_Cellphone.VisibleIndex = 4;
     this.gcCon_Cellphone.Width = 88;
     //
     // repCellPhone
     //
     this.repCellPhone.AutoHeight = false;
     this.repCellPhone.Mask.EditMask = "(\\(\\d{1,3}\\))?\\d{1,3}-\\d{1,3}-\\d{1,6}";
     this.repCellPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repCellPhone.Name = "repCellPhone";
     //
     // repNum
     //
     this.repNum.AutoHeight = false;
     this.repNum.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repNum.IsFloatValue = false;
     this.repNum.Mask.EditMask = "N00";
     this.repNum.Name = "repNum";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.ckDispatchFax);
     this.xtraTabPage1.Controls.Add(this.ckDispatchPerson);
     this.xtraTabPage1.Controls.Add(this.ckDispatchTransport);
     this.xtraTabPage1.Controls.Add(this.ckDispatchCurier);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage1.Text = "Envío";
     //
     // ckDispatchFax
     //
     this.ckDispatchFax.Location = new System.Drawing.Point(141, 15);
     this.ckDispatchFax.Name = "ckDispatchFax";
     this.ckDispatchFax.Properties.Caption = "Fax";
     this.ckDispatchFax.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchFax.TabIndex = 0;
     //
     // ckDispatchPerson
     //
     this.ckDispatchPerson.Location = new System.Drawing.Point(20, 15);
     this.ckDispatchPerson.Name = "ckDispatchPerson";
     this.ckDispatchPerson.Properties.Caption = "Personal";
     this.ckDispatchPerson.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchPerson.TabIndex = 0;
     this.ckDispatchPerson.CheckedChanged += new System.EventHandler(this.ckDispatchPerson_CheckedChanged);
     //
     // ckDispatchTransport
     //
     this.ckDispatchTransport.Location = new System.Drawing.Point(20, 53);
     this.ckDispatchTransport.Name = "ckDispatchTransport";
     this.ckDispatchTransport.Properties.Caption = "Emp. Transporte";
     this.ckDispatchTransport.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchTransport.TabIndex = 0;
     this.ckDispatchTransport.CheckedChanged += new System.EventHandler(this.ckDispatchTransport_CheckedChanged);
     //
     // ckDispatchCurier
     //
     this.ckDispatchCurier.Location = new System.Drawing.Point(20, 34);
     this.ckDispatchCurier.Name = "ckDispatchCurier";
     this.ckDispatchCurier.Properties.Caption = "Curier";
     this.ckDispatchCurier.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchCurier.TabIndex = 0;
     this.ckDispatchCurier.CheckedChanged += new System.EventHandler(this.ckDispatchCurier_CheckedChanged);
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabOptionRight);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.Location = new System.Drawing.Point(699, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(294, 358);
     this.expandablePanel1.TabIndex = 2;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Métodos";
     //
     // tabOptionRight
     //
     this.tabOptionRight.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabOptionRight.Appearance.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tabOptionRight.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.tabOptionRight.AppearancePage.Header.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.tabOptionRight.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.tabOptionRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabOptionRight.Location = new System.Drawing.Point(0, 26);
     this.tabOptionRight.Name = "tabOptionRight";
     this.tabOptionRight.PaintStyleName = "PropertyView";
     this.tabOptionRight.SelectedTabPage = this.tpRightMethods;
     this.tabOptionRight.Size = new System.Drawing.Size(294, 332);
     this.tabOptionRight.TabIndex = 5;
     this.tabOptionRight.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpRightMethods,
     this.tpRightReports,
     this.tpRightAttach,
     this.tpRightProgram});
     this.tabOptionRight.Text = "Adjuntos";
     this.tabOptionRight.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabOptionRight_SelectedPageChanged);
     //
     // tpRightMethods
     //
     this.tpRightMethods.Controls.Add(this.lookUpEdit3);
     this.tpRightMethods.Controls.Add(this.gcMethods);
     this.tpRightMethods.Controls.Add(this.textEdit1);
     this.tpRightMethods.Name = "tpRightMethods";
     this.tpRightMethods.Size = new System.Drawing.Size(292, 311);
     this.tpRightMethods.Text = "Métodos";
     //
     // lookUpEdit3
     //
     this.lookUpEdit3.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit3.Name = "lookUpEdit3";
     this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit3.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit3.Properties.NullText = "Seleccionar";
     this.lookUpEdit3.Properties.ShowFooter = false;
     this.lookUpEdit3.Properties.ShowHeader = false;
     this.lookUpEdit3.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit3.TabIndex = 1;
     //
     // gcMethods
     //
     this.gcMethods.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcMethods.EmbeddedNavigator.Name = "";
     this.gcMethods.Location = new System.Drawing.Point(0, 0);
     this.gcMethods.MainView = this.gvMethods;
     this.gcMethods.Name = "gcMethods";
     this.gcMethods.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repAddColumn});
     this.gcMethods.Size = new System.Drawing.Size(292, 311);
     this.gcMethods.TabIndex = 1;
     this.gcMethods.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMethods});
     //
     // gvMethods
     //
     this.gvMethods.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvMethods.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Empty.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvMethods.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvMethods.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvMethods.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseFont = true;
     this.gvMethods.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvMethods.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.OddRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.Preview.Options.UseBackColor = true;
     this.gvMethods.Appearance.Preview.Options.UseForeColor = true;
     this.gvMethods.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.Row.Options.UseBackColor = true;
     this.gvMethods.Appearance.Row.Options.UseFont = true;
     this.gvMethods.Appearance.Row.Options.UseForeColor = true;
     this.gvMethods.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.VertLine.Options.UseBackColor = true;
     this.gvMethods.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcMet_Cod_template_method,
     this.gcMet_Cod_element,
     this.gcMet_Abbreviation,
     this.gcMet_Name_type_analisys,
     this.gcMet_Title,
     this.gcMet_TypeAnalisys,
     this.gcMet_Button,
     this.gcMet_Cost,
     this.gcMet_Unit1,
     this.gcMet_Unit_Name,
     this.gcMet_Idelement,
     this.gcMet_Idtemplate_method,
     this.gcMet_Analisys_time});
     this.gvMethods.GridControl = this.gcMethods;
     this.gvMethods.GroupCount = 1;
     this.gvMethods.Name = "gvMethods";
     this.gvMethods.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvMethods.OptionsView.ColumnAutoWidth = false;
     this.gvMethods.OptionsView.EnableAppearanceEvenRow = true;
     this.gvMethods.OptionsView.EnableAppearanceOddRow = true;
     this.gvMethods.OptionsView.ShowGroupPanel = false;
     this.gvMethods.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcMet_TypeAnalisys, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcMet_Cod_template_method
     //
     this.gcMet_Cod_template_method.Caption = "Cod.";
     this.gcMet_Cod_template_method.FieldName = "Cod_template_method";
     this.gcMet_Cod_template_method.Name = "gcMet_Cod_template_method";
     this.gcMet_Cod_template_method.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_template_method.Visible = true;
     this.gcMet_Cod_template_method.VisibleIndex = 1;
     this.gcMet_Cod_template_method.Width = 50;
     //
     // gcMet_Cod_element
     //
     this.gcMet_Cod_element.Caption = "Elemento";
     this.gcMet_Cod_element.FieldName = "Cod_element";
     this.gcMet_Cod_element.Name = "gcMet_Cod_element";
     this.gcMet_Cod_element.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_element.Visible = true;
     this.gcMet_Cod_element.VisibleIndex = 2;
     //
     // gcMet_Abbreviation
     //
     this.gcMet_Abbreviation.Caption = "Abreviación";
     this.gcMet_Abbreviation.FieldName = "Abbreviation";
     this.gcMet_Abbreviation.Name = "gcMet_Abbreviation";
     this.gcMet_Abbreviation.OptionsColumn.ReadOnly = true;
     this.gcMet_Abbreviation.Visible = true;
     this.gcMet_Abbreviation.VisibleIndex = 3;
     this.gcMet_Abbreviation.Width = 60;
     //
     // gcMet_Name_type_analisys
     //
     this.gcMet_Name_type_analisys.Caption = "Tipo de Análisis";
     this.gcMet_Name_type_analisys.FieldName = "Name_type_analisys";
     this.gcMet_Name_type_analisys.Name = "gcMet_Name_type_analisys";
     this.gcMet_Name_type_analisys.Visible = true;
     this.gcMet_Name_type_analisys.VisibleIndex = 5;
     //
     // gcMet_Title
     //
     this.gcMet_Title.Caption = "Título";
     this.gcMet_Title.FieldName = "Title";
     this.gcMet_Title.Name = "gcMet_Title";
     this.gcMet_Title.OptionsColumn.ReadOnly = true;
     this.gcMet_Title.Visible = true;
     this.gcMet_Title.VisibleIndex = 4;
     this.gcMet_Title.Width = 135;
     //
     // gcMet_TypeAnalisys
     //
     this.gcMet_TypeAnalisys.Caption = "Tipo de análisis";
     this.gcMet_TypeAnalisys.FieldName = "Name_type_analisys";
     this.gcMet_TypeAnalisys.Name = "gcMet_TypeAnalisys";
     //
     // gcMet_Button
     //
     this.gcMet_Button.Caption = "#";
     this.gcMet_Button.ColumnEdit = this.repAddColumn;
     this.gcMet_Button.Name = "gcMet_Button";
     this.gcMet_Button.Visible = true;
     this.gcMet_Button.VisibleIndex = 0;
     this.gcMet_Button.Width = 52;
     //
     // repAddColumn
     //
     this.repAddColumn.AutoHeight = false;
     this.repAddColumn.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Left)});
     this.repAddColumn.Name = "repAddColumn";
     this.repAddColumn.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repAddColumn.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repAddColumn_ButtonClick);
     //
     // gcMet_Cost
     //
     this.gcMet_Cost.Caption = "Cost";
     this.gcMet_Cost.FieldName = "Cost_method";
     this.gcMet_Cost.Name = "gcMet_Cost";
     //
     // gcMet_Unit1
     //
     this.gcMet_Unit1.Caption = "Unit";
     this.gcMet_Unit1.FieldName = "Idunit_result";
     this.gcMet_Unit1.Name = "gcMet_Unit1";
     //
     // gcMet_Unit_Name
     //
     this.gcMet_Unit_Name.Caption = "Name_unit";
     this.gcMet_Unit_Name.FieldName = "Name_unit";
     this.gcMet_Unit_Name.Name = "gcMet_Unit_Name";
     //
     // gcMet_Idelement
     //
     this.gcMet_Idelement.Caption = "Idelement";
     this.gcMet_Idelement.FieldName = "Idelement";
     this.gcMet_Idelement.Name = "gcMet_Idelement";
     //
     // gcMet_Idtemplate_method
     //
     this.gcMet_Idtemplate_method.Caption = "idtemplate_method";
     this.gcMet_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gcMet_Idtemplate_method.Name = "gcMet_Idtemplate_method";
     //
     // gcMet_Analisys_time
     //
     this.gcMet_Analisys_time.Caption = "Analysis_time";
     this.gcMet_Analisys_time.FieldName = "Analisys_time";
     this.gcMet_Analisys_time.Name = "gcMet_Analisys_time";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(452, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 3;
     //
     // tpRightReports
     //
     this.tpRightReports.Controls.Add(this.gcReport);
     this.tpRightReports.Controls.Add(this.groupControl1);
     this.tpRightReports.Name = "tpRightReports";
     this.tpRightReports.PageVisible = false;
     this.tpRightReports.Size = new System.Drawing.Size(292, 0);
     this.tpRightReports.Text = "Informes";
     //
     // gcReport
     //
     this.gcReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReport.EmbeddedNavigator.Name = "";
     this.gcReport.Location = new System.Drawing.Point(0, 53);
     this.gcReport.MainView = this.gvReport;
     this.gcReport.Name = "gcReport";
     this.gcReport.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repReportOption,
     this.repStatusReport,
     this.repDateReport,
     this.repTimeReport,
     this.repTypeReport});
     this.gcReport.Size = new System.Drawing.Size(292, 0);
     this.gcReport.TabIndex = 2;
     this.gcReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReport});
     //
     // gvReport
     //
     this.gvReport.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReport.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Empty.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReport.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReport.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReport.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseFont = true;
     this.gvReport.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReport.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReport.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReport.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.Preview.Options.UseBackColor = true;
     this.gvReport.Appearance.Preview.Options.UseForeColor = true;
     this.gvReport.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.Row.Options.UseBackColor = true;
     this.gvReport.Appearance.Row.Options.UseForeColor = true;
     this.gvReport.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReport.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRep_idrecep_sample_report,
     this.gcRep_order_report,
     this.gcRep_cod_recep_sample_report,
     this.gcRep_report_status,
     this.gcRep_type_report,
     this.gcRep_Option,
     this.gcRep_Str_cod_recep_sample_report,
     this.gcRep_Date_report});
     this.gvReport.GridControl = this.gcReport;
     this.gvReport.Name = "gvReport";
     this.gvReport.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReport.OptionsView.EnableAppearanceOddRow = true;
     this.gvReport.OptionsView.ShowGroupPanel = false;
     this.gvReport.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReport_RowCellStyle);
     this.gvReport.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReport_InitNewRow);
     this.gvReport.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReport_FocusedRowChanged);
     //
     // gcRep_idrecep_sample_report
     //
     this.gcRep_idrecep_sample_report.Caption = "idrecep_sample_report";
     this.gcRep_idrecep_sample_report.FieldName = "Idrecep_sample_report";
     this.gcRep_idrecep_sample_report.Name = "gcRep_idrecep_sample_report";
     //
     // gcRep_order_report
     //
     this.gcRep_order_report.Caption = "N°";
     this.gcRep_order_report.FieldName = "Order_report";
     this.gcRep_order_report.Name = "gcRep_order_report";
     this.gcRep_order_report.OptionsColumn.AllowEdit = false;
     this.gcRep_order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcRep_order_report.OptionsFilter.AllowFilter = false;
     this.gcRep_order_report.Visible = true;
     this.gcRep_order_report.VisibleIndex = 0;
     this.gcRep_order_report.Width = 23;
     //
     // gcRep_cod_recep_sample_report
     //
     this.gcRep_cod_recep_sample_report.Caption = "Código";
     this.gcRep_cod_recep_sample_report.FieldName = "Cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.Name = "gcRep_cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_cod_recep_sample_report.Width = 66;
     //
     // gcRep_report_status
     //
     this.gcRep_report_status.Caption = "Estado";
     this.gcRep_report_status.ColumnEdit = this.repStatusReport;
     this.gcRep_report_status.FieldName = "Report_status";
     this.gcRep_report_status.Name = "gcRep_report_status";
     this.gcRep_report_status.OptionsColumn.AllowEdit = false;
     this.gcRep_report_status.Visible = true;
     this.gcRep_report_status.VisibleIndex = 2;
     this.gcRep_report_status.Width = 74;
     //
     // repStatusReport
     //
     this.repStatusReport.AutoHeight = false;
     this.repStatusReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repStatusReport.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repStatusReport.Name = "repStatusReport";
     this.repStatusReport.NullText = "";
     this.repStatusReport.ShowFooter = false;
     this.repStatusReport.ShowHeader = false;
     //
     // gcRep_type_report
     //
     this.gcRep_type_report.Caption = "type_report";
     this.gcRep_type_report.FieldName = "Type_report";
     this.gcRep_type_report.Name = "gcRep_type_report";
     this.gcRep_type_report.Width = 69;
     //
     // gcRep_Option
     //
     this.gcRep_Option.Caption = "#";
     this.gcRep_Option.ColumnEdit = this.repReportOption;
     this.gcRep_Option.Name = "gcRep_Option";
     this.gcRep_Option.Visible = true;
     this.gcRep_Option.VisibleIndex = 3;
     this.gcRep_Option.Width = 81;
     //
     // repReportOption
     //
     this.repReportOption.AutoHeight = false;
     serializableAppearanceObject2.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject2.Options.UseFont = true;
     this.repReportOption.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "edit", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repReportOption.Name = "repReportOption";
     this.repReportOption.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repReportOption.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repReportOption_ButtonClick);
     //
     // gcRep_Str_cod_recep_sample_report
     //
     this.gcRep_Str_cod_recep_sample_report.Caption = "Cod. Interno";
     this.gcRep_Str_cod_recep_sample_report.FieldName = "Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.Name = "gcRep_Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_Str_cod_recep_sample_report.Visible = true;
     this.gcRep_Str_cod_recep_sample_report.VisibleIndex = 1;
     this.gcRep_Str_cod_recep_sample_report.Width = 123;
     //
     // gcRep_Date_report
     //
     this.gcRep_Date_report.Caption = "Date_report";
     this.gcRep_Date_report.FieldName = "Date_report";
     this.gcRep_Date_report.Name = "gcRep_Date_report";
     this.gcRep_Date_report.Width = 62;
     //
     // repDateReport
     //
     this.repDateReport.AutoHeight = false;
     this.repDateReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateReport.Name = "repDateReport";
     //
     // repTimeReport
     //
     this.repTimeReport.AutoHeight = false;
     this.repTimeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeReport.Name = "repTimeReport";
     //
     // repTypeReport
     //
     this.repTypeReport.AutoHeight = false;
     this.repTypeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repTypeReport.Name = "repTypeReport";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btMakePartialReport);
     this.groupControl1.Controls.Add(this.btMakeFinalReport);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(292, 53);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Crear Informe de Ensayo";
     //
     // btMakePartialReport
     //
     this.btMakePartialReport.AllowDrop = true;
     this.btMakePartialReport.Appearance.Options.UseTextOptions = true;
     this.btMakePartialReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakePartialReport.Location = new System.Drawing.Point(5, 23);
     this.btMakePartialReport.Name = "btMakePartialReport";
     this.btMakePartialReport.Size = new System.Drawing.Size(90, 25);
     this.btMakePartialReport.TabIndex = 0;
     this.btMakePartialReport.Text = "Informe Parcial";
     this.btMakePartialReport.Click += new System.EventHandler(this.btMakePartialReport_Click);
     //
     // btMakeFinalReport
     //
     this.btMakeFinalReport.AllowDrop = true;
     this.btMakeFinalReport.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btMakeFinalReport.Appearance.Options.UseForeColor = true;
     this.btMakeFinalReport.Appearance.Options.UseTextOptions = true;
     this.btMakeFinalReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakeFinalReport.Location = new System.Drawing.Point(101, 23);
     this.btMakeFinalReport.Name = "btMakeFinalReport";
     this.btMakeFinalReport.Size = new System.Drawing.Size(90, 25);
     this.btMakeFinalReport.TabIndex = 0;
     this.btMakeFinalReport.Text = "Informe Final";
     this.btMakeFinalReport.Click += new System.EventHandler(this.btMakeFinalReport_Click);
     //
     // tpRightAttach
     //
     this.tpRightAttach.Controls.Add(this.gcAttachFile);
     this.tpRightAttach.Controls.Add(this.groupControl2);
     this.tpRightAttach.Name = "tpRightAttach";
     this.tpRightAttach.PageVisible = false;
     this.tpRightAttach.Size = new System.Drawing.Size(292, 0);
     this.tpRightAttach.Text = "Adjuntar";
     //
     // gcAttachFile
     //
     this.gcAttachFile.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAttachFile.EmbeddedNavigator.Name = "";
     this.gcAttachFile.Location = new System.Drawing.Point(0, 53);
     this.gcAttachFile.MainView = this.gvAttachFile;
     this.gcAttachFile.Name = "gcAttachFile";
     this.gcAttachFile.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repButtons,
     this.repAttach_status,
     this.repAttach_file});
     this.gcAttachFile.Size = new System.Drawing.Size(292, 0);
     this.gcAttachFile.TabIndex = 4;
     this.gcAttachFile.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAttachFile});
     //
     // gvAttachFile
     //
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Empty.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvAttachFile.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvAttachFile.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvAttachFile.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseFont = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.OddRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.Preview.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Preview.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.Row.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Row.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvAttachFile.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAttachFile.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcAtt_Iddocument_recep,
     this.gcAtt_Idrecep_sample,
     this.gcAtt_FileName,
     this.gcAtt_Attach_status,
     this.gcAtt_Buttons,
     this.gcAtt_SourcePath,
     this.gcAtt_Order_file,
     this.gcAtt_Idrecep_sample_attach});
     this.gvAttachFile.GridControl = this.gcAttachFile;
     this.gvAttachFile.Name = "gvAttachFile";
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvAttachFile.OptionsView.EnableAppearanceEvenRow = true;
     this.gvAttachFile.OptionsView.EnableAppearanceOddRow = true;
     this.gvAttachFile.OptionsView.ShowGroupPanel = false;
     this.gvAttachFile.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvAttachFile_RowCellStyle);
     //
     // gcAtt_Iddocument_recep
     //
     this.gcAtt_Iddocument_recep.Caption = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.FieldName = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.Name = "gcAtt_Iddocument_recep";
     //
     // gcAtt_Idrecep_sample
     //
     this.gcAtt_Idrecep_sample.Caption = "gridColumn1";
     this.gcAtt_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcAtt_Idrecep_sample.Name = "gcAtt_Idrecep_sample";
     //
     // gcAtt_FileName
     //
     this.gcAtt_FileName.Caption = "Adjuntar Documento";
     this.gcAtt_FileName.ColumnEdit = this.repAttach_file;
     this.gcAtt_FileName.FieldName = "Name_file";
     this.gcAtt_FileName.Name = "gcAtt_FileName";
     this.gcAtt_FileName.Visible = true;
     this.gcAtt_FileName.VisibleIndex = 0;
     this.gcAtt_FileName.Width = 142;
     //
     // repAttach_file
     //
     this.repAttach_file.AutoHeight = false;
     serializableAppearanceObject3.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject3.Options.UseFont = true;
     this.repAttach_file.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Cargar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3)});
     this.repAttach_file.Name = "repAttach_file";
     this.repAttach_file.NullText = "";
     //
     // gcAtt_Attach_status
     //
     this.gcAtt_Attach_status.Caption = "Estado";
     this.gcAtt_Attach_status.ColumnEdit = this.repAttach_status;
     this.gcAtt_Attach_status.FieldName = "Attach_status";
     this.gcAtt_Attach_status.Name = "gcAtt_Attach_status";
     this.gcAtt_Attach_status.Visible = true;
     this.gcAtt_Attach_status.VisibleIndex = 1;
     this.gcAtt_Attach_status.Width = 99;
     //
     // repAttach_status
     //
     this.repAttach_status.AutoHeight = false;
     this.repAttach_status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repAttach_status.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Attach_status")});
     this.repAttach_status.Name = "repAttach_status";
     this.repAttach_status.NullText = "";
     this.repAttach_status.ShowFooter = false;
     this.repAttach_status.ShowHeader = false;
     //
     // gcAtt_Buttons
     //
     this.gcAtt_Buttons.Caption = "#";
     this.gcAtt_Buttons.ColumnEdit = this.repButtons;
     this.gcAtt_Buttons.Name = "gcAtt_Buttons";
     this.gcAtt_Buttons.Visible = true;
     this.gcAtt_Buttons.VisibleIndex = 2;
     this.gcAtt_Buttons.Width = 49;
     //
     // repButtons
     //
     this.repButtons.AutoHeight = false;
     serializableAppearanceObject4.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject4.Options.UseFont = true;
     this.repButtons.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4)});
     this.repButtons.Name = "repButtons";
     this.repButtons.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repButtons.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repButtons_ButtonClick);
     //
     // gcAtt_SourcePath
     //
     this.gcAtt_SourcePath.Caption = "Source path";
     this.gcAtt_SourcePath.FieldName = "Source_path";
     this.gcAtt_SourcePath.Name = "gcAtt_SourcePath";
     //
     // gcAtt_Order_file
     //
     this.gcAtt_Order_file.Caption = "Order_file";
     this.gcAtt_Order_file.FieldName = "Order_file";
     this.gcAtt_Order_file.Name = "gcAtt_Order_file";
     //
     // gcAtt_Idrecep_sample_attach
     //
     this.gcAtt_Idrecep_sample_attach.Caption = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.FieldName = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.Name = "gcAtt_Idrecep_sample_attach";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btNewFile);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(292, 53);
     this.groupControl2.TabIndex = 3;
     this.groupControl2.Text = "Adjuntar a partir de un archivo";
     //
     // btNewFile
     //
     this.btNewFile.AllowDrop = true;
     this.btNewFile.Appearance.Options.UseTextOptions = true;
     this.btNewFile.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btNewFile.Location = new System.Drawing.Point(5, 22);
     this.btNewFile.Name = "btNewFile";
     this.btNewFile.Size = new System.Drawing.Size(56, 25);
     this.btNewFile.TabIndex = 0;
     this.btNewFile.Text = "Nuevo";
     this.btNewFile.Click += new System.EventHandler(this.btNewFile_Click);
     //
     // tpRightProgram
     //
     this.tpRightProgram.Controls.Add(this.gcProgram);
     this.tpRightProgram.Controls.Add(this.groupControl3);
     this.tpRightProgram.Name = "tpRightProgram";
     this.tpRightProgram.PageVisible = false;
     this.tpRightProgram.Size = new System.Drawing.Size(292, 0);
     this.tpRightProgram.Text = "Programar";
     //
     // gcProgram
     //
     this.gcProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcProgram.EmbeddedNavigator.Name = "";
     this.gcProgram.Location = new System.Drawing.Point(0, 53);
     this.gcProgram.MainView = this.gvProgram;
     this.gcProgram.Name = "gcProgram";
     this.gcProgram.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repProgramButton,
     this.repProgramStatus,
     this.repDateProgram,
     this.repTimeProgram});
     this.gcProgram.Size = new System.Drawing.Size(292, 0);
     this.gcProgram.TabIndex = 4;
     this.gcProgram.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvProgram});
     //
     // gvProgram
     //
     this.gvProgram.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvProgram.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Empty.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvProgram.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvProgram.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvProgram.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvProgram.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseFont = true;
     this.gvProgram.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvProgram.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.OddRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.Preview.Options.UseBackColor = true;
     this.gvProgram.Appearance.Preview.Options.UseForeColor = true;
     this.gvProgram.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.Row.Options.UseBackColor = true;
     this.gvProgram.Appearance.Row.Options.UseForeColor = true;
     this.gvProgram.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvProgram.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.VertLine.Options.UseBackColor = true;
     this.gvProgram.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcProg_Idrecep_sample_program,
     this.gcProg_Order_report,
     this.gcProg_Cod_recep_sample_program,
     this.gcProg_Program_status,
     this.gridColumn6,
     this.gcProg_Date_report,
     this.gcProg_Time_report,
     this.gcProg_Str_cod_recep_sample_program});
     this.gvProgram.GridControl = this.gcProgram;
     this.gvProgram.Name = "gvProgram";
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvProgram.OptionsView.EnableAppearanceEvenRow = true;
     this.gvProgram.OptionsView.EnableAppearanceOddRow = true;
     this.gvProgram.OptionsView.ShowGroupPanel = false;
     this.gvProgram.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvProgram_RowCellStyle);
     this.gvProgram.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvProgram_InitNewRow);
     this.gvProgram.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvProgram_FocusedRowChanged);
     //
     // gcProg_Idrecep_sample_program
     //
     this.gcProg_Idrecep_sample_program.Caption = "idrecep_sample_report";
     this.gcProg_Idrecep_sample_program.FieldName = "Idrecep_sample_program";
     this.gcProg_Idrecep_sample_program.Name = "gcProg_Idrecep_sample_program";
     //
     // gcProg_Order_report
     //
     this.gcProg_Order_report.Caption = "N°";
     this.gcProg_Order_report.FieldName = "Order_report";
     this.gcProg_Order_report.Name = "gcProg_Order_report";
     this.gcProg_Order_report.OptionsColumn.AllowEdit = false;
     this.gcProg_Order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Order_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Order_report.Visible = true;
     this.gcProg_Order_report.VisibleIndex = 0;
     this.gcProg_Order_report.Width = 23;
     //
     // gcProg_Cod_recep_sample_program
     //
     this.gcProg_Cod_recep_sample_program.Caption = "Código";
     this.gcProg_Cod_recep_sample_program.FieldName = "Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.Name = "gcProg_Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Cod_recep_sample_program.Width = 63;
     //
     // gcProg_Program_status
     //
     this.gcProg_Program_status.Caption = "Estado";
     this.gcProg_Program_status.ColumnEdit = this.repProgramStatus;
     this.gcProg_Program_status.FieldName = "Program_status";
     this.gcProg_Program_status.Name = "gcProg_Program_status";
     this.gcProg_Program_status.OptionsColumn.AllowEdit = false;
     this.gcProg_Program_status.Width = 42;
     //
     // repProgramStatus
     //
     this.repProgramStatus.AutoHeight = false;
     this.repProgramStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProgramStatus.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repProgramStatus.Name = "repProgramStatus";
     this.repProgramStatus.NullText = "";
     this.repProgramStatus.ShowFooter = false;
     this.repProgramStatus.ShowHeader = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "#";
     this.gridColumn6.ColumnEdit = this.repProgramButton;
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 67;
     //
     // repProgramButton
     //
     this.repProgramButton.AutoHeight = false;
     this.repProgramButton.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Programar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repProgramButton.Name = "repProgramButton";
     this.repProgramButton.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repProgramButton.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProgramButton_ButtonClick);
     //
     // gcProg_Date_report
     //
     this.gcProg_Date_report.Caption = "Fecha";
     this.gcProg_Date_report.ColumnEdit = this.repDateProgram;
     this.gcProg_Date_report.FieldName = "Date_report";
     this.gcProg_Date_report.Name = "gcProg_Date_report";
     this.gcProg_Date_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Date_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Date_report.Visible = true;
     this.gcProg_Date_report.VisibleIndex = 2;
     this.gcProg_Date_report.Width = 67;
     //
     // repDateProgram
     //
     this.repDateProgram.AutoHeight = false;
     this.repDateProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateProgram.Name = "repDateProgram";
     //
     // gcProg_Time_report
     //
     this.gcProg_Time_report.Caption = "Hora";
     this.gcProg_Time_report.ColumnEdit = this.repTimeProgram;
     this.gcProg_Time_report.FieldName = "Time_report";
     this.gcProg_Time_report.Name = "gcProg_Time_report";
     this.gcProg_Time_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Time_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Time_report.Visible = true;
     this.gcProg_Time_report.VisibleIndex = 3;
     this.gcProg_Time_report.Width = 66;
     //
     // repTimeProgram
     //
     this.repTimeProgram.AutoHeight = false;
     this.repTimeProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeProgram.Mask.EditMask = "t";
     this.repTimeProgram.Name = "repTimeProgram";
     //
     // gcProg_Str_cod_recep_sample_program
     //
     this.gcProg_Str_cod_recep_sample_program.Caption = "Código";
     this.gcProg_Str_cod_recep_sample_program.FieldName = "Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.Name = "gcProg_Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowFilter = false;
     this.gcProg_Str_cod_recep_sample_program.Visible = true;
     this.gcProg_Str_cod_recep_sample_program.VisibleIndex = 1;
     this.gcProg_Str_cod_recep_sample_program.Width = 78;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.btProgramSelection);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(292, 53);
     this.groupControl3.TabIndex = 3;
     this.groupControl3.Text = "Crear Informe de Ensayo";
     //
     // btProgramSelection
     //
     this.btProgramSelection.AllowDrop = true;
     this.btProgramSelection.Appearance.Options.UseTextOptions = true;
     this.btProgramSelection.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btProgramSelection.Location = new System.Drawing.Point(5, 23);
     this.btProgramSelection.Name = "btProgramSelection";
     this.btProgramSelection.Size = new System.Drawing.Size(113, 25);
     this.btProgramSelection.TabIndex = 0;
     this.btProgramSelection.Text = "Agregar selección";
     this.btProgramSelection.Click += new System.EventHandler(this.btProgramSelection_Click);
     //
     // btPrintTicket
     //
     this.btPrintTicket.FlatAppearance.BorderSize = 0;
     this.btPrintTicket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btPrintTicket.Location = new System.Drawing.Point(729, 12);
     this.btPrintTicket.Name = "btPrintTicket";
     this.btPrintTicket.Size = new System.Drawing.Size(48, 23);
     this.btPrintTicket.TabIndex = 10;
     this.btPrintTicket.Text = "Imprimir Etiquetas";
     this.btPrintTicket.UseVisualStyleBackColor = true;
     this.btPrintTicket.Visible = false;
     this.btPrintTicket.Click += new System.EventHandler(this.btPrintTicket_Click_1);
     //
     // btDesignPrint
     //
     this.btDesignPrint.FlatAppearance.BorderSize = 0;
     this.btDesignPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btDesignPrint.Location = new System.Drawing.Point(772, 9);
     this.btDesignPrint.Name = "btDesignPrint";
     this.btDesignPrint.Size = new System.Drawing.Size(69, 23);
     this.btDesignPrint.TabIndex = 10;
     this.btDesignPrint.Text = "Diseñar Etiquetas";
     this.btDesignPrint.UseVisualStyleBackColor = true;
     this.btDesignPrint.Visible = false;
     this.btDesignPrint.Click += new System.EventHandler(this.btDesignPrint_Click);
     //
     // deReception
     //
     this.deReception.EditValue = null;
     this.deReception.Location = new System.Drawing.Point(75, 5);
     this.deReception.Name = "deReception";
     this.deReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deReception.Properties.ReadOnly = true;
     this.deReception.Size = new System.Drawing.Size(87, 20);
     this.deReception.TabIndex = 10;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(12, 8);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 13);
     this.label12.TabIndex = 9;
     this.label12.Text = "Recepción:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(12, 50);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(47, 13);
     this.label19.TabIndex = 9;
     this.label19.Text = "Entrega:";
     //
     // deResult
     //
     this.deResult.EditValue = null;
     this.deResult.Location = new System.Drawing.Point(75, 47);
     this.deResult.Name = "deResult";
     this.deResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deResult.Size = new System.Drawing.Size(87, 20);
     this.deResult.TabIndex = 10;
     //
     // xtraTabControl2
     //
     this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl2.Appearance.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl2.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl2.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl2.Location = new System.Drawing.Point(551, 29);
     this.xtraTabControl2.Name = "xtraTabControl2";
     this.xtraTabControl2.PaintStyleName = "PropertyView";
     this.xtraTabControl2.SelectedTabPage = this.tabDateRegRecep;
     this.xtraTabControl2.Size = new System.Drawing.Size(264, 114);
     this.xtraTabControl2.TabIndex = 4;
     this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabDateRegRecep});
     //
     // tabDateRegRecep
     //
     this.tabDateRegRecep.Controls.Add(this.tbNumDays);
     this.tabDateRegRecep.Controls.Add(this.deHourResult);
     this.tabDateRegRecep.Controls.Add(this.deHourReception);
     this.tabDateRegRecep.Controls.Add(this.label27);
     this.tabDateRegRecep.Controls.Add(this.deReception);
     this.tabDateRegRecep.Controls.Add(this.lookUpEdit1);
     this.tabDateRegRecep.Controls.Add(this.deResult);
     this.tabDateRegRecep.Controls.Add(this.label19);
     this.tabDateRegRecep.Controls.Add(this.textEdit3);
     this.tabDateRegRecep.Controls.Add(this.label12);
     this.tabDateRegRecep.Name = "tabDateRegRecep";
     this.tabDateRegRecep.Size = new System.Drawing.Size(262, 93);
     this.tabDateRegRecep.Text = "Fechas";
     //
     // tbNumDays
     //
     this.tbNumDays.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbNumDays.Location = new System.Drawing.Point(75, 26);
     this.tbNumDays.Name = "tbNumDays";
     this.tbNumDays.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbNumDays.Properties.IsFloatValue = false;
     this.tbNumDays.Properties.Mask.EditMask = "N00";
     this.tbNumDays.Size = new System.Drawing.Size(42, 20);
     this.tbNumDays.TabIndex = 12;
     this.tbNumDays.EditValueChanged += new System.EventHandler(this.tbNumDays_EditValueChanged);
     //
     // deHourResult
     //
     this.deHourResult.EditValue = null;
     this.deHourResult.Location = new System.Drawing.Point(164, 47);
     this.deHourResult.Name = "deHourResult";
     this.deHourResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourResult.Properties.Mask.EditMask = "t";
     this.deHourResult.Size = new System.Drawing.Size(91, 20);
     this.deHourResult.TabIndex = 11;
     //
     // deHourReception
     //
     this.deHourReception.EditValue = null;
     this.deHourReception.Location = new System.Drawing.Point(164, 5);
     this.deHourReception.Name = "deHourReception";
     this.deHourReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourReception.Properties.Mask.EditMask = "t";
     this.deHourReception.Size = new System.Drawing.Size(91, 20);
     this.deHourReception.TabIndex = 1;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(12, 29);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(45, 13);
     this.label27.TabIndex = 9;
     this.label27.Text = "N°Días:";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit1.Properties.NullText = "Seleccionar";
     this.lookUpEdit1.Properties.ShowFooter = false;
     this.lookUpEdit1.Properties.ShowHeader = false;
     this.lookUpEdit1.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit1.TabIndex = 1;
     //
     // textEdit3
     //
     this.textEdit3.Location = new System.Drawing.Point(452, 9);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Size = new System.Drawing.Size(100, 20);
     this.textEdit3.TabIndex = 3;
     //
     // btReportClient
     //
     this.btReportClient.FlatAppearance.BorderSize = 0;
     this.btReportClient.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btReportClient.Location = new System.Drawing.Point(847, 10);
     this.btReportClient.Name = "btReportClient";
     this.btReportClient.Size = new System.Drawing.Size(59, 23);
     this.btReportClient.TabIndex = 11;
     this.btReportClient.Text = "Repote por Cliente";
     this.btReportClient.UseVisualStyleBackColor = true;
     this.btReportClient.Visible = false;
     this.btReportClient.Click += new System.EventHandler(this.btReportClient_Click);
     //
     // txIdrecep_sample
     //
     this.txIdrecep_sample.Enabled = false;
     this.txIdrecep_sample.Location = new System.Drawing.Point(844, 117);
     this.txIdrecep_sample.Name = "txIdrecep_sample";
     this.txIdrecep_sample.Properties.Appearance.BackColor = System.Drawing.Color.Gainsboro;
     this.txIdrecep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.txIdrecep_sample.Size = new System.Drawing.Size(100, 20);
     this.txIdrecep_sample.TabIndex = 7;
     this.txIdrecep_sample.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(8, 7);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(43, 13);
     this.label25.TabIndex = 10;
     this.label25.Text = "Código:";
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(93, 4);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.NullText = "Seleccionar";
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbTypeSample.Size = new System.Drawing.Size(146, 20);
     this.cbTypeSample.TabIndex = 2;
     this.cbTypeSample.EditValueChanged += new System.EventHandler(this.cbTypeSample_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 7);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(86, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Tipo de muestra:";
     //
     // ofdRecepFileAttach
     //
     this.ofdRecepFileAttach.FileName = "openFileDialog1";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(834, 41);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(110, 13);
     this.label14.TabIndex = 9;
     this.label14.Text = "gastos administrativos";
     this.label14.Visible = false;
     //
     // tbAdministrativeExpense
     //
     this.tbAdministrativeExpense.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAdministrativeExpense.Location = new System.Drawing.Point(837, 57);
     this.tbAdministrativeExpense.Name = "tbAdministrativeExpense";
     this.tbAdministrativeExpense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbAdministrativeExpense.Size = new System.Drawing.Size(107, 20);
     this.tbAdministrativeExpense.TabIndex = 11;
     this.tbAdministrativeExpense.Visible = false;
     //
     // tbCod_recep_sample
     //
     this.tbCod_recep_sample.Location = new System.Drawing.Point(55, 4);
     this.tbCod_recep_sample.Name = "tbCod_recep_sample";
     this.tbCod_recep_sample.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tbCod_recep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.tbCod_recep_sample.Properties.ReadOnly = true;
     this.tbCod_recep_sample.Size = new System.Drawing.Size(100, 20);
     this.tbCod_recep_sample.TabIndex = 7;
     //
     // ucSignReception
     //
     this.ucSignReception.Location = new System.Drawing.Point(11, 2);
     this.ucSignReception.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignReception.Name = "ucSignReception";
     this.ucSignReception.Pwd = null;
     this.ucSignReception.Size = new System.Drawing.Size(158, 40);
     this.ucSignReception.TabIndex = 16;
     this.ucSignReception.Title = "Guardar";
     this.ucSignReception.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.panel9);
     this.panelControl1.Controls.Add(this.xtraTabControl2);
     this.panelControl1.Controls.Add(this.tbAdministrativeExpense);
     this.panelControl1.Controls.Add(this.label14);
     this.panelControl1.Controls.Add(this.xtraTabControl1);
     this.panelControl1.Controls.Add(this.txIdrecep_sample);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(999, 146);
     this.panelControl1.TabIndex = 12;
     this.panelControl1.Text = "panelControl1";
     //
     // panel9
     //
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Location = new System.Drawing.Point(13, 3);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(701, 27);
     this.panel9.TabIndex = 12;
     //
     // panel11
     //
     this.panel11.Controls.Add(this.paTypeSample);
     this.panel11.Controls.Add(this.paCodRegisterRecep);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel11.Location = new System.Drawing.Point(0, 0);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(701, 27);
     this.panel11.TabIndex = 1;
     //
     // paTypeSample
     //
     this.paTypeSample.Controls.Add(this.cbTypeSample);
     this.paTypeSample.Controls.Add(this.label26);
     this.paTypeSample.Dock = System.Windows.Forms.DockStyle.Left;
     this.paTypeSample.Location = new System.Drawing.Point(167, 0);
     this.paTypeSample.Name = "paTypeSample";
     this.paTypeSample.Size = new System.Drawing.Size(257, 27);
     this.paTypeSample.TabIndex = 12;
     //
     // paCodRegisterRecep
     //
     this.paCodRegisterRecep.Controls.Add(this.tbCod_recep_sample);
     this.paCodRegisterRecep.Controls.Add(this.label25);
     this.paCodRegisterRecep.Dock = System.Windows.Forms.DockStyle.Left;
     this.paCodRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.paCodRegisterRecep.Name = "paCodRegisterRecep";
     this.paCodRegisterRecep.Size = new System.Drawing.Size(167, 27);
     this.paCodRegisterRecep.TabIndex = 11;
     //
     // ucTitleRegisterRecep
     //
     this.ucTitleRegisterRecep.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ucTitleRegisterRecep.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTitleRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.ucTitleRegisterRecep.Name = "ucTitleRegisterRecep";
     this.ucTitleRegisterRecep.Size = new System.Drawing.Size(999, 27);
     this.ucTitleRegisterRecep.TabIndex = 8;
     this.ucTitleRegisterRecep.Title = "Title";
     //
     // ucToolStrip1
     //
     this.ucToolStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ucToolStrip1.Location = new System.Drawing.Point(0, 0);
     this.ucToolStrip1.Name = "ucToolStrip1";
     this.ucToolStrip1.Size = new System.Drawing.Size(1013, 25);
     this.ucToolStrip1.TabIndex = 0;
     this.ucToolStrip1.onFind += new LimsProject.Find(this.ucToolStrip1_onFind);
     this.ucToolStrip1.onNew += new LimsProject.New(this.ucToolStrip1_onNew);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(192, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(191, 22);
     this.toolStripMenuItem1.Text = "Registro de Recepción";
     //
     // ucGenerarA
     //
     this.ucGenerarA.Location = new System.Drawing.Point(476, 9);
     this.ucGenerarA.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarA.Name = "ucGenerarA";
     this.ucGenerarA.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarA.TabIndex = 19;
     this.ucGenerarA.Title = "Generar a";
     this.ucGenerarA.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarA_onSelectedIndex);
     //
     // ucGenerarDesde
     //
     this.ucGenerarDesde.Location = new System.Drawing.Point(580, 9);
     this.ucGenerarDesde.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarDesde.Name = "ucGenerarDesde";
     this.ucGenerarDesde.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarDesde.TabIndex = 19;
     this.ucGenerarDesde.Title = "Generar desde";
     this.ucGenerarDesde.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarDesde_onSelectedIndex);
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl3);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(999, 383);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text = "panelControl2";
     //
     // xtraTabControl3
     //
     this.xtraTabControl3.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl3.Appearance.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl3.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl3.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl3.Location = new System.Drawing.Point(2, 2);
     this.xtraTabControl3.Name = "xtraTabControl3";
     this.xtraTabControl3.PaintStyleName = "PropertyView";
     this.xtraTabControl3.SelectedTabPage = this.tpMuestras;
     this.xtraTabControl3.Size = new System.Drawing.Size(995, 379);
     this.xtraTabControl3.TabIndex = 4;
     this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpMuestras,
     this.tpAnexos,
     this.tpReject,
     this.tpDecree});
     //
     // tpMuestras
     //
     this.tpMuestras.Controls.Add(this.gcReception);
     this.tpMuestras.Controls.Add(this.panelControl7);
     this.tpMuestras.Controls.Add(this.expandablePanel1);
     this.tpMuestras.Name = "tpMuestras";
     this.tpMuestras.Size = new System.Drawing.Size(993, 358);
     this.tpMuestras.Text = "Muestras";
     //
     // panelControl7
     //
     this.panelControl7.Controls.Add(this.panel7);
     this.panelControl7.Controls.Add(this.panel5);
     this.panelControl7.Controls.Add(this.gcShowColumns);
     this.panelControl7.Controls.Add(this.tbAmortization);
     this.panelControl7.Controls.Add(this.label10);
     this.panelControl7.Controls.Add(this.tbResidue);
     this.panelControl7.Controls.Add(this.label13);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl7.Location = new System.Drawing.Point(0, 288);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(699, 70);
     this.panelControl7.TabIndex = 3;
     this.panelControl7.Text = "panelControl7";
     //
     // tpAnexos
     //
     this.tpAnexos.Controls.Add(this.checkEdit8);
     this.tpAnexos.Controls.Add(this.memoEdit1);
     this.tpAnexos.Controls.Add(this.checkEdit7);
     this.tpAnexos.Controls.Add(this.groupControl4);
     this.tpAnexos.Controls.Add(this.textEdit5);
     this.tpAnexos.Controls.Add(this.label21);
     this.tpAnexos.Controls.Add(this.label18);
     this.tpAnexos.Name = "tpAnexos";
     this.tpAnexos.Size = new System.Drawing.Size(520, 0);
     this.tpAnexos.Text = "Anexos";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(169, 35);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "Muestras de composito";
     this.checkEdit8.Size = new System.Drawing.Size(139, 18);
     this.checkEdit8.TabIndex = 12;
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(105, 63);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(548, 54);
     this.memoEdit1.TabIndex = 2;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(24, 35);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "Muestras puntuales";
     this.checkEdit7.Size = new System.Drawing.Size(139, 18);
     this.checkEdit7.TabIndex = 12;
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.textEdit2);
     this.groupControl4.Controls.Add(this.timeEdit1);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.dateEdit1);
     this.groupControl4.Controls.Add(this.checkEdit6);
     this.groupControl4.Controls.Add(this.checkEdit5);
     this.groupControl4.Controls.Add(this.checkEdit4);
     this.groupControl4.Controls.Add(this.checkEdit3);
     this.groupControl4.Controls.Add(this.checkEdit2);
     this.groupControl4.Controls.Add(this.checkEdit1);
     this.groupControl4.Location = new System.Drawing.Point(8, 130);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(645, 196);
     this.groupControl4.TabIndex = 1;
     this.groupControl4.Text = "Campos a llenar al recepcionar las muestras";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(161, 163);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(196, 20);
     this.textEdit2.TabIndex = 4;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = new System.DateTime(2013, 8, 7, 0, 0, 0, 0);
     this.timeEdit1.Location = new System.Drawing.Point(161, 138);
     this.timeEdit1.Name = "timeEdit1";
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Size = new System.Drawing.Size(100, 20);
     this.timeEdit1.TabIndex = 3;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(23, 166);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(133, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Condiciones de transporte:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(23, 141);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(98, 13);
     this.label16.TabIndex = 2;
     this.label16.Text = "Hora de recepción:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(23, 116);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(105, 13);
     this.label15.TabIndex = 2;
     this.label15.Text = "Fecha de recepción:";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(161, 113);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(201, 73);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "Duplicado";
     this.checkEdit6.Size = new System.Drawing.Size(75, 18);
     this.checkEdit6.TabIndex = 0;
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(201, 48);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "Blanco muestreo";
     this.checkEdit5.Size = new System.Drawing.Size(112, 18);
     this.checkEdit5.TabIndex = 0;
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(201, 23);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "Blanco viajero";
     this.checkEdit4.Size = new System.Drawing.Size(98, 18);
     this.checkEdit4.TabIndex = 0;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(26, 73);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Conservación de muestras";
     this.checkEdit3.Size = new System.Drawing.Size(160, 18);
     this.checkEdit3.TabIndex = 0;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(26, 48);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Muestras recibidas intactas";
     this.checkEdit2.Size = new System.Drawing.Size(160, 18);
     this.checkEdit2.TabIndex = 0;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(26, 23);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Recipiente adecuado";
     this.checkEdit1.Size = new System.Drawing.Size(128, 18);
     this.checkEdit1.TabIndex = 0;
     //
     // textEdit5
     //
     this.textEdit5.Location = new System.Drawing.Point(79, 10);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Size = new System.Drawing.Size(358, 20);
     this.textEdit5.TabIndex = 10;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(21, 13);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 11;
     this.label21.Text = "Proyecto:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(18, 74);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(81, 13);
     this.label18.TabIndex = 2;
     this.label18.Text = "Observaciones:";
     //
     // tpReject
     //
     this.tpReject.Controls.Add(this.memoEdit2);
     this.tpReject.Controls.Add(this.label20);
     this.tpReject.Controls.Add(this.gcRejection);
     this.tpReject.Name = "tpReject";
     this.tpReject.Size = new System.Drawing.Size(520, 0);
     this.tpReject.Text = "Rechazos";
     //
     // memoEdit2
     //
     this.memoEdit2.Location = new System.Drawing.Point(116, 288);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(529, 50);
     this.memoEdit2.TabIndex = 2;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(20, 299);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(90, 13);
     this.label20.TabIndex = 1;
     this.label20.Text = "Especificaciones:";
     //
     // gcRejection
     //
     this.gcRejection.EmbeddedNavigator.Name = "";
     this.gcRejection.Location = new System.Drawing.Point(21, 13);
     this.gcRejection.MainView = this.bandedGridView1;
     this.gcRejection.Name = "gcRejection";
     this.gcRejection.Size = new System.Drawing.Size(624, 251);
     this.gcRejection.TabIndex = 0;
     this.gcRejection.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1});
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gcRej_Code,
     this.gcRej_NameSample,
     this.gcRej_Date,
     this.gcRej_Hora,
     this.gcRej_Obs,
     this.gcRej_C1,
     this.gcRej_C2,
     this.gcRej_C3,
     this.gcRej_C4});
     this.bandedGridView1.GridControl = this.gcRejection;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.gcRej_Code);
     this.gridBand1.Columns.Add(this.gcRej_NameSample);
     this.gridBand1.Columns.Add(this.gcRej_Date);
     this.gridBand1.Columns.Add(this.gcRej_Hora);
     this.gridBand1.Columns.Add(this.gcRej_Obs);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 629;
     //
     // gcRej_Code
     //
     this.gcRej_Code.Caption = "Codigo";
     this.gcRej_Code.Name = "gcRej_Code";
     this.gcRej_Code.Visible = true;
     //
     // gcRej_NameSample
     //
     this.gcRej_NameSample.Caption = "Nombre de muestra";
     this.gcRej_NameSample.Name = "gcRej_NameSample";
     this.gcRej_NameSample.Visible = true;
     this.gcRej_NameSample.Width = 204;
     //
     // gcRej_Date
     //
     this.gcRej_Date.Caption = "Fecha";
     this.gcRej_Date.Name = "gcRej_Date";
     this.gcRej_Date.Visible = true;
     //
     // gcRej_Hora
     //
     this.gcRej_Hora.Caption = "Hora";
     this.gcRej_Hora.Name = "gcRej_Hora";
     this.gcRej_Hora.Visible = true;
     //
     // gcRej_Obs
     //
     this.gcRej_Obs.Caption = "Ensayos rechazados";
     this.gcRej_Obs.Name = "gcRej_Obs";
     this.gcRej_Obs.Visible = true;
     this.gcRej_Obs.Width = 200;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Criterio";
     this.gridBand2.Columns.Add(this.gcRej_C1);
     this.gridBand2.Columns.Add(this.gcRej_C2);
     this.gridBand2.Columns.Add(this.gcRej_C3);
     this.gridBand2.Columns.Add(this.gcRej_C4);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 150;
     //
     // gcRej_C1
     //
     this.gcRej_C1.Caption = "1";
     this.gcRej_C1.Name = "gcRej_C1";
     this.gcRej_C1.Visible = true;
     this.gcRej_C1.Width = 36;
     //
     // gcRej_C2
     //
     this.gcRej_C2.Caption = "2";
     this.gcRej_C2.Name = "gcRej_C2";
     this.gcRej_C2.Visible = true;
     this.gcRej_C2.Width = 36;
     //
     // gcRej_C3
     //
     this.gcRej_C3.Caption = "3";
     this.gcRej_C3.Name = "gcRej_C3";
     this.gcRej_C3.Visible = true;
     this.gcRej_C3.Width = 36;
     //
     // gcRej_C4
     //
     this.gcRej_C4.Caption = "4";
     this.gcRej_C4.Name = "gcRej_C4";
     this.gcRej_C4.Visible = true;
     this.gcRej_C4.Width = 42;
     //
     // tpDecree
     //
     this.tpDecree.Controls.Add(this.panelControl4);
     this.tpDecree.Controls.Add(this.panelControl3);
     this.tpDecree.Name = "tpDecree";
     this.tpDecree.Size = new System.Drawing.Size(520, 0);
     this.tpDecree.Text = "Decretos - Resultados";
     //
     // panelControl4
     //
     this.panelControl4.Controls.Add(this.xtraTabControl4);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 30);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Padding = new System.Windows.Forms.Padding(10);
     this.panelControl4.Size = new System.Drawing.Size(520, 0);
     this.panelControl4.TabIndex = 11;
     this.panelControl4.Text = "panelControl4";
     //
     // xtraTabControl4
     //
     this.xtraTabControl4.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl4.Appearance.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl4.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl4.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl4.Location = new System.Drawing.Point(12, 11);
     this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(10);
     this.xtraTabControl4.Name = "xtraTabControl4";
     this.xtraTabControl4.PaintStyleName = "PropertyView";
     this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4;
     this.xtraTabControl4.Size = new System.Drawing.Size(496, 0);
     this.xtraTabControl4.TabIndex = 5;
     this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5,
     this.xtraTabPage7});
     this.xtraTabControl4.Text = "Anexos";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gridDecretos);
     this.xtraTabPage4.Controls.Add(this.panelControl5);
     this.xtraTabPage4.Controls.Add(this.panelControl6);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(494, 0);
     this.xtraTabPage4.Text = "AG-03-00001 - NTP N° 214.003";
     //
     // gridDecretos
     //
     this.gridDecretos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDecretos.EmbeddedNavigator.Name = "";
     this.gridDecretos.Location = new System.Drawing.Point(0, 61);
     this.gridDecretos.MainView = this.gridView1;
     this.gridDecretos.Name = "gridDecretos";
     this.gridDecretos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repCriterio,
     this.repUnidadMedida,
     this.repMetodo});
     this.gridDecretos.Size = new System.Drawing.Size(494, 0);
     this.gridDecretos.TabIndex = 2;
     this.gridDecretos.UseEmbeddedNavigator = true;
     this.gridDecretos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcDec_Idmetodo,
     this.gcDec_Parametro,
     this.gcDec_Unidad_medida,
     this.gcDec_Result,
     this.gcDec_Criterio,
     this.gcDec_Valor1,
     this.gcDec_Valor2,
     this.gcDec_Conclusion});
     this.gridView1.GridControl = this.gridDecretos;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gcDec_Idmetodo
     //
     this.gcDec_Idmetodo.Caption = "Método";
     this.gcDec_Idmetodo.ColumnEdit = this.repMetodo;
     this.gcDec_Idmetodo.FieldName = "Idmetodo";
     this.gcDec_Idmetodo.Name = "gcDec_Idmetodo";
     this.gcDec_Idmetodo.Visible = true;
     this.gcDec_Idmetodo.VisibleIndex = 0;
     //
     // repMetodo
     //
     this.repMetodo.AutoHeight = false;
     this.repMetodo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repMetodo.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idmetodo", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre")});
     this.repMetodo.Name = "repMetodo";
     this.repMetodo.NullText = "";
     this.repMetodo.ShowFooter = false;
     this.repMetodo.ShowHeader = false;
     //
     // gcDec_Parametro
     //
     this.gcDec_Parametro.Caption = "Parametro";
     this.gcDec_Parametro.FieldName = "Parametro";
     this.gcDec_Parametro.Name = "gcDec_Parametro";
     this.gcDec_Parametro.Visible = true;
     this.gcDec_Parametro.VisibleIndex = 1;
     //
     // gcDec_Unidad_medida
     //
     this.gcDec_Unidad_medida.Caption = "Unidad_medida";
     this.gcDec_Unidad_medida.ColumnEdit = this.repUnidadMedida;
     this.gcDec_Unidad_medida.FieldName = "Unidad_medida";
     this.gcDec_Unidad_medida.Name = "gcDec_Unidad_medida";
     this.gcDec_Unidad_medida.Visible = true;
     this.gcDec_Unidad_medida.VisibleIndex = 2;
     //
     // repUnidadMedida
     //
     this.repUnidadMedida.AutoHeight = false;
     this.repUnidadMedida.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repUnidadMedida.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.repUnidadMedida.Name = "repUnidadMedida";
     this.repUnidadMedida.NullText = "";
     this.repUnidadMedida.ShowFooter = false;
     this.repUnidadMedida.ShowHeader = false;
     //
     // gcDec_Result
     //
     this.gcDec_Result.Caption = "Resultado";
     this.gcDec_Result.FieldName = "Result";
     this.gcDec_Result.Name = "gcDec_Result";
     this.gcDec_Result.Visible = true;
     this.gcDec_Result.VisibleIndex = 3;
     //
     // gcDec_Criterio
     //
     this.gcDec_Criterio.Caption = "Condición";
     this.gcDec_Criterio.ColumnEdit = this.repCriterio;
     this.gcDec_Criterio.FieldName = "Criterio";
     this.gcDec_Criterio.Name = "gcDec_Criterio";
     this.gcDec_Criterio.Visible = true;
     this.gcDec_Criterio.VisibleIndex = 4;
     //
     // repCriterio
     //
     this.repCriterio.AutoHeight = false;
     this.repCriterio.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repCriterio.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcriterio", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre_criterio")});
     this.repCriterio.Name = "repCriterio";
     this.repCriterio.NullText = "";
     this.repCriterio.ShowFooter = false;
     this.repCriterio.ShowHeader = false;
     //
     // gcDec_Valor1
     //
     this.gcDec_Valor1.Caption = "Valor1";
     this.gcDec_Valor1.FieldName = "Valor1";
     this.gcDec_Valor1.Name = "gcDec_Valor1";
     this.gcDec_Valor1.Visible = true;
     this.gcDec_Valor1.VisibleIndex = 5;
     //
     // gcDec_Valor2
     //
     this.gcDec_Valor2.Caption = "Valor2";
     this.gcDec_Valor2.FieldName = "Valor2";
     this.gcDec_Valor2.Name = "gcDec_Valor2";
     this.gcDec_Valor2.Visible = true;
     this.gcDec_Valor2.VisibleIndex = 6;
     //
     // gcDec_Conclusion
     //
     this.gcDec_Conclusion.Caption = "Conclusion";
     this.gcDec_Conclusion.FieldName = "Conclusion";
     this.gcDec_Conclusion.Name = "gcDec_Conclusion";
     this.gcDec_Conclusion.Visible = true;
     this.gcDec_Conclusion.VisibleIndex = 7;
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.memoEdit3);
     this.panelControl5.Controls.Add(this.label23);
     this.panelControl5.Controls.Add(this.label24);
     this.panelControl5.Controls.Add(this.label29);
     this.panelControl5.Controls.Add(this.textEdit4);
     this.panelControl5.Controls.Add(this.textEdit6);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 0);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(494, 61);
     this.panelControl5.TabIndex = 0;
     this.panelControl5.Text = "panelControl5";
     //
     // memoEdit3
     //
     this.memoEdit3.EditValue = resources.GetString("memoEdit3.EditValue");
     this.memoEdit3.Location = new System.Drawing.Point(426, 7);
     this.memoEdit3.Name = "memoEdit3";
     this.memoEdit3.Size = new System.Drawing.Size(523, 46);
     this.memoEdit3.TabIndex = 8;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(355, 9);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 5;
     this.label23.Text = "Descripción:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(9, 9);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(43, 13);
     this.label24.TabIndex = 6;
     this.label24.Text = "Codigo:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(9, 30);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(75, 13);
     this.label29.TabIndex = 7;
     this.label29.Text = "Denominación";
     //
     // textEdit4
     //
     this.textEdit4.EditValue = "DEC-13-001";
     this.textEdit4.Location = new System.Drawing.Point(90, 6);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Size = new System.Drawing.Size(107, 20);
     this.textEdit4.TabIndex = 3;
     //
     // textEdit6
     //
     this.textEdit6.EditValue = "NTP N° 214.003";
     this.textEdit6.Location = new System.Drawing.Point(90, 27);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Size = new System.Drawing.Size(230, 20);
     this.textEdit6.TabIndex = 4;
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.memoEdit4);
     this.panelControl6.Controls.Add(this.label22);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl6.Location = new System.Drawing.Point(0, -49);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(494, 49);
     this.panelControl6.TabIndex = 3;
     this.panelControl6.Text = "panelControl6";
     //
     // memoEdit4
     //
     this.memoEdit4.EditValue = "CUMPLE, NO CUMPLE, BLA BLA BLA";
     this.memoEdit4.Location = new System.Drawing.Point(77, 4);
     this.memoEdit4.Name = "memoEdit4";
     this.memoEdit4.Size = new System.Drawing.Size(872, 40);
     this.memoEdit4.TabIndex = 8;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(9, 9);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(62, 13);
     this.label22.TabIndex = 5;
     this.label22.Text = "Conclusión:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage5.Text = "AG-03-00001 - D.S. N° 031-2010";
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage7.Text = "AG-03-00001 - D.S. N° 002-2008";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.lookUpEdit2);
     this.panelControl3.Controls.Add(this.label31);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(520, 30);
     this.panelControl3.TabIndex = 10;
     this.panelControl3.Text = "panelControl3";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.Location = new System.Drawing.Point(86, 5);
     this.lookUpEdit2.Name = "lookUpEdit2";
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Properties.NullText = "AG-03-00001";
     this.lookUpEdit2.Size = new System.Drawing.Size(144, 20);
     this.lookUpEdit2.TabIndex = 10;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(32, 8);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(48, 13);
     this.label31.TabIndex = 9;
     this.label31.Text = "Muestra:";
     //
     // FormReception
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 662);
     this.Name = "FormReception";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Recepción de Muestras";
     this.Controls.SetChildIndex(this.paSupBotones, 0);
     this.Controls.SetChildIndex(this.thePanelTab1, 0);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.paSuperior.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     this.paSupBotones.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).EndInit();
     this.gcShowColumns.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).EndInit();
     this.tabOptionRight.ResumeLayout(false);
     this.tpRightMethods.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.tpRightReports.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.tpRightAttach.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.tpRightProgram.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
     this.xtraTabControl2.ResumeLayout(false);
     this.tabDateRegRecep.ResumeLayout(false);
     this.tabDateRegRecep.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel11.ResumeLayout(false);
     this.paTypeSample.ResumeLayout(false);
     this.paTypeSample.PerformLayout();
     this.paCodRegisterRecep.ResumeLayout(false);
     this.paCodRegisterRecep.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).EndInit();
     this.xtraTabControl3.ResumeLayout(false);
     this.tpMuestras.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     this.panelControl7.PerformLayout();
     this.tpAnexos.ResumeLayout(false);
     this.tpAnexos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit();
     this.tpReject.ResumeLayout(false);
     this.tpReject.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.tpDecree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).EndInit();
     this.xtraTabControl4.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     this.panelControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.DataNavigator1 = new DevExpress.XtraEditors.DataNavigator();
     this.TextEdit1      = new DevExpress.XtraEditors.TextEdit();
     this.SpinEdit1      = new DevExpress.XtraEditors.SpinEdit();
     this.Label3         = new System.Windows.Forms.Label();
     this.Label2         = new System.Windows.Forms.Label();
     this.Label1         = new System.Windows.Forms.Label();
     this.MemoEdit1      = new DevExpress.XtraEditors.MemoEdit();
     this.colName        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridView1      = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colID          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridControl1   = new DevExpress.XtraGrid.GridControl();
     this.DataColumn2    = new System.Data.DataColumn();
     this.DataColumn3    = new System.Data.DataColumn();
     this.DataTable1     = new System.Data.DataTable();
     this.DataColumn1    = new System.Data.DataColumn();
     this.DataSet1       = new System.Data.DataSet();
     ((System.ComponentModel.ISupportInitialize)(this.PanelControl1)).BeginInit();
     this.PanelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TextEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SpinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MemoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSet1)).BeginInit();
     this.SuspendLayout();
     //
     // PanelControl1
     //
     this.PanelControl1.Controls.Add(this.DataNavigator1);
     this.PanelControl1.Controls.Add(this.TextEdit1);
     this.PanelControl1.Controls.Add(this.SpinEdit1);
     this.PanelControl1.Controls.Add(this.Label3);
     this.PanelControl1.Controls.Add(this.Label2);
     this.PanelControl1.Controls.Add(this.Label1);
     this.PanelControl1.Controls.Add(this.MemoEdit1);
     this.PanelControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.PanelControl1.Location = new System.Drawing.Point(0, 0);
     this.PanelControl1.Name     = "PanelControl1";
     this.PanelControl1.Size     = new System.Drawing.Size(440, 120);
     this.PanelControl1.TabIndex = 5;
     //
     // DataNavigator1
     //
     this.DataNavigator1.Location = new System.Drawing.Point(8, 88);
     this.DataNavigator1.Name     = "DataNavigator1";
     this.DataNavigator1.Size     = new System.Drawing.Size(222, 24);
     this.DataNavigator1.TabIndex = 7;
     this.DataNavigator1.Text     = "DataNavigator1";
     //
     // TextEdit1
     //
     this.TextEdit1.EditValue = "TextEdit1";
     this.TextEdit1.Location  = new System.Drawing.Point(80, 48);
     this.TextEdit1.Name      = "TextEdit1";
     this.TextEdit1.Size      = new System.Drawing.Size(100, 20);
     this.TextEdit1.TabIndex  = 6;
     //
     // SpinEdit1
     //
     this.SpinEdit1.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.SpinEdit1.Location = new System.Drawing.Point(80, 16);
     this.SpinEdit1.Name     = "SpinEdit1";
     this.SpinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.SpinEdit1.Size     = new System.Drawing.Size(100, 20);
     this.SpinEdit1.TabIndex = 5;
     //
     // Label3
     //
     this.Label3.Location = new System.Drawing.Point(208, 16);
     this.Label3.Name     = "Label3";
     this.Label3.Size     = new System.Drawing.Size(48, 24);
     this.Label3.TabIndex = 4;
     this.Label3.Text     = "Notes:";
     //
     // Label2
     //
     this.Label2.Location = new System.Drawing.Point(8, 48);
     this.Label2.Name     = "Label2";
     this.Label2.Size     = new System.Drawing.Size(48, 16);
     this.Label2.TabIndex = 3;
     this.Label2.Text     = "Name:";
     //
     // Label1
     //
     this.Label1.Location = new System.Drawing.Point(8, 16);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(48, 16);
     this.Label1.TabIndex = 2;
     this.Label1.Text     = "ID:";
     //
     // MemoEdit1
     //
     this.MemoEdit1.EditValue = "MemoEdit1";
     this.MemoEdit1.Location  = new System.Drawing.Point(264, 16);
     this.MemoEdit1.Name      = "MemoEdit1";
     this.MemoEdit1.Size      = new System.Drawing.Size(168, 96);
     this.MemoEdit1.TabIndex  = 1;
     //
     // colName
     //
     this.colName.Caption      = "Name";
     this.colName.FieldName    = "Name";
     this.colName.Name         = "colName";
     this.colName.Visible      = true;
     this.colName.VisibleIndex = 1;
     //
     // GridView1
     //
     this.GridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colID,
         this.colName
     });
     this.GridView1.GridControl = this.GridControl1;
     this.GridView1.Name        = "GridView1";
     //
     // colID
     //
     this.colID.Caption      = "ID";
     this.colID.FieldName    = "ID";
     this.colID.Name         = "colID";
     this.colID.Visible      = true;
     this.colID.VisibleIndex = 0;
     //
     // GridControl1
     //
     this.GridControl1.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.GridControl1.Location             = new System.Drawing.Point(0, 120);
     this.GridControl1.MainView             = this.GridView1;
     this.GridControl1.Name                 = "GridControl1";
     this.GridControl1.Size                 = new System.Drawing.Size(440, 218);
     this.GridControl1.TabIndex             = 4;
     this.GridControl1.UseEmbeddedNavigator = true;
     this.GridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.GridView1
     });
     //
     // DataColumn2
     //
     this.DataColumn2.ColumnName = "Name";
     //
     // DataColumn3
     //
     this.DataColumn3.ColumnName = "Notes";
     //
     // DataTable1
     //
     this.DataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.DataColumn1,
         this.DataColumn2,
         this.DataColumn3
     });
     this.DataTable1.TableName = "Table1";
     //
     // DataColumn1
     //
     this.DataColumn1.ColumnName = "ID";
     this.DataColumn1.DataType   = typeof(int);
     //
     // DataSet1
     //
     this.DataSet1.DataSetName = "NewDataSet";
     this.DataSet1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.DataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.DataTable1
     });
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 338);
     this.Controls.Add(this.GridControl1);
     this.Controls.Add(this.PanelControl1);
     this.Name  = "Form1";
     this.Text  = "How to bind a grid and stand alone editors to the same data and synchronize them";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.PanelControl1)).EndInit();
     this.PanelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TextEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SpinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MemoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSet1)).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.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.txtBelongTime = new DevExpress.XtraEditors.TextEdit();
     this.spYear = new DevExpress.XtraEditors.SpinEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.plFill)).BeginInit();
     this.plFill.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.plBottom)).BeginInit();
     this.plBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBelongTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     this.SuspendLayout();
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(290, 15);
     //
     // btnConfirm
     //
     this.btnConfirm.Location = new System.Drawing.Point(181, 15);
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // plFill
     //
     this.plFill.Appearance.BackColor = System.Drawing.Color.White;
     this.plFill.Appearance.Options.UseBackColor = true;
     this.plFill.Controls.Add(this.groupControl1);
     this.plFill.Size = new System.Drawing.Size(384, 241);
     //
     // plBottom
     //
     this.plBottom.Appearance.BackColor = System.Drawing.Color.White;
     this.plBottom.Appearance.Options.UseBackColor = true;
     this.plBottom.Location = new System.Drawing.Point(0, 241);
     this.plBottom.Size = new System.Drawing.Size(384, 60);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.layoutControl1);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(384, 241);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "统计信息";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtName);
     this.layoutControl1.Controls.Add(this.txtRemark);
     this.layoutControl1.Controls.Add(this.txtBelongTime);
     this.layoutControl1.Controls.Add(this.spYear);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(2, 21);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(709, 54, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(380, 218);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(63, 12);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(305, 20);
     this.txtName.StyleController = this.layoutControl1;
     this.txtName.TabIndex = 0;
     //
     // txtRemark
     //
     this.txtRemark.Location = new System.Drawing.Point(63, 84);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(305, 122);
     this.txtRemark.StyleController = this.layoutControl1;
     this.txtRemark.TabIndex = 3;
     //
     // txtBelongTime
     //
     this.txtBelongTime.Location = new System.Drawing.Point(63, 60);
     this.txtBelongTime.Name = "txtBelongTime";
     this.txtBelongTime.Size = new System.Drawing.Size(305, 20);
     this.txtBelongTime.StyleController = this.layoutControl1;
     this.txtBelongTime.TabIndex = 2;
     //
     // spYear
     //
     this.spYear.EditValue = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.spYear.Location = new System.Drawing.Point(63, 36);
     this.spYear.Name = "spYear";
     this.spYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.spYear.Properties.IsFloatValue = false;
     this.spYear.Properties.Mask.EditMask = "d";
     this.spYear.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.spYear.Properties.MaxValue = new decimal(new int[] {
     2500,
     0,
     0,
     0});
     this.spYear.Properties.MinValue = new decimal(new int[] {
     1950,
     0,
     0,
     0});
     this.spYear.Size = new System.Drawing.Size(305, 20);
     this.spYear.StyleController = this.layoutControl1;
     this.spYear.TabIndex = 1;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(380, 218);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.spYear;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(360, 24);
     this.layoutControlItem1.Text = "年份";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(48, 14);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtBelongTime;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(360, 24);
     this.layoutControlItem2.Text = "归属时间";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(48, 14);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtRemark;
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 72);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(360, 126);
     this.layoutControlItem3.Text = "备注";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(48, 14);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtName;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(360, 24);
     this.layoutControlItem4.Text = "名称";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(48, 14);
     //
     // FrmPopulationEdit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(384, 301);
     this.Name = "FrmPopulationEdit";
     this.Text = "编辑人数统计";
     ((System.ComponentModel.ISupportInitialize)(this.plFill)).EndInit();
     this.plFill.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.plBottom)).EndInit();
     this.plBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBelongTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).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.label1 = new System.Windows.Forms.Label();
     this.spinedtLastNonMemberID = new DevExpress.XtraEditors.SpinEdit();
     this.spinedtLastMemberID = new DevExpress.XtraEditors.SpinEdit();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnOK = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.luedtBranchCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.txtLastNonMemberID = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.txtLastMemberID = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(6, 44);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(204, 18);
     this.label1.TabIndex = 0;
     this.label1.Text = "Number of Non-Member ids to block ID:";
     //
     // spinedtLastNonMemberID
     //
     this.spinedtLastNonMemberID.EditValue = new System.Decimal(new int[] {
                                                                              0,
                                                                              0,
                                                                              0,
                                                                              0});
     this.spinedtLastNonMemberID.Location = new System.Drawing.Point(212, 42);
     this.spinedtLastNonMemberID.Name = "spinedtLastNonMemberID";
     //
     // spinedtLastNonMemberID.Properties
     //
     this.spinedtLastNonMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinedtLastNonMemberID.Properties.IsFloatValue = false;
     this.spinedtLastNonMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastNonMemberID.Properties.NullText = "0";
     this.spinedtLastNonMemberID.Size = new System.Drawing.Size(80, 20);
     this.spinedtLastNonMemberID.TabIndex = 1;
     //
     // spinedtLastMemberID
     //
     this.spinedtLastMemberID.EditValue = new System.Decimal(new int[] {
                                                                           0,
                                                                           0,
                                                                           0,
                                                                           0});
     this.spinedtLastMemberID.Location = new System.Drawing.Point(212, 42);
     this.spinedtLastMemberID.Name = "spinedtLastMemberID";
     //
     // spinedtLastMemberID.Properties
     //
     this.spinedtLastMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinedtLastMemberID.Properties.IsFloatValue = false;
     this.spinedtLastMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastMemberID.Properties.NullText = "0";
     this.spinedtLastMemberID.Size = new System.Drawing.Size(80, 20);
     this.spinedtLastMemberID.TabIndex = 1;
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(170, 168);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.TabIndex = 3;
     this.sbtnCancel.Text = "Cancel";
     //
     // sbtnOK
     //
     this.sbtnOK.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnOK.Location = new System.Drawing.Point(76, 168);
     this.sbtnOK.Name = "sbtnOK";
     this.sbtnOK.TabIndex = 2;
     this.sbtnOK.Text = "OK";
     this.sbtnOK.Click += new System.EventHandler(this.sbtnOK_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtLastMemberID);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.luedtBranchCode);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.spinedtLastMemberID);
     this.groupControl1.Location = new System.Drawing.Point(6, 76);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(298, 88);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Member";
     //
     // luedtBranchCode
     //
     this.luedtBranchCode.Location = new System.Drawing.Point(212, 64);
     this.luedtBranchCode.Name = "luedtBranchCode";
     //
     // luedtBranchCode.Properties
     //
     this.luedtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBranchCode.Size = new System.Drawing.Size(80, 20);
     this.luedtBranchCode.TabIndex = 2;
     this.luedtBranchCode.EditValueChanged += new System.EventHandler(this.luedtBranchCode_EditValueChanged);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(6, 66);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(78, 18);
     this.label4.TabIndex = 5;
     this.label4.Text = "Branch:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(6, 44);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(204, 18);
     this.label2.TabIndex = 4;
     this.label2.Text = "Number of Member ids to block ID:";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.txtLastNonMemberID);
     this.groupControl2.Controls.Add(this.label3);
     this.groupControl2.Controls.Add(this.spinedtLastNonMemberID);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Location = new System.Drawing.Point(4, 4);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(300, 68);
     this.groupControl2.TabIndex = 0;
     this.groupControl2.Text = "Non-member";
     //
     // txtLastNonMemberID
     //
     this.txtLastNonMemberID.EditValue = "";
     this.txtLastNonMemberID.Location = new System.Drawing.Point(212, 20);
     this.txtLastNonMemberID.Name = "txtLastNonMemberID";
     //
     // txtLastNonMemberID.Properties
     //
     this.txtLastNonMemberID.Properties.ReadOnly = true;
     this.txtLastNonMemberID.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastNonMemberID.Size = new System.Drawing.Size(64, 20);
     this.txtLastNonMemberID.TabIndex = 0;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(6, 22);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(154, 18);
     this.label3.TabIndex = 11;
     this.label3.Text = "Current Last Non-Member ID:";
     //
     // txtLastMemberID
     //
     this.txtLastMemberID.EditValue = "";
     this.txtLastMemberID.Location = new System.Drawing.Point(212, 20);
     this.txtLastMemberID.Name = "txtLastMemberID";
     //
     // txtLastMemberID.Properties
     //
     this.txtLastMemberID.Properties.ReadOnly = true;
     this.txtLastMemberID.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastMemberID.Size = new System.Drawing.Size(64, 20);
     this.txtLastMemberID.TabIndex = 0;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 22);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(154, 18);
     this.label5.TabIndex = 12;
     this.label5.Text = "Current Last Member ID:";
     //
     // frmBlockMembershipID
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(306, 194);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.sbtnOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmBlockMembershipID";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Block Membership ID";
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.Properties)).EndInit();
     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.components = new System.ComponentModel.Container();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit();
     this.spinEdit4 = new DevExpress.XtraEditors.SpinEdit();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.spinEdit5 = new DevExpress.XtraEditors.SpinEdit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit5.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // spinEdit1
     //
     this.spinEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit1.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(11, 401);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit1.Properties.IsFloatValue = false;
     this.spinEdit1.Properties.Mask.EditMask = "N00";
     this.spinEdit1.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit1.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit1.Size = new System.Drawing.Size(60, 20);
     this.spinEdit1.TabIndex = 0;
     this.spinEdit1.Visible = false;
     this.spinEdit1.ValueChanged += new System.EventHandler(this.spinEdit1_ValueChanged);
     //
     // spinEdit2
     //
     this.spinEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit2.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit2.Location = new System.Drawing.Point(77, 401);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit2.Properties.IsFloatValue = false;
     this.spinEdit2.Properties.Mask.EditMask = "N00";
     this.spinEdit2.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit2.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit2.Size = new System.Drawing.Size(60, 20);
     this.spinEdit2.TabIndex = 1;
     this.spinEdit2.Visible = false;
     this.spinEdit2.ValueChanged += new System.EventHandler(this.spinEdit1_ValueChanged);
     //
     // spinEdit3
     //
     this.spinEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit3.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit3.Location = new System.Drawing.Point(143, 401);
     this.spinEdit3.Name = "spinEdit3";
     this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit3.Properties.IsFloatValue = false;
     this.spinEdit3.Properties.Mask.EditMask = "N00";
     this.spinEdit3.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit3.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit3.Size = new System.Drawing.Size(60, 20);
     this.spinEdit3.TabIndex = 2;
     this.spinEdit3.Visible = false;
     this.spinEdit3.ValueChanged += new System.EventHandler(this.spinEdit1_ValueChanged);
     //
     // spinEdit4
     //
     this.spinEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit4.EditValue = new decimal(new int[] {
     5,
     0,
     0,
     65536});
     this.spinEdit4.Location = new System.Drawing.Point(209, 401);
     this.spinEdit4.Name = "spinEdit4";
     this.spinEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit4.Properties.Increment = new decimal(new int[] {
     1,
     0,
     0,
     65536});
     this.spinEdit4.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.spinEdit4.Size = new System.Drawing.Size(60, 20);
     this.spinEdit4.TabIndex = 3;
     this.spinEdit4.Visible = false;
     this.spinEdit4.ValueChanged += new System.EventHandler(this.spinEdit4_ValueChanged);
     //
     // spinEdit5
     //
     this.spinEdit5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit5.EditValue = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.spinEdit5.Location = new System.Drawing.Point(275, 401);
     this.spinEdit5.Name = "spinEdit5";
     this.spinEdit5.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit5.Properties.IsFloatValue = false;
     this.spinEdit5.Properties.Mask.EditMask = "N00";
     this.spinEdit5.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit5.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit5.Size = new System.Drawing.Size(60, 20);
     this.spinEdit5.TabIndex = 4;
     this.spinEdit5.Visible = false;
     this.spinEdit5.EditValueChanged += new System.EventHandler(this.spinEdit5_EditValueChanged);
     //
     // SurfaceGraphViewer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.spinEdit5);
     this.Controls.Add(this.spinEdit4);
     this.Controls.Add(this.spinEdit3);
     this.Controls.Add(this.spinEdit2);
     this.Controls.Add(this.spinEdit1);
     this.Name = "SurfaceGraphViewer";
     this.Size = new System.Drawing.Size(578, 435);
     this.toolTipController1.SetSuperTip(this, null);
     this.DoubleClick += new System.EventHandler(this.SurfaceGraphViewer_DoubleClick);
     this.Load += new System.EventHandler(this.SurfaceGraphViewer_Load);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frm3DSurfaceGraphViewer_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.frm3DSurfaceGraphViewer_MouseMove);
     this.Scroll += new System.Windows.Forms.ScrollEventHandler(this.SurfaceGraphViewer_Scroll);
     this.Resize += new System.EventHandler(this.frm3DSurfaceGraphViewer_Resize);
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SurfaceGraphViewer_KeyPress);
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.frm3DSurfaceGraphViewer_Paint);
     this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.frm3DSurfaceGraphViewer_MouseUp);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SurfaceGraphViewer_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit5.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Hẻm chính sâu dưới 100m");
            System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Hẻm chính sâu từ 100-200m");
            System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Hẻm chính sâu trên 200m");
            System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Hẻm phụ sâu dưới 100m");
            System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Hẻm phụ sâu từ 100-200m");
            System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Hẻm phụ sâu trên 200m");
            this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
            this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
            this.tvcLoaiThua = new TnControlLib.TnTreeViewCheckBox();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.xtraScrollableControl3 = new DevExpress.XtraEditors.XtraScrollableControl();
            this.chkOverWrite = new DevExpress.XtraEditors.CheckEdit();
            this.chkCalcAll = new DevExpress.XtraEditors.CheckEdit();
            this.spnNam = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
            this.cbxHuyen = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
            this.cbxXa = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
            this.cbxDuong = new DevExpress.XtraEditors.ComboBoxEdit();
            this.cbxDoanDuong = new DevExpress.XtraEditors.ComboBoxEdit();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.btnOptionCalcView = new DevExpress.XtraEditors.SimpleButton();
            this.btnTinhFrmAll = new DevExpress.XtraEditors.SimpleButton();
            this.btnCloseFrmTinhAll = new DevExpress.XtraEditors.SimpleButton();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mniOpenStatus = new System.Windows.Forms.ToolStripMenuItem();
            this.mniHelp = new System.Windows.Forms.ToolStripMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
            this.groupControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
            this.groupControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.panelControl4.SuspendLayout();
            this.xtraScrollableControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkOverWrite.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkCalcAll.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spnNam.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxHuyen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxXa.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxDuong.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxDoanDuong.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            this.panelControl3.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupControl2
            // 
            this.groupControl2.Controls.Add(this.groupControl4);
            this.groupControl2.Controls.Add(this.panelControl4);
            this.groupControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl2.Location = new System.Drawing.Point(0, 0);
            this.groupControl2.MinimumSize = new System.Drawing.Size(350, 247);
            this.groupControl2.Name = "groupControl2";
            this.groupControl2.Size = new System.Drawing.Size(363, 330);
            this.groupControl2.TabIndex = 1;
            this.groupControl2.Text = "Chọn khu vực tính";
            // 
            // groupControl4
            // 
            this.groupControl4.Controls.Add(this.tvcLoaiThua);
            this.groupControl4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl4.Location = new System.Drawing.Point(2, 164);
            this.groupControl4.Name = "groupControl4";
            this.groupControl4.Size = new System.Drawing.Size(359, 164);
            this.groupControl4.TabIndex = 1;
            this.groupControl4.Text = "Chọn loại hẻm";
            // 
            // tvcLoaiThua
            // 
            this.tvcLoaiThua.CheckBoxes = true;
            this.tvcLoaiThua.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tvcLoaiThua.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll;
            this.tvcLoaiThua.Location = new System.Drawing.Point(2, 22);
            this.tvcLoaiThua.Name = "tvcLoaiThua";
            treeNode1.Name = "nHemDuoi100";
            treeNode1.Tag = "101";
            treeNode1.Text = "Hẻm chính sâu dưới 100m";
            treeNode2.Name = "nHem100_200";
            treeNode2.Tag = "102";
            treeNode2.Text = "Hẻm chính sâu từ 100-200m";
            treeNode3.Name = "nHemTren200";
            treeNode3.Tag = "103";
            treeNode3.Text = "Hẻm chính sâu trên 200m";
            treeNode4.Name = "Node1";
            treeNode4.Tag = "104";
            treeNode4.Text = "Hẻm phụ sâu dưới 100m";
            treeNode5.Name = "Node2";
            treeNode5.Tag = "105";
            treeNode5.Text = "Hẻm phụ sâu từ 100-200m";
            treeNode6.Name = "Node3";
            treeNode6.Tag = "106";
            treeNode6.Text = "Hẻm phụ sâu trên 200m";
            this.tvcLoaiThua.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode1,
            treeNode2,
            treeNode3,
            treeNode4,
            treeNode5,
            treeNode6});
            this.tvcLoaiThua.Size = new System.Drawing.Size(355, 140);
            this.tvcLoaiThua.TabIndex = 1;
            // 
            // panelControl4
            // 
            this.panelControl4.Controls.Add(this.xtraScrollableControl3);
            this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl4.Location = new System.Drawing.Point(2, 22);
            this.panelControl4.Name = "panelControl4";
            this.panelControl4.Size = new System.Drawing.Size(359, 142);
            this.panelControl4.TabIndex = 0;
            // 
            // xtraScrollableControl3
            // 
            this.xtraScrollableControl3.Controls.Add(this.chkOverWrite);
            this.xtraScrollableControl3.Controls.Add(this.chkCalcAll);
            this.xtraScrollableControl3.Controls.Add(this.spnNam);
            this.xtraScrollableControl3.Controls.Add(this.labelControl21);
            this.xtraScrollableControl3.Controls.Add(this.labelControl17);
            this.xtraScrollableControl3.Controls.Add(this.labelControl20);
            this.xtraScrollableControl3.Controls.Add(this.cbxHuyen);
            this.xtraScrollableControl3.Controls.Add(this.labelControl18);
            this.xtraScrollableControl3.Controls.Add(this.cbxXa);
            this.xtraScrollableControl3.Controls.Add(this.labelControl19);
            this.xtraScrollableControl3.Controls.Add(this.cbxDuong);
            this.xtraScrollableControl3.Controls.Add(this.cbxDoanDuong);
            this.xtraScrollableControl3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraScrollableControl3.Location = new System.Drawing.Point(2, 2);
            this.xtraScrollableControl3.Name = "xtraScrollableControl3";
            this.xtraScrollableControl3.Size = new System.Drawing.Size(355, 138);
            this.xtraScrollableControl3.TabIndex = 18;
            // 
            // chkOverWrite
            // 
            this.chkOverWrite.EditValue = true;
            this.chkOverWrite.Location = new System.Drawing.Point(138, 3);
            this.chkOverWrite.Name = "chkOverWrite";
            this.chkOverWrite.Properties.Caption = "Cập nhật thông tin";
            this.chkOverWrite.Size = new System.Drawing.Size(120, 19);
            this.chkOverWrite.TabIndex = 17;
            this.chkOverWrite.Visible = false;
            // 
            // chkCalcAll
            // 
            this.chkCalcAll.Location = new System.Drawing.Point(1, 3);
            this.chkCalcAll.Name = "chkCalcAll";
            this.chkCalcAll.Properties.Caption = "Tính cho toàn bộ thửa";
            this.chkCalcAll.Size = new System.Drawing.Size(131, 19);
            this.chkCalcAll.TabIndex = 6;
            this.chkCalcAll.Visible = false;
            // 
            // spnNam
            // 
            this.spnNam.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.spnNam.EditValue = new decimal(new int[] {
            2011,
            0,
            0,
            0});
            this.spnNam.Enabled = false;
            this.spnNam.Location = new System.Drawing.Point(298, 3);
            this.spnNam.Name = "spnNam";
            this.spnNam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spnNam.Size = new System.Drawing.Size(50, 20);
            this.spnNam.TabIndex = 16;
            this.spnNam.Visible = false;
            // 
            // labelControl21
            // 
            this.labelControl21.Location = new System.Drawing.Point(7, 83);
            this.labelControl21.Name = "labelControl21";
            this.labelControl21.Size = new System.Drawing.Size(79, 13);
            this.labelControl21.TabIndex = 14;
            this.labelControl21.Text = "Tính theo đường";
            // 
            // labelControl17
            // 
            this.labelControl17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.labelControl17.Location = new System.Drawing.Point(271, 6);
            this.labelControl17.Name = "labelControl17";
            this.labelControl17.Size = new System.Drawing.Size(21, 13);
            this.labelControl17.TabIndex = 15;
            this.labelControl17.Text = "Năm";
            this.labelControl17.Visible = false;
            // 
            // labelControl20
            // 
            this.labelControl20.Location = new System.Drawing.Point(7, 109);
            this.labelControl20.Name = "labelControl20";
            this.labelControl20.Size = new System.Drawing.Size(106, 13);
            this.labelControl20.TabIndex = 11;
            this.labelControl20.Text = "Tính theo đoạn đường";
            // 
            // cbxHuyen
            // 
            this.cbxHuyen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.cbxHuyen.EditValue = "TX Tây Ninh";
            this.cbxHuyen.Location = new System.Drawing.Point(119, 28);
            this.cbxHuyen.Name = "cbxHuyen";
            this.cbxHuyen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbxHuyen.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbxHuyen.Size = new System.Drawing.Size(229, 20);
            this.cbxHuyen.TabIndex = 10;
            // 
            // labelControl18
            // 
            this.labelControl18.Location = new System.Drawing.Point(7, 57);
            this.labelControl18.Name = "labelControl18";
            this.labelControl18.Size = new System.Drawing.Size(60, 13);
            this.labelControl18.TabIndex = 13;
            this.labelControl18.Text = "Tính theo xã";
            // 
            // cbxXa
            // 
            this.cbxXa.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.cbxXa.Location = new System.Drawing.Point(119, 54);
            this.cbxXa.Name = "cbxXa";
            this.cbxXa.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbxXa.Size = new System.Drawing.Size(229, 20);
            this.cbxXa.TabIndex = 9;
            this.cbxXa.SelectedIndexChanged += new System.EventHandler(this.cbxXa_SelectedIndexChanged);
            this.cbxXa.Click += new System.EventHandler(this.cbxXa_Click);
            // 
            // labelControl19
            // 
            this.labelControl19.Location = new System.Drawing.Point(7, 31);
            this.labelControl19.Name = "labelControl19";
            this.labelControl19.Size = new System.Drawing.Size(78, 13);
            this.labelControl19.TabIndex = 12;
            this.labelControl19.Text = "Tính theo huyện";
            // 
            // cbxDuong
            // 
            this.cbxDuong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.cbxDuong.Location = new System.Drawing.Point(119, 80);
            this.cbxDuong.Name = "cbxDuong";
            this.cbxDuong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbxDuong.Size = new System.Drawing.Size(229, 20);
            this.cbxDuong.TabIndex = 7;
            this.cbxDuong.SelectedIndexChanged += new System.EventHandler(this.cbxDuong_SelectedIndexChanged);
            this.cbxDuong.Click += new System.EventHandler(this.cbxDuong_Click);
            // 
            // cbxDoanDuong
            // 
            this.cbxDoanDuong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.cbxDoanDuong.Location = new System.Drawing.Point(119, 106);
            this.cbxDoanDuong.Name = "cbxDoanDuong";
            this.cbxDoanDuong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbxDoanDuong.Size = new System.Drawing.Size(229, 20);
            this.cbxDoanDuong.TabIndex = 8;
            this.cbxDoanDuong.SelectedIndexChanged += new System.EventHandler(this.cbxDoanDuong_SelectedIndexChanged);
            this.cbxDoanDuong.Click += new System.EventHandler(this.cbxDoanDuong_Click);
            // 
            // panelControl3
            // 
            this.panelControl3.Controls.Add(this.btnOptionCalcView);
            this.panelControl3.Controls.Add(this.btnTinhFrmAll);
            this.panelControl3.Controls.Add(this.btnCloseFrmTinhAll);
            this.panelControl3.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelControl3.Location = new System.Drawing.Point(0, 330);
            this.panelControl3.Name = "panelControl3";
            this.panelControl3.Size = new System.Drawing.Size(363, 35);
            this.panelControl3.TabIndex = 0;
            // 
            // btnOptionCalcView
            // 
            this.btnOptionCalcView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnOptionCalcView.Location = new System.Drawing.Point(8, 4);
            this.btnOptionCalcView.Name = "btnOptionCalcView";
            this.btnOptionCalcView.Size = new System.Drawing.Size(75, 28);
            this.btnOptionCalcView.TabIndex = 0;
            this.btnOptionCalcView.Text = "Trợ giúp";
            this.btnOptionCalcView.Click += new System.EventHandler(this.btnOptionCalcView_Click);
            // 
            // btnTinhFrmAll
            // 
            this.btnTinhFrmAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnTinhFrmAll.Location = new System.Drawing.Point(196, 4);
            this.btnTinhFrmAll.Name = "btnTinhFrmAll";
            this.btnTinhFrmAll.Size = new System.Drawing.Size(75, 28);
            this.btnTinhFrmAll.TabIndex = 0;
            this.btnTinhFrmAll.Text = "Tính";
            this.btnTinhFrmAll.Click += new System.EventHandler(this.btnTinhFrmAll_Click);
            // 
            // btnCloseFrmTinhAll
            // 
            this.btnCloseFrmTinhAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCloseFrmTinhAll.Location = new System.Drawing.Point(277, 4);
            this.btnCloseFrmTinhAll.Name = "btnCloseFrmTinhAll";
            this.btnCloseFrmTinhAll.Size = new System.Drawing.Size(75, 28);
            this.btnCloseFrmTinhAll.TabIndex = 0;
            this.btnCloseFrmTinhAll.Text = "Đóng";
            this.btnCloseFrmTinhAll.Click += new System.EventHandler(this.btnCloseFrmTinhAll_Click);
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mniOpenStatus,
            this.mniHelp});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(193, 48);
            // 
            // mniOpenStatus
            // 
            this.mniOpenStatus.Name = "mniOpenStatus";
            this.mniOpenStatus.Size = new System.Drawing.Size(192, 22);
            this.mniOpenStatus.Text = "Mở trạng thái vừa tính";
            this.mniOpenStatus.Click += new System.EventHandler(this.mniOpenStatus_Click);
            // 
            // mniHelp
            // 
            this.mniHelp.Name = "mniHelp";
            this.mniHelp.Size = new System.Drawing.Size(192, 22);
            this.mniHelp.Text = "Trợ giúp";
            // 
            // GCalculationHemView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.groupControl2);
            this.Controls.Add(this.panelControl3);
            this.Name = "GCalculationHemView";
            this.Size = new System.Drawing.Size(363, 365);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
            this.groupControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
            this.groupControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.panelControl4.ResumeLayout(false);
            this.xtraScrollableControl3.ResumeLayout(false);
            this.xtraScrollableControl3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkOverWrite.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkCalcAll.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spnNam.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxHuyen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxXa.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxDuong.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbxDoanDuong.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            this.panelControl3.ResumeLayout(false);
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GrayModel));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem26 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem21 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem22 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem25 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = 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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.chart_user1 = new Itop.Client.Using.chart_user();
     this.label2 = new System.Windows.Forms.Label();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem14,
     this.barButtonItem17,
     this.barSubItem3,
     this.barButtonItem20,
     this.barButtonItem21,
     this.barButtonItem22,
     this.barButtonItem6,
     this.barButtonItem25,
     this.barButtonItem26,
     this.barSubItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5});
     this.barManager1.MaxItemId = 52;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem5, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem14),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem17, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem26, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem22, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem25, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem1, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6, true)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "���빫������";
     this.barButtonItem5.Id = 51;
     this.barButtonItem5.ImageIndex = 20;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "��ȡʵ������";
     this.barButtonItem14.Id = 22;
     this.barButtonItem14.ImageIndex = 13;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem14_ItemClick);
     //
     // barButtonItem17
     //
     this.barButtonItem17.Caption = "��������";
     this.barButtonItem17.Id = 26;
     this.barButtonItem17.ImageIndex = 14;
     this.barButtonItem17.Name = "barButtonItem17";
     this.barButtonItem17.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem17.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem17.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem17_ItemClick);
     //
     // barButtonItem26
     //
     this.barButtonItem26.Caption = "��ʼ��ȡ��ʷ����";
     this.barButtonItem26.Id = 45;
     this.barButtonItem26.ImageIndex = 9;
     this.barButtonItem26.Name = "barButtonItem26";
     this.barButtonItem26.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem26.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem26_ItemClick);
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "����";
     this.barSubItem3.Id = 29;
     this.barSubItem3.ImageIndex = 5;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem21)});
     this.barSubItem3.Name = "barSubItem3";
     this.barSubItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem20
     //
     this.barButtonItem20.Caption = "��������";
     this.barButtonItem20.Id = 30;
     this.barButtonItem20.ImageIndex = 5;
     this.barButtonItem20.Name = "barButtonItem20";
     this.barButtonItem20.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem20.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem20_ItemClick);
     //
     // barButtonItem21
     //
     this.barButtonItem21.Caption = "����ͼ��";
     this.barButtonItem21.Id = 31;
     this.barButtonItem21.ImageIndex = 5;
     this.barButtonItem21.Name = "barButtonItem21";
     this.barButtonItem21.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem21.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem21_ItemClick);
     //
     // barButtonItem22
     //
     this.barButtonItem22.Caption = "ͼ����ɫ";
     this.barButtonItem22.Id = 32;
     this.barButtonItem22.ImageIndex = 12;
     this.barButtonItem22.Name = "barButtonItem22";
     this.barButtonItem22.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem22.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem22_ItemClick);
     //
     // barButtonItem25
     //
     this.barButtonItem25.Caption = "����";
     this.barButtonItem25.Id = 44;
     this.barButtonItem25.ImageIndex = 0;
     this.barButtonItem25.Name = "barButtonItem25";
     this.barButtonItem25.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem25.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem25_ItemClick);
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "�������";
     this.barSubItem1.Id = 46;
     this.barSubItem1.ImageIndex = 15;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.barSubItem1.Name = "barSubItem1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "��ӷ�����";
     this.barButtonItem1.Id = 47;
     this.barButtonItem1.ImageIndex = 15;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "����¼�������";
     this.barButtonItem2.Id = 48;
     this.barButtonItem2.ImageIndex = 16;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "�޸ķ�����";
     this.barButtonItem3.Id = 49;
     this.barButtonItem3.ImageIndex = 18;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "ɾ��������";
     this.barButtonItem4.Id = 50;
     this.barButtonItem4.ImageIndex = 10;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "�ر�";
     this.barButtonItem6.Id = 35;
     this.barButtonItem6.ImageIndex = 7;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // 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(1074, 34);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 729);
     this.barDockControlBottom.Size = new System.Drawing.Size(1074, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 34);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 695);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1074, 34);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 695);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "����.ico");
     this.imageList1.Images.SetKeyName(1, "����.ico");
     this.imageList1.Images.SetKeyName(2, "��ѯ.ico");
     this.imageList1.Images.SetKeyName(3, "������±�.ico");
     this.imageList1.Images.SetKeyName(4, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(5, "����.ico");
     this.imageList1.Images.SetKeyName(6, "�ر�1.ico");
     this.imageList1.Images.SetKeyName(7, "�ر�.ico");
     this.imageList1.Images.SetKeyName(8, "��ɫ.ico");
     this.imageList1.Images.SetKeyName(9, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(10, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(11, "���.ico");
     this.imageList1.Images.SetKeyName(12, "����.ico");
     this.imageList1.Images.SetKeyName(13, "��Ȩ.ico");
     this.imageList1.Images.SetKeyName(14, "ˢ��.ico");
     this.imageList1.Images.SetKeyName(15, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(16, "����¼�.ico");
     this.imageList1.Images.SetKeyName(17, "�½�.ico");
     this.imageList1.Images.SetKeyName(18, "�޸�.ico");
     this.imageList1.Images.SetKeyName(19, "����.ico");
     this.imageList1.Images.SetKeyName(20, "06 Picture.ico");
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 34);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(1074, 6);
     this.splitterControl1.TabIndex = 5;
     this.splitterControl1.TabStop = false;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.chart_user1);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.label2);
     this.splitContainerControl1.Panel2.Controls.Add(this.spinEdit2);
     this.splitContainerControl1.Panel2.Controls.Add(this.label1);
     this.splitContainerControl1.Panel2.Controls.Add(this.spinEdit1);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton6);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton2);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton5);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton3);
     this.splitContainerControl1.Panel2.Controls.Add(this.simpleButton1);
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1074, 306);
     this.splitContainerControl1.SplitterPosition = 156;
     this.splitContainerControl1.TabIndex = 8;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // chart_user1
     //
     this.chart_user1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chart_user1.Location = new System.Drawing.Point(0, 0);
     this.chart_user1.Name = "chart_user1";
     this.chart_user1.Size = new System.Drawing.Size(912, 306);
     this.chart_user1.TabIndex = 0;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("����", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(15, 232);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(40, 27);
     this.label2.TabIndex = 9;
     this.label2.Text = "u=";
     //
     // spinEdit2
     //
     this.spinEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.spinEdit2.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit2.Enabled = false;
     this.spinEdit2.Location = new System.Drawing.Point(65, 234);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit2.Properties.Increment = new decimal(new int[] {
     1,
     0,
     0,
     131072});
     this.spinEdit2.Size = new System.Drawing.Size(68, 21);
     this.spinEdit2.TabIndex = 8;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("����", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(13, 196);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 27);
     this.label1.TabIndex = 7;
     this.label1.Text = "a=";
     //
     // spinEdit1
     //
     this.spinEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.spinEdit1.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit1.Enabled = false;
     this.spinEdit1.Location = new System.Drawing.Point(64, 198);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit1.Properties.Increment = new decimal(new int[] {
     1,
     0,
     0,
     131072});
     this.spinEdit1.Size = new System.Drawing.Size(68, 21);
     this.spinEdit1.TabIndex = 6;
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Location = new System.Drawing.Point(16, 107);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(117, 34);
     this.simpleButton6.TabIndex = 5;
     this.simpleButton6.Text = "��   ��";
     this.simpleButton6.Click += new System.EventHandler(this.button4_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Location = new System.Drawing.Point(20, 262);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(117, 34);
     this.simpleButton2.TabIndex = 5;
     this.simpleButton2.Text = "����Ԥ��ֵ";
     this.simpleButton2.Click += new System.EventHandler(this.button2_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Location = new System.Drawing.Point(16, 58);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(117, 34);
     this.simpleButton5.TabIndex = 5;
     this.simpleButton5.Text = "ȫ������ͼ";
     this.simpleButton5.Click += new System.EventHandler(this.button6_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton3.Location = new System.Drawing.Point(16, 9);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(117, 34);
     this.simpleButton3.TabIndex = 5;
     this.simpleButton3.Text = "Ԥ����������ͼ";
     this.simpleButton3.Click += new System.EventHandler(this.button5_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(16, 156);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(117, 34);
     this.simpleButton1.TabIndex = 5;
     this.simpleButton1.Text = "��ʷ��������ͼ";
     this.simpleButton1.Click += new System.EventHandler(this.button1_Click);
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl2.Horizontal = false;
     this.splitContainerControl2.Location = new System.Drawing.Point(0, 40);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.splitContainerControl1);
     this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1074, 689);
     this.splitContainerControl2.SplitterPosition = 306;
     this.splitContainerControl2.TabIndex = 10;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // treeList1
     //
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.Size = new System.Drawing.Size(1074, 377);
     this.treeList1.TabIndex = 4;
     this.treeList1.NodeCellStyle += new DevExpress.XtraTreeList.GetCustomNodeCellStyleEventHandler(this.treeList1_NodeCellStyle);
     this.treeList1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeList1_MouseUp);
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // GrayModel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1074, 729);
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "GrayModel";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "��ɫģ��Ԥ�ⷨ";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.FormForecast6_Load);
     this.Resize += new System.EventHandler(this.FormAverageForecast_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).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();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.MaBang = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.label11 = new DevExpress.XtraEditors.LabelControl();
     this.label13 = new DevExpress.XtraEditors.LabelControl();
     this.ThongSoLoaiBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label16 = new DevExpress.XtraEditors.LabelControl();
     this.label18 = new DevExpress.XtraEditors.LabelControl();
     this.label19 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.SODKHD = new ProtocolVN.Framework.Win.PLCombobox();
     this.groupControlHD = new DevExpress.XtraEditors.GroupControl();
     this.NoiLuuTru = new DevExpress.XtraEditors.ButtonEdit();
     this.label38 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.CodeCT = new DevExpress.XtraEditors.TextEdit();
     this.plInfoBoxEtxChuongTrinh = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.NoiDung = new DevExpress.XtraEditors.ButtonEdit();
     this.TietMuc = new ProtocolVN.Framework.Win.PLCombobox();
     this.ThanhLyChuongTrinh = new DevExpress.XtraEditors.CheckEdit();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLCombobox();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.NgayAWB = new DevExpress.XtraEditors.DateEdit();
     this.TongTap = new DevExpress.XtraEditors.PLSpinEdit();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.PopUp = new DevExpress.XtraEditors.RadioGroup();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.label17 = new DevExpress.XtraEditors.LabelControl();
     this.PostMaster = new ProtocolVN.Framework.Win.PLDMGrid();
     this.MaChuongTrinh = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TenGoc = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.ThanhLyBienMuc = new DevExpress.XtraEditors.CheckEdit();
     this.SoBang = new DevExpress.XtraEditors.SpinEdit();
     this.label12 = new DevExpress.XtraEditors.LabelControl();
     this.label30 = new DevExpress.XtraEditors.LabelControl();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.label9 = new DevExpress.XtraEditors.LabelControl();
     this.TapSo = new DevExpress.XtraEditors.PLSpinEdit();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.NgayMuon = new DevExpress.XtraEditors.DateEdit();
     this.DoiTuongMuon = new DevExpress.XtraEditors.TextEdit();
     this.ThongTinMuon = new DevExpress.XtraEditors.MemoEdit();
     this.label41 = new DevExpress.XtraEditors.LabelControl();
     this.label40 = new DevExpress.XtraEditors.LabelControl();
     this.label39 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlThongTinMuon = new DevExpress.XtraEditors.GroupControl();
     this.NgayTra = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlThongTinBM = new DevExpress.XtraEditors.GroupControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.CodeBM = new DevExpress.XtraEditors.TextEdit();
     this.plInfoBoxEtxBM = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.TenTap = new DevExpress.XtraEditors.TextEdit();
     this.ThoiLuong = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.TimeCode_File_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.lblTimeCodeOut = new System.Windows.Forms.Label();
     this.lblTimeCodeIn = new System.Windows.Forms.Label();
     this.TimeCode_Betacam_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.label28 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.TimeCode_File_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.label29 = new System.Windows.Forms.Label();
     this.TimeCode_File_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.TimeCode_Betacam_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.label43 = new System.Windows.Forms.Label();
     this.lblCut1 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.lblCut2 = new System.Windows.Forms.Label();
     this.TimeCode_Betacam_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.lblCut3 = new System.Windows.Forms.Label();
     this.lblCut4 = new System.Windows.Forms.Label();
     this.Cut1_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.lblCut5 = new System.Windows.Forms.Label();
     this.Cut1_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut5_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut2_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut5_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut2_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut4_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut3_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut4_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Cut3_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlHD)).BeginInit();
     this.groupControlHD.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit();
     this.groupControlThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CodeCT.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLyChuongTrinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLyBienMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinMuon)).BeginInit();
     this.groupControlThongTinMuon.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NgayTra.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayTra.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinBM)).BeginInit();
     this.groupControlThongTinBM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CodeBM.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut1_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut1_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut5_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut2_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut5_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut2_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut4_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut3_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut4_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut3_Out.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(345, 559);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 26;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(151, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(238, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(142, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 559);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(335, 31);
     this.flowLayoutPanel2.TabIndex = 25;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(187, 80);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(41, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Mã băng";
     //
     // MaBang
     //
     this.MaBang.Location = new System.Drawing.Point(235, 76);
     this.MaBang.Name = "MaBang";
     this.MaBang.Properties.MaxLength = 100;
     this.MaBang.Properties.ReadOnly = true;
     this.MaBang.Size = new System.Drawing.Size(59, 20);
     this.MaBang.TabIndex = 0;
     this.MaBang.TabStop = false;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(519, 55);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 55);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(42, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Nội dung";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(301, 34);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(39, 13);
     this.label11.TabIndex = 0;
     this.label11.Text = "Số băng";
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(8, 128);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(55, 13);
     this.label13.TabIndex = 0;
     this.label13.Text = "Loại lưu trữ";
     //
     // ThongSoLoaiBang
     //
     this.ThongSoLoaiBang.Location = new System.Drawing.Point(235, 30);
     this.ThongSoLoaiBang.Name = "ThongSoLoaiBang";
     this.ThongSoLoaiBang.Size = new System.Drawing.Size(58, 20);
     this.ThongSoLoaiBang.TabIndex = 120;
     this.ThongSoLoaiBang.ZZZWidthFactor = 2F;
     //
     // label16
     //
     this.label16.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label16.Appearance.Options.UseFont = true;
     this.label16.Location = new System.Drawing.Point(520, 103);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(71, 13);
     this.label16.TabIndex = 0;
     this.label16.Text = "Post/Master";
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(8, 12);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(59, 13);
     this.label18.TabIndex = 0;
     this.label18.Text = "Số ĐKCB HD";
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(9, 35);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 0;
     this.label19.Text = "Nơi lưu trữ";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(768, 38);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "BIÊN MỤC";
     //
     // SODKHD
     //
     this.SODKHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SODKHD.DataSource = null;
     this.SODKHD.DisplayField = null;
     this.SODKHD.Location = new System.Drawing.Point(88, 8);
     this.SODKHD.Name = "SODKHD";
     this.SODKHD.Size = new System.Drawing.Size(235, 22);
     this.SODKHD.TabIndex = 12;
     this.SODKHD.ValueField = null;
     this.SODKHD.SelectedIndexChanged += new System.EventHandler(this.SODKHD_SelectedIndexChanged);
     //
     // groupControlHD
     //
     this.groupControlHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlHD.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlHD.AppearanceCaption.Options.UseFont = true;
     this.groupControlHD.Controls.Add(this.NoiLuuTru);
     this.groupControlHD.Controls.Add(this.label38);
     this.groupControlHD.Controls.Add(this.label19);
     this.groupControlHD.Controls.Add(this.label18);
     this.groupControlHD.Controls.Add(this.SODKHD);
     this.groupControlHD.Location = new System.Drawing.Point(426, 211);
     this.groupControlHD.Name = "groupControlHD";
     this.groupControlHD.ShowCaption = false;
     this.groupControlHD.Size = new System.Drawing.Size(328, 78);
     this.groupControlHD.TabIndex = 126;
     this.groupControlHD.Text = "Thông tin HD";
     //
     // NoiLuuTru
     //
     this.NoiLuuTru.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.NoiLuuTru.Location = new System.Drawing.Point(88, 32);
     this.NoiLuuTru.Name = "NoiLuuTru";
     this.NoiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete),
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NoiLuuTru.Properties.ReadOnly = true;
     this.NoiLuuTru.Size = new System.Drawing.Size(232, 20);
     this.NoiLuuTru.TabIndex = 196;
     this.NoiLuuTru.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.buttonEdit1_ButtonClick);
     //
     // label38
     //
     this.label38.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.label38.Appearance.Options.UseFont = true;
     this.label38.Location = new System.Drawing.Point(109, 54);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(139, 13);
     this.label38.TabIndex = 0;
     this.label38.Text = "(Đường dẫn đầy đủ trên HD)";
     //
     // groupControlThongTin
     //
     this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTin.AppearanceCaption.ForeColor = System.Drawing.Color.Blue;
     this.groupControlThongTin.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTin.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlThongTin.Controls.Add(this.labelControl9);
     this.groupControlThongTin.Controls.Add(this.CodeCT);
     this.groupControlThongTin.Controls.Add(this.plInfoBoxEtxChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.NoiDung);
     this.groupControlThongTin.Controls.Add(this.TietMuc);
     this.groupControlThongTin.Controls.Add(this.ThanhLyChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.LoaiLuuTru);
     this.groupControlThongTin.Controls.Add(this.QuocGia);
     this.groupControlThongTin.Controls.Add(this.label25);
     this.groupControlThongTin.Controls.Add(this.label13);
     this.groupControlThongTin.Controls.Add(this.NgayAWB);
     this.groupControlThongTin.Controls.Add(this.TongTap);
     this.groupControlThongTin.Controls.Add(this.label10);
     this.groupControlThongTin.Controls.Add(this.NamSanXuat);
     this.groupControlThongTin.Controls.Add(this.label5);
     this.groupControlThongTin.Controls.Add(this.PopUp);
     this.groupControlThongTin.Controls.Add(this.label33);
     this.groupControlThongTin.Controls.Add(this.label17);
     this.groupControlThongTin.Controls.Add(this.PostMaster);
     this.groupControlThongTin.Controls.Add(this.MaChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.label7);
     this.groupControlThongTin.Controls.Add(this.label16);
     this.groupControlThongTin.Controls.Add(this.TenGoc);
     this.groupControlThongTin.Controls.Add(this.labelControl1);
     this.groupControlThongTin.Controls.Add(this.label42);
     this.groupControlThongTin.Controls.Add(this.label8);
     this.groupControlThongTin.Location = new System.Drawing.Point(6, 44);
     this.groupControlThongTin.Name = "groupControlThongTin";
     this.groupControlThongTin.Size = new System.Drawing.Size(756, 152);
     this.groupControlThongTin.TabIndex = 129;
     this.groupControlThongTin.Text = "Thông tin chương trình - Post/Master";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(520, 80);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(41, 13);
     this.labelControl9.TabIndex = 145;
     this.labelControl9.Text = "Code CT";
     //
     // CodeCT
     //
     this.CodeCT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.CodeCT.EditValue = "";
     this.CodeCT.Location = new System.Drawing.Point(597, 74);
     this.CodeCT.Name = "CodeCT";
     this.CodeCT.Properties.ReadOnly = true;
     this.CodeCT.Size = new System.Drawing.Size(156, 20);
     this.CodeCT.TabIndex = 144;
     this.CodeCT.TabStop = false;
     //
     // plInfoBoxEtxChuongTrinh
     //
     this.plInfoBoxEtxChuongTrinh.Location = new System.Drawing.Point(262, 27);
     this.plInfoBoxEtxChuongTrinh.Name = "plInfoBoxEtxChuongTrinh";
     this.plInfoBoxEtxChuongTrinh.Size = new System.Drawing.Size(24, 21);
     this.plInfoBoxEtxChuongTrinh.TabIndex = 143;
     //
     // NoiDung
     //
     this.NoiDung.Location = new System.Drawing.Point(67, 51);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Chi tiết", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.NoiDung.Properties.ReadOnly = true;
     this.NoiDung.Size = new System.Drawing.Size(447, 20);
     this.NoiDung.TabIndex = 142;
     this.NoiDung.TabStop = false;
     this.NoiDung.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.NoiDung_ButtonClick);
     //
     // TietMuc
     //
     this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(597, 50);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(154, 22);
     this.TietMuc.TabIndex = 12;
     this.TietMuc.TabStop = false;
     this.TietMuc.ValueField = null;
     this.TietMuc.SelectedIndexChanged += new System.EventHandler(this.SODKHD_SelectedIndexChanged);
     //
     // ThanhLyChuongTrinh
     //
     this.ThanhLyChuongTrinh.Location = new System.Drawing.Point(594, 27);
     this.ThanhLyChuongTrinh.Name = "ThanhLyChuongTrinh";
     this.ThanhLyChuongTrinh.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLyChuongTrinh.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLyChuongTrinh.Properties.Caption = "Thanh lý chương trình";
     this.ThanhLyChuongTrinh.Properties.ReadOnly = true;
     this.ThanhLyChuongTrinh.Size = new System.Drawing.Size(163, 19);
     this.ThanhLyChuongTrinh.TabIndex = 136;
     this.ThanhLyChuongTrinh.TabStop = false;
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(67, 123);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Size = new System.Drawing.Size(219, 22);
     this.LoaiLuuTru.TabIndex = 12;
     this.LoaiLuuTru.TabStop = false;
     this.LoaiLuuTru.ValueField = null;
     this.LoaiLuuTru.SelectedIndexChanged += new System.EventHandler(this.SODKHD_SelectedIndexChanged);
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(67, 99);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(219, 20);
     this.QuocGia.TabIndex = 132;
     this.QuocGia.TabStop = false;
     this.QuocGia.ValueField = null;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(296, 103);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // NgayAWB
     //
     this.NgayAWB.EditValue = null;
     this.NgayAWB.Location = new System.Drawing.Point(351, 27);
     this.NgayAWB.Name = "NgayAWB";
     this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayAWB.Properties.ReadOnly = true;
     this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayAWB.Size = new System.Drawing.Size(163, 20);
     this.NgayAWB.TabIndex = 141;
     this.NgayAWB.TabStop = false;
     //
     // TongTap
     //
     this.TongTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TongTap.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TongTap.Location = new System.Drawing.Point(597, 123);
     this.TongTap.Name = "TongTap";
     this.TongTap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongTap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongTap.Properties.Mask.EditMask = "n0";
     this.TongTap.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.TongTap.Properties.MaxLength = 1;
     this.TongTap.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.TongTap.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TongTap.Properties.ReadOnly = true;
     this.TongTap.Size = new System.Drawing.Size(154, 20);
     this.TongTap.TabIndex = 135;
     this.TongTap.TabStop = false;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(520, 127);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(43, 13);
     this.label10.TabIndex = 127;
     this.label10.Text = "Tổng tập";
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(350, 99);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Properties.ReadOnly = true;
     this.NamSanXuat.Size = new System.Drawing.Size(164, 20);
     this.NamSanXuat.TabIndex = 135;
     this.NamSanXuat.TabStop = false;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 103);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Nước SX";
     //
     // PopUp
     //
     this.PopUp.EditValue = "Y";
     this.PopUp.Location = new System.Drawing.Point(351, 124);
     this.PopUp.Name = "PopUp";
     this.PopUp.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("Y", "Yes"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("N", "No")});
     this.PopUp.Properties.ReadOnly = true;
     this.PopUp.Size = new System.Drawing.Size(163, 20);
     this.PopUp.TabIndex = 140;
     this.PopUp.TabStop = false;
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(296, 31);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(51, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày AWB";
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(295, 128);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(36, 13);
     this.label17.TabIndex = 129;
     this.label17.Text = "POP Up";
     //
     // PostMaster
     //
     this.PostMaster.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PostMaster.Location = new System.Drawing.Point(597, 99);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Size = new System.Drawing.Size(154, 20);
     this.PostMaster.TabIndex = 120;
     this.PostMaster.ZZZWidthFactor = 2F;
     //
     // MaChuongTrinh
     //
     this.MaChuongTrinh.Location = new System.Drawing.Point(67, 27);
     this.MaChuongTrinh.Name = "MaChuongTrinh";
     this.MaChuongTrinh.Size = new System.Drawing.Size(189, 20);
     this.MaChuongTrinh.TabIndex = 120;
     this.MaChuongTrinh.ZZZWidthFactor = 2F;
     //
     // TenGoc
     //
     this.TenGoc.EditValue = "";
     this.TenGoc.Location = new System.Drawing.Point(67, 75);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.ReadOnly = true;
     this.TenGoc.Size = new System.Drawing.Size(447, 20);
     this.TenGoc.TabIndex = 5;
     this.TenGoc.TabStop = false;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Appearance.Options.UseFont = true;
     this.labelControl1.Location = new System.Drawing.Point(8, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(34, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Mã CT";
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(8, 79);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // ThanhLyBienMuc
     //
     this.ThanhLyBienMuc.Location = new System.Drawing.Point(58, 9);
     this.ThanhLyBienMuc.Name = "ThanhLyBienMuc";
     this.ThanhLyBienMuc.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLyBienMuc.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLyBienMuc.Properties.Caption = "Thanh lý biên mục";
     this.ThanhLyBienMuc.Size = new System.Drawing.Size(126, 19);
     this.ThanhLyBienMuc.TabIndex = 136;
     //
     // SoBang
     //
     this.SoBang.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.SoBang.Location = new System.Drawing.Point(344, 30);
     this.SoBang.Name = "SoBang";
     this.SoBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoBang.Size = new System.Drawing.Size(66, 20);
     this.SoBang.TabIndex = 198;
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(186, 34);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 13);
     this.label12.TabIndex = 0;
     this.label12.Text = "Thông số";
     //
     // label30
     //
     this.label30.Location = new System.Drawing.Point(6, 80);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(50, 13);
     this.label30.TabIndex = 133;
     this.label30.Text = "Thời lượng";
     //
     // GhiChu
     //
     this.GhiChu.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.GhiChu.Location = new System.Drawing.Point(88, 3);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.GhiChu.Size = new System.Drawing.Size(428, 45);
     this.GhiChu.TabIndex = 134;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(6, 34);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(32, 13);
     this.label9.TabIndex = 128;
     this.label9.Text = "Tập số";
     //
     // TapSo
     //
     this.TapSo.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TapSo.Location = new System.Drawing.Point(60, 30);
     this.TapSo.Name = "TapSo";
     this.TapSo.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TapSo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSo.Properties.Mask.EditMask = "n0";
     this.TapSo.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.TapSo.Properties.MaxLength = 1;
     this.TapSo.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.TapSo.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TapSo.Size = new System.Drawing.Size(90, 20);
     this.TapSo.TabIndex = 136;
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(14, 5);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // NgayMuon
     //
     this.NgayMuon.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.NgayMuon.EditValue = null;
     this.NgayMuon.Location = new System.Drawing.Point(88, 8);
     this.NgayMuon.Name = "NgayMuon";
     this.NgayMuon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayMuon.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayMuon.Size = new System.Drawing.Size(228, 20);
     this.NgayMuon.TabIndex = 141;
     //
     // DoiTuongMuon
     //
     this.DoiTuongMuon.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.DoiTuongMuon.EditValue = "";
     this.DoiTuongMuon.Location = new System.Drawing.Point(88, 54);
     this.DoiTuongMuon.Name = "DoiTuongMuon";
     this.DoiTuongMuon.Size = new System.Drawing.Size(228, 20);
     this.DoiTuongMuon.TabIndex = 5;
     //
     // ThongTinMuon
     //
     this.ThongTinMuon.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ThongTinMuon.Location = new System.Drawing.Point(88, 77);
     this.ThongTinMuon.Name = "ThongTinMuon";
     this.ThongTinMuon.Size = new System.Drawing.Size(228, 83);
     this.ThongTinMuon.TabIndex = 134;
     //
     // label41
     //
     this.label41.Location = new System.Drawing.Point(7, 12);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(55, 13);
     this.label41.TabIndex = 0;
     this.label41.Text = "Ngày mượn";
     //
     // label40
     //
     this.label40.Location = new System.Drawing.Point(7, 56);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 0;
     this.label40.Text = "Đối tượng";
     //
     // label39
     //
     this.label39.Location = new System.Drawing.Point(8, 74);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(75, 13);
     this.label39.TabIndex = 0;
     this.label39.Text = "Thông tin mượn";
     //
     // groupControlThongTinMuon
     //
     this.groupControlThongTinMuon.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTinMuon.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTinMuon.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTinMuon.Controls.Add(this.NgayTra);
     this.groupControlThongTinMuon.Controls.Add(this.NgayMuon);
     this.groupControlThongTinMuon.Controls.Add(this.DoiTuongMuon);
     this.groupControlThongTinMuon.Controls.Add(this.label39);
     this.groupControlThongTinMuon.Controls.Add(this.ThongTinMuon);
     this.groupControlThongTinMuon.Controls.Add(this.labelControl2);
     this.groupControlThongTinMuon.Controls.Add(this.label40);
     this.groupControlThongTinMuon.Controls.Add(this.label41);
     this.groupControlThongTinMuon.Location = new System.Drawing.Point(426, 33);
     this.groupControlThongTinMuon.Name = "groupControlThongTinMuon";
     this.groupControlThongTinMuon.ShowCaption = false;
     this.groupControlThongTinMuon.Size = new System.Drawing.Size(325, 165);
     this.groupControlThongTinMuon.TabIndex = 132;
     this.groupControlThongTinMuon.Text = "Thông tin mượn trả";
     //
     // NgayTra
     //
     this.NgayTra.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.NgayTra.EditValue = null;
     this.NgayTra.Location = new System.Drawing.Point(88, 31);
     this.NgayTra.Name = "NgayTra";
     this.NgayTra.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayTra.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayTra.Size = new System.Drawing.Size(228, 20);
     this.NgayTra.TabIndex = 141;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(7, 34);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(42, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "Ngày trả";
     //
     // groupControl2
     //
     this.groupControl2.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.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.ForeColor = System.Drawing.Color.Blue;
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.groupControl7);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.groupControlThongTinBM);
     this.groupControl2.Controls.Add(this.groupControl3);
     this.groupControl2.Controls.Add(this.groupControl5);
     this.groupControl2.Controls.Add(this.groupControlHD);
     this.groupControl2.Controls.Add(this.groupControlThongTinMuon);
     this.groupControl2.Location = new System.Drawing.Point(6, 202);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(757, 351);
     this.groupControl2.TabIndex = 199;
     this.groupControl2.Text = "Thông tin biên mục";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Appearance.Options.UseFont = true;
     this.labelControl7.Location = new System.Drawing.Point(435, 204);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(72, 13);
     this.labelControl7.TabIndex = 128;
     this.labelControl7.Text = "Thông tin HD";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.Options.UseFont = true;
     this.labelControl6.Location = new System.Drawing.Point(435, 25);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(109, 13);
     this.labelControl6.TabIndex = 128;
     this.labelControl6.Text = "Thông tin mượn trả";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Appearance.Options.UseFont = true;
     this.labelControl5.Location = new System.Drawing.Point(238, 141);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(77, 13);
     this.labelControl5.TabIndex = 128;
     this.labelControl5.Text = "Timecode File";
     //
     // groupControl7
     //
     this.groupControl7.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.groupControl7.Controls.Add(this.GhiChu);
     this.groupControl7.Controls.Add(this.label36);
     this.groupControl7.Location = new System.Drawing.Point(230, 295);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.ShowCaption = false;
     this.groupControl7.Size = new System.Drawing.Size(524, 50);
     this.groupControl7.TabIndex = 235;
     this.groupControl7.Text = "groupControl7";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Appearance.Options.UseFont = true;
     this.labelControl4.Location = new System.Drawing.Point(12, 141);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(108, 13);
     this.labelControl4.TabIndex = 128;
     this.labelControl4.Text = "Timecode Betacam";
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Appearance.Options.UseFont = true;
     this.labelControl3.Location = new System.Drawing.Point(15, 26);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(86, 13);
     this.labelControl3.TabIndex = 128;
     this.labelControl3.Text = "Thông tin chính";
     //
     // groupControlThongTinBM
     //
     this.groupControlThongTinBM.Controls.Add(this.labelControl10);
     this.groupControlThongTinBM.Controls.Add(this.CodeBM);
     this.groupControlThongTinBM.Controls.Add(this.plInfoBoxEtxBM);
     this.groupControlThongTinBM.Controls.Add(this.TapSo);
     this.groupControlThongTinBM.Controls.Add(this.labelControl8);
     this.groupControlThongTinBM.Controls.Add(this.TenTap);
     this.groupControlThongTinBM.Controls.Add(this.label9);
     this.groupControlThongTinBM.Controls.Add(this.ThanhLyBienMuc);
     this.groupControlThongTinBM.Controls.Add(this.label12);
     this.groupControlThongTinBM.Controls.Add(this.label11);
     this.groupControlThongTinBM.Controls.Add(this.label30);
     this.groupControlThongTinBM.Controls.Add(this.SoBang);
     this.groupControlThongTinBM.Controls.Add(this.label3);
     this.groupControlThongTinBM.Controls.Add(this.ThongSoLoaiBang);
     this.groupControlThongTinBM.Controls.Add(this.MaBang);
     this.groupControlThongTinBM.Controls.Add(this.ThoiLuong);
     this.groupControlThongTinBM.Location = new System.Drawing.Point(5, 33);
     this.groupControlThongTinBM.Name = "groupControlThongTinBM";
     this.groupControlThongTinBM.ShowCaption = false;
     this.groupControlThongTinBM.Size = new System.Drawing.Size(415, 101);
     this.groupControlThongTinBM.TabIndex = 234;
     this.groupControlThongTinBM.Text = "groupControl6";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(301, 82);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(42, 13);
     this.labelControl10.TabIndex = 200;
     this.labelControl10.Text = "Code BM";
     //
     // CodeBM
     //
     this.CodeBM.Location = new System.Drawing.Point(348, 77);
     this.CodeBM.Name = "CodeBM";
     this.CodeBM.Properties.MaxLength = 100;
     this.CodeBM.Properties.ReadOnly = true;
     this.CodeBM.Size = new System.Drawing.Size(59, 20);
     this.CodeBM.TabIndex = 199;
     this.CodeBM.TabStop = false;
     //
     // plInfoBoxEtxBM
     //
     this.plInfoBoxEtxBM.Location = new System.Drawing.Point(155, 29);
     this.plInfoBoxEtxBM.Name = "plInfoBoxEtxBM";
     this.plInfoBoxEtxBM.Size = new System.Drawing.Size(24, 21);
     this.plInfoBoxEtxBM.TabIndex = 143;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(6, 58);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(37, 13);
     this.labelControl8.TabIndex = 128;
     this.labelControl8.Text = "Tên tập";
     //
     // TenTap
     //
     this.TenTap.EditValue = "";
     this.TenTap.Location = new System.Drawing.Point(60, 53);
     this.TenTap.Name = "TenTap";
     this.TenTap.Size = new System.Drawing.Size(350, 20);
     this.TenTap.TabIndex = 5;
     //
     // ThoiLuong
     //
     this.ThoiLuong.EditValue = "00:00:00:00";
     this.ThoiLuong.Location = new System.Drawing.Point(60, 77);
     this.ThoiLuong.Name = "ThoiLuong";
     this.ThoiLuong.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.ThoiLuong.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.ThoiLuong.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.ThoiLuong.Properties.ReadOnly = true;
     this.ThoiLuong.Size = new System.Drawing.Size(119, 20);
     this.ThoiLuong.TabIndex = 197;
     this.ThoiLuong.TabStop = false;
     this.ThoiLuong.TimeCode.Frame = 0;
     this.ThoiLuong.TimeCode.Hour = 0;
     this.ThoiLuong.TimeCode.Minute = 0;
     this.ThoiLuong.TimeCode.Second = 0;
     this.ThoiLuong.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // groupControl3
     //
     this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl3.AppearanceCaption.Options.UseFont = true;
     this.groupControl3.Controls.Add(this.TimeCode_File_In);
     this.groupControl3.Controls.Add(this.lblTimeCodeOut);
     this.groupControl3.Controls.Add(this.lblTimeCodeIn);
     this.groupControl3.Controls.Add(this.TimeCode_Betacam_In);
     this.groupControl3.Controls.Add(this.label28);
     this.groupControl3.Controls.Add(this.label2);
     this.groupControl3.Controls.Add(this.TimeCode_File_Out);
     this.groupControl3.Controls.Add(this.label29);
     this.groupControl3.Controls.Add(this.TimeCode_File_Duration);
     this.groupControl3.Controls.Add(this.TimeCode_Betacam_Out);
     this.groupControl3.Location = new System.Drawing.Point(230, 148);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.ShowCaption = false;
     this.groupControl3.Size = new System.Drawing.Size(190, 141);
     this.groupControl3.TabIndex = 233;
     this.groupControl3.Text = "Timecode FILE";
     //
     // TimeCode_File_In
     //
     this.TimeCode_File_In.EditValue = "00:00:00:00";
     this.TimeCode_File_In.Location = new System.Drawing.Point(87, 38);
     this.TimeCode_File_In.Name = "TimeCode_File_In";
     this.TimeCode_File_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_In.Size = new System.Drawing.Size(98, 20);
     this.TimeCode_File_In.TabIndex = 222;
     this.TimeCode_File_In.TimeCode.Frame = 0;
     this.TimeCode_File_In.TimeCode.Hour = 0;
     this.TimeCode_File_In.TimeCode.Minute = 0;
     this.TimeCode_File_In.TimeCode.Second = 0;
     this.TimeCode_File_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // lblTimeCodeOut
     //
     this.lblTimeCodeOut.AutoSize = true;
     this.lblTimeCodeOut.Location = new System.Drawing.Point(8, 68);
     this.lblTimeCodeOut.Name = "lblTimeCodeOut";
     this.lblTimeCodeOut.Size = new System.Drawing.Size(73, 13);
     this.lblTimeCodeOut.TabIndex = 202;
     this.lblTimeCodeOut.Text = "Timecode Out";
     //
     // lblTimeCodeIn
     //
     this.lblTimeCodeIn.AutoSize = true;
     this.lblTimeCodeIn.Location = new System.Drawing.Point(8, 42);
     this.lblTimeCodeIn.Name = "lblTimeCodeIn";
     this.lblTimeCodeIn.Size = new System.Drawing.Size(65, 13);
     this.lblTimeCodeIn.TabIndex = 202;
     this.lblTimeCodeIn.Text = "Timecode In";
     //
     // TimeCode_Betacam_In
     //
     this.TimeCode_Betacam_In.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_In.Location = new System.Drawing.Point(120, 142);
     this.TimeCode_Betacam_In.Name = "TimeCode_Betacam_In";
     this.TimeCode_Betacam_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_In.Properties.ReadOnly = true;
     this.TimeCode_Betacam_In.Size = new System.Drawing.Size(30, 20);
     this.TimeCode_Betacam_In.TabIndex = 222;
     this.TimeCode_Betacam_In.TabStop = false;
     this.TimeCode_Betacam_In.TimeCode.Frame = 0;
     this.TimeCode_Betacam_In.TimeCode.Hour = 0;
     this.TimeCode_Betacam_In.TimeCode.Minute = 0;
     this.TimeCode_Betacam_In.TimeCode.Second = 0;
     this.TimeCode_Betacam_In.TimeCode.TimeCodeString = "00:00:00:00";
     this.TimeCode_Betacam_In.Visible = false;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.ForeColor = System.Drawing.Color.Blue;
     this.label28.Location = new System.Drawing.Point(1, 146);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(115, 13);
     this.label28.TabIndex = 219;
     this.label28.Text = "Timecode betacame In";
     this.label28.Visible = false;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 94);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(24, 13);
     this.label2.TabIndex = 217;
     this.label2.Text = "Dur";
     //
     // TimeCode_File_Out
     //
     this.TimeCode_File_Out.EditValue = "00:00:00:00";
     this.TimeCode_File_Out.Location = new System.Drawing.Point(87, 64);
     this.TimeCode_File_Out.Name = "TimeCode_File_Out";
     this.TimeCode_File_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_Out.Size = new System.Drawing.Size(98, 20);
     this.TimeCode_File_Out.TabIndex = 221;
     this.TimeCode_File_Out.TimeCode.Frame = 0;
     this.TimeCode_File_Out.TimeCode.Hour = 0;
     this.TimeCode_File_Out.TimeCode.Minute = 0;
     this.TimeCode_File_Out.TimeCode.Second = 0;
     this.TimeCode_File_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.ForeColor = System.Drawing.Color.Blue;
     this.label29.Location = new System.Drawing.Point(5, 159);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(123, 13);
     this.label29.TabIndex = 218;
     this.label29.Text = "Timecode betacame Out";
     this.label29.Visible = false;
     //
     // TimeCode_File_Duration
     //
     this.TimeCode_File_Duration.EditValue = "00:00:00:00";
     this.TimeCode_File_Duration.Location = new System.Drawing.Point(87, 90);
     this.TimeCode_File_Duration.Name = "TimeCode_File_Duration";
     this.TimeCode_File_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_Duration.Properties.ReadOnly = true;
     this.TimeCode_File_Duration.Size = new System.Drawing.Size(98, 20);
     this.TimeCode_File_Duration.TabIndex = 220;
     this.TimeCode_File_Duration.TabStop = false;
     this.TimeCode_File_Duration.TimeCode.Frame = 0;
     this.TimeCode_File_Duration.TimeCode.Hour = 0;
     this.TimeCode_File_Duration.TimeCode.Minute = 0;
     this.TimeCode_File_Duration.TimeCode.Second = 0;
     this.TimeCode_File_Duration.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // TimeCode_Betacam_Out
     //
     this.TimeCode_Betacam_Out.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_Out.Location = new System.Drawing.Point(134, 168);
     this.TimeCode_Betacam_Out.Name = "TimeCode_Betacam_Out";
     this.TimeCode_Betacam_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_Out.Properties.ReadOnly = true;
     this.TimeCode_Betacam_Out.Size = new System.Drawing.Size(40, 20);
     this.TimeCode_Betacam_Out.TabIndex = 221;
     this.TimeCode_Betacam_Out.TabStop = false;
     this.TimeCode_Betacam_Out.TimeCode.Frame = 0;
     this.TimeCode_Betacam_Out.TimeCode.Hour = 0;
     this.TimeCode_Betacam_Out.TimeCode.Minute = 0;
     this.TimeCode_Betacam_Out.TimeCode.Second = 0;
     this.TimeCode_Betacam_Out.TimeCode.TimeCodeString = "00:00:00:00";
     this.TimeCode_Betacam_Out.Visible = false;
     //
     // groupControl5
     //
     this.groupControl5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.groupControl5.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl5.AppearanceCaption.Options.UseFont = true;
     this.groupControl5.Controls.Add(this.label43);
     this.groupControl5.Controls.Add(this.lblCut1);
     this.groupControl5.Controls.Add(this.label1);
     this.groupControl5.Controls.Add(this.label4);
     this.groupControl5.Controls.Add(this.lblCut2);
     this.groupControl5.Controls.Add(this.TimeCode_Betacam_Duration);
     this.groupControl5.Controls.Add(this.lblCut3);
     this.groupControl5.Controls.Add(this.lblCut4);
     this.groupControl5.Controls.Add(this.Cut1_In);
     this.groupControl5.Controls.Add(this.lblCut5);
     this.groupControl5.Controls.Add(this.Cut1_Out);
     this.groupControl5.Controls.Add(this.Cut5_Out);
     this.groupControl5.Controls.Add(this.Cut2_In);
     this.groupControl5.Controls.Add(this.Cut5_In);
     this.groupControl5.Controls.Add(this.Cut2_Out);
     this.groupControl5.Controls.Add(this.Cut4_Out);
     this.groupControl5.Controls.Add(this.Cut3_In);
     this.groupControl5.Controls.Add(this.Cut4_In);
     this.groupControl5.Controls.Add(this.Cut3_Out);
     this.groupControl5.Location = new System.Drawing.Point(5, 148);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(220, 196);
     this.groupControl5.TabIndex = 232;
     this.groupControl5.Text = "Timecode BETACAM";
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(158, 16);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(25, 13);
     this.label43.TabIndex = 199;
     this.label43.Text = "Out";
     //
     // lblCut1
     //
     this.lblCut1.AutoSize = true;
     this.lblCut1.Location = new System.Drawing.Point(1, 42);
     this.lblCut1.Name = "lblCut1";
     this.lblCut1.Size = new System.Drawing.Size(33, 13);
     this.lblCut1.TabIndex = 202;
     this.lblCut1.Text = "Cut 1";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(71, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(17, 13);
     this.label1.TabIndex = 203;
     this.label1.Text = "In";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(1, 172);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(24, 13);
     this.label4.TabIndex = 217;
     this.label4.Text = "Dur";
     //
     // lblCut2
     //
     this.lblCut2.AutoSize = true;
     this.lblCut2.Location = new System.Drawing.Point(1, 68);
     this.lblCut2.Name = "lblCut2";
     this.lblCut2.Size = new System.Drawing.Size(33, 13);
     this.lblCut2.TabIndex = 204;
     this.lblCut2.Text = "Cut 2";
     //
     // TimeCode_Betacam_Duration
     //
     this.TimeCode_Betacam_Duration.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_Duration.Location = new System.Drawing.Point(40, 168);
     this.TimeCode_Betacam_Duration.Name = "TimeCode_Betacam_Duration";
     this.TimeCode_Betacam_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_Duration.Properties.ReadOnly = true;
     this.TimeCode_Betacam_Duration.Size = new System.Drawing.Size(172, 20);
     this.TimeCode_Betacam_Duration.TabIndex = 220;
     this.TimeCode_Betacam_Duration.TabStop = false;
     this.TimeCode_Betacam_Duration.TimeCode.Frame = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Hour = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Minute = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Second = 0;
     this.TimeCode_Betacam_Duration.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // lblCut3
     //
     this.lblCut3.AutoSize = true;
     this.lblCut3.Location = new System.Drawing.Point(1, 94);
     this.lblCut3.Name = "lblCut3";
     this.lblCut3.Size = new System.Drawing.Size(33, 13);
     this.lblCut3.TabIndex = 198;
     this.lblCut3.Text = "Cut 3";
     //
     // lblCut4
     //
     this.lblCut4.AutoSize = true;
     this.lblCut4.Location = new System.Drawing.Point(1, 120);
     this.lblCut4.Name = "lblCut4";
     this.lblCut4.Size = new System.Drawing.Size(33, 13);
     this.lblCut4.TabIndex = 201;
     this.lblCut4.Text = "Cut 4";
     //
     // Cut1_In
     //
     this.Cut1_In.EditValue = "00:00:00:00";
     this.Cut1_In.Location = new System.Drawing.Point(40, 38);
     this.Cut1_In.Name = "Cut1_In";
     this.Cut1_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut1_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut1_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut1_In.Size = new System.Drawing.Size(79, 20);
     this.Cut1_In.TabIndex = 206;
     this.Cut1_In.TimeCode.Frame = 0;
     this.Cut1_In.TimeCode.Hour = 0;
     this.Cut1_In.TimeCode.Minute = 0;
     this.Cut1_In.TimeCode.Second = 0;
     this.Cut1_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // lblCut5
     //
     this.lblCut5.AutoSize = true;
     this.lblCut5.Location = new System.Drawing.Point(1, 146);
     this.lblCut5.Name = "lblCut5";
     this.lblCut5.Size = new System.Drawing.Size(33, 13);
     this.lblCut5.TabIndex = 200;
     this.lblCut5.Text = "Cut 5";
     //
     // Cut1_Out
     //
     this.Cut1_Out.EditValue = "00:00:00:00";
     this.Cut1_Out.Location = new System.Drawing.Point(131, 38);
     this.Cut1_Out.Name = "Cut1_Out";
     this.Cut1_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut1_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut1_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut1_Out.Size = new System.Drawing.Size(81, 20);
     this.Cut1_Out.TabIndex = 212;
     this.Cut1_Out.TimeCode.Frame = 0;
     this.Cut1_Out.TimeCode.Hour = 0;
     this.Cut1_Out.TimeCode.Minute = 0;
     this.Cut1_Out.TimeCode.Second = 0;
     this.Cut1_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut5_Out
     //
     this.Cut5_Out.EditValue = "00:00:00:00";
     this.Cut5_Out.Location = new System.Drawing.Point(131, 142);
     this.Cut5_Out.Name = "Cut5_Out";
     this.Cut5_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut5_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut5_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut5_Out.Size = new System.Drawing.Size(81, 20);
     this.Cut5_Out.TabIndex = 205;
     this.Cut5_Out.TimeCode.Frame = 0;
     this.Cut5_Out.TimeCode.Hour = 0;
     this.Cut5_Out.TimeCode.Minute = 0;
     this.Cut5_Out.TimeCode.Second = 0;
     this.Cut5_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut2_In
     //
     this.Cut2_In.EditValue = "00:00:00:00";
     this.Cut2_In.Location = new System.Drawing.Point(40, 64);
     this.Cut2_In.Name = "Cut2_In";
     this.Cut2_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut2_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut2_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut2_In.Size = new System.Drawing.Size(79, 20);
     this.Cut2_In.TabIndex = 211;
     this.Cut2_In.TimeCode.Frame = 0;
     this.Cut2_In.TimeCode.Hour = 0;
     this.Cut2_In.TimeCode.Minute = 0;
     this.Cut2_In.TimeCode.Second = 0;
     this.Cut2_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut5_In
     //
     this.Cut5_In.EditValue = "00:00:00:00";
     this.Cut5_In.Location = new System.Drawing.Point(40, 142);
     this.Cut5_In.Name = "Cut5_In";
     this.Cut5_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut5_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut5_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut5_In.Size = new System.Drawing.Size(79, 20);
     this.Cut5_In.TabIndex = 209;
     this.Cut5_In.TimeCode.Frame = 0;
     this.Cut5_In.TimeCode.Hour = 0;
     this.Cut5_In.TimeCode.Minute = 0;
     this.Cut5_In.TimeCode.Second = 0;
     this.Cut5_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut2_Out
     //
     this.Cut2_Out.EditValue = "00:00:00:00";
     this.Cut2_Out.Location = new System.Drawing.Point(131, 64);
     this.Cut2_Out.Name = "Cut2_Out";
     this.Cut2_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut2_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut2_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut2_Out.Size = new System.Drawing.Size(81, 20);
     this.Cut2_Out.TabIndex = 214;
     this.Cut2_Out.TimeCode.Frame = 0;
     this.Cut2_Out.TimeCode.Hour = 0;
     this.Cut2_Out.TimeCode.Minute = 0;
     this.Cut2_Out.TimeCode.Second = 0;
     this.Cut2_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut4_Out
     //
     this.Cut4_Out.EditValue = "00:00:00:00";
     this.Cut4_Out.Location = new System.Drawing.Point(131, 116);
     this.Cut4_Out.Name = "Cut4_Out";
     this.Cut4_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut4_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut4_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut4_Out.Size = new System.Drawing.Size(81, 20);
     this.Cut4_Out.TabIndex = 210;
     this.Cut4_Out.TimeCode.Frame = 0;
     this.Cut4_Out.TimeCode.Hour = 0;
     this.Cut4_Out.TimeCode.Minute = 0;
     this.Cut4_Out.TimeCode.Second = 0;
     this.Cut4_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut3_In
     //
     this.Cut3_In.EditValue = "00:00:00:00";
     this.Cut3_In.Location = new System.Drawing.Point(40, 90);
     this.Cut3_In.Name = "Cut3_In";
     this.Cut3_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut3_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut3_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut3_In.Size = new System.Drawing.Size(79, 20);
     this.Cut3_In.TabIndex = 213;
     this.Cut3_In.TimeCode.Frame = 0;
     this.Cut3_In.TimeCode.Hour = 0;
     this.Cut3_In.TimeCode.Minute = 0;
     this.Cut3_In.TimeCode.Second = 0;
     this.Cut3_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut4_In
     //
     this.Cut4_In.EditValue = "00:00:00:00";
     this.Cut4_In.Location = new System.Drawing.Point(40, 116);
     this.Cut4_In.Name = "Cut4_In";
     this.Cut4_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut4_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut4_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut4_In.Size = new System.Drawing.Size(79, 20);
     this.Cut4_In.TabIndex = 207;
     this.Cut4_In.TimeCode.Frame = 0;
     this.Cut4_In.TimeCode.Hour = 0;
     this.Cut4_In.TimeCode.Minute = 0;
     this.Cut4_In.TimeCode.Second = 0;
     this.Cut4_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Cut3_Out
     //
     this.Cut3_Out.EditValue = "00:00:00:00";
     this.Cut3_Out.Location = new System.Drawing.Point(131, 90);
     this.Cut3_Out.Name = "Cut3_Out";
     this.Cut3_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.Cut3_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.Cut3_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.Cut3_Out.Size = new System.Drawing.Size(81, 20);
     this.Cut3_Out.TabIndex = 208;
     this.Cut3_Out.TimeCode.Frame = 0;
     this.Cut3_Out.TimeCode.Hour = 0;
     this.Cut3_Out.TimeCode.Minute = 0;
     this.Cut3_Out.TimeCode.Second = 0;
     this.Cut3_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // frmBienMuc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(768, 593);
     this.Controls.Add(this.groupControlThongTin);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.lblTitle);
     this.Name = "frmBienMuc";
     this.Text = "Biên mục";
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlHD)).EndInit();
     this.groupControlHD.ResumeLayout(false);
     this.groupControlHD.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit();
     this.groupControlThongTin.ResumeLayout(false);
     this.groupControlThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CodeCT.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLyChuongTrinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLyBienMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinMuon)).EndInit();
     this.groupControlThongTinMuon.ResumeLayout(false);
     this.groupControlThongTinMuon.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NgayTra.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayTra.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinBM)).EndInit();
     this.groupControlThongTinBM.ResumeLayout(false);
     this.groupControlThongTinBM.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CodeBM.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut1_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut1_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut5_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut2_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut5_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut2_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut4_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut3_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut4_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Cut3_Out.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBienMuc));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.MaBang = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.label11 = new DevExpress.XtraEditors.LabelControl();
     this.LoaiBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label13 = new DevExpress.XtraEditors.LabelControl();
     this.ThongSoLoaiBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label16 = new DevExpress.XtraEditors.LabelControl();
     this.label18 = new DevExpress.XtraEditors.LabelControl();
     this.label19 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label23 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.SODKHD = new ProtocolVN.Framework.Win.PLCombobox();
     this.PostMaster = new DevExpress.XtraEditors.RadioGroup();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.NoiLuuTru = new DevExpress.XtraEditors.ButtonEdit();
     this.label38 = new DevExpress.XtraEditors.LabelControl();
     this.label34 = new DevExpress.XtraEditors.LabelControl();
     this.label27 = new DevExpress.XtraEditors.LabelControl();
     this.label32 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotDaiTruyenHinh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotNgayPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.ThoiHanBanQuyen = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyen_Other = new DevExpress.XtraEditors.TextEdit();
     this.BanQuyen = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label1 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Tang = new DevExpress.XtraEditors.SpinEdit();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.Ngan = new DevExpress.XtraEditors.SpinEdit();
     this.SoBang = new DevExpress.XtraEditors.SpinEdit();
     this.ThoiLuong = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Ke = new DevExpress.XtraEditors.SpinEdit();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label12 = new DevExpress.XtraEditors.LabelControl();
     this.NgayNhap = new DevExpress.XtraEditors.DateEdit();
     this.TongTap = new DevExpress.XtraEditors.PLSpinEdit();
     this.label30 = new DevExpress.XtraEditors.LabelControl();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.DinhKem = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label31 = new DevExpress.XtraEditors.LabelControl();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.label9 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.SoTap = new DevExpress.XtraEditors.PLSpinEdit();
     this.PopUp = new DevExpress.XtraEditors.RadioGroup();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.label17 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TenGoc = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.NgayMuon = new DevExpress.XtraEditors.DateEdit();
     this.label28 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.btnNhapTimeCode = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.TimeCode_Betacam_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.TimeCode_Betacam_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.label37 = new DevExpress.XtraEditors.LabelControl();
     this.TimeCode_Betacam_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.TimeCode_File_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.TimeCode_File_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.TimeCode_File_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.DoiTuongMuon = new DevExpress.XtraEditors.TextEdit();
     this.ThongTinMuon = new DevExpress.XtraEditors.MemoEdit();
     this.label41 = new DevExpress.XtraEditors.LabelControl();
     this.label40 = new DevExpress.XtraEditors.LabelControl();
     this.label39 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl10 = new DevExpress.XtraEditors.GroupControl();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen_Other.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Tang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ke.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DinhKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).BeginInit();
     this.groupControl10.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(443, 614);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 26;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(151, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(238, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(142, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 614);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(335, 31);
     this.flowLayoutPanel2.TabIndex = 25;
     //
     // label3
     //
     this.label3.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label3.Appearance.Options.UseForeColor = true;
     this.label3.Location = new System.Drawing.Point(9, 52);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(41, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Mã băng";
     //
     // MaBang
     //
     this.MaBang.Location = new System.Drawing.Point(85, 48);
     this.MaBang.Name = "MaBang";
     this.MaBang.Properties.MaxLength = 100;
     this.MaBang.Properties.ReadOnly = true;
     this.MaBang.Size = new System.Drawing.Size(124, 20);
     this.MaBang.TabIndex = 0;
     this.MaBang.TabStop = false;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 128);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 77);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(42, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Nội dung";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(293, 128);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(39, 13);
     this.label11.TabIndex = 0;
     this.label11.Text = "Số băng";
     //
     // LoaiBang
     //
     this.LoaiBang.Location = new System.Drawing.Point(85, 150);
     this.LoaiBang.Name = "LoaiBang";
     this.LoaiBang.Size = new System.Drawing.Size(199, 20);
     this.LoaiBang.TabIndex = 120;
     this.LoaiBang.ZZZWidthFactor = 2F;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(9, 154);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(55, 13);
     this.label13.TabIndex = 0;
     this.label13.Text = "Loại lưu trữ";
     //
     // ThongSoLoaiBang
     //
     this.ThongSoLoaiBang.Location = new System.Drawing.Point(352, 150);
     this.ThongSoLoaiBang.Name = "ThongSoLoaiBang";
     this.ThongSoLoaiBang.Size = new System.Drawing.Size(145, 20);
     this.ThongSoLoaiBang.TabIndex = 120;
     this.ThongSoLoaiBang.ZZZWidthFactor = 2F;
     //
     // label16
     //
     this.label16.Appearance.ForeColor = System.Drawing.Color.Red;
     this.label16.Appearance.Options.UseForeColor = true;
     this.label16.Location = new System.Drawing.Point(8, 202);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(49, 13);
     this.label16.TabIndex = 0;
     this.label16.Text = "Tình trạng";
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(8, 32);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(59, 13);
     this.label18.TabIndex = 0;
     this.label18.Text = "Số ĐKCB HD";
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(9, 59);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 0;
     this.label19.Text = "Nơi lưu trữ";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(85, 253);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(199, 20);
     this.KyHieuPhanLoai.TabIndex = 5;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(9, 253);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(293, 254);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label23
     //
     this.label23.Location = new System.Drawing.Point(8, 229);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 0;
     this.label23.Text = "Kệ,ngăn,tầng";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(9, 54);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 28);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 79);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(70, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Nước sản xuất";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(293, 229);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(866, 29);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "BIÊN MỤC";
     //
     // SODKHD
     //
     this.SODKHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SODKHD.DataSource = null;
     this.SODKHD.DisplayField = null;
     this.SODKHD.Location = new System.Drawing.Point(112, 28);
     this.SODKHD.Name = "SODKHD";
     this.SODKHD.Size = new System.Drawing.Size(218, 22);
     this.SODKHD.TabIndex = 12;
     this.SODKHD.ValueField = null;
     this.SODKHD.SelectedIndexChanged += new System.EventHandler(this.SODKHD_SelectedIndexChanged);
     //
     // PostMaster
     //
     this.PostMaster.EditValue = "Y";
     this.PostMaster.Location = new System.Drawing.Point(85, 202);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("Y", "POST"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("N", "MASTER"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("A", "BOTH")});
     this.PostMaster.Size = new System.Drawing.Size(199, 20);
     this.PostMaster.TabIndex = 125;
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(2, 2);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(137, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 5;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControl1
     //
     this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl1.AppearanceCaption.Options.UseFont = true;
     this.groupControl1.Controls.Add(this.NoiLuuTru);
     this.groupControl1.Controls.Add(this.label38);
     this.groupControl1.Controls.Add(this.label19);
     this.groupControl1.Controls.Add(this.label18);
     this.groupControl1.Controls.Add(this.SODKHD);
     this.groupControl1.Location = new System.Drawing.Point(523, 512);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(335, 96);
     this.groupControl1.TabIndex = 126;
     this.groupControl1.Text = "Thông tin HD";
     //
     // NoiLuuTru
     //
     this.NoiLuuTru.Location = new System.Drawing.Point(112, 52);
     this.NoiLuuTru.Name = "NoiLuuTru";
     this.NoiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete),
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NoiLuuTru.Properties.ReadOnly = true;
     this.NoiLuuTru.Size = new System.Drawing.Size(218, 20);
     this.NoiLuuTru.TabIndex = 196;
     this.NoiLuuTru.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.buttonEdit1_ButtonClick);
     //
     // label38
     //
     this.label38.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.label38.Appearance.Options.UseFont = true;
     this.label38.Location = new System.Drawing.Point(109, 74);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(139, 13);
     this.label38.TabIndex = 0;
     this.label38.Text = "(Đường dẫn đầy đủ trên HD)";
     //
     // label34
     //
     this.label34.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label34.Appearance.Options.UseForeColor = true;
     this.label34.Location = new System.Drawing.Point(4, 81);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(17, 13);
     this.label34.TabIndex = 0;
     this.label34.Text = "Dur";
     //
     // label27
     //
     this.label27.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label27.Appearance.Options.UseForeColor = true;
     this.label27.Location = new System.Drawing.Point(4, 58);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(69, 13);
     this.label27.TabIndex = 130;
     this.label27.Text = "Time code Out";
     //
     // label32
     //
     this.label32.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label32.Appearance.Options.UseForeColor = true;
     this.label32.Location = new System.Drawing.Point(4, 33);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(61, 13);
     this.label32.TabIndex = 132;
     this.label32.Text = "Time code In";
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControl2.Location = new System.Drawing.Point(523, 312);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(333, 194);
     this.groupControl2.TabIndex = 127;
     this.groupControl2.Text = "Ngày phát sóng đầu tiên";
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(2, 22);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(329, 170);
     this.gridControlNgayPhatDauTien.TabIndex = 136;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotDaiTruyenHinh,
     this.CotNgayPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotDaiTruyenHinh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // CotDaiTruyenHinh
     //
     this.CotDaiTruyenHinh.Caption = "Kênh phát sóng";
     this.CotDaiTruyenHinh.Name = "CotDaiTruyenHinh";
     this.CotDaiTruyenHinh.SummaryItem.DisplayFormat = "Tồng số lần đã phát {0}";
     this.CotDaiTruyenHinh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.CotDaiTruyenHinh.Visible = true;
     this.CotDaiTruyenHinh.VisibleIndex = 0;
     this.CotDaiTruyenHinh.Width = 107;
     //
     // CotNgayPhat
     //
     this.CotNgayPhat.Caption = "Ngày phát";
     this.CotNgayPhat.Name = "CotNgayPhat";
     this.CotNgayPhat.Visible = true;
     this.CotNgayPhat.VisibleIndex = 1;
     this.CotNgayPhat.Width = 62;
     //
     // Rating
     //
     this.Rating.Location = new System.Drawing.Point(352, 227);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(117, 20);
     this.Rating.TabIndex = 136;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(85, 354);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(412, 20);
     this.DoiTuongKhanGia.TabIndex = 132;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 357);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControl3
     //
     this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl3.AppearanceCaption.Options.UseFont = true;
     this.groupControl3.Controls.Add(this.ThoiHanBanQuyen);
     this.groupControl3.Controls.Add(this.BanQuyen_Other);
     this.groupControl3.Controls.Add(this.BanQuyen);
     this.groupControl3.Controls.Add(this.label1);
     this.groupControl3.Controls.Add(this.QuocGia);
     this.groupControl3.Controls.Add(this.DonViSoHuu);
     this.groupControl3.Controls.Add(this.DonViCungCap);
     this.groupControl3.Controls.Add(this.label25);
     this.groupControl3.Controls.Add(this.label5);
     this.groupControl3.Controls.Add(this.label2);
     this.groupControl3.Controls.Add(this.label4);
     this.groupControl3.Controls.Add(this.NamSanXuat);
     this.groupControl3.Location = new System.Drawing.Point(523, 177);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(333, 129);
     this.groupControl3.TabIndex = 128;
     this.groupControl3.Text = "Nguồn gốc";
     //
     // ThoiHanBanQuyen
     //
     this.ThoiHanBanQuyen.EditValue = new System.DateTime(2010, 8, 30, 14, 57, 59, 852);
     this.ThoiHanBanQuyen.Location = new System.Drawing.Point(207, 103);
     this.ThoiHanBanQuyen.Name = "ThoiHanBanQuyen";
     this.ThoiHanBanQuyen.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ThoiHanBanQuyen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ThoiHanBanQuyen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ThoiHanBanQuyen.Size = new System.Drawing.Size(119, 20);
     this.ThoiHanBanQuyen.TabIndex = 122;
     //
     // BanQuyen_Other
     //
     this.BanQuyen_Other.EditValue = "";
     this.BanQuyen_Other.Location = new System.Drawing.Point(207, 103);
     this.BanQuyen_Other.Name = "BanQuyen_Other";
     this.BanQuyen_Other.Size = new System.Drawing.Size(119, 20);
     this.BanQuyen_Other.TabIndex = 5;
     this.BanQuyen_Other.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // BanQuyen
     //
     this.BanQuyen.Location = new System.Drawing.Point(112, 103);
     this.BanQuyen.Name = "BanQuyen";
     this.BanQuyen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyen.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.BanQuyen.Size = new System.Drawing.Size(89, 20);
     this.BanQuyen.TabIndex = 121;
     //
     // label1
     //
     this.label1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Appearance.ForeColor = System.Drawing.Color.Red;
     this.label1.Appearance.Options.UseFont = true;
     this.label1.Appearance.Options.UseForeColor = true;
     this.label1.Location = new System.Drawing.Point(8, 106);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(95, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Thời hạn bản quyền";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(112, 77);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(89, 20);
     this.QuocGia.TabIndex = 132;
     this.QuocGia.ValueField = null;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(112, 51);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(214, 20);
     this.DonViSoHuu.TabIndex = 120;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(112, 24);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(214, 20);
     this.DonViCungCap.TabIndex = 120;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(207, 80);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(254, 77);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(72, 20);
     this.NamSanXuat.TabIndex = 135;
     //
     // groupControl4
     //
     this.groupControl4.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl4.AppearanceCaption.Options.UseFont = true;
     this.groupControl4.Controls.Add(this.NoiDung);
     this.groupControl4.Controls.Add(this.ThanhLy);
     this.groupControl4.Controls.Add(this.groupControl8);
     this.groupControl4.Controls.Add(this.label22);
     this.groupControl4.Controls.Add(this.Rating);
     this.groupControl4.Controls.Add(this.KyHieuPhanLoai);
     this.groupControl4.Controls.Add(this.Tang);
     this.groupControl4.Controls.Add(this.label21);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.label24);
     this.groupControl4.Controls.Add(this.Ngan);
     this.groupControl4.Controls.Add(this.SoBang);
     this.groupControl4.Controls.Add(this.ThoiLuong);
     this.groupControl4.Controls.Add(this.Ke);
     this.groupControl4.Controls.Add(this.TuKhoaSelect);
     this.groupControl4.Controls.Add(this.label12);
     this.groupControl4.Controls.Add(this.DoiTuongKhanGia);
     this.groupControl4.Controls.Add(this.LoaiBang);
     this.groupControl4.Controls.Add(this.label23);
     this.groupControl4.Controls.Add(this.label13);
     this.groupControl4.Controls.Add(this.label14);
     this.groupControl4.Controls.Add(this.ThongSoLoaiBang);
     this.groupControl4.Controls.Add(this.NgayNhap);
     this.groupControl4.Controls.Add(this.TongTap);
     this.groupControl4.Controls.Add(this.label30);
     this.groupControl4.Controls.Add(this.GhiChu);
     this.groupControl4.Controls.Add(this.DinhKem);
     this.groupControl4.Controls.Add(this.TuKhoaText);
     this.groupControl4.Controls.Add(this.label31);
     this.groupControl4.Controls.Add(this.label20);
     this.groupControl4.Controls.Add(this.label9);
     this.groupControl4.Controls.Add(this.label10);
     this.groupControl4.Controls.Add(this.SoTap);
     this.groupControl4.Controls.Add(this.PopUp);
     this.groupControl4.Controls.Add(this.label33);
     this.groupControl4.Controls.Add(this.label36);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.Info);
     this.groupControl4.Controls.Add(this.TietMuc);
     this.groupControl4.Controls.Add(this.MaBang);
     this.groupControl4.Controls.Add(this.label7);
     this.groupControl4.Controls.Add(this.PostMaster);
     this.groupControl4.Controls.Add(this.label11);
     this.groupControl4.Controls.Add(this.label3);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.TenGoc);
     this.groupControl4.Controls.Add(this.label42);
     this.groupControl4.Controls.Add(this.label8);
     this.groupControl4.Location = new System.Drawing.Point(12, 44);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(505, 419);
     this.groupControl4.TabIndex = 129;
     this.groupControl4.Text = "Thông tin chính";
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(85, 74);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(412, 20);
     this.NoiDung.TabIndex = 199;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(83, 26);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 136;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(352, 254);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(145, 46);
     this.groupControl8.TabIndex = 132;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(137, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 17;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 8);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(137, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Tang
     //
     this.Tang.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Tang.Location = new System.Drawing.Point(222, 227);
     this.Tang.Name = "Tang";
     this.Tang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Tang.Size = new System.Drawing.Size(62, 20);
     this.Tang.TabIndex = 198;
     //
     // label24
     //
     this.label24.Location = new System.Drawing.Point(478, 230);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // Ngan
     //
     this.Ngan.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Ngan.Location = new System.Drawing.Point(157, 227);
     this.Ngan.Name = "Ngan";
     this.Ngan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Ngan.Size = new System.Drawing.Size(59, 20);
     this.Ngan.TabIndex = 198;
     //
     // SoBang
     //
     this.SoBang.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.SoBang.Location = new System.Drawing.Point(352, 125);
     this.SoBang.Name = "SoBang";
     this.SoBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoBang.Size = new System.Drawing.Size(145, 20);
     this.SoBang.TabIndex = 198;
     //
     // ThoiLuong
     //
     this.ThoiLuong.EditValue = "00:00:00:00";
     this.ThoiLuong.Location = new System.Drawing.Point(85, 176);
     this.ThoiLuong.Name = "ThoiLuong";
     this.ThoiLuong.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.ThoiLuong.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.ThoiLuong.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.ThoiLuong.Properties.ReadOnly = true;
     this.ThoiLuong.Size = new System.Drawing.Size(200, 20);
     this.ThoiLuong.TabIndex = 197;
     this.ThoiLuong.TabStop = false;
     this.ThoiLuong.TimeCode.Frame = 0;
     this.ThoiLuong.TimeCode.Hour = 0;
     this.ThoiLuong.TimeCode.Minute = 0;
     this.ThoiLuong.TimeCode.Second = 0;
     this.ThoiLuong.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Ke
     //
     this.Ke.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Ke.Location = new System.Drawing.Point(85, 227);
     this.Ke.Name = "Ke";
     this.Ke.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Ke.Size = new System.Drawing.Size(66, 20);
     this.Ke.TabIndex = 198;
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(85, 330);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(199, 19);
     this.TuKhoaSelect.TabIndex = 132;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(293, 154);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 13);
     this.label12.TabIndex = 0;
     this.label12.Text = "Thông số";
     //
     // NgayNhap
     //
     this.NgayNhap.EditValue = null;
     this.NgayNhap.Location = new System.Drawing.Point(352, 48);
     this.NgayNhap.Name = "NgayNhap";
     this.NgayNhap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayNhap.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayNhap.Size = new System.Drawing.Size(145, 20);
     this.NgayNhap.TabIndex = 141;
     //
     // TongTap
     //
     this.TongTap.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TongTap.Location = new System.Drawing.Point(450, 176);
     this.TongTap.Name = "TongTap";
     this.TongTap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongTap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongTap.Properties.Mask.EditMask = "n0";
     this.TongTap.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.TongTap.Properties.MaxLength = 1;
     this.TongTap.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.TongTap.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TongTap.Size = new System.Drawing.Size(47, 20);
     this.TongTap.TabIndex = 135;
     //
     // label30
     //
     this.label30.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label30.Appearance.Options.UseForeColor = true;
     this.label30.Location = new System.Drawing.Point(8, 178);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(50, 13);
     this.label30.TabIndex = 133;
     this.label30.Text = "Thời lượng";
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(85, 380);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(412, 34);
     this.GhiChu.TabIndex = 134;
     //
     // DinhKem
     //
     this.DinhKem.Location = new System.Drawing.Point(352, 305);
     this.DinhKem.Name = "DinhKem";
     this.DinhKem.Size = new System.Drawing.Size(145, 44);
     this.DinhKem.TabIndex = 134;
     //
     // TuKhoaText
     //
     this.TuKhoaText.Location = new System.Drawing.Point(85, 278);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(199, 50);
     this.TuKhoaText.TabIndex = 134;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label31
     //
     this.label31.Location = new System.Drawing.Point(290, 300);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(59, 13);
     this.label31.TabIndex = 131;
     this.label31.Text = "TT Đính kèm";
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(8, 280);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(293, 180);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(32, 13);
     this.label9.TabIndex = 128;
     this.label9.Text = "Tập số";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(403, 179);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(43, 13);
     this.label10.TabIndex = 127;
     this.label10.Text = "Tổng tập";
     //
     // SoTap
     //
     this.SoTap.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.SoTap.Location = new System.Drawing.Point(352, 176);
     this.SoTap.Name = "SoTap";
     this.SoTap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoTap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoTap.Properties.Mask.EditMask = "n0";
     this.SoTap.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.SoTap.Properties.MaxLength = 1;
     this.SoTap.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.SoTap.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.SoTap.Size = new System.Drawing.Size(50, 20);
     this.SoTap.TabIndex = 136;
     //
     // PopUp
     //
     this.PopUp.EditValue = "Y";
     this.PopUp.Location = new System.Drawing.Point(352, 202);
     this.PopUp.Name = "PopUp";
     this.PopUp.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("Y", "Yes"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("N", "No")});
     this.PopUp.Size = new System.Drawing.Size(145, 20);
     this.PopUp.TabIndex = 140;
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(287, 48);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(52, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày nhập";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(9, 382);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(293, 205);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(36, 13);
     this.label17.TabIndex = 129;
     this.label17.Text = "POP Up";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(243, 48);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 126;
     //
     // TietMuc
     //
     this.TietMuc.Location = new System.Drawing.Point(85, 125);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(199, 20);
     this.TietMuc.TabIndex = 120;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // TenGoc
     //
     this.TenGoc.EditValue = "";
     this.TenGoc.Location = new System.Drawing.Point(85, 99);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Size = new System.Drawing.Size(412, 20);
     this.TenGoc.TabIndex = 5;
     this.TenGoc.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(8, 102);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // NgayMuon
     //
     this.NgayMuon.EditValue = null;
     this.NgayMuon.Location = new System.Drawing.Point(112, 25);
     this.NgayMuon.Name = "NgayMuon";
     this.NgayMuon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayMuon.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayMuon.Size = new System.Drawing.Size(213, 20);
     this.NgayMuon.TabIndex = 141;
     //
     // label28
     //
     this.label28.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label28.Appearance.Options.UseForeColor = true;
     this.label28.Location = new System.Drawing.Point(6, 33);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(61, 13);
     this.label28.TabIndex = 132;
     this.label28.Text = "Time code In";
     //
     // label29
     //
     this.label29.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label29.Appearance.Options.UseForeColor = true;
     this.label29.Location = new System.Drawing.Point(6, 58);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(69, 13);
     this.label29.TabIndex = 130;
     this.label29.Text = "Time code Out";
     //
     // groupControl6
     //
     this.groupControl6.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl6.AppearanceCaption.Options.UseFont = true;
     this.groupControl6.Controls.Add(this.btnNhapTimeCode);
     this.groupControl6.Controls.Add(this.groupControl5);
     this.groupControl6.Controls.Add(this.groupControl7);
     this.groupControl6.Location = new System.Drawing.Point(12, 469);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(505, 140);
     this.groupControl6.TabIndex = 131;
     this.groupControl6.Text = "Thông tin timecode";
     //
     // btnNhapTimeCode
     //
     this.btnNhapTimeCode.Location = new System.Drawing.Point(232, 51);
     this.btnNhapTimeCode.Name = "btnNhapTimeCode";
     this.btnNhapTimeCode.Size = new System.Drawing.Size(60, 45);
     this.btnNhapTimeCode.TabIndex = 199;
     this.btnNhapTimeCode.Text = "Timecode";
     this.btnNhapTimeCode.Click += new System.EventHandler(this.btnNhapTimeCode_Click);
     //
     // groupControl5
     //
     this.groupControl5.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.groupControl5.AppearanceCaption.Options.UseFont = true;
     this.groupControl5.Controls.Add(this.TimeCode_Betacam_Duration);
     this.groupControl5.Controls.Add(this.TimeCode_Betacam_Out);
     this.groupControl5.Controls.Add(this.label37);
     this.groupControl5.Controls.Add(this.TimeCode_Betacam_In);
     this.groupControl5.Controls.Add(this.label29);
     this.groupControl5.Controls.Add(this.label28);
     this.groupControl5.Location = new System.Drawing.Point(8, 25);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(218, 108);
     this.groupControl5.TabIndex = 121;
     this.groupControl5.Text = "Timecode BETACAM";
     //
     // TimeCode_Betacam_Duration
     //
     this.TimeCode_Betacam_Duration.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_Duration.Location = new System.Drawing.Point(83, 81);
     this.TimeCode_Betacam_Duration.Name = "TimeCode_Betacam_Duration";
     this.TimeCode_Betacam_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_Duration.Properties.ReadOnly = true;
     this.TimeCode_Betacam_Duration.Size = new System.Drawing.Size(118, 20);
     this.TimeCode_Betacam_Duration.TabIndex = 197;
     this.TimeCode_Betacam_Duration.TabStop = false;
     this.TimeCode_Betacam_Duration.TimeCode.Frame = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Hour = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Minute = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Second = 0;
     this.TimeCode_Betacam_Duration.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // TimeCode_Betacam_Out
     //
     this.TimeCode_Betacam_Out.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_Out.Location = new System.Drawing.Point(83, 55);
     this.TimeCode_Betacam_Out.Name = "TimeCode_Betacam_Out";
     this.TimeCode_Betacam_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_Out.Properties.ReadOnly = true;
     this.TimeCode_Betacam_Out.Size = new System.Drawing.Size(118, 20);
     this.TimeCode_Betacam_Out.TabIndex = 197;
     this.TimeCode_Betacam_Out.TimeCode.Frame = 0;
     this.TimeCode_Betacam_Out.TimeCode.Hour = 0;
     this.TimeCode_Betacam_Out.TimeCode.Minute = 0;
     this.TimeCode_Betacam_Out.TimeCode.Second = 0;
     this.TimeCode_Betacam_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // label37
     //
     this.label37.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label37.Appearance.Options.UseForeColor = true;
     this.label37.Location = new System.Drawing.Point(6, 84);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(17, 13);
     this.label37.TabIndex = 0;
     this.label37.Text = "Dur";
     //
     // TimeCode_Betacam_In
     //
     this.TimeCode_Betacam_In.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_In.Location = new System.Drawing.Point(83, 30);
     this.TimeCode_Betacam_In.Name = "TimeCode_Betacam_In";
     this.TimeCode_Betacam_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_In.Properties.ReadOnly = true;
     this.TimeCode_Betacam_In.Size = new System.Drawing.Size(118, 20);
     this.TimeCode_Betacam_In.TabIndex = 197;
     this.TimeCode_Betacam_In.TimeCode.Frame = 0;
     this.TimeCode_Betacam_In.TimeCode.Hour = 0;
     this.TimeCode_Betacam_In.TimeCode.Minute = 0;
     this.TimeCode_Betacam_In.TimeCode.Second = 0;
     this.TimeCode_Betacam_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // groupControl7
     //
     this.groupControl7.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.groupControl7.AppearanceCaption.Options.UseFont = true;
     this.groupControl7.Controls.Add(this.TimeCode_File_Duration);
     this.groupControl7.Controls.Add(this.TimeCode_File_In);
     this.groupControl7.Controls.Add(this.label32);
     this.groupControl7.Controls.Add(this.label27);
     this.groupControl7.Controls.Add(this.TimeCode_File_Out);
     this.groupControl7.Controls.Add(this.label34);
     this.groupControl7.Location = new System.Drawing.Point(300, 22);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.Size = new System.Drawing.Size(200, 108);
     this.groupControl7.TabIndex = 122;
     this.groupControl7.Text = "Timecode FILE";
     //
     // TimeCode_File_Duration
     //
     this.TimeCode_File_Duration.EditValue = "00:00:00:00";
     this.TimeCode_File_Duration.Location = new System.Drawing.Point(86, 81);
     this.TimeCode_File_Duration.Name = "TimeCode_File_Duration";
     this.TimeCode_File_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_Duration.Properties.ReadOnly = true;
     this.TimeCode_File_Duration.Size = new System.Drawing.Size(111, 20);
     this.TimeCode_File_Duration.TabIndex = 197;
     this.TimeCode_File_Duration.TabStop = false;
     this.TimeCode_File_Duration.TimeCode.Frame = 0;
     this.TimeCode_File_Duration.TimeCode.Hour = 0;
     this.TimeCode_File_Duration.TimeCode.Minute = 0;
     this.TimeCode_File_Duration.TimeCode.Second = 0;
     this.TimeCode_File_Duration.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // TimeCode_File_In
     //
     this.TimeCode_File_In.EditValue = "00:00:00:00";
     this.TimeCode_File_In.Location = new System.Drawing.Point(86, 30);
     this.TimeCode_File_In.Name = "TimeCode_File_In";
     this.TimeCode_File_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_In.Properties.ReadOnly = true;
     this.TimeCode_File_In.Size = new System.Drawing.Size(111, 20);
     this.TimeCode_File_In.TabIndex = 197;
     this.TimeCode_File_In.TimeCode.Frame = 0;
     this.TimeCode_File_In.TimeCode.Hour = 0;
     this.TimeCode_File_In.TimeCode.Minute = 0;
     this.TimeCode_File_In.TimeCode.Second = 0;
     this.TimeCode_File_In.TimeCode.TimeCodeString = "00:00:00:00";
     this.TimeCode_File_In.EditValueChanged += new System.EventHandler(this.TimeCode_File_In_EditValueChanged);
     //
     // TimeCode_File_Out
     //
     this.TimeCode_File_Out.EditValue = "00:00:00:00";
     this.TimeCode_File_Out.Location = new System.Drawing.Point(86, 55);
     this.TimeCode_File_Out.Name = "TimeCode_File_Out";
     this.TimeCode_File_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_Out.Properties.ReadOnly = true;
     this.TimeCode_File_Out.Size = new System.Drawing.Size(111, 20);
     this.TimeCode_File_Out.TabIndex = 197;
     this.TimeCode_File_Out.TimeCode.Frame = 0;
     this.TimeCode_File_Out.TimeCode.Hour = 0;
     this.TimeCode_File_Out.TimeCode.Minute = 0;
     this.TimeCode_File_Out.TimeCode.Second = 0;
     this.TimeCode_File_Out.TimeCode.TimeCodeString = "00:00:00:00";
     this.TimeCode_File_Out.EditValueChanged += new System.EventHandler(this.TimeCode_File_In_EditValueChanged);
     //
     // DoiTuongMuon
     //
     this.DoiTuongMuon.EditValue = "";
     this.DoiTuongMuon.Location = new System.Drawing.Point(112, 50);
     this.DoiTuongMuon.Name = "DoiTuongMuon";
     this.DoiTuongMuon.Size = new System.Drawing.Size(213, 20);
     this.DoiTuongMuon.TabIndex = 5;
     this.DoiTuongMuon.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // ThongTinMuon
     //
     this.ThongTinMuon.Location = new System.Drawing.Point(112, 75);
     this.ThongTinMuon.Name = "ThongTinMuon";
     this.ThongTinMuon.Size = new System.Drawing.Size(213, 47);
     this.ThongTinMuon.TabIndex = 134;
     //
     // label41
     //
     this.label41.Location = new System.Drawing.Point(10, 28);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(55, 13);
     this.label41.TabIndex = 0;
     this.label41.Text = "Ngày mượn";
     //
     // label40
     //
     this.label40.Location = new System.Drawing.Point(10, 53);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 0;
     this.label40.Text = "Đối tượng";
     //
     // label39
     //
     this.label39.Location = new System.Drawing.Point(10, 79);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(75, 13);
     this.label39.TabIndex = 0;
     this.label39.Text = "Thông tin mượn";
     //
     // groupControl10
     //
     this.groupControl10.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl10.AppearanceCaption.Options.UseFont = true;
     this.groupControl10.Controls.Add(this.NgayMuon);
     this.groupControl10.Controls.Add(this.DoiTuongMuon);
     this.groupControl10.Controls.Add(this.label39);
     this.groupControl10.Controls.Add(this.ThongTinMuon);
     this.groupControl10.Controls.Add(this.label40);
     this.groupControl10.Controls.Add(this.label41);
     this.groupControl10.Location = new System.Drawing.Point(523, 44);
     this.groupControl10.Name = "groupControl10";
     this.groupControl10.Size = new System.Drawing.Size(330, 127);
     this.groupControl10.TabIndex = 132;
     this.groupControl10.Text = "Thông tin mượn trả";
     //
     // frmBienMuc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(866, 648);
     this.Controls.Add(this.groupControl10);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl6);
     this.Controls.Add(this.groupControl1);
     this.Name = "frmBienMuc";
     this.Text = "Biên mục";
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen_Other.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Tang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ke.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DinhKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).EndInit();
     this.groupControl10.ResumeLayout(false);
     this.groupControl10.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBufferAnaylsis));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.Cancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.CheckButton();
     this.Select = new DevExpress.XtraEditors.CheckButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.cbRelative = new DevExpress.XtraEditors.CheckEdit();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.speHeight = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbRelative.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.speHeight.Properties)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // spinEdit1
     //
     this.spinEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.EditValue = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(66, 15);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     serializableAppearanceObject1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject1.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject1.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject1.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject1.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.spinEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit1.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit1.Size = new System.Drawing.Size(66, 21);
     this.spinEdit1.TabIndex = 2;
     this.spinEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl2
     //
     this.labelControl2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl2.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl2.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl2.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl2.Location = new System.Drawing.Point(137, 18);
     this.labelControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(12, 14);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "米";
     this.labelControl2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // Cancel
     //
     this.Cancel.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Cancel.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Cancel.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Cancel.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Cancel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Cancel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.Cancel.DialogResult = System.Windows.Forms.DialogResult.None;
     this.Cancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.Cancel.Location = new System.Drawing.Point(265, 130);
     this.Cancel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(87, 27);
     this.Cancel.TabIndex = 4;
     this.Cancel.Text = "取消";
     this.Cancel.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton2.Image")));
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton2.Location = new System.Drawing.Point(78, 130);
     this.simpleButton2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(87, 27);
     this.simpleButton2.TabIndex = 6;
     this.simpleButton2.Text = "画图";
     this.simpleButton2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton2.Visible = false;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // Select
     //
     this.Select.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.Select.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Select.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Select.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Select.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Select.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Select.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Select.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.Select.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.Select.DialogResult = System.Windows.Forms.DialogResult.None;
     this.Select.Image = ((System.Drawing.Image)(resources.GetObject("Select.Image")));
     this.Select.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.Select.Location = new System.Drawing.Point(172, 130);
     this.Select.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Select.Name = "Select";
     this.Select.Size = new System.Drawing.Size(87, 27);
     this.Select.TabIndex = 5;
     this.Select.Text = "选择模型";
     this.Select.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.Select.Click += new System.EventHandler(this.Select_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.checkEdit1.EditValue = true;
     this.checkEdit1.Location = new System.Drawing.Point(62, 18);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.checkEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.checkEdit1.Properties.Caption = "附在地表";
     this.checkEdit1.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.checkEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.checkEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.checkEdit1.Properties.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.InactiveChecked;
     this.checkEdit1.Size = new System.Drawing.Size(70, 19);
     this.checkEdit1.TabIndex = 7;
     this.checkEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // cbRelative
     //
     this.cbRelative.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.cbRelative.Location = new System.Drawing.Point(62, 43);
     this.cbRelative.Name = "cbRelative";
     this.cbRelative.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.cbRelative.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AutoHeight = false;
     this.cbRelative.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.cbRelative.Properties.Caption = "相对地表高";
     this.cbRelative.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.cbRelative.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.cbRelative.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.cbRelative.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cbRelative.Properties.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.InactiveChecked;
     this.cbRelative.Size = new System.Drawing.Size(82, 19);
     this.cbRelative.TabIndex = 8;
     this.cbRelative.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.cbRelative.CheckedChanged += new System.EventHandler(this.cbRelative_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.speHeight);
     this.groupBox1.Controls.Add(this.labelControl1);
     this.groupBox1.Controls.Add(this.checkEdit1);
     this.groupBox1.Controls.Add(this.cbRelative);
     this.groupBox1.Location = new System.Drawing.Point(12, 48);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(338, 73);
     this.groupBox1.TabIndex = 9;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "结果显示";
     //
     // speHeight
     //
     this.speHeight.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.speHeight.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.speHeight.Enabled = false;
     this.speHeight.Location = new System.Drawing.Point(150, 42);
     this.speHeight.Name = "speHeight";
     this.speHeight.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.speHeight.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.speHeight.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     serializableAppearanceObject2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject2.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject2.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject2.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject2.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.speHeight.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.speHeight.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.speHeight.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.speHeight.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.speHeight.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.speHeight.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.speHeight.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.speHeight.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.speHeight.Size = new System.Drawing.Size(66, 21);
     this.speHeight.TabIndex = 2;
     this.speHeight.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl1
     //
     this.labelControl1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl1.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl1.Location = new System.Drawing.Point(221, 45);
     this.labelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(12, 14);
     this.labelControl1.TabIndex = 3;
     this.labelControl1.Text = "米";
     this.labelControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.spinEdit1);
     this.groupBox2.Controls.Add(this.labelControl2);
     this.groupBox2.Location = new System.Drawing.Point(13, 3);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(339, 40);
     this.groupBox2.TabIndex = 10;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "缓冲距离";
     //
     // FrmBufferAnaylsis
     //
     this.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(362, 167);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.Select);
     this.Controls.Add(this.Cancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Name = "FrmBufferAnaylsis";
     this.ShowInTaskbar = false;
     this.Text = "缓冲区分析";
     this.TopMost = true;
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmBufferAnaylsis_FormClosed);
     this.Load += new System.EventHandler(this.FrmBufferAnaylsis_Load);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbRelative.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.speHeight.Properties)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDefinirSLead));
     this.toolStripBarraLlamada = new System.Windows.Forms.ToolStrip();
     this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuSalir = new System.Windows.Forms.ToolStripButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbTipoCompetencia = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtCompetencia = new DevExpress.XtraEditors.TextEdit();
     this.label9999 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.lstIncoterms = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.lstTerminosCompra = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.DateRevision = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.gridCompetencia = new DevExpress.XtraGrid.GridControl();
     this.gridViewCompetencia = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColTipoCompetencia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColCompetidor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.sButtonEliminar = new DevExpress.XtraEditors.SimpleButton();
     this.sBAgregar = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.txtconsigEmail = new DevExpress.XtraEditors.TextEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigNombre = new DevExpress.XtraEditors.TextEdit();
     this.txtConsigContacto = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigDireccion = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigTelefono = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigCiudad = new DevExpress.XtraEditors.TextEdit();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.txtShipEmail = new DevExpress.XtraEditors.TextEdit();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipNombre = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipWeb = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipContacto = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipDireccion = new DevExpress.XtraEditors.TextEdit();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipTelefono = new DevExpress.XtraEditors.TextEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipZipCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShipPais = new DevExpress.XtraEditors.TextEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipCiudad = new DevExpress.XtraEditors.TextEdit();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cboagente = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtContacto = new DevExpress.XtraEditors.TextEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.DateApertura = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.textSLeadReferencia = new DevExpress.XtraEditors.TextEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.ButtonEnviar = new DevExpress.XtraEditors.SimpleButton();
     this.gridAsignaciones = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColVendedor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.txtCommodity = new DevExpress.XtraEditors.TextEdit();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.lstTipoContenedor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.snNumEmbMes = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.txtCarrier = new DevExpress.XtraEditors.TextEdit();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.txtPod = new DevExpress.XtraEditors.TextEdit();
     this.cboVendedores = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.cboUMAereo = new DevExpress.XtraEditors.ComboBox();
     this.cboUMFCL = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cboUMLCL = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.txtCantidadLCL = new DevExpress.XtraEditors.TextEdit();
     this.txtCantidadFCL = new DevExpress.XtraEditors.TextEdit();
     this.txtCantidadAereo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.DateUltimoEmbarque = new DevExpress.XtraEditors.DateEdit();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.txtpol = new DevExpress.XtraEditors.TextEdit();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.lstProductos = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.BtnAsignar = new DevExpress.XtraEditors.SimpleButton();
     this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.toolStripBarraLlamada.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTipoCompetencia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompetencia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIncoterms)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTerminosCompra)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCompetencia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCompetencia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtconsigEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigNombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigContacto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigDireccion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigTelefono.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigCiudad.Properties)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipNombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipWeb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipContacto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipDireccion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipTelefono.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipZipCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipPais.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipCiudad.Properties)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboagente.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContacto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textSLeadReferencia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridAsignaciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCommodity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTipoContenedor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.snNumEmbMes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCarrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboVendedores.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMAereo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMFCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMLCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadLCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadFCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadAereo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtpol.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstProductos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
     this.SuspendLayout();
     //
     // toolStripBarraLlamada
     //
     this.toolStripBarraLlamada.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuNuevo,
     this.toolStripSeparator1,
     this.MenuSalir});
     this.toolStripBarraLlamada.Location = new System.Drawing.Point(0, 0);
     this.toolStripBarraLlamada.Name = "toolStripBarraLlamada";
     this.toolStripBarraLlamada.Size = new System.Drawing.Size(1000, 38);
     this.toolStripBarraLlamada.TabIndex = 6;
     this.toolStripBarraLlamada.Text = "toolStrip1";
     //
     // MenuNuevo
     //
     this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
     this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuNuevo.Name = "MenuNuevo";
     this.MenuNuevo.Size = new System.Drawing.Size(45, 35);
     this.MenuNuevo.Text = "Nueva";
     this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuNuevo.ToolTipText = "Nueva Llamada";
     this.MenuNuevo.Click += new System.EventHandler(this.MenuNuevoClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // MenuSalir
     //
     this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
     this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuSalir.Name = "MenuSalir";
     this.MenuSalir.Size = new System.Drawing.Size(33, 35);
     this.MenuSalir.Text = "Salir";
     this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuSalir.Click += new System.EventHandler(this.MenuSalirClick);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.groupControl1.Appearance.Options.UseForeColor = true;
     this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl1.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl1.AppearanceCaption.Options.UseFont = true;
     this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl1.Controls.Add(this.cmbTipoCompetencia);
     this.groupControl1.Controls.Add(this.txtCompetencia);
     this.groupControl1.Controls.Add(this.label9999);
     this.groupControl1.Controls.Add(this.labelControl36);
     this.groupControl1.Controls.Add(this.lstIncoterms);
     this.groupControl1.Controls.Add(this.labelControl34);
     this.groupControl1.Controls.Add(this.lstTerminosCompra);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.DateRevision);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.gridCompetencia);
     this.groupControl1.Controls.Add(this.sButtonEliminar);
     this.groupControl1.Controls.Add(this.sBAgregar);
     this.groupControl1.Controls.Add(this.groupBox4);
     this.groupControl1.Controls.Add(this.groupBox3);
     this.groupControl1.Controls.Add(this.groupBox2);
     this.groupControl1.Controls.Add(this.labelControl12);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.DateApertura);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.textSLeadReferencia);
     this.groupControl1.Location = new System.Drawing.Point(4, 44);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(617, 596);
     this.groupControl1.TabIndex = 35;
     this.groupControl1.Text = "Datos Sales Lead";
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // cmbTipoCompetencia
     //
     this.cmbTipoCompetencia.Location = new System.Drawing.Point(131, 462);
     this.cmbTipoCompetencia.Name = "cmbTipoCompetencia";
     this.cmbTipoCompetencia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbTipoCompetencia.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbTipoCompetencia.Size = new System.Drawing.Size(102, 20);
     this.cmbTipoCompetencia.TabIndex = 107;
     //
     // txtCompetencia
     //
     this.txtCompetencia.Location = new System.Drawing.Point(131, 488);
     this.txtCompetencia.Name = "txtCompetencia";
     this.txtCompetencia.Size = new System.Drawing.Size(139, 20);
     this.txtCompetencia.TabIndex = 75;
     //
     // label9999
     //
     this.label9999.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.label9999.Location = new System.Drawing.Point(21, 489);
     this.label9999.Name = "label9999";
     this.label9999.Size = new System.Drawing.Size(66, 13);
     this.label9999.TabIndex = 95;
     this.label9999.Text = "Competencia:";
     //
     // labelControl36
     //
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl36.Location = new System.Drawing.Point(21, 465);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(104, 13);
     this.labelControl36.TabIndex = 75;
     this.labelControl36.Text = "Tipo de Competencia:";
     //
     // lstIncoterms
     //
     this.lstIncoterms.CheckOnClick = true;
     this.lstIncoterms.HorizontalScrollbar = true;
     this.lstIncoterms.HorzScrollStep = 10;
     this.lstIncoterms.Location = new System.Drawing.Point(359, 521);
     this.lstIncoterms.Name = "lstIncoterms";
     this.lstIncoterms.Size = new System.Drawing.Size(210, 62);
     this.lstIncoterms.TabIndex = 94;
     //
     // labelControl34
     //
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl34.Location = new System.Drawing.Point(295, 521);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(56, 13);
     this.labelControl34.TabIndex = 93;
     this.labelControl34.Text = "Incorterms:";
     //
     // lstTerminosCompra
     //
     this.lstTerminosCompra.CheckOnClick = true;
     this.lstTerminosCompra.HorizontalScrollbar = true;
     this.lstTerminosCompra.HorzScrollStep = 10;
     this.lstTerminosCompra.Location = new System.Drawing.Point(129, 521);
     this.lstTerminosCompra.Name = "lstTerminosCompra";
     this.lstTerminosCompra.Size = new System.Drawing.Size(145, 62);
     this.lstTerminosCompra.TabIndex = 88;
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl26.Location = new System.Drawing.Point(204, 26);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(82, 13);
     this.labelControl26.TabIndex = 87;
     this.labelControl26.Text = "Fecha Follow Up:";
     //
     // DateRevision
     //
     this.DateRevision.EditValue = null;
     this.DateRevision.Location = new System.Drawing.Point(296, 23);
     this.DateRevision.Name = "DateRevision";
     this.DateRevision.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateRevision.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateRevision.Size = new System.Drawing.Size(102, 20);
     this.DateRevision.TabIndex = 2;
     //
     // labelControl2
     //
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl2.Location = new System.Drawing.Point(21, 521);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(102, 13);
     this.labelControl2.TabIndex = 68;
     this.labelControl2.Text = "Terminos de Compra:";
     //
     // gridCompetencia
     //
     this.gridCompetencia.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.gridCompetencia.Location = new System.Drawing.Point(356, 440);
     this.gridCompetencia.MainView = this.gridViewCompetencia;
     this.gridCompetencia.Name = "gridCompetencia";
     this.gridCompetencia.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemSpinEdit1,
     this.repositoryItemLookUpEdit1,
     this.repositoryItemCheckEdit1});
     this.gridCompetencia.Size = new System.Drawing.Size(203, 67);
     this.gridCompetencia.TabIndex = 70;
     this.gridCompetencia.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewCompetencia});
     //
     // gridViewCompetencia
     //
     this.gridViewCompetencia.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColTipoCompetencia,
     this.gridColCompetidor});
     this.gridViewCompetencia.GridControl = this.gridCompetencia;
     this.gridViewCompetencia.Name = "gridViewCompetencia";
     this.gridViewCompetencia.NewItemRowText = "Click aqui para agregar nueva fila";
     this.gridViewCompetencia.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewCompetencia.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewCompetencia.OptionsBehavior.Editable = false;
     this.gridViewCompetencia.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewCompetencia.OptionsView.ShowGroupPanel = false;
     this.gridViewCompetencia.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     //
     // gridColTipoCompetencia
     //
     this.gridColTipoCompetencia.Caption = "Tipo";
     this.gridColTipoCompetencia.FieldName = "TipoCompetencia.Nombre";
     this.gridColTipoCompetencia.Name = "gridColTipoCompetencia";
     this.gridColTipoCompetencia.Tag = "TipoCompetencia.Nombre";
     this.gridColTipoCompetencia.Visible = true;
     this.gridColTipoCompetencia.VisibleIndex = 0;
     //
     // gridColCompetidor
     //
     this.gridColCompetidor.Caption = "Competencia";
     this.gridColCompetidor.FieldName = "Descripcion";
     this.gridColCompetidor.Name = "gridColCompetidor";
     this.gridColCompetidor.Visible = true;
     this.gridColCompetidor.VisibleIndex = 1;
     this.gridColCompetidor.Width = 58;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // sButtonEliminar
     //
     this.sButtonEliminar.AutoSizeInLayoutControl = true;
     this.sButtonEliminar.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminar.Image")));
     this.sButtonEliminar.Location = new System.Drawing.Point(323, 484);
     this.sButtonEliminar.Name = "sButtonEliminar";
     this.sButtonEliminar.Size = new System.Drawing.Size(26, 24);
     this.sButtonEliminar.TabIndex = 71;
     this.sButtonEliminar.Click += new System.EventHandler(this.SButtonEliminarClick);
     //
     // sBAgregar
     //
     this.sBAgregar.Image = ((System.Drawing.Image)(resources.GetObject("sBAgregar.Image")));
     this.sBAgregar.Location = new System.Drawing.Point(323, 458);
     this.sBAgregar.Name = "sBAgregar";
     this.sBAgregar.Size = new System.Drawing.Size(27, 24);
     this.sBAgregar.TabIndex = 69;
     this.sBAgregar.Click += new System.EventHandler(this.SBAgregarClick);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.txtconsigEmail);
     this.groupBox4.Controls.Add(this.labelControl33);
     this.groupBox4.Controls.Add(this.labelControl27);
     this.groupBox4.Controls.Add(this.txtConsigNombre);
     this.groupBox4.Controls.Add(this.txtConsigContacto);
     this.groupBox4.Controls.Add(this.labelControl4);
     this.groupBox4.Controls.Add(this.txtConsigDireccion);
     this.groupBox4.Controls.Add(this.labelControl5);
     this.groupBox4.Controls.Add(this.txtConsigTelefono);
     this.groupBox4.Controls.Add(this.labelControl9);
     this.groupBox4.Controls.Add(this.labelControl18);
     this.groupBox4.Controls.Add(this.txtConsigCiudad);
     this.groupBox4.Location = new System.Drawing.Point(8, 313);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(604, 117);
     this.groupBox4.TabIndex = 68;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Consignatario";
     //
     // txtconsigEmail
     //
     this.txtconsigEmail.Location = new System.Drawing.Point(388, 61);
     this.txtconsigEmail.Name = "txtconsigEmail";
     this.txtconsigEmail.Size = new System.Drawing.Size(210, 20);
     this.txtconsigEmail.TabIndex = 73;
     //
     // labelControl33
     //
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl33.Location = new System.Drawing.Point(332, 64);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(28, 13);
     this.labelControl33.TabIndex = 74;
     this.labelControl33.Text = "eMail:";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl27.Location = new System.Drawing.Point(9, 19);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(41, 13);
     this.labelControl27.TabIndex = 72;
     this.labelControl27.Text = "Nombre:";
     //
     // txtConsigNombre
     //
     this.txtConsigNombre.Location = new System.Drawing.Point(84, 13);
     this.txtConsigNombre.Name = "txtConsigNombre";
     this.txtConsigNombre.Size = new System.Drawing.Size(381, 20);
     this.txtConsigNombre.TabIndex = 13;
     //
     // txtConsigContacto
     //
     this.txtConsigContacto.Location = new System.Drawing.Point(377, 91);
     this.txtConsigContacto.Name = "txtConsigContacto";
     this.txtConsigContacto.Size = new System.Drawing.Size(221, 20);
     this.txtConsigContacto.TabIndex = 17;
     //
     // labelControl4
     //
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl4.Location = new System.Drawing.Point(323, 94);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(48, 13);
     this.labelControl4.TabIndex = 66;
     this.labelControl4.Text = "Contacto:";
     //
     // txtConsigDireccion
     //
     this.txtConsigDireccion.Location = new System.Drawing.Point(84, 39);
     this.txtConsigDireccion.Name = "txtConsigDireccion";
     this.txtConsigDireccion.Size = new System.Drawing.Size(514, 20);
     this.txtConsigDireccion.TabIndex = 14;
     //
     // labelControl5
     //
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl5.Location = new System.Drawing.Point(10, 42);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(47, 13);
     this.labelControl5.TabIndex = 56;
     this.labelControl5.Text = "Dirección:";
     //
     // txtConsigTelefono
     //
     this.txtConsigTelefono.Location = new System.Drawing.Point(84, 91);
     this.txtConsigTelefono.Name = "txtConsigTelefono";
     this.txtConsigTelefono.Size = new System.Drawing.Size(111, 20);
     this.txtConsigTelefono.TabIndex = 16;
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl9.Location = new System.Drawing.Point(10, 94);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(46, 13);
     this.labelControl9.TabIndex = 64;
     this.labelControl9.Text = "Telefono:";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl18.Location = new System.Drawing.Point(9, 68);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(37, 13);
     this.labelControl18.TabIndex = 60;
     this.labelControl18.Text = "Ciudad:";
     //
     // txtConsigCiudad
     //
     this.txtConsigCiudad.Location = new System.Drawing.Point(84, 65);
     this.txtConsigCiudad.Name = "txtConsigCiudad";
     this.txtConsigCiudad.Size = new System.Drawing.Size(178, 20);
     this.txtConsigCiudad.TabIndex = 15;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.txtShipEmail);
     this.groupBox3.Controls.Add(this.labelControl31);
     this.groupBox3.Controls.Add(this.txtShipNombre);
     this.groupBox3.Controls.Add(this.labelControl8);
     this.groupBox3.Controls.Add(this.txtShipWeb);
     this.groupBox3.Controls.Add(this.labelControl3);
     this.groupBox3.Controls.Add(this.txtShipContacto);
     this.groupBox3.Controls.Add(this.labelControl1);
     this.groupBox3.Controls.Add(this.txtShipDireccion);
     this.groupBox3.Controls.Add(this.labelControl13);
     this.groupBox3.Controls.Add(this.txtShipTelefono);
     this.groupBox3.Controls.Add(this.labelControl16);
     this.groupBox3.Controls.Add(this.labelControl17);
     this.groupBox3.Controls.Add(this.txtShipZipCode);
     this.groupBox3.Controls.Add(this.txtShipPais);
     this.groupBox3.Controls.Add(this.labelControl15);
     this.groupBox3.Controls.Add(this.labelControl14);
     this.groupBox3.Controls.Add(this.txtShipCiudad);
     this.groupBox3.Location = new System.Drawing.Point(8, 126);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(604, 181);
     this.groupBox3.TabIndex = 67;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Shipper";
     //
     // txtShipEmail
     //
     this.txtShipEmail.Location = new System.Drawing.Point(388, 98);
     this.txtShipEmail.Name = "txtShipEmail";
     this.txtShipEmail.Size = new System.Drawing.Size(210, 20);
     this.txtShipEmail.TabIndex = 71;
     //
     // labelControl31
     //
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl31.Location = new System.Drawing.Point(332, 101);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(28, 13);
     this.labelControl31.TabIndex = 72;
     this.labelControl31.Text = "eMail:";
     //
     // txtShipNombre
     //
     this.txtShipNombre.Location = new System.Drawing.Point(84, 17);
     this.txtShipNombre.Name = "txtShipNombre";
     this.txtShipNombre.Size = new System.Drawing.Size(381, 20);
     this.txtShipNombre.TabIndex = 5;
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl8.Location = new System.Drawing.Point(9, 20);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(41, 13);
     this.labelControl8.TabIndex = 70;
     this.labelControl8.Text = "Nombre:";
     //
     // txtShipWeb
     //
     this.txtShipWeb.Location = new System.Drawing.Point(388, 152);
     this.txtShipWeb.Name = "txtShipWeb";
     this.txtShipWeb.Size = new System.Drawing.Size(184, 20);
     this.txtShipWeb.TabIndex = 12;
     //
     // labelControl3
     //
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl3.Location = new System.Drawing.Point(331, 159);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(49, 13);
     this.labelControl3.TabIndex = 68;
     this.labelControl3.Text = "Sitio Web:";
     //
     // txtShipContacto
     //
     this.txtShipContacto.Location = new System.Drawing.Point(388, 71);
     this.txtShipContacto.Name = "txtShipContacto";
     this.txtShipContacto.Size = new System.Drawing.Size(210, 20);
     this.txtShipContacto.TabIndex = 11;
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl1.Location = new System.Drawing.Point(332, 74);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(48, 13);
     this.labelControl1.TabIndex = 66;
     this.labelControl1.Text = "Contacto:";
     //
     // txtShipDireccion
     //
     this.txtShipDireccion.Location = new System.Drawing.Point(84, 45);
     this.txtShipDireccion.Name = "txtShipDireccion";
     this.txtShipDireccion.Size = new System.Drawing.Size(514, 20);
     this.txtShipDireccion.TabIndex = 6;
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl13.Location = new System.Drawing.Point(9, 48);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(47, 13);
     this.labelControl13.TabIndex = 56;
     this.labelControl13.Text = "Dirección:";
     //
     // txtShipTelefono
     //
     this.txtShipTelefono.Location = new System.Drawing.Point(84, 149);
     this.txtShipTelefono.Name = "txtShipTelefono";
     this.txtShipTelefono.Size = new System.Drawing.Size(111, 20);
     this.txtShipTelefono.TabIndex = 10;
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl16.Location = new System.Drawing.Point(9, 74);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(46, 13);
     this.labelControl16.TabIndex = 58;
     this.labelControl16.Text = "Zip Code:";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl17.Location = new System.Drawing.Point(8, 152);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(46, 13);
     this.labelControl17.TabIndex = 64;
     this.labelControl17.Text = "Telefono:";
     //
     // txtShipZipCode
     //
     this.txtShipZipCode.Location = new System.Drawing.Point(84, 71);
     this.txtShipZipCode.Name = "txtShipZipCode";
     this.txtShipZipCode.Size = new System.Drawing.Size(74, 20);
     this.txtShipZipCode.TabIndex = 7;
     //
     // txtShipPais
     //
     this.txtShipPais.Location = new System.Drawing.Point(84, 123);
     this.txtShipPais.Name = "txtShipPais";
     this.txtShipPais.Size = new System.Drawing.Size(230, 20);
     this.txtShipPais.TabIndex = 9;
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl15.Location = new System.Drawing.Point(9, 101);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(37, 13);
     this.labelControl15.TabIndex = 60;
     this.labelControl15.Text = "Ciudad:";
     //
     // labelControl14
     //
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl14.Location = new System.Drawing.Point(9, 126);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(23, 13);
     this.labelControl14.TabIndex = 62;
     this.labelControl14.Text = "País:";
     //
     // txtShipCiudad
     //
     this.txtShipCiudad.Location = new System.Drawing.Point(84, 97);
     this.txtShipCiudad.Name = "txtShipCiudad";
     this.txtShipCiudad.Size = new System.Drawing.Size(230, 20);
     this.txtShipCiudad.TabIndex = 8;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cboagente);
     this.groupBox2.Controls.Add(this.labelControl10);
     this.groupBox2.Controls.Add(this.txtContacto);
     this.groupBox2.Controls.Add(this.labelControl11);
     this.groupBox2.Location = new System.Drawing.Point(8, 48);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(469, 72);
     this.groupBox2.TabIndex = 66;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Agente";
     //
     // cboagente
     //
     this.cboagente.Location = new System.Drawing.Point(88, 19);
     this.cboagente.Name = "cboagente";
     this.cboagente.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboagente.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboagente.Size = new System.Drawing.Size(178, 20);
     this.cboagente.TabIndex = 3;
     this.cboagente.SelectedIndexChanged += new System.EventHandler(this.cboagente_SelectedIndexChanged);
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl10.Location = new System.Drawing.Point(9, 22);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(39, 13);
     this.labelControl10.TabIndex = 50;
     this.labelControl10.Text = "Agente:";
     //
     // txtContacto
     //
     this.txtContacto.Enabled = false;
     this.txtContacto.Location = new System.Drawing.Point(88, 45);
     this.txtContacto.Name = "txtContacto";
     this.txtContacto.Size = new System.Drawing.Size(375, 20);
     this.txtContacto.TabIndex = 4;
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl11.Location = new System.Drawing.Point(8, 48);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(48, 13);
     this.labelControl11.TabIndex = 52;
     this.labelControl11.Text = "Contacto:";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl12.Location = new System.Drawing.Point(13, 79);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(40, 13);
     this.labelControl12.TabIndex = 54;
     this.labelControl12.Text = "Shipper:";
     //
     // labelControl7
     //
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl7.Location = new System.Drawing.Point(657, 269);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(50, 13);
     this.labelControl7.TabIndex = 29;
     this.labelControl7.Text = "Vendedor:";
     //
     // DateApertura
     //
     this.DateApertura.EditValue = null;
     this.DateApertura.Enabled = false;
     this.DateApertura.Location = new System.Drawing.Point(96, 23);
     this.DateApertura.Name = "DateApertura";
     this.DateApertura.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateApertura.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateApertura.Size = new System.Drawing.Size(102, 20);
     this.DateApertura.TabIndex = 1;
     //
     // labelControl6
     //
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl6.Location = new System.Drawing.Point(13, 26);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 13);
     this.labelControl6.TabIndex = 27;
     this.labelControl6.Text = "Fecha Apertura:";
     //
     // textSLeadReferencia
     //
     this.textSLeadReferencia.Location = new System.Drawing.Point(214, 98);
     this.textSLeadReferencia.Name = "textSLeadReferencia";
     this.textSLeadReferencia.Size = new System.Drawing.Size(381, 20);
     this.textSLeadReferencia.TabIndex = 71;
     this.textSLeadReferencia.Visible = false;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl2.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl2.Appearance.Options.UseFont = true;
     this.groupControl2.Appearance.Options.UseForeColor = true;
     this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.ButtonEnviar);
     this.groupControl2.Controls.Add(this.gridAsignaciones);
     this.groupControl2.Location = new System.Drawing.Point(628, 459);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(355, 181);
     this.groupControl2.TabIndex = 37;
     this.groupControl2.Text = "Resumen Asignación";
     //
     // ButtonEnviar
     //
     this.ButtonEnviar.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.ButtonEnviar.Appearance.Options.UseForeColor = true;
     this.ButtonEnviar.Location = new System.Drawing.Point(249, 93);
     this.ButtonEnviar.Name = "ButtonEnviar";
     this.ButtonEnviar.Size = new System.Drawing.Size(101, 35);
     this.ButtonEnviar.TabIndex = 36;
     this.ButtonEnviar.Text = "Enviar Prospectos";
     this.ButtonEnviar.Click += new System.EventHandler(this.ButtonEnviar_Click);
     //
     // gridAsignaciones
     //
     this.gridAsignaciones.Location = new System.Drawing.Point(2, 19);
     this.gridAsignaciones.MainView = this.gridView1;
     this.gridAsignaciones.Name = "gridAsignaciones";
     this.gridAsignaciones.Size = new System.Drawing.Size(234, 135);
     this.gridAsignaciones.TabIndex = 0;
     this.gridAsignaciones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColVendedor});
     this.gridView1.GridControl = this.gridAsignaciones;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColVendedor
     //
     this.gridColVendedor.Caption = "Vendedor";
     this.gridColVendedor.FieldName = "Asignacion.VendedorAsignado.NombreCompleto";
     this.gridColVendedor.Name = "gridColVendedor";
     this.gridColVendedor.Visible = true;
     this.gridColVendedor.VisibleIndex = 0;
     this.gridColVendedor.Width = 50;
     //
     // groupControl3
     //
     this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl3.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl3.Appearance.Options.UseFont = true;
     this.groupControl3.Appearance.Options.UseForeColor = true;
     this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl3.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl3.AppearanceCaption.Options.UseFont = true;
     this.groupControl3.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl3.Controls.Add(this.txtCommodity);
     this.groupControl3.Controls.Add(this.labelControl32);
     this.groupControl3.Controls.Add(this.labelControl35);
     this.groupControl3.Controls.Add(this.lstTipoContenedor);
     this.groupControl3.Controls.Add(this.snNumEmbMes);
     this.groupControl3.Controls.Add(this.labelControl30);
     this.groupControl3.Controls.Add(this.txtCarrier);
     this.groupControl3.Controls.Add(this.labelControl29);
     this.groupControl3.Controls.Add(this.txtPod);
     this.groupControl3.Controls.Add(this.cboVendedores);
     this.groupControl3.Controls.Add(this.labelControl28);
     this.groupControl3.Controls.Add(this.cboUMAereo);
     this.groupControl3.Controls.Add(this.cboUMFCL);
     this.groupControl3.Controls.Add(this.cboUMLCL);
     this.groupControl3.Controls.Add(this.labelControl20);
     this.groupControl3.Controls.Add(this.labelControl21);
     this.groupControl3.Controls.Add(this.labelControl22);
     this.groupControl3.Controls.Add(this.txtCantidadLCL);
     this.groupControl3.Controls.Add(this.txtCantidadFCL);
     this.groupControl3.Controls.Add(this.txtCantidadAereo);
     this.groupControl3.Controls.Add(this.labelControl19);
     this.groupControl3.Controls.Add(this.DateUltimoEmbarque);
     this.groupControl3.Controls.Add(this.labelControl25);
     this.groupControl3.Controls.Add(this.txtpol);
     this.groupControl3.Controls.Add(this.labelControl24);
     this.groupControl3.Controls.Add(this.lstProductos);
     this.groupControl3.Controls.Add(this.labelControl23);
     this.groupControl3.Controls.Add(this.BtnAsignar);
     this.groupControl3.Location = new System.Drawing.Point(627, 43);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(356, 410);
     this.groupControl3.TabIndex = 38;
     this.groupControl3.Text = "Datos Seas Lead";
     //
     // txtCommodity
     //
     this.txtCommodity.Location = new System.Drawing.Point(136, 239);
     this.txtCommodity.Name = "txtCommodity";
     this.txtCommodity.Size = new System.Drawing.Size(186, 20);
     this.txtCommodity.TabIndex = 107;
     //
     // labelControl32
     //
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl32.Location = new System.Drawing.Point(17, 242);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(57, 13);
     this.labelControl32.TabIndex = 108;
     this.labelControl32.Text = "Commodity:";
     //
     // labelControl35
     //
     this.labelControl35.Appearance.Options.UseTextOptions = true;
     this.labelControl35.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControl35.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.labelControl35.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.Location = new System.Drawing.Point(15, 215);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(86, 17);
     this.labelControl35.TabIndex = 106;
     this.labelControl35.Text = "Tipo Contenedor:";
     //
     // lstTipoContenedor
     //
     this.lstTipoContenedor.Location = new System.Drawing.Point(136, 215);
     this.lstTipoContenedor.Name = "lstTipoContenedor";
     this.lstTipoContenedor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lstTipoContenedor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.lstTipoContenedor.Size = new System.Drawing.Size(183, 20);
     this.lstTipoContenedor.TabIndex = 105;
     //
     // snNumEmbMes
     //
     this.snNumEmbMes.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.snNumEmbMes.Location = new System.Drawing.Point(135, 24);
     this.snNumEmbMes.Name = "snNumEmbMes";
     this.snNumEmbMes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.snNumEmbMes.Properties.Mask.EditMask = "n0";
     this.snNumEmbMes.Size = new System.Drawing.Size(53, 20);
     this.snNumEmbMes.TabIndex = 104;
     //
     // labelControl30
     //
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl30.Location = new System.Drawing.Point(15, 317);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(76, 13);
     this.labelControl30.TabIndex = 103;
     this.labelControl30.Text = "Carrier / Airline:";
     //
     // txtCarrier
     //
     this.txtCarrier.Location = new System.Drawing.Point(135, 311);
     this.txtCarrier.Name = "txtCarrier";
     this.txtCarrier.Size = new System.Drawing.Size(184, 20);
     this.txtCarrier.TabIndex = 102;
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl29.Location = new System.Drawing.Point(17, 293);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(22, 13);
     this.labelControl29.TabIndex = 101;
     this.labelControl29.Text = "Pod:";
     this.labelControl29.ToolTip = "Puerto Descarga";
     //
     // txtPod
     //
     this.txtPod.Location = new System.Drawing.Point(135, 287);
     this.txtPod.Name = "txtPod";
     this.txtPod.Size = new System.Drawing.Size(184, 20);
     this.txtPod.TabIndex = 100;
     //
     // cboVendedores
     //
     this.cboVendedores.Location = new System.Drawing.Point(135, 359);
     this.cboVendedores.Name = "cboVendedores";
     this.cboVendedores.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboVendedores.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboVendedores.Size = new System.Drawing.Size(102, 20);
     this.cboVendedores.TabIndex = 99;
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl28.Location = new System.Drawing.Point(17, 361);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(50, 13);
     this.labelControl28.TabIndex = 98;
     this.labelControl28.Text = "Vendedor:";
     //
     // cboUMAereo
     //
     this.cboUMAereo.Location = new System.Drawing.Point(218, 94);
     this.cboUMAereo.Name = "cboUMAereo";
     this.cboUMAereo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboUMAereo.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboUMAereo.Size = new System.Drawing.Size(76, 20);
     this.cboUMAereo.TabIndex = 24;
     //
     // cboUMFCL
     //
     this.cboUMFCL.Location = new System.Drawing.Point(218, 72);
     this.cboUMFCL.Name = "cboUMFCL";
     this.cboUMFCL.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboUMFCL.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboUMFCL.Size = new System.Drawing.Size(76, 20);
     this.cboUMFCL.TabIndex = 22;
     //
     // cboUMLCL
     //
     this.cboUMLCL.EditValue = " ";
     this.cboUMLCL.Location = new System.Drawing.Point(218, 50);
     this.cboUMLCL.Name = "cboUMLCL";
     this.cboUMLCL.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboUMLCL.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboUMLCL.Size = new System.Drawing.Size(76, 20);
     this.cboUMLCL.TabIndex = 20;
     //
     // labelControl20
     //
     this.labelControl20.Location = new System.Drawing.Point(17, 53);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(67, 13);
     this.labelControl20.TabIndex = 88;
     this.labelControl20.Text = "Cantidad LCL:";
     //
     // labelControl21
     //
     this.labelControl21.Location = new System.Drawing.Point(17, 79);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(68, 13);
     this.labelControl21.TabIndex = 90;
     this.labelControl21.Text = "Cantidad FCL:";
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(17, 101);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(79, 13);
     this.labelControl22.TabIndex = 89;
     this.labelControl22.Text = "Cantidad Áereo:";
     //
     // txtCantidadLCL
     //
     this.txtCantidadLCL.Location = new System.Drawing.Point(135, 50);
     this.txtCantidadLCL.Name = "txtCantidadLCL";
     this.txtCantidadLCL.Size = new System.Drawing.Size(80, 20);
     this.txtCantidadLCL.TabIndex = 19;
     //
     // txtCantidadFCL
     //
     this.txtCantidadFCL.Location = new System.Drawing.Point(135, 72);
     this.txtCantidadFCL.Name = "txtCantidadFCL";
     this.txtCantidadFCL.Size = new System.Drawing.Size(80, 20);
     this.txtCantidadFCL.TabIndex = 21;
     //
     // txtCantidadAereo
     //
     this.txtCantidadAereo.Location = new System.Drawing.Point(135, 94);
     this.txtCantidadAereo.Name = "txtCantidadAereo";
     this.txtCantidadAereo.Size = new System.Drawing.Size(80, 20);
     this.txtCantidadAereo.TabIndex = 23;
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(15, 29);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(113, 13);
     this.labelControl19.TabIndex = 86;
     this.labelControl19.Text = "N° Embarques por mes:";
     //
     // DateUltimoEmbarque
     //
     this.DateUltimoEmbarque.EditValue = null;
     this.DateUltimoEmbarque.Location = new System.Drawing.Point(135, 335);
     this.DateUltimoEmbarque.Name = "DateUltimoEmbarque";
     this.DateUltimoEmbarque.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateUltimoEmbarque.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.DateUltimoEmbarque.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateUltimoEmbarque.Size = new System.Drawing.Size(102, 20);
     this.DateUltimoEmbarque.TabIndex = 26;
     this.DateUltimoEmbarque.EditValueChanged += new System.EventHandler(this.txtUltimoEmbarque_EditValueChanged);
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl25.Location = new System.Drawing.Point(17, 341);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(84, 13);
     this.labelControl25.TabIndex = 73;
     this.labelControl25.Text = "Ultimo Embarque:";
     //
     // txtpol
     //
     this.txtpol.Location = new System.Drawing.Point(135, 263);
     this.txtpol.Name = "txtpol";
     this.txtpol.Size = new System.Drawing.Size(184, 20);
     this.txtpol.TabIndex = 25;
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl24.Location = new System.Drawing.Point(17, 267);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(18, 13);
     this.labelControl24.TabIndex = 70;
     this.labelControl24.Text = "Pol:";
     this.labelControl24.ToolTip = "Puerto de Carga";
     //
     // lstProductos
     //
     this.lstProductos.CheckOnClick = true;
     this.lstProductos.HorizontalScrollbar = true;
     this.lstProductos.HorzScrollStep = 10;
     this.lstProductos.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item1"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item2"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item3"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item4"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item5")});
     this.lstProductos.Location = new System.Drawing.Point(135, 120);
     this.lstProductos.Name = "lstProductos";
     this.lstProductos.Size = new System.Drawing.Size(187, 90);
     this.lstProductos.TabIndex = 20;
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.Location = new System.Drawing.Point(17, 122);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(73, 22);
     this.labelControl23.TabIndex = 21;
     this.labelControl23.Text = "Productos:";
     //
     // BtnAsignar
     //
     this.BtnAsignar.Location = new System.Drawing.Point(266, 341);
     this.BtnAsignar.Name = "BtnAsignar";
     this.BtnAsignar.Size = new System.Drawing.Size(75, 33);
     this.BtnAsignar.TabIndex = 16;
     this.BtnAsignar.Text = "Asignar";
     this.BtnAsignar.Click += new System.EventHandler(this.BtnAsignarClick);
     //
     // ctrldxError
     //
     this.ctrldxError.ContainerControl = this;
     //
     // frmDefinirSLead
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(1000, 647);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.toolStripBarraLlamada);
     this.Name = "frmDefinirSLead";
     this.Text = "Definir Sales Lead";
     this.Load += new System.EventHandler(this.FrmDefinirSLeadLoad);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmDefinirSLead_FormClosed);
     this.toolStripBarraLlamada.ResumeLayout(false);
     this.toolStripBarraLlamada.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTipoCompetencia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompetencia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIncoterms)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTerminosCompra)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCompetencia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCompetencia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtconsigEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigNombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigContacto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigDireccion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigTelefono.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigCiudad.Properties)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipNombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipWeb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipContacto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipDireccion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipTelefono.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipZipCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipPais.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipCiudad.Properties)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboagente.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContacto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textSLeadReferencia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridAsignaciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCommodity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTipoContenedor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.snNumEmbMes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCarrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboVendedores.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMAereo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMFCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMLCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadLCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadFCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadAereo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtpol.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstProductos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).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>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChuongTrinhSearchMultiQL));
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNoiDungDuyet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TrailerPost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TTHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Columns.GridColumn();
     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.hideContainerLeft = new DevExpress.XtraBars.Docking.AutoHideContainer();
     this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = 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.TrongKho = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel21 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel22 = new DevExpress.XtraEditors.LabelControl();
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel20 = new DevExpress.XtraEditors.LabelControl();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel19 = new DevExpress.XtraEditors.LabelControl();
     this.TimeslotDen = new DevExpress.XtraEditors.TimeEdit();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.TimeslotTu = new DevExpress.XtraEditors.TimeEdit();
     this.SoRunConLaiTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunConLaiDen = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunTu = new DevExpress.XtraEditors.SpinEdit();
     this.BQDTTNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.BQDTTNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
     this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel11 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel17 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel16 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel24 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel14 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel13 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
     this.label34 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel18 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel23 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = 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.groupControlCT = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_CT_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TinhTrangBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrongKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
     this.groupControlBM = new DevExpress.XtraEditors.GroupControl();
     this.gridControlBienMuc = new DevExpress.XtraGrid.GridControl();
     this.gridViewBienMuc = 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_CT_HangSanXuat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.Col_PM_TienDo = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((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.hideContainerLeft.SuspendLayout();
     this.dockPanelAdvance.SuspendLayout();
     this.dockPanel2_Container.SuspendLayout();
     this.dockPanelSimple.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TrongKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCT)).BeginInit();
     this.groupControlCT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
     this.groupControlPM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBM)).BeginInit();
     this.groupControlBM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlBienMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBienMuc)).BeginInit();
     this.SuspendLayout();
     //
     // 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(3, 3);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(654, 144);
     this.gridControlDetail.TabIndex = 9;
     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.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     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_DVDNoiDungDuyet,
     this.Col_PM_TrailerPost,
     this.Col_PM_TTHD,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_TienDo});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = 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 = "Post/Master (Cấp 2)";
     //
     // 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.VisibleIndex = 0;
     this.Col_PM_PostMaster.Width = 70;
     //
     // 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.VisibleIndex = 3;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // 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.VisibleIndex = 1;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // 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.VisibleIndex = 2;
     this.Col_PM_TongTap.Width = 82;
     //
     // 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.VisibleIndex = 4;
     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.VisibleIndex = 5;
     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.VisibleIndex = 6;
     this.Col_PM_Tang.Width = 36;
     //
     // 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.VisibleIndex = 7;
     this.Col_PM_PopUp.Width = 46;
     //
     // 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.VisibleIndex = 8;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // 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.VisibleIndex = 9;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // 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.VisibleIndex = 10;
     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.VisibleIndex = 11;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // Col_PM_DVDNoiDungDuyet
     //
     this.Col_PM_DVDNoiDungDuyet.Caption = "Nội dung duyệt";
     this.Col_PM_DVDNoiDungDuyet.Name = "Col_PM_DVDNoiDungDuyet";
     this.Col_PM_DVDNoiDungDuyet.Visible = true;
     this.Col_PM_DVDNoiDungDuyet.VisibleIndex = 12;
     this.Col_PM_DVDNoiDungDuyet.Width = 85;
     //
     // Col_PM_TrailerPost
     //
     this.Col_PM_TrailerPost.Caption = "Trailer/Post";
     this.Col_PM_TrailerPost.Name = "Col_PM_TrailerPost";
     this.Col_PM_TrailerPost.Visible = true;
     this.Col_PM_TrailerPost.VisibleIndex = 13;
     this.Col_PM_TrailerPost.Width = 67;
     //
     // 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.VisibleIndex = 14;
     this.Col_PM_TTHD.Width = 74;
     //
     // 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.VisibleIndex = 15;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // 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, 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";
     //
     // barSubItemInNhan
     //
     this.barSubItemInNhan.Caption = "In n&hãn";
     this.barSubItemInNhan.Id = 36;
     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 beatcam t&rong";
     this.barButtonItemInBeatcamTrong.Id = 37;
     this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
     this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
     //
     // barButtonItemInBeatacamNgoai
     //
     this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&ngoài";
     this.barButtonItemInBeatacamNgoai.Id = 38;
     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.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemThongKe_ItemClick);
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 35;
     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(1188, 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(1188, 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(1188, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
     this.hideContainerLeft});
     this.dockManager1.DockingOptions.ShowCloseButton = false;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     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"});
     //
     // hideContainerLeft
     //
     this.hideContainerLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241)))));
     this.hideContainerLeft.Controls.Add(this.dockPanelAdvance);
     this.hideContainerLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.hideContainerLeft.Location = new System.Drawing.Point(0, 24);
     this.hideContainerLeft.Name = "hideContainerLeft";
     this.hideContainerLeft.Size = new System.Drawing.Size(19, 521);
     //
     // dockPanelAdvance
     //
     this.dockPanelAdvance.Controls.Add(this.dockPanel2_Container);
     this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.ID = new System.Guid("b5e2d5e3-e455-4d58-8a09-d4f23b66f872");
     this.dockPanelAdvance.Location = new System.Drawing.Point(0, 0);
     this.dockPanelAdvance.Name = "dockPanelAdvance";
     this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelAdvance.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.SavedIndex = 0;
     this.dockPanelAdvance.Size = new System.Drawing.Size(200, 521);
     this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
     this.dockPanelAdvance.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Controls.Add(this.filterControl1);
     this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel2_Container.Name = "dockPanel2_Container";
     this.dockPanel2_Container.Size = new System.Drawing.Size(194, 493);
     this.dockPanel2_Container.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 = 10;
     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(19, 24);
     this.dockPanelSimple.Name = "dockPanelSimple";
     this.dockPanelSimple.Options.AllowDockLeft = false;
     this.dockPanelSimple.Options.AllowDockRight = false;
     this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 157);
     this.dockPanelSimple.Size = new System.Drawing.Size(1169, 157);
     this.dockPanelSimple.Text = "Điều kiện tìm kiếm cơ bả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(1163, 129);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TrongKho);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel21);
     this.popupControlContainerFilter.Controls.Add(this.plLabel22);
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.plLabel20);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.plLabel19);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotDen);
     this.popupControlContainerFilter.Controls.Add(this.xtraTabControlDetail);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiDen);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
     this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel11);
     this.popupControlContainerFilter.Controls.Add(this.plLabel17);
     this.popupControlContainerFilter.Controls.Add(this.plLabel16);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel9);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.plLabel24);
     this.popupControlContainerFilter.Controls.Add(this.plLabel10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel8);
     this.popupControlContainerFilter.Controls.Add(this.plLabel14);
     this.popupControlContainerFilter.Controls.Add(this.plLabel13);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel7);
     this.popupControlContainerFilter.Controls.Add(this.label34);
     this.popupControlContainerFilter.Controls.Add(this.BanQuyenThuoc);
     this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.Category);
     this.popupControlContainerFilter.Controls.Add(this.TenGoc);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.QuocGia);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel18);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel23);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.plLabel6);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     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(1163, 129);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // TrongKho
     //
     this.TrongKho.CheckOnClick = true;
     this.TrongKho.ColumnWidth = 85;
     this.TrongKho.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "Có"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "Không")});
     this.TrongKho.Location = new System.Drawing.Point(583, 79);
     this.TrongKho.MultiColumn = true;
     this.TrongKho.Name = "TrongKho";
     this.TrongKho.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.TrongKho.Size = new System.Drawing.Size(179, 20);
     this.TrongKho.TabIndex = 248;
     //
     // TapSoDen
     //
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(687, 106);
     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(75, 20);
     this.TapSoDen.TabIndex = 245;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(585, 105);
     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(67, 20);
     this.TapSoTu.TabIndex = 246;
     //
     // plLabel21
     //
     this.plLabel21.Location = new System.Drawing.Point(657, 109);
     this.plLabel21.Name = "plLabel21";
     this.plLabel21.Size = new System.Drawing.Size(18, 13);
     this.plLabel21.TabIndex = 243;
     this.plLabel21.Text = "đến";
     //
     // plLabel22
     //
     this.plLabel22.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel22.Appearance.Options.UseFont = true;
     this.plLabel22.Location = new System.Drawing.Point(496, 107);
     this.plLabel22.Name = "plLabel22";
     this.plLabel22.Size = new System.Drawing.Size(53, 13);
     this.plLabel22.TabIndex = 244;
     this.plLabel22.Text = "Tập số từ";
     this.plLabel22.ToolTip = "Tập số (Cấp 3)";
     //
     // 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(844, 106);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(341, 20);
     this.TenTap.TabIndex = 242;
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(333, 103);
     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(150, 20);
     this.SoDKCBHD.TabIndex = 241;
     this.SoDKCBHD.ValueField = null;
     //
     // plLabel20
     //
     this.plLabel20.Location = new System.Drawing.Point(266, 108);
     this.plLabel20.Name = "plLabel20";
     this.plLabel20.Size = new System.Drawing.Size(59, 13);
     this.plLabel20.TabIndex = 240;
     this.plLabel20.Text = "Số ĐKCB HD";
     this.plLabel20.ToolTip = "Số ĐKCB HD (Cấp 2)";
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(75, 105);
     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 = 241;
     this.LoaiLuuTru.ValueField = null;
     //
     // plLabel19
     //
     this.plLabel19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel19.Appearance.Options.UseFont = true;
     this.plLabel19.Location = new System.Drawing.Point(4, 108);
     this.plLabel19.Name = "plLabel19";
     this.plLabel19.Size = new System.Drawing.Size(65, 13);
     this.plLabel19.TabIndex = 240;
     this.plLabel19.Text = "Loại lưu trữ";
     this.plLabel19.ToolTip = "Loại lưu trữ (cấp 2)";
     //
     // TimeslotDen
     //
     this.TimeslotDen.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotDen.Location = new System.Drawing.Point(174, 79);
     this.TimeslotDen.Name = "TimeslotDen";
     this.TimeslotDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotDen.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotDen.Size = new System.Drawing.Size(86, 20);
     this.TimeslotDen.TabIndex = 239;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Location = new System.Drawing.Point(1003, 83);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(10, 10);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     this.xtraTabControlDetail.Visible = false;
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(3, 0);
     this.xtraTabPageDetail.Text = "Post/Master";
     //
     // TimeslotTu
     //
     this.TimeslotTu.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotTu.Location = new System.Drawing.Point(48, 79);
     this.TimeslotTu.MenuManager = this.barManager1;
     this.TimeslotTu.Name = "TimeslotTu";
     this.TimeslotTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotTu.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotTu.Size = new System.Drawing.Size(78, 20);
     this.TimeslotTu.TabIndex = 239;
     //
     // SoRunConLaiTu
     //
     this.SoRunConLaiTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiTu.Location = new System.Drawing.Point(844, 55);
     this.SoRunConLaiTu.Name = "SoRunConLaiTu";
     this.SoRunConLaiTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunConLaiTu.TabIndex = 238;
     //
     // SoRunDaDungTu
     //
     this.SoRunDaDungTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungTu.Location = new System.Drawing.Point(844, 32);
     this.SoRunDaDungTu.Name = "SoRunDaDungTu";
     this.SoRunDaDungTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunDaDungTu.TabIndex = 238;
     //
     // SoRunConLaiDen
     //
     this.SoRunConLaiDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConLaiDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiDen.Location = new System.Drawing.Point(934, 57);
     this.SoRunConLaiDen.Name = "SoRunConLaiDen";
     this.SoRunConLaiDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiDen.Size = new System.Drawing.Size(341, 20);
     this.SoRunConLaiDen.TabIndex = 238;
     //
     // SoRunDaDungDen
     //
     this.SoRunDaDungDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunDaDungDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungDen.Location = new System.Drawing.Point(934, 30);
     this.SoRunDaDungDen.Name = "SoRunDaDungDen";
     this.SoRunDaDungDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungDen.Size = new System.Drawing.Size(341, 20);
     this.SoRunDaDungDen.TabIndex = 238;
     //
     // TongSoRunDen
     //
     this.TongSoRunDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRunDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunDen.Location = new System.Drawing.Point(934, 7);
     this.TongSoRunDen.Name = "TongSoRunDen";
     this.TongSoRunDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunDen.Size = new System.Drawing.Size(341, 20);
     this.TongSoRunDen.TabIndex = 238;
     //
     // TongSoRunTu
     //
     this.TongSoRunTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunTu.Location = new System.Drawing.Point(843, 8);
     this.TongSoRunTu.Name = "TongSoRunTu";
     this.TongSoRunTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunTu.Size = new System.Drawing.Size(67, 20);
     this.TongSoRunTu.TabIndex = 238;
     //
     // BQDTTNEndDen
     //
     this.BQDTTNEndDen.EditValue = null;
     this.BQDTTNEndDen.Location = new System.Drawing.Point(687, 31);
     this.BQDTTNEndDen.Name = "BQDTTNEndDen";
     this.BQDTTNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTTNEndDen.TabIndex = 237;
     //
     // BQDTNNEndDen
     //
     this.BQDTNNEndDen.EditValue = null;
     this.BQDTNNEndDen.Location = new System.Drawing.Point(687, 53);
     this.BQDTNNEndDen.Name = "BQDTNNEndDen";
     this.BQDTNNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTNNEndDen.TabIndex = 237;
     //
     // BQDTNNEndTu
     //
     this.BQDTNNEndTu.EditValue = null;
     this.BQDTNNEndTu.Location = new System.Drawing.Point(583, 53);
     this.BQDTNNEndTu.Name = "BQDTNNEndTu";
     this.BQDTNNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndTu.Size = new System.Drawing.Size(74, 20);
     this.BQDTNNEndTu.TabIndex = 237;
     //
     // BQDTTNEndTu
     //
     this.BQDTTNEndTu.EditValue = null;
     this.BQDTTNEndTu.Location = new System.Drawing.Point(583, 30);
     this.BQDTTNEndTu.MenuManager = this.barManager1;
     this.BQDTTNEndTu.Name = "BQDTTNEndTu";
     this.BQDTTNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndTu.Size = new System.Drawing.Size(73, 20);
     this.BQDTTNEndTu.TabIndex = 237;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(333, 79);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(150, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NamSXDen
     //
     this.NamSXDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXDen.Location = new System.Drawing.Point(430, 32);
     this.NamSXDen.Name = "NamSXDen";
     this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXDen.Size = new System.Drawing.Size(55, 20);
     this.NamSXDen.TabIndex = 234;
     //
     // NamSXTu
     //
     this.NamSXTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXTu.Location = new System.Drawing.Point(333, 32);
     this.NamSXTu.MenuManager = this.barManager1;
     this.NamSXTu.Name = "NamSXTu";
     this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXTu.Size = new System.Drawing.Size(69, 20);
     this.NamSXTu.TabIndex = 235;
     //
     // plLabel11
     //
     this.plLabel11.Location = new System.Drawing.Point(663, 57);
     this.plLabel11.Name = "plLabel11";
     this.plLabel11.Size = new System.Drawing.Size(18, 13);
     this.plLabel11.TabIndex = 231;
     this.plLabel11.Text = "đến";
     //
     // plLabel17
     //
     this.plLabel17.Location = new System.Drawing.Point(914, 60);
     this.plLabel17.Name = "plLabel17";
     this.plLabel17.Size = new System.Drawing.Size(18, 13);
     this.plLabel17.TabIndex = 231;
     this.plLabel17.Text = "đến";
     //
     // plLabel16
     //
     this.plLabel16.Location = new System.Drawing.Point(914, 36);
     this.plLabel16.Name = "plLabel16";
     this.plLabel16.Size = new System.Drawing.Size(18, 13);
     this.plLabel16.TabIndex = 231;
     this.plLabel16.Text = "đến";
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(914, 11);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 231;
     this.plLabel15.Text = "đến";
     //
     // plLabel9
     //
     this.plLabel9.Location = new System.Drawing.Point(663, 34);
     this.plLabel9.Name = "plLabel9";
     this.plLabel9.Size = new System.Drawing.Size(18, 13);
     this.plLabel9.TabIndex = 231;
     this.plLabel9.Text = "đến";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(407, 36);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(18, 13);
     this.plLabel3.TabIndex = 231;
     this.plLabel3.Text = "đến";
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(267, 35);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(50, 13);
     this.plLabel2.TabIndex = 229;
     this.plLabel2.Text = "Năm SX từ";
     this.plLabel2.ToolTip = "Năm sản xuất chương trình (Câp 1)";
     //
     // plLabel24
     //
     this.plLabel24.Location = new System.Drawing.Point(496, 82);
     this.plLabel24.Name = "plLabel24";
     this.plLabel24.Size = new System.Drawing.Size(48, 13);
     this.plLabel24.TabIndex = 232;
     this.plLabel24.Text = "Trong kho";
     this.plLabel24.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";
     //
     // plLabel10
     //
     this.plLabel10.Location = new System.Drawing.Point(496, 57);
     this.plLabel10.Name = "plLabel10";
     this.plLabel10.Size = new System.Drawing.Size(79, 13);
     this.plLabel10.TabIndex = 232;
     this.plLabel10.Text = "BQ DTNN End từ";
     this.plLabel10.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";
     //
     // plLabel8
     //
     this.plLabel8.Location = new System.Drawing.Point(495, 34);
     this.plLabel8.Name = "plLabel8";
     this.plLabel8.Size = new System.Drawing.Size(78, 13);
     this.plLabel8.TabIndex = 232;
     this.plLabel8.Text = "BQ DTTN End từ";
     this.plLabel8.ToolTip = "Bản quyền đối với đối tác trong nước End (Cấp 1)";
     //
     // plLabel14
     //
     this.plLabel14.Location = new System.Drawing.Point(768, 57);
     this.plLabel14.Name = "plLabel14";
     this.plLabel14.Size = new System.Drawing.Size(64, 13);
     this.plLabel14.TabIndex = 232;
     this.plLabel14.Text = "Số run còn lại";
     this.plLabel14.ToolTip = "Số run còn lại (Cấp 1)";
     //
     // plLabel13
     //
     this.plLabel13.Location = new System.Drawing.Point(768, 34);
     this.plLabel13.Name = "plLabel13";
     this.plLabel13.Size = new System.Drawing.Size(73, 13);
     this.plLabel13.TabIndex = 232;
     this.plLabel13.Text = "Số run đã dùng";
     this.plLabel13.ToolTip = "Số run đã dùng (Cấp 1)";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(768, 14);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(57, 13);
     this.plLabel12.TabIndex = 232;
     this.plLabel12.Text = "Tổng số run";
     this.plLabel12.ToolTip = "Tổng số run (Cấp 1)";
     //
     // plLabel7
     //
     this.plLabel7.Location = new System.Drawing.Point(496, 12);
     this.plLabel7.Name = "plLabel7";
     this.plLabel7.Size = new System.Drawing.Size(81, 13);
     this.plLabel7.TabIndex = 232;
     this.plLabel7.Text = "Bản quyền thuộc";
     this.plLabel7.ToolTip = "Bản quyền thuộc (Cấp 1)";
     //
     // label34
     //
     this.label34.Location = new System.Drawing.Point(267, 58);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(60, 13);
     this.label34.TabIndex = 232;
     this.label34.Text = "ĐV cung cấp";
     this.label34.ToolTip = "Đơn vị cung cấp (Cấp 1)";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.DataSource = null;
     this.BanQuyenThuoc.DisplayField = null;
     this.BanQuyenThuoc.Location = new System.Drawing.Point(583, 8);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenThuoc.Size = new System.Drawing.Size(179, 20);
     this.BanQuyenThuoc.TabIndex = 227;
     this.BanQuyenThuoc.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.DataSource = null;
     this.DonViCungCap.DisplayField = null;
     this.DonViCungCap.Location = new System.Drawing.Point(333, 55);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViCungCap.Size = new System.Drawing.Size(150, 20);
     this.DonViCungCap.TabIndex = 227;
     this.DonViCungCap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 22/02/2012 đến ngày 29/02/2012";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.FirstTo = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.FromDate = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.Location = new System.Drawing.Point(843, 81);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.SecondTo = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(291, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     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)));
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Location = new System.Drawing.Point(174, 54);
     this.Category.Name = "Category";
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(87, 20);
     this.Category.TabIndex = 1;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(47, 31);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(214, 20);
     this.TenGoc.TabIndex = 1;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 8);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(213, 20);
     this.NoiDung.TabIndex = 0;
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.Location = new System.Drawing.Point(333, 8);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(152, 20);
     this.QuocGia.TabIndex = 220;
     this.QuocGia.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 54);
     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(78, 20);
     this.TietMuc.TabIndex = 2;
     this.TietMuc.ValueField = null;
     //
     // plLabel18
     //
     this.plLabel18.Location = new System.Drawing.Point(133, 83);
     this.plLabel18.Name = "plLabel18";
     this.plLabel18.Size = new System.Drawing.Size(20, 13);
     this.plLabel18.TabIndex = 213;
     this.plLabel18.Text = "Đến";
     this.plLabel18.ToolTip = "Nước sản xuất";
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(128, 57);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(45, 13);
     this.plLabel5.TabIndex = 213;
     this.plLabel5.Text = "Category";
     this.plLabel5.ToolTip = "Category (Cấp 1)";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(267, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Nước SX";
     this.label10.ToolTip = "Nước sản xuất (Cấp 1)";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(266, 83);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     this.plLabel1.ToolTip = "Phòng ban (Cấp 1)";
     //
     // plLabel23
     //
     this.plLabel23.Location = new System.Drawing.Point(768, 110);
     this.plLabel23.Name = "plLabel23";
     this.plLabel23.Size = new System.Drawing.Size(37, 13);
     this.plLabel23.TabIndex = 217;
     this.plLabel23.Text = "Tên tập";
     this.plLabel23.ToolTip = "Tên tập (Cấp 3)";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(768, 80);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     this.label29.ToolTip = "Ngày nhập thông tin chương trình  (Cấp 1)";
     //
     // plLabel6
     //
     this.plLabel6.Location = new System.Drawing.Point(4, 34);
     this.plLabel6.Name = "plLabel6";
     this.plLabel6.Size = new System.Drawing.Size(38, 13);
     this.plLabel6.TabIndex = 218;
     this.plLabel6.Text = "Tên gốc";
     this.plLabel6.ToolTip = "Tên chương trình gốc (cấp 1)";
     //
     // label3
     //
     this.label3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label3.Appearance.Options.UseFont = true;
     this.label3.Location = new System.Drawing.Point(3, 11);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(38, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     this.label3.ToolTip = "Tên chương trình (Cấp 1)";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(3, 83);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(39, 13);
     this.plLabel4.TabIndex = 219;
     this.plLabel4.Text = "Timeslot";
     this.plLabel4.ToolTip = "Timeslot (Cấp 1)";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 57);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     this.label5.ToolTip = "Tiết mục (Cấp 1)";
     //
     // 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(19, 181);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl1.Panel1.Controls.Add(this.groupControlCT);
     this.splitContainerControl1.Panel1.Text = "Chương trình";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1169, 364);
     this.splitContainerControl1.SplitterPosition = 503;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // groupControlCT
     //
     this.groupControlCT.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupControlCT.Appearance.Options.UseBorderColor = true;
     this.groupControlCT.Controls.Add(this.gridControlMaster);
     this.groupControlCT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlCT.Location = new System.Drawing.Point(0, 0);
     this.groupControlCT.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlCT.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlCT.Name = "groupControlCT";
     this.groupControlCT.ShowCaption = false;
     this.groupControlCT.Size = new System.Drawing.Size(503, 364);
     this.groupControlCT.TabIndex = 10;
     this.groupControlCT.Text = "groupControl1";
     //
     // 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(3, 3);
     this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(497, 358);
     this.gridControlMaster.TabIndex = 9;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandThongTinChinh,
     this.gridBandNguonGoc,
     this.gridBandThongTinPhatSong,
     this.gridBandThongTinBan});
     this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_CT_MaCT,
     this.Col_CT_NgayAWB,
     this.Col_CT_NgayLap,
     this.Col_CT_NguoiLap,
     this.Col_CT_PhongBan,
     this.Col_CT_NoiDung,
     this.Col_CT_TietMuc,
     this.Col_CT_TenGoc,
     this.Col_CT_DaoDien,
     this.Col_CT_DienVien,
     this.Col_CT_KHPL,
     this.Col_CT_DoiTuongKhanGia,
     this.Col_CT_TuKhoa,
     this.Col_CT_KHXK,
     this.Col_CT_TinhTrangBang,
     this.Col_CT_TomTat,
     this.Col_CT_ThanhLy,
     this.Col_CT_GhiChu,
     this.Col_CT_ThongTinBan,
     this.Col_CT_NamSX,
     this.Col_CT_Nuoc,
     this.Col_CT_DonViCungCap,
     this.Col_CT_DonViSoHuu,
     this.Col_CT_KenhHanCheBan,
     this.Col_CT_PhatSongChinh,
     this.Col_CT_TongSoRun,
     this.Col_CT_SoLanPhat,
     this.Col_CT_SoRunConLai,
     this.Col_CT_Release,
     this.Col_CT_Category,
     this.Col_CT_Ranking,
     this.Col_CT_Script,
     this.Col_CT_Photos,
     this.Col_CT_TrailerGoc,
     this.Col_CT_BanQuyenThuoc,
     this.Col_CT_BanQuyenDIDStart,
     this.Col_CT_BanQuyenDIDEnd,
     this.Col_CT_BanQuyenDTNNStart,
     this.Col_CT_BanQuyenDTNNEnd,
     this.Col_CT_BanQuyenHTV,
     this.Col_CT_MuaKem,
     this.Col_CT_PhatSongKhac,
     this.Col_CT_PhatSongLai,
     this.Col_CT_TrongKho,
     this.Col_CT_HangSanXuat});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
     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.OptionsSelection.MultiSelect = 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.ViewCaption = "Chương trình (Cấp 1)";
     //
     // Col_CT_MaCT
     //
     this.Col_CT_MaCT.Caption = "Mã chương trình";
     this.Col_CT_MaCT.Name = "Col_CT_MaCT";
     this.Col_CT_MaCT.Visible = true;
     this.Col_CT_MaCT.Width = 90;
     //
     // Col_CT_NgayAWB
     //
     this.Col_CT_NgayAWB.Caption = "Ngày AWB";
     this.Col_CT_NgayAWB.Name = "Col_CT_NgayAWB";
     this.Col_CT_NgayAWB.Visible = true;
     this.Col_CT_NgayAWB.Width = 63;
     //
     // Col_CT_NgayLap
     //
     this.Col_CT_NgayLap.Caption = "Ngày lập";
     this.Col_CT_NgayLap.Name = "Col_CT_NgayLap";
     this.Col_CT_NgayLap.Visible = true;
     this.Col_CT_NgayLap.Width = 54;
     //
     // Col_CT_NguoiLap
     //
     this.Col_CT_NguoiLap.Caption = "Người lập";
     this.Col_CT_NguoiLap.Name = "Col_CT_NguoiLap";
     this.Col_CT_NguoiLap.Visible = true;
     this.Col_CT_NguoiLap.Width = 57;
     //
     // Col_CT_PhongBan
     //
     this.Col_CT_PhongBan.Caption = "Phòng ban";
     this.Col_CT_PhongBan.Name = "Col_CT_PhongBan";
     this.Col_CT_PhongBan.Visible = true;
     this.Col_CT_PhongBan.Width = 63;
     //
     // Col_CT_Category
     //
     this.Col_CT_Category.Caption = "Category";
     this.Col_CT_Category.Name = "Col_CT_Category";
     this.Col_CT_Category.Visible = true;
     this.Col_CT_Category.Width = 57;
     //
     // Col_CT_NoiDung
     //
     this.Col_CT_NoiDung.Caption = "Tên chương trình";
     this.Col_CT_NoiDung.Name = "Col_CT_NoiDung";
     this.Col_CT_NoiDung.Visible = true;
     this.Col_CT_NoiDung.Width = 107;
     //
     // Col_CT_TenGoc
     //
     this.Col_CT_TenGoc.Caption = "Tên gốc";
     this.Col_CT_TenGoc.Name = "Col_CT_TenGoc";
     this.Col_CT_TenGoc.Visible = true;
     this.Col_CT_TenGoc.Width = 50;
     //
     // Col_CT_TietMuc
     //
     this.Col_CT_TietMuc.Caption = "Tiết mục";
     this.Col_CT_TietMuc.Name = "Col_CT_TietMuc";
     this.Col_CT_TietMuc.Visible = true;
     this.Col_CT_TietMuc.Width = 65;
     //
     // Col_CT_DaoDien
     //
     this.Col_CT_DaoDien.Caption = "Đạo diễn";
     this.Col_CT_DaoDien.Name = "Col_CT_DaoDien";
     this.Col_CT_DaoDien.Visible = true;
     this.Col_CT_DaoDien.Width = 55;
     //
     // Col_CT_DienVien
     //
     this.Col_CT_DienVien.Caption = "Diễn viên";
     this.Col_CT_DienVien.Name = "Col_CT_DienVien";
     this.Col_CT_DienVien.Visible = true;
     this.Col_CT_DienVien.Width = 56;
     //
     // Col_CT_TomTat
     //
     this.Col_CT_TomTat.Caption = "Tóm tắt";
     this.Col_CT_TomTat.Name = "Col_CT_TomTat";
     this.Col_CT_TomTat.Visible = true;
     this.Col_CT_TomTat.Width = 49;
     //
     // Col_CT_DoiTuongKhanGia
     //
     this.Col_CT_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.Col_CT_DoiTuongKhanGia.Name = "Col_CT_DoiTuongKhanGia";
     this.Col_CT_DoiTuongKhanGia.Visible = true;
     this.Col_CT_DoiTuongKhanGia.Width = 103;
     //
     // Col_CT_KHPL
     //
     this.Col_CT_KHPL.Caption = "KHPL";
     this.Col_CT_KHPL.Name = "Col_CT_KHPL";
     this.Col_CT_KHPL.ToolTip = "Ký hiệu phân loại";
     this.Col_CT_KHPL.Visible = true;
     this.Col_CT_KHPL.Width = 36;
     //
     // Col_CT_KHXK
     //
     this.Col_CT_KHXK.Caption = "KHXK";
     this.Col_CT_KHXK.Name = "Col_CT_KHXK";
     this.Col_CT_KHXK.ToolTip = "Ký hiệu xếp kho";
     this.Col_CT_KHXK.Visible = true;
     this.Col_CT_KHXK.Width = 37;
     //
     // Col_CT_TinhTrangBang
     //
     this.Col_CT_TinhTrangBang.Caption = "Tình trạng CT";
     this.Col_CT_TinhTrangBang.Name = "Col_CT_TinhTrangBang";
     this.Col_CT_TinhTrangBang.Visible = true;
     this.Col_CT_TinhTrangBang.Width = 77;
     //
     // Col_CT_TuKhoa
     //
     this.Col_CT_TuKhoa.Caption = "Từ khóa";
     this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa";
     this.Col_CT_TuKhoa.Visible = true;
     this.Col_CT_TuKhoa.Width = 51;
     //
     // Col_CT_ThanhLy
     //
     this.Col_CT_ThanhLy.Caption = "Thanh lý";
     this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy";
     this.Col_CT_ThanhLy.Visible = true;
     this.Col_CT_ThanhLy.Width = 53;
     //
     // Col_CT_TrongKho
     //
     this.Col_CT_TrongKho.Caption = "Trong kho";
     this.Col_CT_TrongKho.Name = "Col_CT_TrongKho";
     this.Col_CT_TrongKho.Visible = true;
     //
     // Col_CT_GhiChu
     //
     this.Col_CT_GhiChu.Caption = "Ghi chú";
     this.Col_CT_GhiChu.Name = "Col_CT_GhiChu";
     this.Col_CT_GhiChu.Visible = true;
     this.Col_CT_GhiChu.Width = 47;
     //
     // Col_CT_Photos
     //
     this.Col_CT_Photos.Caption = "Photos";
     this.Col_CT_Photos.Name = "Col_CT_Photos";
     this.Col_CT_Photos.Visible = true;
     this.Col_CT_Photos.Width = 45;
     //
     // Col_CT_Ranking
     //
     this.Col_CT_Ranking.Caption = "Ranking";
     this.Col_CT_Ranking.Name = "Col_CT_Ranking";
     this.Col_CT_Ranking.Visible = true;
     this.Col_CT_Ranking.Width = 50;
     //
     // Col_CT_Script
     //
     this.Col_CT_Script.Caption = "Script";
     this.Col_CT_Script.Name = "Col_CT_Script";
     this.Col_CT_Script.Visible = true;
     this.Col_CT_Script.Width = 39;
     //
     // Col_CT_TrailerGoc
     //
     this.Col_CT_TrailerGoc.Caption = "Trailer gốc";
     this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc";
     this.Col_CT_TrailerGoc.Visible = true;
     this.Col_CT_TrailerGoc.Width = 62;
     //
     // Col_CT_NamSX
     //
     this.Col_CT_NamSX.Caption = "Năm SX";
     this.Col_CT_NamSX.Name = "Col_CT_NamSX";
     this.Col_CT_NamSX.Visible = true;
     this.Col_CT_NamSX.Width = 48;
     //
     // Col_CT_Nuoc
     //
     this.Col_CT_Nuoc.Caption = "Nước SX";
     this.Col_CT_Nuoc.Name = "Col_CT_Nuoc";
     this.Col_CT_Nuoc.ToolTip = "Nước sản xuất";
     this.Col_CT_Nuoc.Visible = true;
     this.Col_CT_Nuoc.Width = 52;
     //
     // Col_CT_DonViCungCap
     //
     this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp";
     this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap";
     this.Col_CT_DonViCungCap.Visible = true;
     this.Col_CT_DonViCungCap.Width = 89;
     //
     // Col_CT_DonViSoHuu
     //
     this.Col_CT_DonViSoHuu.Caption = "Đơn vị sở hữu";
     this.Col_CT_DonViSoHuu.Name = "Col_CT_DonViSoHuu";
     this.Col_CT_DonViSoHuu.Visible = true;
     this.Col_CT_DonViSoHuu.Width = 79;
     //
     // Col_CT_KenhHanCheBan
     //
     this.Col_CT_KenhHanCheBan.Caption = "Kênh hạn chế bán";
     this.Col_CT_KenhHanCheBan.Name = "Col_CT_KenhHanCheBan";
     this.Col_CT_KenhHanCheBan.Visible = true;
     this.Col_CT_KenhHanCheBan.Width = 98;
     //
     // Col_CT_ThongTinBan
     //
     this.Col_CT_ThongTinBan.Caption = "Thông tin bán";
     this.Col_CT_ThongTinBan.Name = "Col_CT_ThongTinBan";
     this.Col_CT_ThongTinBan.Visible = true;
     this.Col_CT_ThongTinBan.Width = 78;
     //
     // Col_CT_BanQuyenThuoc
     //
     this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc";
     this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc";
     this.Col_CT_BanQuyenThuoc.Visible = true;
     this.Col_CT_BanQuyenThuoc.Width = 93;
     //
     // Col_CT_BanQuyenDIDStart
     //
     this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start";
     this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart";
     this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start";
     this.Col_CT_BanQuyenDIDStart.Visible = true;
     this.Col_CT_BanQuyenDIDStart.Width = 119;
     //
     // Col_CT_BanQuyenDIDEnd
     //
     this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End";
     this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd";
     this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End";
     this.Col_CT_BanQuyenDIDEnd.Visible = true;
     this.Col_CT_BanQuyenDIDEnd.Width = 113;
     //
     // Col_CT_BanQuyenDTNNStart
     //
     this.Col_CT_BanQuyenDTNNStart.Caption = "Bản quyền ĐTNN Start";
     this.Col_CT_BanQuyenDTNNStart.Name = "Col_CT_BanQuyenDTNNStart";
     this.Col_CT_BanQuyenDTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
     this.Col_CT_BanQuyenDTNNStart.Visible = true;
     this.Col_CT_BanQuyenDTNNStart.Width = 121;
     //
     // Col_CT_BanQuyenDTNNEnd
     //
     this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End";
     this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd";
     this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
     this.Col_CT_BanQuyenDTNNEnd.Visible = true;
     this.Col_CT_BanQuyenDTNNEnd.Width = 115;
     //
     // Col_CT_BanQuyenHTV
     //
     this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV";
     this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV";
     this.Col_CT_BanQuyenHTV.Visible = true;
     this.Col_CT_BanQuyenHTV.Width = 85;
     //
     // Col_CT_MuaKem
     //
     this.Col_CT_MuaKem.Caption = "Mua kèm";
     this.Col_CT_MuaKem.Name = "Col_CT_MuaKem";
     this.Col_CT_MuaKem.Visible = true;
     this.Col_CT_MuaKem.Width = 54;
     //
     // Col_CT_PhatSongChinh
     //
     this.Col_CT_PhatSongChinh.Caption = "Thời gian P/S chính";
     this.Col_CT_PhatSongChinh.Name = "Col_CT_PhatSongChinh";
     this.Col_CT_PhatSongChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
     this.Col_CT_PhatSongChinh.Visible = true;
     this.Col_CT_PhatSongChinh.Width = 102;
     //
     // Col_CT_PhatSongLai
     //
     this.Col_CT_PhatSongLai.Caption = "Thời gian P/S lại";
     this.Col_CT_PhatSongLai.Name = "Col_CT_PhatSongLai";
     this.Col_CT_PhatSongLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
     this.Col_CT_PhatSongLai.Visible = true;
     this.Col_CT_PhatSongLai.Width = 87;
     //
     // Col_CT_PhatSongKhac
     //
     this.Col_CT_PhatSongKhac.Caption = "Thời gian P/S trên kênh khác";
     this.Col_CT_PhatSongKhac.Name = "Col_CT_PhatSongKhac";
     this.Col_CT_PhatSongKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
     this.Col_CT_PhatSongKhac.Visible = true;
     this.Col_CT_PhatSongKhac.Width = 148;
     //
     // Col_CT_TongSoRun
     //
     this.Col_CT_TongSoRun.Caption = "Tổng số Run";
     this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun";
     this.Col_CT_TongSoRun.Visible = true;
     this.Col_CT_TongSoRun.Width = 72;
     //
     // Col_CT_SoLanPhat
     //
     this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)";
     this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat";
     this.Col_CT_SoLanPhat.Visible = true;
     this.Col_CT_SoLanPhat.Width = 152;
     //
     // Col_CT_SoRunConLai
     //
     this.Col_CT_SoRunConLai.Caption = "Số Run còn lại";
     this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai";
     this.Col_CT_SoRunConLai.Visible = true;
     this.Col_CT_SoRunConLai.Width = 79;
     //
     // Col_CT_Release
     //
     this.Col_CT_Release.Caption = "Release (Số ngày)";
     this.Col_CT_Release.Name = "Col_CT_Release";
     this.Col_CT_Release.Visible = true;
     this.Col_CT_Release.Width = 100;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Horizontal = false;
     this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl2.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlPM);
     this.splitContainerControl2.Panel1.Text = "Post/Master";
     this.splitContainerControl2.Panel2.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl2.Panel2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl2.Panel2.Controls.Add(this.groupControlBM);
     this.splitContainerControl2.Panel2.Text = "Biên mục";
     this.splitContainerControl2.Size = new System.Drawing.Size(660, 364);
     this.splitContainerControl2.SplitterPosition = 150;
     this.splitContainerControl2.TabIndex = 10;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlPM
     //
     this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.Navy;
     this.groupControlPM.Appearance.Options.UseBorderColor = true;
     this.groupControlPM.Controls.Add(this.gridControlDetail);
     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(660, 150);
     this.groupControlPM.TabIndex = 10;
     this.groupControlPM.Text = "groupControl1";
     //
     // groupControlBM
     //
     this.groupControlBM.Appearance.BorderColor = System.Drawing.Color.Navy;
     this.groupControlBM.Appearance.Options.UseBorderColor = true;
     this.groupControlBM.Controls.Add(this.gridControlBienMuc);
     this.groupControlBM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBM.Location = new System.Drawing.Point(0, 0);
     this.groupControlBM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlBM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlBM.Name = "groupControlBM";
     this.groupControlBM.ShowCaption = false;
     this.groupControlBM.Size = new System.Drawing.Size(660, 208);
     this.groupControlBM.TabIndex = 10;
     this.groupControlBM.Text = "groupControl1";
     //
     // gridControlBienMuc
     //
     this.gridControlBienMuc.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlBienMuc.BackgroundImage")));
     this.gridControlBienMuc.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlBienMuc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlBienMuc.Location = new System.Drawing.Point(3, 3);
     this.gridControlBienMuc.MainView = this.gridViewBienMuc;
     this.gridControlBienMuc.MenuManager = this.barManager1;
     this.gridControlBienMuc.Name = "gridControlBienMuc";
     this.gridControlBienMuc.Size = new System.Drawing.Size(654, 202);
     this.gridControlBienMuc.TabIndex = 1;
     this.gridControlBienMuc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewBienMuc});
     //
     // gridViewBienMuc
     //
     this.gridViewBienMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewBienMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewBienMuc.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.gridViewBienMuc.GridControl = this.gridControlBienMuc;
     this.gridViewBienMuc.IndicatorWidth = 40;
     this.gridViewBienMuc.Name = "gridViewBienMuc";
     this.gridViewBienMuc.OptionsBehavior.Editable = false;
     this.gridViewBienMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewBienMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewBienMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewBienMuc.OptionsPrint.UsePrintStyles = true;
     this.gridViewBienMuc.OptionsView.ColumnAutoWidth = false;
     this.gridViewBienMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewBienMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewBienMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewBienMuc.OptionsView.ShowGroupedColumns = true;
     this.gridViewBienMuc.OptionsView.ShowGroupPanel = false;
     this.gridViewBienMuc.OptionsView.ShowViewCaption = true;
     this.gridViewBienMuc.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_CT_HangSanXuat
     //
     this.Col_CT_HangSanXuat.Caption = "Hãng sản xuất";
     this.Col_CT_HangSanXuat.Name = "Col_CT_HangSanXuat";
     this.Col_CT_HangSanXuat.Visible = true;
     //
     // gridBandThongTinChinh
     //
     this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinChinh.Caption = "Thông tin chính";
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_MaCT);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayAWB);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayLap);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NguoiLap);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_PhongBan);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Category);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NoiDung);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TenGoc);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TietMuc);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DaoDien);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DienVien);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TomTat);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DoiTuongKhanGia);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHPL);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHXK);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TinhTrangBang);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TuKhoa);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_ThanhLy);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrongKho);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_GhiChu);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Photos);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Ranking);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Script);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrailerGoc);
     this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
     this.gridBandThongTinChinh.Width = 1441;
     //
     // gridBandNguonGoc
     //
     this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandNguonGoc.Caption = "Nguồn gốc";
     this.gridBandNguonGoc.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.gridBandNguonGoc.Name = "gridBandNguonGoc";
     this.gridBandNguonGoc.Width = 1165;
     //
     // gridBand1
     //
     this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand1.Caption = "Thông tin sở hữu";
     this.gridBand1.Columns.Add(this.Col_CT_NamSX);
     this.gridBand1.Columns.Add(this.Col_CT_Nuoc);
     this.gridBand1.Columns.Add(this.Col_CT_DonViCungCap);
     this.gridBand1.Columns.Add(this.Col_CT_DonViSoHuu);
     this.gridBand1.Columns.Add(this.Col_CT_KenhHanCheBan);
     this.gridBand1.Columns.Add(this.Col_CT_HangSanXuat);
     this.gridBand1.Columns.Add(this.Col_CT_ThongTinBan);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 519;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Thời hạn bản quyền";
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenThuoc);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDStart);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDEnd);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNStart);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNEnd);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenHTV);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 646;
     //
     // gridBandThongTinPhatSong
     //
     this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_MuaKem);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongChinh);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongLai);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongKhac);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_TongSoRun);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoLanPhat);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoRunConLai);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_Release);
     this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
     this.gridBandThongTinPhatSong.Width = 794;
     //
     // gridBandThongTinBan
     //
     this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinBan.Caption = "Thông tin bán";
     this.gridBandThongTinBan.Name = "gridBandThongTinBan";
     this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false;
     this.gridBandThongTinBan.Visible = false;
     this.gridBandThongTinBan.Width = 67;
     //
     // 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;
     this.Col_PM_TienDo.VisibleIndex = 16;
     //
     // frmChuongTrinhSearchMultiQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1188, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanelSimple);
     this.Controls.Add(this.hideContainerLeft);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmChuongTrinhSearchMultiQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Tra cứu chương trình";
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((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.hideContainerLeft.ResumeLayout(false);
     this.dockPanelAdvance.ResumeLayout(false);
     this.dockPanel2_Container.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.TrongKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCT)).EndInit();
     this.groupControlCT.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
     this.groupControlPM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBM)).EndInit();
     this.groupControlBM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlBienMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBienMuc)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.txtTenHang = new System.Windows.Forms.TextBox();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtSL = new DevExpress.XtraEditors.SpinEdit();
     this.dxErrorProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.txtDG = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDG.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(14, 28);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(59, 15);
     this.label1.TabIndex = 0;
     this.label1.Text = "Tên hàng";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(14, 59);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(58, 15);
     this.label2.TabIndex = 0;
     this.label2.Text = "Số lượng";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(14, 85);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(51, 15);
     this.label3.TabIndex = 0;
     this.label3.Text = "Đơn giá";
     //
     // txtTenHang
     //
     this.txtTenHang.Enabled = false;
     this.txtTenHang.Location = new System.Drawing.Point(83, 24);
     this.txtTenHang.Name = "txtTenHang";
     this.txtTenHang.Size = new System.Drawing.Size(221, 21);
     this.txtTenHang.TabIndex = 0;
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(83, 126);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(87, 27);
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = "Cập nhật";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(176, 126);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(87, 27);
     this.btnCancel.TabIndex = 4;
     this.btnCancel.Text = "Hủy";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // txtSL
     //
     this.txtSL.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtSL.Location = new System.Drawing.Point(83, 57);
     this.txtSL.Name = "txtSL";
     this.txtSL.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtSL.Size = new System.Drawing.Size(222, 20);
     this.txtSL.TabIndex = 1;
     //
     // dxErrorProvider1
     //
     this.dxErrorProvider1.ContainerControl = this;
     //
     // txtDG
     //
     this.txtDG.Location = new System.Drawing.Point(83, 88);
     this.txtDG.Name = "txtDG";
     this.txtDG.Size = new System.Drawing.Size(222, 20);
     this.txtDG.TabIndex = 2;
     //
     // FrmChiTietEdit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(331, 165);
     this.Controls.Add(this.txtDG);
     this.Controls.Add(this.txtSL);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.txtTenHang);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name = "FrmChiTietEdit";
     this.Text = "FrmChiTietEdit";
     this.Load += new System.EventHandler(this.FrmChiTietEdit_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtSL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDG.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #32
0
        public void PreviewCorrelative(DevExpress.XtraEditors.TextEdit edittext, DevExpress.XtraEditors.SpinEdit spinedit)
        {
            string num = "1";

            edittext.Text = num.PadLeft(Convert.ToInt32(spinedit.Value), '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(MenuManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.MenuControlComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.MenuNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.MenuNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.GlyphMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.OnClickMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.KeyTipTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.PNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForMenuNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForMenuName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForGlyph = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOnClick = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForKeyTip = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.ItemForMenuControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForPNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolMenuName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(351, 319, 551, 543);
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(997, 496);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.MenuControlComboBoxEdit);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.MenuNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.MenuNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.GlyphMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.OnClickMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.KeyTipTextEdit);
     this.dataLayoutControl1.Controls.Add(this.PNoTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(366, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(446, 375, 456, 528);
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(625, 484);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(201, 446);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 14;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(97, 446);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 13;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(305, 446);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 14;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // MenuControlComboBoxEdit
     //
     this.MenuControlComboBoxEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuControl", true));
     this.MenuControlComboBoxEdit.Location = new System.Drawing.Point(87, 84);
     this.MenuControlComboBoxEdit.Name = "MenuControlComboBoxEdit";
     this.MenuControlComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MenuControlComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPage", "RibbonPage", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPageGroup", "RibbonPageGroup", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarSubItem", "BarSubItem", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarItem", "BarItem", -1)});
     this.MenuControlComboBoxEdit.Properties.NullValuePrompt = null;
     this.MenuControlComboBoxEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuControlComboBoxEdit.StyleController = this.dataLayoutControl1;
     this.MenuControlComboBoxEdit.TabIndex = 9;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.MenuEntity);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(513, 446);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 13;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(409, 446);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 12;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // MenuNoTextEdit
     //
     this.MenuNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuNo", true));
     this.MenuNoTextEdit.Location = new System.Drawing.Point(87, 12);
     this.MenuNoTextEdit.Name = "MenuNoTextEdit";
     this.MenuNoTextEdit.Properties.NullValuePrompt = null;
     this.MenuNoTextEdit.Properties.ReadOnly = true;
     this.MenuNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNoTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNoTextEdit.TabIndex = 4;
     //
     // MenuNameTextEdit
     //
     this.MenuNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuName", true));
     this.MenuNameTextEdit.Location = new System.Drawing.Point(87, 60);
     this.MenuNameTextEdit.Name = "MenuNameTextEdit";
     this.MenuNameTextEdit.Properties.NullValuePrompt = null;
     this.MenuNameTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNameTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNameTextEdit.TabIndex = 5;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(87, 108);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(526, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 8;
     //
     // GlyphMemoEdit
     //
     this.GlyphMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Glyph", true));
     this.GlyphMemoEdit.Location = new System.Drawing.Point(87, 132);
     this.GlyphMemoEdit.Name = "GlyphMemoEdit";
     this.GlyphMemoEdit.Properties.NullValuePrompt = null;
     this.GlyphMemoEdit.Size = new System.Drawing.Size(526, 111);
     this.GlyphMemoEdit.StyleController = this.dataLayoutControl1;
     this.GlyphMemoEdit.TabIndex = 9;
     //
     // OnClickMemoEdit
     //
     this.OnClickMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "OnClick", true));
     this.OnClickMemoEdit.Location = new System.Drawing.Point(87, 247);
     this.OnClickMemoEdit.Name = "OnClickMemoEdit";
     this.OnClickMemoEdit.Properties.NullValuePrompt = null;
     this.OnClickMemoEdit.Size = new System.Drawing.Size(526, 171);
     this.OnClickMemoEdit.StyleController = this.dataLayoutControl1;
     this.OnClickMemoEdit.TabIndex = 10;
     //
     // KeyTipTextEdit
     //
     this.KeyTipTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "KeyTip", true));
     this.KeyTipTextEdit.Location = new System.Drawing.Point(87, 422);
     this.KeyTipTextEdit.Name = "KeyTipTextEdit";
     this.KeyTipTextEdit.Properties.NullValuePrompt = null;
     this.KeyTipTextEdit.Size = new System.Drawing.Size(526, 20);
     this.KeyTipTextEdit.StyleController = this.dataLayoutControl1;
     this.KeyTipTextEdit.TabIndex = 11;
     //
     // PNoTextEdit
     //
     this.PNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "PNo", true));
     this.PNoTextEdit.Location = new System.Drawing.Point(87, 36);
     this.PNoTextEdit.Name = "PNoTextEdit";
     this.PNoTextEdit.Properties.NullValuePrompt = null;
     this.PNoTextEdit.Properties.ReadOnly = true;
     this.PNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.PNoTextEdit.StyleController = this.dataLayoutControl1;
     this.PNoTextEdit.TabIndex = 14;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(625, 484);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForMenuNo,
     this.ItemForMenuName,
     this.ItemForOrder,
     this.ItemForGlyph,
     this.ItemForOnClick,
     this.ItemForKeyTip,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.ItemForMenuControl,
     this.ItemForPNo,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem7});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(617, 476);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForMenuNo
     //
     this.ItemForMenuNo.Control = this.MenuNoTextEdit;
     this.ItemForMenuNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForMenuNo.Name = "ItemForMenuNo";
     this.ItemForMenuNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuNo.Text = "菜单编号";
     this.ItemForMenuNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForMenuName
     //
     this.ItemForMenuName.Control = this.MenuNameTextEdit;
     this.ItemForMenuName.Location = new System.Drawing.Point(0, 48);
     this.ItemForMenuName.Name = "ItemForMenuName";
     this.ItemForMenuName.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuName.Text = "菜单名称";
     this.ItemForMenuName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.Location = new System.Drawing.Point(0, 96);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(605, 24);
     this.ItemForOrder.Text = "菜单序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForGlyph
     //
     this.ItemForGlyph.Control = this.GlyphMemoEdit;
     this.ItemForGlyph.Location = new System.Drawing.Point(0, 120);
     this.ItemForGlyph.Name = "ItemForGlyph";
     this.ItemForGlyph.Size = new System.Drawing.Size(605, 115);
     this.ItemForGlyph.StartNewLine = true;
     this.ItemForGlyph.Text = "显示图像";
     this.ItemForGlyph.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOnClick
     //
     this.ItemForOnClick.Control = this.OnClickMemoEdit;
     this.ItemForOnClick.Location = new System.Drawing.Point(0, 235);
     this.ItemForOnClick.Name = "ItemForOnClick";
     this.ItemForOnClick.Size = new System.Drawing.Size(605, 175);
     this.ItemForOnClick.StartNewLine = true;
     this.ItemForOnClick.Text = "点击事件";
     this.ItemForOnClick.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForKeyTip
     //
     this.ItemForKeyTip.Control = this.KeyTipTextEdit;
     this.ItemForKeyTip.Location = new System.Drawing.Point(0, 410);
     this.ItemForKeyTip.Name = "ItemForKeyTip";
     this.ItemForKeyTip.Size = new System.Drawing.Size(605, 24);
     this.ItemForKeyTip.Text = "提示";
     this.ItemForKeyTip.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(397, 434);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(501, 434);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 434);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(85, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // ItemForMenuControl
     //
     this.ItemForMenuControl.Control = this.MenuControlComboBoxEdit;
     this.ItemForMenuControl.Location = new System.Drawing.Point(0, 72);
     this.ItemForMenuControl.Name = "ItemForMenuControl";
     this.ItemForMenuControl.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuControl.Text = "菜单编程控件";
     this.ItemForMenuControl.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForPNo
     //
     this.ItemForPNo.Control = this.PNoTextEdit;
     this.ItemForPNo.Location = new System.Drawing.Point(0, 24);
     this.ItemForPNo.Name = "ItemForPNo";
     this.ItemForPNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForPNo.Text = "上级编号";
     this.ItemForPNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnDel;
     this.layoutControlItem5.Location = new System.Drawing.Point(293, 434);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnAdd;
     this.layoutControlItem6.Location = new System.Drawing.Point(85, 434);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(189, 434);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolMenuName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "MenuNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsBehavior.ReadOnly = true;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "PNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(356, 484);
     this.treeList1.TabIndex = 4;
     //
     // tcolMenuName
     //
     this.tcolMenuName.Caption = "菜单名称";
     this.tcolMenuName.FieldName = "MenuName";
     this.tcolMenuName.Name = "tcolMenuName";
     this.tcolMenuName.Visible = true;
     this.tcolMenuName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(997, 496);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(360, 488);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(629, 488);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // MenuManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(997, 496);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "MenuManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "菜单权限设置";
     this.Load += new System.EventHandler(this.MenuManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #34
0
        public string[] GetContent(List<int> wcount) {
            StringHelper sh = new StringHelper();
            string[] colArr = new string[m_ColName.Length];
            string[] useforadd = new string[m_ColName.Length];
            int[] rows = new int[m_ColName.Length];
            int max = 1;
            string newrow = "";
            DataTable dt = GetDS();
            for (int j = 0; j < dt.Rows.Count; j++) {
                max = 1;

                for (int i = 0; i < dt.Columns.Count; i++) {
                    //DataRow dr= gridView1.GetDataRow(j);
                    string oneCol = dt.Rows[j][i].ToString();
                    if (gridView1.Columns[i].ColumnEdit is RepositoryItemDateEdit && oneCol != "") {
                        DevExpress.XtraEditors.DateEdit de = new DevExpress.XtraEditors.DateEdit();
                        de.DateTime = Convert.ToDateTime(oneCol);
                        de.Properties.Mask.EditMask = gridView1.Columns[i].ColumnEdit.EditFormat.FormatString;
                        de.Properties.Mask.UseMaskAsDisplayFormat = true;
                        oneCol = de.Text;
                    } else if (gridView1.Columns[i].ColumnEdit is RepositoryItemBaseSpinEdit && oneCol != "") {
                        DevExpress.XtraEditors.SpinEdit de = new DevExpress.XtraEditors.SpinEdit();
                        de.Text = oneCol;
                        de.Properties.EditMask = gridView1.Columns[i].ColumnEdit.DisplayFormat.FormatString;
                        de.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        de.Properties.DisplayFormat.FormatString = gridView1.Columns[i].ColumnEdit.DisplayFormat.FormatString;
                        oneCol = de.Text;
                    }

                    //if (oneCol != "")
                    {
                        //string splitRst = sh.GetPlitStringN(oneCol, wcount[i]);
                        if (oneCol == "")
                            oneCol = " ";
                        string splitRst = oneCol;
                        if (oneCol.Length > wcount[i]) splitRst = oneCol.Substring(0, wcount[i]);
                        //if (GetPlitLen(splitRst) > max)
                        //    max = GetPlitLen(splitRst);
                        colArr[i] += newrow + splitRst;
                        useforadd[i] = newrow + splitRst;
                        if (i == dt.Columns.Count - 1 && max != 1) {
                            AddMauRow(ref colArr, useforadd, max);
                        }
                    }
                }
                newrow = "\r\n";
            }
            RomoveEnd(ref colArr);
            Console.WriteLine("1");
            return colArr;
        }
Exemple #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ucAccountingPicker1 = new AccountingPicker.ucAccountingPicker();
     this.dataSet11           = new TestApp.DataSet1();
     this.sqlConnection1      = new System.Data.SqlClient.SqlConnection();
     this.sqlDataAdapter1     = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlDeleteCommand1   = new System.Data.SqlClient.SqlCommand();
     this.sqlInsertCommand1   = new System.Data.SqlClient.SqlCommand();
     this.sqlSelectCommand1   = new System.Data.SqlClient.SqlCommand();
     this.sqlUpdateCommand1   = new System.Data.SqlClient.SqlCommand();
     this.gridControl1        = new DevExpress.XtraGrid.GridControl();
     this.gridView1           = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colJOURNAL_ID       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGL_YEAR          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPERIOD           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTRANSACTION_DATE = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton4       = new DevExpress.XtraEditors.SimpleButton();
     this.ucAccountingPicker2 = new AccountingPicker.ucAccountingPicker();
     this.textEdit1           = new DevExpress.XtraEditors.TextEdit();
     this.label1        = new System.Windows.Forms.Label();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.spinEdit1     = new DevExpress.XtraEditors.SpinEdit();
     this.textEdit2     = new DevExpress.XtraEditors.TextEdit();
     this.label4        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ucAccountingPicker1
     //
     this.ucAccountingPicker1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ucAccountingPicker1.Appearance.Options.UseBackColor = true;
     this.ucAccountingPicker1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedYear", this.dataSet11, "GL_JOURNAL_HEADERS.GL_YEAR"));
     this.ucAccountingPicker1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedPeriod", this.dataSet11, "GL_JOURNAL_HEADERS.PERIOD"));
     this.ucAccountingPicker1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedEntryDate", this.dataSet11, "GL_JOURNAL_HEADERS.TRANSACTION_DATE"));
     this.ucAccountingPicker1.DataBound      = true;
     this.ucAccountingPicker1.LLayout        = AccountingPicker.ucAccountingPicker.enmLayout.Horizontal;
     this.ucAccountingPicker1.Location       = new System.Drawing.Point(8, 32);
     this.ucAccountingPicker1.Name           = "ucAccountingPicker1";
     this.ucAccountingPicker1.SelectedPeriod = 7;
     this.ucAccountingPicker1.Size           = new System.Drawing.Size(520, 48);
     this.ucAccountingPicker1.TabIndex       = 0;
     this.ucAccountingPicker1.UserName       = "******";
     this.ucAccountingPicker1.Load          += new System.EventHandler(this.ucAccountingPicker1_Load);
     //
     // dataSet11
     //
     this.dataSet11.DataSetName = "DataSet1";
     this.dataSet11.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = "workstation id=DEV2;packet size=4096;user id=sa;data source=DEV2;persist security" +
                                            " info=True;initial catalog=TR_RealEstateBeta;password=sa";
     //
     // sqlDataAdapter1
     //
     this.sqlDataAdapter1.DeleteCommand = this.sqlDeleteCommand1;
     this.sqlDataAdapter1.InsertCommand = this.sqlInsertCommand1;
     this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
     this.sqlDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "GL_JOURNAL_HEADERS", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("JOURNAL_ID", "JOURNAL_ID"),
             new System.Data.Common.DataColumnMapping("JOURNAL_NUMBER", "JOURNAL_NUMBER"),
             new System.Data.Common.DataColumnMapping("GL_YEAR", "GL_YEAR"),
             new System.Data.Common.DataColumnMapping("PERIOD", "PERIOD"),
             new System.Data.Common.DataColumnMapping("MODULE", "MODULE"),
             new System.Data.Common.DataColumnMapping("TYPE", "TYPE"),
             new System.Data.Common.DataColumnMapping("TRANSACTION_DATE", "TRANSACTION_DATE"),
             new System.Data.Common.DataColumnMapping("REFERENCE", "REFERENCE"),
             new System.Data.Common.DataColumnMapping("TOTAL_DEBITS", "TOTAL_DEBITS"),
             new System.Data.Common.DataColumnMapping("TOTAL_CREDITS", "TOTAL_CREDITS"),
             new System.Data.Common.DataColumnMapping("PRINTED", "PRINTED"),
             new System.Data.Common.DataColumnMapping("REVERSED", "REVERSED"),
             new System.Data.Common.DataColumnMapping("CREATED_BY", "CREATED_BY"),
             new System.Data.Common.DataColumnMapping("STATUS", "STATUS"),
             new System.Data.Common.DataColumnMapping("NEXT_LINE_NUMBER", "NEXT_LINE_NUMBER"),
             new System.Data.Common.DataColumnMapping("OPERATOR", "OPERATOR"),
             new System.Data.Common.DataColumnMapping("DATE_SAVED", "DATE_SAVED"),
             new System.Data.Common.DataColumnMapping("EXPIRE_PERIOD", "EXPIRE_PERIOD"),
             new System.Data.Common.DataColumnMapping("EXPIRE_YEAR", "EXPIRE_YEAR"),
             new System.Data.Common.DataColumnMapping("F9_UPDATED", "F9_UPDATED")
         })
     });
     this.sqlDataAdapter1.UpdateCommand = this.sqlUpdateCommand1;
     //
     // sqlDeleteCommand1
     //
     this.sqlDeleteCommand1.CommandText = @"DELETE FROM GL_JOURNAL_HEADERS WHERE (JOURNAL_ID = @Original_JOURNAL_ID) AND (CREATED_BY = @Original_CREATED_BY) AND (DATE_SAVED = @Original_DATE_SAVED OR @Original_DATE_SAVED IS NULL AND DATE_SAVED IS NULL) AND (EXPIRE_PERIOD = @Original_EXPIRE_PERIOD OR @Original_EXPIRE_PERIOD IS NULL AND EXPIRE_PERIOD IS NULL) AND (EXPIRE_YEAR = @Original_EXPIRE_YEAR OR @Original_EXPIRE_YEAR IS NULL AND EXPIRE_YEAR IS NULL) AND (F9_UPDATED = @Original_F9_UPDATED OR @Original_F9_UPDATED IS NULL AND F9_UPDATED IS NULL) AND (GL_YEAR = @Original_GL_YEAR) AND (JOURNAL_NUMBER = @Original_JOURNAL_NUMBER) AND (MODULE = @Original_MODULE) AND (NEXT_LINE_NUMBER = @Original_NEXT_LINE_NUMBER) AND (OPERATOR = @Original_OPERATOR OR @Original_OPERATOR IS NULL AND OPERATOR IS NULL) AND (PERIOD = @Original_PERIOD) AND (PRINTED = @Original_PRINTED) AND (REFERENCE = @Original_REFERENCE OR @Original_REFERENCE IS NULL AND REFERENCE IS NULL) AND (REVERSED = @Original_REVERSED) AND (STATUS = @Original_STATUS) AND (TOTAL_CREDITS = @Original_TOTAL_CREDITS) AND (TOTAL_DEBITS = @Original_TOTAL_DEBITS) AND (TRANSACTION_DATE = @Original_TRANSACTION_DATE) AND (TYPE = @Original_TYPE)";
     this.sqlDeleteCommand1.Connection  = this.sqlConnection1;
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_JOURNAL_ID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "JOURNAL_ID", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_CREATED_BY", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "CREATED_BY", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_DATE_SAVED", System.Data.SqlDbType.DateTime, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "DATE_SAVED", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_EXPIRE_PERIOD", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "EXPIRE_PERIOD", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_EXPIRE_YEAR", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "EXPIRE_YEAR", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_F9_UPDATED", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "F9_UPDATED", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_GL_YEAR", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "GL_YEAR", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_JOURNAL_NUMBER", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "JOURNAL_NUMBER", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_MODULE", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "MODULE", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_NEXT_LINE_NUMBER", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "NEXT_LINE_NUMBER", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_OPERATOR", System.Data.SqlDbType.VarChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OPERATOR", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_PERIOD", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "PERIOD", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_PRINTED", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "PRINTED", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_REFERENCE", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "REFERENCE", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_REVERSED", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "REVERSED", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_STATUS", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "STATUS", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TOTAL_CREDITS", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TOTAL_CREDITS", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TOTAL_DEBITS", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TOTAL_DEBITS", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TRANSACTION_DATE", System.Data.SqlDbType.DateTime, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TRANSACTION_DATE", System.Data.DataRowVersion.Original, null));
     this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TYPE", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TYPE", System.Data.DataRowVersion.Original, null));
     //
     // sqlInsertCommand1
     //
     this.sqlInsertCommand1.CommandText = @"INSERT INTO GL_JOURNAL_HEADERS(JOURNAL_ID, JOURNAL_NUMBER, GL_YEAR, PERIOD, MODULE, TYPE, TRANSACTION_DATE, REFERENCE, TOTAL_DEBITS, TOTAL_CREDITS, PRINTED, REVERSED, CREATED_BY, STATUS, NEXT_LINE_NUMBER, OPERATOR, DATE_SAVED, EXPIRE_PERIOD, EXPIRE_YEAR, F9_UPDATED) VALUES (@JOURNAL_ID, @JOURNAL_NUMBER, @GL_YEAR, @PERIOD, @MODULE, @TYPE, @TRANSACTION_DATE, @REFERENCE, @TOTAL_DEBITS, @TOTAL_CREDITS, @PRINTED, @REVERSED, @CREATED_BY, @STATUS, @NEXT_LINE_NUMBER, @OPERATOR, @DATE_SAVED, @EXPIRE_PERIOD, @EXPIRE_YEAR, @F9_UPDATED); SELECT JOURNAL_ID, JOURNAL_NUMBER, GL_YEAR, PERIOD, MODULE, TYPE, TRANSACTION_DATE, REFERENCE, TOTAL_DEBITS, TOTAL_CREDITS, PRINTED, REVERSED, CREATED_BY, STATUS, NEXT_LINE_NUMBER, OPERATOR, DATE_SAVED, EXPIRE_PERIOD, EXPIRE_YEAR, F9_UPDATED FROM GL_JOURNAL_HEADERS WHERE (JOURNAL_ID = @JOURNAL_ID)";
     this.sqlInsertCommand1.Connection  = this.sqlConnection1;
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@JOURNAL_ID", System.Data.SqlDbType.Int, 4, "JOURNAL_ID"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@JOURNAL_NUMBER", System.Data.SqlDbType.Int, 4, "JOURNAL_NUMBER"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@GL_YEAR", System.Data.SqlDbType.Int, 4, "GL_YEAR"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@PERIOD", System.Data.SqlDbType.Int, 4, "PERIOD"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@MODULE", System.Data.SqlDbType.VarChar, 20, "MODULE"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TYPE", System.Data.SqlDbType.VarChar, 1, "TYPE"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TRANSACTION_DATE", System.Data.SqlDbType.DateTime, 8, "TRANSACTION_DATE"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@REFERENCE", System.Data.SqlDbType.VarChar, 40, "REFERENCE"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TOTAL_DEBITS", System.Data.SqlDbType.Money, 8, "TOTAL_DEBITS"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TOTAL_CREDITS", System.Data.SqlDbType.Money, 8, "TOTAL_CREDITS"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@PRINTED", System.Data.SqlDbType.VarChar, 1, "PRINTED"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@REVERSED", System.Data.SqlDbType.VarChar, 1, "REVERSED"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@CREATED_BY", System.Data.SqlDbType.VarChar, 40, "CREATED_BY"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@STATUS", System.Data.SqlDbType.VarChar, 1, "STATUS"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@NEXT_LINE_NUMBER", System.Data.SqlDbType.Int, 4, "NEXT_LINE_NUMBER"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@OPERATOR", System.Data.SqlDbType.VarChar, 10, "OPERATOR"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@DATE_SAVED", System.Data.SqlDbType.DateTime, 8, "DATE_SAVED"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@EXPIRE_PERIOD", System.Data.SqlDbType.Int, 4, "EXPIRE_PERIOD"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@EXPIRE_YEAR", System.Data.SqlDbType.Int, 4, "EXPIRE_YEAR"));
     this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@F9_UPDATED", System.Data.SqlDbType.VarChar, 1, "F9_UPDATED"));
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = @"SELECT JOURNAL_ID, JOURNAL_NUMBER, GL_YEAR, PERIOD, MODULE, TYPE, TRANSACTION_DATE, REFERENCE, TOTAL_DEBITS, TOTAL_CREDITS, PRINTED, REVERSED, CREATED_BY, STATUS, NEXT_LINE_NUMBER, OPERATOR, DATE_SAVED, EXPIRE_PERIOD, EXPIRE_YEAR, F9_UPDATED FROM GL_JOURNAL_HEADERS";
     this.sqlSelectCommand1.Connection  = this.sqlConnection1;
     //
     // sqlUpdateCommand1
     //
     this.sqlUpdateCommand1.CommandText = "UPDATE GL_JOURNAL_HEADERS SET JOURNAL_ID = @JOURNAL_ID, JOURNAL_NUMBER = @JOURNAL" +
                                          "_NUMBER, GL_YEAR = @GL_YEAR, PERIOD = @PERIOD, MODULE = @MODULE, TYPE = @TYPE, T" +
                                          "RANSACTION_DATE = @TRANSACTION_DATE, REFERENCE = @REFERENCE, TOTAL_DEBITS = @TOT" +
                                          "AL_DEBITS, TOTAL_CREDITS = @TOTAL_CREDITS, PRINTED = @PRINTED, REVERSED = @REVER" +
                                          "SED, CREATED_BY = @CREATED_BY, STATUS = @STATUS, NEXT_LINE_NUMBER = @NEXT_LINE_N" +
                                          "UMBER, OPERATOR = @OPERATOR, DATE_SAVED = @DATE_SAVED, EXPIRE_PERIOD = @EXPIRE_P" +
                                          "ERIOD, EXPIRE_YEAR = @EXPIRE_YEAR, F9_UPDATED = @F9_UPDATED WHERE (JOURNAL_ID = " +
                                          "@Original_JOURNAL_ID) AND (CREATED_BY = @Original_CREATED_BY) AND (DATE_SAVED = " +
                                          "@Original_DATE_SAVED OR @Original_DATE_SAVED IS NULL AND DATE_SAVED IS NULL) AND" +
                                          " (EXPIRE_PERIOD = @Original_EXPIRE_PERIOD OR @Original_EXPIRE_PERIOD IS NULL AND" +
                                          " EXPIRE_PERIOD IS NULL) AND (EXPIRE_YEAR = @Original_EXPIRE_YEAR OR @Original_EX" +
                                          "PIRE_YEAR IS NULL AND EXPIRE_YEAR IS NULL) AND (F9_UPDATED = @Original_F9_UPDATE" +
                                          "D OR @Original_F9_UPDATED IS NULL AND F9_UPDATED IS NULL) AND (GL_YEAR = @Origin" +
                                          "al_GL_YEAR) AND (JOURNAL_NUMBER = @Original_JOURNAL_NUMBER) AND (MODULE = @Origi" +
                                          "nal_MODULE) AND (NEXT_LINE_NUMBER = @Original_NEXT_LINE_NUMBER) AND (OPERATOR = " +
                                          "@Original_OPERATOR OR @Original_OPERATOR IS NULL AND OPERATOR IS NULL) AND (PERI" +
                                          "OD = @Original_PERIOD) AND (PRINTED = @Original_PRINTED) AND (REFERENCE = @Origi" +
                                          "nal_REFERENCE OR @Original_REFERENCE IS NULL AND REFERENCE IS NULL) AND (REVERSE" +
                                          "D = @Original_REVERSED) AND (STATUS = @Original_STATUS) AND (TOTAL_CREDITS = @Or" +
                                          "iginal_TOTAL_CREDITS) AND (TOTAL_DEBITS = @Original_TOTAL_DEBITS) AND (TRANSACTI" +
                                          "ON_DATE = @Original_TRANSACTION_DATE) AND (TYPE = @Original_TYPE); SELECT JOURNA" +
                                          "L_ID, JOURNAL_NUMBER, GL_YEAR, PERIOD, MODULE, TYPE, TRANSACTION_DATE, REFERENCE" +
                                          ", TOTAL_DEBITS, TOTAL_CREDITS, PRINTED, REVERSED, CREATED_BY, STATUS, NEXT_LINE_" +
                                          "NUMBER, OPERATOR, DATE_SAVED, EXPIRE_PERIOD, EXPIRE_YEAR, F9_UPDATED FROM GL_JOU" +
                                          "RNAL_HEADERS WHERE (JOURNAL_ID = @JOURNAL_ID)";
     this.sqlUpdateCommand1.Connection = this.sqlConnection1;
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@JOURNAL_ID", System.Data.SqlDbType.Int, 4, "JOURNAL_ID"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@JOURNAL_NUMBER", System.Data.SqlDbType.Int, 4, "JOURNAL_NUMBER"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@GL_YEAR", System.Data.SqlDbType.Int, 4, "GL_YEAR"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@PERIOD", System.Data.SqlDbType.Int, 4, "PERIOD"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@MODULE", System.Data.SqlDbType.VarChar, 20, "MODULE"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TYPE", System.Data.SqlDbType.VarChar, 1, "TYPE"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TRANSACTION_DATE", System.Data.SqlDbType.DateTime, 8, "TRANSACTION_DATE"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@REFERENCE", System.Data.SqlDbType.VarChar, 40, "REFERENCE"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TOTAL_DEBITS", System.Data.SqlDbType.Money, 8, "TOTAL_DEBITS"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@TOTAL_CREDITS", System.Data.SqlDbType.Money, 8, "TOTAL_CREDITS"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@PRINTED", System.Data.SqlDbType.VarChar, 1, "PRINTED"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@REVERSED", System.Data.SqlDbType.VarChar, 1, "REVERSED"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@CREATED_BY", System.Data.SqlDbType.VarChar, 40, "CREATED_BY"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@STATUS", System.Data.SqlDbType.VarChar, 1, "STATUS"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@NEXT_LINE_NUMBER", System.Data.SqlDbType.Int, 4, "NEXT_LINE_NUMBER"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@OPERATOR", System.Data.SqlDbType.VarChar, 10, "OPERATOR"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@DATE_SAVED", System.Data.SqlDbType.DateTime, 8, "DATE_SAVED"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@EXPIRE_PERIOD", System.Data.SqlDbType.Int, 4, "EXPIRE_PERIOD"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@EXPIRE_YEAR", System.Data.SqlDbType.Int, 4, "EXPIRE_YEAR"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@F9_UPDATED", System.Data.SqlDbType.VarChar, 1, "F9_UPDATED"));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_JOURNAL_ID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "JOURNAL_ID", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_CREATED_BY", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "CREATED_BY", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_DATE_SAVED", System.Data.SqlDbType.DateTime, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "DATE_SAVED", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_EXPIRE_PERIOD", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "EXPIRE_PERIOD", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_EXPIRE_YEAR", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "EXPIRE_YEAR", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_F9_UPDATED", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "F9_UPDATED", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_GL_YEAR", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "GL_YEAR", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_JOURNAL_NUMBER", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "JOURNAL_NUMBER", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_MODULE", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "MODULE", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_NEXT_LINE_NUMBER", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "NEXT_LINE_NUMBER", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_OPERATOR", System.Data.SqlDbType.VarChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "OPERATOR", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_PERIOD", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "PERIOD", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_PRINTED", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "PRINTED", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_REFERENCE", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "REFERENCE", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_REVERSED", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "REVERSED", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_STATUS", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "STATUS", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TOTAL_CREDITS", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TOTAL_CREDITS", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TOTAL_DEBITS", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TOTAL_DEBITS", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TRANSACTION_DATE", System.Data.SqlDbType.DateTime, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TRANSACTION_DATE", System.Data.DataRowVersion.Original, null));
     this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_TYPE", System.Data.SqlDbType.VarChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TYPE", System.Data.DataRowVersion.Original, null));
     //
     // gridControl1
     //
     this.gridControl1.DataMember = "GL_JOURNAL_HEADERS";
     this.gridControl1.DataSource = this.dataSet11;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(8, 144);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(576, 232);
     this.gridControl1.TabIndex = 1;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colJOURNAL_ID,
         this.colGL_YEAR,
         this.colPERIOD,
         this.colTRANSACTION_DATE
     });
     this.gridView1.GridControl        = this.gridControl1;
     this.gridView1.Name               = "gridView1";
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // colJOURNAL_ID
     //
     this.colJOURNAL_ID.Caption      = "JOURNAL_ID";
     this.colJOURNAL_ID.FieldName    = "JOURNAL_ID";
     this.colJOURNAL_ID.Name         = "colJOURNAL_ID";
     this.colJOURNAL_ID.Visible      = true;
     this.colJOURNAL_ID.VisibleIndex = 0;
     this.colJOURNAL_ID.Width        = 99;
     //
     // colGL_YEAR
     //
     this.colGL_YEAR.Caption      = "GL_YEAR";
     this.colGL_YEAR.FieldName    = "GL_YEAR";
     this.colGL_YEAR.Name         = "colGL_YEAR";
     this.colGL_YEAR.Visible      = true;
     this.colGL_YEAR.VisibleIndex = 1;
     this.colGL_YEAR.Width        = 99;
     //
     // colPERIOD
     //
     this.colPERIOD.Caption      = "PERIOD";
     this.colPERIOD.FieldName    = "PERIOD";
     this.colPERIOD.Name         = "colPERIOD";
     this.colPERIOD.Visible      = true;
     this.colPERIOD.VisibleIndex = 2;
     this.colPERIOD.Width        = 99;
     //
     // colTRANSACTION_DATE
     //
     this.colTRANSACTION_DATE.Caption      = "TRANSACTION_DATE";
     this.colTRANSACTION_DATE.FieldName    = "TRANSACTION_DATE";
     this.colTRANSACTION_DATE.Name         = "colTRANSACTION_DATE";
     this.colTRANSACTION_DATE.Visible      = true;
     this.colTRANSACTION_DATE.VisibleIndex = 3;
     this.colTRANSACTION_DATE.Width        = 128;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(16, 384);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(120, 23);
     this.simpleButton1.TabIndex = 2;
     this.simpleButton1.Text     = "ReadOnly----Property";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(144, 384);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(144, 23);
     this.simpleButton2.TabIndex = 3;
     this.simpleButton2.Text     = "HasEntryDate---- Property";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.Location = new System.Drawing.Point(304, 384);
     this.simpleButton3.Name     = "simpleButton3";
     this.simpleButton3.Size     = new System.Drawing.Size(112, 23);
     this.simpleButton3.TabIndex = 4;
     this.simpleButton3.Text     = "LLayout----Property";
     this.simpleButton3.Click   += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton4
     //
     this.simpleButton4.Location = new System.Drawing.Point(424, 384);
     this.simpleButton4.Name     = "simpleButton4";
     this.simpleButton4.Size     = new System.Drawing.Size(144, 23);
     this.simpleButton4.TabIndex = 5;
     this.simpleButton4.Text     = "Type---Property";
     this.simpleButton4.Click   += new System.EventHandler(this.simpleButton4_Click);
     //
     // ucAccountingPicker2
     //
     this.ucAccountingPicker2.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ucAccountingPicker2.Appearance.Options.UseBackColor = true;
     this.ucAccountingPicker2.Location       = new System.Drawing.Point(608, 152);
     this.ucAccountingPicker2.Name           = "ucAccountingPicker2";
     this.ucAccountingPicker2.SelectedPeriod = 0;
     this.ucAccountingPicker2.Size           = new System.Drawing.Size(176, 120);
     this.ucAccountingPicker2.TabIndex       = 6;
     this.ucAccountingPicker2.UserName       = "";
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "packet size=4096;user id=hmsqlsa;data source=Dev2;persist security info=True;init" +
                                "ial catalog= TR_Comco;password=hmsqlsa;";
     this.textEdit1.Location = new System.Drawing.Point(32, 24);
     this.textEdit1.Name     = "textEdit1";
     this.textEdit1.Size     = new System.Drawing.Size(720, 20);
     this.textEdit1.TabIndex = 7;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(40, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(152, 23);
     this.label1.TabIndex = 8;
     this.label1.Text     = "TreasuryConnectionString";
     //
     // simpleButton5
     //
     this.simpleButton5.Location = new System.Drawing.Point(760, 24);
     this.simpleButton5.Name     = "simpleButton5";
     this.simpleButton5.TabIndex = 9;
     this.simpleButton5.Text     = "Connect";
     this.simpleButton5.Click   += new System.EventHandler(this.simpleButton5_Click);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.spinEdit1);
     this.panelControl1.Controls.Add(this.textEdit2);
     this.panelControl1.Controls.Add(this.label4);
     this.panelControl1.Controls.Add(this.label3);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.ucAccountingPicker2);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.gridControl1);
     this.panelControl1.Controls.Add(this.simpleButton4);
     this.panelControl1.Controls.Add(this.simpleButton3);
     this.panelControl1.Controls.Add(this.ucAccountingPicker1);
     this.panelControl1.Location = new System.Drawing.Point(0, 80);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(896, 440);
     this.panelControl1.TabIndex = 10;
     this.panelControl1.Text     = "panelControl1";
     this.panelControl1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panelControl1_Paint);
     //
     // spinEdit1
     //
     this.spinEdit1.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dataSet11, "GL_JOURNAL_HEADERS.GL_YEAR"));
     this.spinEdit1.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinEdit1.Location = new System.Drawing.Point(600, 80);
     this.spinEdit1.Name     = "spinEdit1";
     //
     // spinEdit1.Properties
     //
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinEdit1.TabIndex           = 12;
     this.spinEdit1.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.spinEdit1_EditValueChanging);
     this.spinEdit1.EditValueChanged  += new System.EventHandler(this.spinEdit1_EditValueChanged);
     //
     // textEdit2
     //
     this.textEdit2.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dataSet11, "GL_JOURNAL_HEADERS.GL_YEAR"));
     this.textEdit2.Location = new System.Drawing.Point(600, 48);
     this.textEdit2.Name     = "textEdit2";
     this.textEdit2.TabIndex = 11;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(576, 368);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(296, 32);
     this.label4.TabIndex = 9;
     this.label4.Text     = "***buttons show what the properties do, they are only tied to the databound accou" +
                            "nting picker";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(616, 128);
     this.label3.Name     = "label3";
     this.label3.TabIndex = 8;
     this.label3.Text     = "Not DataBound";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(152, 16);
     this.label2.TabIndex = 7;
     this.label2.Text     = "DataBound";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(896, 518);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.simpleButton5);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textEdit1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.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(ActionManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.ActionNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ParentActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.RemarkMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.ActionTypeTextEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForParentActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionType = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForRemark = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolActionName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(940, 559);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.ActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ParentActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.RemarkMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionTypeTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(237, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(697, 547);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(169, 509);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 14;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(273, 509);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 15;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(377, 509);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 16;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(585, 509);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 14;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(481, 509);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 13;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ActionNoTextEdit
     //
     this.ActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionNo", true));
     this.ActionNoTextEdit.Location = new System.Drawing.Point(63, 12);
     this.ActionNoTextEdit.Name = "ActionNoTextEdit";
     this.ActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNoTextEdit.TabIndex = 4;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.ActionEntity);
     //
     // ActionNameTextEdit
     //
     this.ActionNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionName", true));
     this.ActionNameTextEdit.Location = new System.Drawing.Point(63, 36);
     this.ActionNameTextEdit.Name = "ActionNameTextEdit";
     this.ActionNameTextEdit.Properties.NullValuePrompt = null;
     this.ActionNameTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNameTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNameTextEdit.TabIndex = 5;
     //
     // ParentActionNoTextEdit
     //
     this.ParentActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ParentActionNo", true));
     this.ParentActionNoTextEdit.Location = new System.Drawing.Point(63, 60);
     this.ParentActionNoTextEdit.Name = "ParentActionNoTextEdit";
     this.ParentActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ParentActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ParentActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ParentActionNoTextEdit.TabIndex = 6;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(63, 84);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(622, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 10;
     //
     // RemarkMemoEdit
     //
     this.RemarkMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Remark", true));
     this.RemarkMemoEdit.Location = new System.Drawing.Point(63, 132);
     this.RemarkMemoEdit.Name = "RemarkMemoEdit";
     this.RemarkMemoEdit.Properties.NullValuePrompt = null;
     this.RemarkMemoEdit.Size = new System.Drawing.Size(622, 373);
     this.RemarkMemoEdit.StyleController = this.dataLayoutControl1;
     this.RemarkMemoEdit.TabIndex = 11;
     //
     // ActionTypeTextEdit
     //
     this.ActionTypeTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionType", true));
     this.ActionTypeTextEdit.Location = new System.Drawing.Point(63, 108);
     this.ActionTypeTextEdit.Name = "ActionTypeTextEdit";
     this.ActionTypeTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ActionTypeTextEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("module", "module", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("auth", "auth", -1)});
     this.ActionTypeTextEdit.Properties.NullValuePrompt = null;
     this.ActionTypeTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionTypeTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionTypeTextEdit.TabIndex = 8;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(697, 547);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForActionNo,
     this.ItemForActionName,
     this.ItemForParentActionNo,
     this.ItemForOrder,
     this.ItemForActionType,
     this.ItemForRemark,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(689, 539);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForActionNo
     //
     this.ItemForActionNo.Control = this.ActionNoTextEdit;
     this.ItemForActionNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForActionNo.Name = "ItemForActionNo";
     this.ItemForActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionNo.Text = "权限编号";
     this.ItemForActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionName
     //
     this.ItemForActionName.Control = this.ActionNameTextEdit;
     this.ItemForActionName.Location = new System.Drawing.Point(0, 24);
     this.ItemForActionName.Name = "ItemForActionName";
     this.ItemForActionName.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionName.Text = "权限名称";
     this.ItemForActionName.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForParentActionNo
     //
     this.ItemForParentActionNo.Control = this.ParentActionNoTextEdit;
     this.ItemForParentActionNo.CustomizationFormText = "父级编号";
     this.ItemForParentActionNo.Location = new System.Drawing.Point(0, 48);
     this.ItemForParentActionNo.Name = "ItemForParentActionNo";
     this.ItemForParentActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForParentActionNo.Text = "父级编号";
     this.ItemForParentActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.CustomizationFormText = "序号";
     this.ItemForOrder.Location = new System.Drawing.Point(0, 72);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(677, 24);
     this.ItemForOrder.Text = "序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionType
     //
     this.ItemForActionType.Control = this.ActionTypeTextEdit;
     this.ItemForActionType.CustomizationFormText = "类型";
     this.ItemForActionType.Location = new System.Drawing.Point(0, 96);
     this.ItemForActionType.Name = "ItemForActionType";
     this.ItemForActionType.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionType.Text = "类型";
     this.ItemForActionType.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForRemark
     //
     this.ItemForRemark.Control = this.RemarkMemoEdit;
     this.ItemForRemark.CustomizationFormText = "备注";
     this.ItemForRemark.Location = new System.Drawing.Point(0, 120);
     this.ItemForRemark.Name = "ItemForRemark";
     this.ItemForRemark.Size = new System.Drawing.Size(677, 377);
     this.ItemForRemark.Text = "备注";
     this.ItemForRemark.TextSize = new System.Drawing.Size(48, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(469, 497);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(573, 497);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 497);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(157, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnDel;
     this.layoutControlItem6.Location = new System.Drawing.Point(365, 497);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(261, 497);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnAdd;
     this.layoutControlItem8.Location = new System.Drawing.Point(157, 497);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolActionName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "ActionNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "ParentActionNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(227, 547);
     this.treeList1.TabIndex = 4;
     //
     // tcolActionName
     //
     this.tcolActionName.Caption = "功能名称";
     this.tcolActionName.FieldName = "ActionName";
     this.tcolActionName.Name = "tcolActionName";
     this.tcolActionName.Visible = true;
     this.tcolActionName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(940, 559);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(231, 551);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(231, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(701, 551);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // ActionManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(940, 559);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "ActionManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "功能设置";
     this.Load += new System.EventHandler(this.ActionManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCustomPath));
     this.label1 = new System.Windows.Forms.Label();
     this.txt_name = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(14, 34);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(91, 14);
     this.label1.TabIndex = 0;
     this.label1.Text = "浏览路径名称:";
     //
     // txt_name
     //
     this.txt_name.ForeColor = System.Drawing.Color.Black;
     this.txt_name.Location = new System.Drawing.Point(104, 31);
     this.txt_name.Name = "txt_name";
     this.txt_name.Size = new System.Drawing.Size(172, 22);
     this.txt_name.TabIndex = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(14, 78);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 14);
     this.label2.TabIndex = 2;
     this.label2.Text = "浏览速度:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(199, 75);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(80, 14);
     this.label3.TabIndex = 4;
     this.label3.Text = "米/秒(m/s)";
     //
     // simpleButton1
     //
     this.simpleButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.simpleButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton1.Appearance.Options.UseForeColor = true;
     this.simpleButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton1.Location = new System.Drawing.Point(81, 127);
     this.simpleButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(87, 27);
     this.simpleButton1.TabIndex = 6;
     this.simpleButton1.Text = "开始创建";
     this.simpleButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton2.Appearance.ForeColor = System.Drawing.Color.Black;
     this.simpleButton2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton2.Appearance.Options.UseForeColor = true;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton2.Enabled = false;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton2.Location = new System.Drawing.Point(189, 127);
     this.simpleButton2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(87, 27);
     this.simpleButton2.TabIndex = 7;
     this.simpleButton2.Text = "完成并保存";
     this.simpleButton2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // spinEdit1
     //
     this.spinEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.EditValue = new decimal(new int[] {
     30,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(104, 75);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject1.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject1.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject1.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject1.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.spinEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit1.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit1.Size = new System.Drawing.Size(89, 21);
     this.spinEdit1.TabIndex = 8;
     this.spinEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // FrmCustomPath
     //
     this.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(291, 169);
     this.Controls.Add(this.spinEdit1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txt_name);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Name = "FrmCustomPath";
     this.Text = "自定义路径";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmCustomPath_FormClosing);
     this.Load += new System.EventHandler(this.FrmCustomPath_Load);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.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.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(283, 62);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "Ok";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(202, 62);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 2;
     this.simpleButton2.Text = "Cancel";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(27, 15);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 5;
     this.labelControl2.Text = "Select port";
     //
     // spinEdit1
     //
     this.spinEdit1.EditValue = new decimal(new int[] {
     35000,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(97, 12);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit1.Properties.IsFloatValue = false;
     this.spinEdit1.Properties.Mask.EditMask = "#####";
     this.spinEdit1.Properties.MaxValue = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.spinEdit1.Size = new System.Drawing.Size(100, 20);
     this.spinEdit1.TabIndex = 0;
     //
     // frmWifiSettings
     //
     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(376, 93);
     this.ControlBox = false;
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.spinEdit1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmWifiSettings";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Settings for WIFI device";
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.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.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.spinedtLastNonMemberID = new DevExpress.XtraEditors.SpinEdit();
     this.spinedtLastMemberID    = new DevExpress.XtraEditors.SpinEdit();
     this.sbtnCancel             = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnOK             = new DevExpress.XtraEditors.SimpleButton();
     this.label3             = new System.Windows.Forms.Label();
     this.label4             = new System.Windows.Forms.Label();
     this.txtLastNonMemberID = new DevExpress.XtraEditors.TextEdit();
     this.txtLastMemberID    = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 30);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(162, 18);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Reset Last Non-Member ID To:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 78);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(138, 18);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Reset Last Member ID To:";
     //
     // spinedtLastNonMemberID
     //
     this.spinedtLastNonMemberID.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinedtLastNonMemberID.Location = new System.Drawing.Point(174, 28);
     this.spinedtLastNonMemberID.Name     = "spinedtLastNonMemberID";
     this.spinedtLastNonMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinedtLastNonMemberID.Properties.IsFloatValue  = false;
     this.spinedtLastNonMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastNonMemberID.Properties.NullText      = "0";
     this.spinedtLastNonMemberID.Size     = new System.Drawing.Size(80, 20);
     this.spinedtLastNonMemberID.TabIndex = 1;
     //
     // spinedtLastMemberID
     //
     this.spinedtLastMemberID.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinedtLastMemberID.Location = new System.Drawing.Point(174, 76);
     this.spinedtLastMemberID.Name     = "spinedtLastMemberID";
     this.spinedtLastMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinedtLastMemberID.Properties.IsFloatValue  = false;
     this.spinedtLastMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastMemberID.Properties.NullText      = "0";
     this.spinedtLastMemberID.Size     = new System.Drawing.Size(80, 20);
     this.spinedtLastMemberID.TabIndex = 3;
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(142, 102);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.Size         = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex     = 5;
     this.sbtnCancel.Text         = "Cancel";
     //
     // sbtnOK
     //
     this.sbtnOK.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnOK.Location     = new System.Drawing.Point(48, 102);
     this.sbtnOK.Name         = "sbtnOK";
     this.sbtnOK.Size         = new System.Drawing.Size(75, 23);
     this.sbtnOK.TabIndex     = 4;
     this.sbtnOK.Text         = "OK";
     this.sbtnOK.Click       += new System.EventHandler(this.sbtnOK_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 8);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(154, 18);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Current Last Non-Member ID:";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(10, 56);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(154, 18);
     this.label4.TabIndex = 10;
     this.label4.Text     = "Current Last Member ID:";
     //
     // txtLastNonMemberID
     //
     this.txtLastNonMemberID.EditValue           = "";
     this.txtLastNonMemberID.Location            = new System.Drawing.Point(174, 6);
     this.txtLastNonMemberID.Name                = "txtLastNonMemberID";
     this.txtLastNonMemberID.Properties.ReadOnly = true;
     this.txtLastNonMemberID.RightToLeft         = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastNonMemberID.Size                = new System.Drawing.Size(64, 20);
     this.txtLastNonMemberID.TabIndex            = 0;
     //
     // txtLastMemberID
     //
     this.txtLastMemberID.EditValue           = "";
     this.txtLastMemberID.Location            = new System.Drawing.Point(174, 54);
     this.txtLastMemberID.Name                = "txtLastMemberID";
     this.txtLastMemberID.Properties.ReadOnly = true;
     this.txtLastMemberID.RightToLeft         = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastMemberID.Size                = new System.Drawing.Size(64, 20);
     this.txtLastMemberID.TabIndex            = 2;
     //
     // frmResetMembershipID
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.sbtnCancel;
     this.ClientSize        = new System.Drawing.Size(262, 128);
     this.Controls.Add(this.txtLastMemberID);
     this.Controls.Add(this.txtLastNonMemberID);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.sbtnOK);
     this.Controls.Add(this.spinedtLastMemberID);
     this.Controls.Add(this.spinedtLastNonMemberID);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmResetMembershipID";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Reset Membership ID";
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.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.txtFax = new System.Windows.Forms.MaskedTextBox();
     this.txtTel2 = new System.Windows.Forms.MaskedTextBox();
     this.txtCodigoP = new System.Windows.Forms.MaskedTextBox();
     this.txtTel = new System.Windows.Forms.MaskedTextBox();
     this.lblObservaciones = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lblNombre2 = new System.Windows.Forms.Label();
     this.lblMaterno2 = new System.Windows.Forms.Label();
     this.lblPaterno2 = new System.Windows.Forms.Label();
     this.lblRepresentante = new System.Windows.Forms.Label();
     this.lblCorreo = new System.Windows.Forms.Label();
     this.lblTel2 = new System.Windows.Forms.Label();
     this.lblTel1 = new System.Windows.Forms.Label();
     this.lblFax = new System.Windows.Forms.Label();
     this.lblCodigo = new System.Windows.Forms.Label();
     this.lblPais = new System.Windows.Forms.Label();
     this.lblEstado = new System.Windows.Forms.Label();
     this.lblDelegacion = new System.Windows.Forms.Label();
     this.lblColonia = new System.Windows.Forms.Label();
     this.lblCalle = new System.Windows.Forms.Label();
     this.lblFiscal = new System.Windows.Forms.Label();
     this.lblNombre = new System.Windows.Forms.Label();
     this.lblMaterno = new System.Windows.Forms.Label();
     this.lblPaterno = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.lblProveedor = new System.Windows.Forms.Label();
     this.txtClave = new DevExpress.XtraEditors.SpinEdit();
     this.txtPaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtMaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtNombre = new DevExpress.XtraEditors.TextEdit();
     this.txtCalle = new DevExpress.XtraEditors.TextEdit();
     this.txtColonia = new DevExpress.XtraEditors.TextEdit();
     this.txtDelegacion = new DevExpress.XtraEditors.TextEdit();
     this.txtEstado = new DevExpress.XtraEditors.TextEdit();
     this.txtPais = new DevExpress.XtraEditors.TextEdit();
     this.txtRpaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtRmaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtRnombre = new DevExpress.XtraEditors.TextEdit();
     this.txtGiro = new DevExpress.XtraEditors.TextEdit();
     this.txtObservaciones = new DevExpress.XtraEditors.MemoEdit();
     this.txtCorreo = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.cbxEmpresa = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.flowLayoutPanel9 = new System.Windows.Forms.FlowLayoutPanel();
     this.lblRfc = new System.Windows.Forms.Label();
     this.txtRfc = new System.Windows.Forms.MaskedTextBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel7 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel8 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel10 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel11 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel12 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel13 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel14 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel15 = new System.Windows.Forms.FlowLayoutPanel();
     this.lblTel3 = new System.Windows.Forms.Label();
     this.txtTel3 = new System.Windows.Forms.MaskedTextBox();
     this.flowLayoutPanel16 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel17 = new System.Windows.Forms.FlowLayoutPanel();
     this.label4 = new System.Windows.Forms.Label();
     this.txtNombreFiscal = new DevExpress.XtraEditors.TextEdit();
     this.txtCentinela = new System.Windows.Forms.TextBox();
     this.flowLayoutPanel18 = new System.Windows.Forms.FlowLayoutPanel();
     this.label6 = new System.Windows.Forms.Label();
     this.cbxTipo = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.bsSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClave.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCalle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtColonia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDelegacion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEstado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPais.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRpaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRmaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRnombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGiro.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservaciones.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel9.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.flowLayoutPanel3.SuspendLayout();
     this.flowLayoutPanel4.SuspendLayout();
     this.flowLayoutPanel5.SuspendLayout();
     this.flowLayoutPanel6.SuspendLayout();
     this.flowLayoutPanel7.SuspendLayout();
     this.flowLayoutPanel8.SuspendLayout();
     this.flowLayoutPanel10.SuspendLayout();
     this.flowLayoutPanel11.SuspendLayout();
     this.flowLayoutPanel12.SuspendLayout();
     this.flowLayoutPanel13.SuspendLayout();
     this.flowLayoutPanel14.SuspendLayout();
     this.flowLayoutPanel15.SuspendLayout();
     this.flowLayoutPanel17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombreFiscal.Properties)).BeginInit();
     this.flowLayoutPanel18.SuspendLayout();
     this.SuspendLayout();
     //
     // txtFax
     //
     this.txtFax.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFax.Location = new System.Drawing.Point(34, 3);
     this.txtFax.Name = "txtFax";
     this.txtFax.Size = new System.Drawing.Size(169, 20);
     this.txtFax.TabIndex = 1;
     //
     // txtTel2
     //
     this.txtTel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTel2.Location = new System.Drawing.Point(67, 3);
     this.txtTel2.Name = "txtTel2";
     this.txtTel2.Size = new System.Drawing.Size(164, 20);
     this.txtTel2.TabIndex = 1;
     //
     // txtCodigoP
     //
     this.txtCodigoP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCodigoP.Location = new System.Drawing.Point(92, 3);
     this.txtCodigoP.Mask = "00000";
     this.txtCodigoP.Name = "txtCodigoP";
     this.txtCodigoP.Size = new System.Drawing.Size(41, 20);
     this.txtCodigoP.TabIndex = 1;
     //
     // txtTel
     //
     this.txtTel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTel.Location = new System.Drawing.Point(91, 267);
     this.txtTel.Name = "txtTel";
     this.txtTel.Size = new System.Drawing.Size(164, 20);
     this.txtTel.TabIndex = 19;
     //
     // lblObservaciones
     //
     this.lblObservaciones.AutoSize = true;
     this.lblObservaciones.Location = new System.Drawing.Point(3, 549);
     this.lblObservaciones.Name = "lblObservaciones";
     this.lblObservaciones.Size = new System.Drawing.Size(78, 13);
     this.lblObservaciones.TabIndex = 1;
     this.lblObservaciones.Text = "Observaciones";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label5.Location = new System.Drawing.Point(91, 394);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(95, 13);
     this.label5.TabIndex = 13;
     this.label5.Text = "Giro o actividad";
     //
     // lblNombre2
     //
     this.lblNombre2.AutoSize = true;
     this.lblNombre2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNombre2.ForeColor = System.Drawing.Color.Black;
     this.lblNombre2.Location = new System.Drawing.Point(3, 0);
     this.lblNombre2.Name = "lblNombre2";
     this.lblNombre2.Size = new System.Drawing.Size(44, 13);
     this.lblNombre2.TabIndex = 0;
     this.lblNombre2.Text = "Nombre";
     //
     // lblMaterno2
     //
     this.lblMaterno2.AutoSize = true;
     this.lblMaterno2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaterno2.ForeColor = System.Drawing.Color.Black;
     this.lblMaterno2.Location = new System.Drawing.Point(3, 0);
     this.lblMaterno2.Name = "lblMaterno2";
     this.lblMaterno2.Size = new System.Drawing.Size(47, 13);
     this.lblMaterno2.TabIndex = 0;
     this.lblMaterno2.Text = "Materno";
     //
     // lblPaterno2
     //
     this.lblPaterno2.AutoSize = true;
     this.lblPaterno2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPaterno2.ForeColor = System.Drawing.Color.Black;
     this.lblPaterno2.Location = new System.Drawing.Point(3, 0);
     this.lblPaterno2.Name = "lblPaterno2";
     this.lblPaterno2.Size = new System.Drawing.Size(45, 13);
     this.lblPaterno2.TabIndex = 0;
     this.lblPaterno2.Text = "Paterno";
     //
     // lblRepresentante
     //
     this.lblRepresentante.AutoSize = true;
     this.lblRepresentante.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRepresentante.ForeColor = System.Drawing.Color.Black;
     this.lblRepresentante.Location = new System.Drawing.Point(3, 345);
     this.lblRepresentante.Name = "lblRepresentante";
     this.lblRepresentante.Size = new System.Drawing.Size(78, 26);
     this.lblRepresentante.TabIndex = 2;
     this.lblRepresentante.Text = "Repesentante Legal";
     //
     // lblCorreo
     //
     this.lblCorreo.AutoSize = true;
     this.lblCorreo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCorreo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(50)))));
     this.lblCorreo.Location = new System.Drawing.Point(3, 0);
     this.lblCorreo.Name = "lblCorreo";
     this.lblCorreo.Size = new System.Drawing.Size(40, 13);
     this.lblCorreo.TabIndex = 0;
     this.lblCorreo.Text = "Correo";
     //
     // lblTel2
     //
     this.lblTel2.AutoSize = true;
     this.lblTel2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTel2.Location = new System.Drawing.Point(3, 0);
     this.lblTel2.Name = "lblTel2";
     this.lblTel2.Size = new System.Drawing.Size(58, 13);
     this.lblTel2.TabIndex = 0;
     this.lblTel2.Text = "Teléfono 2";
     //
     // lblTel1
     //
     this.lblTel1.AutoSize = true;
     this.lblTel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTel1.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblTel1.Location = new System.Drawing.Point(3, 264);
     this.lblTel1.Name = "lblTel1";
     this.lblTel1.Size = new System.Drawing.Size(66, 13);
     this.lblTel1.TabIndex = 18;
     this.lblTel1.Text = "Teléfono 1";
     //
     // lblFax
     //
     this.lblFax.AutoSize = true;
     this.lblFax.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFax.Location = new System.Drawing.Point(3, 0);
     this.lblFax.Name = "lblFax";
     this.lblFax.Size = new System.Drawing.Size(25, 13);
     this.lblFax.TabIndex = 0;
     this.lblFax.Text = "Fax";
     //
     // lblCodigo
     //
     this.lblCodigo.AutoSize = true;
     this.lblCodigo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCodigo.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblCodigo.Location = new System.Drawing.Point(3, 0);
     this.lblCodigo.Name = "lblCodigo";
     this.lblCodigo.Size = new System.Drawing.Size(83, 13);
     this.lblCodigo.TabIndex = 0;
     this.lblCodigo.Text = "Código Postal";
     //
     // lblPais
     //
     this.lblPais.AutoSize = true;
     this.lblPais.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPais.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblPais.Location = new System.Drawing.Point(3, 225);
     this.lblPais.Name = "lblPais";
     this.lblPais.Size = new System.Drawing.Size(30, 13);
     this.lblPais.TabIndex = 15;
     this.lblPais.Text = "País";
     //
     // lblEstado
     //
     this.lblEstado.AutoSize = true;
     this.lblEstado.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblEstado.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblEstado.Location = new System.Drawing.Point(3, 0);
     this.lblEstado.Name = "lblEstado";
     this.lblEstado.Size = new System.Drawing.Size(45, 13);
     this.lblEstado.TabIndex = 0;
     this.lblEstado.Text = "Estado";
     //
     // lblDelegacion
     //
     this.lblDelegacion.AutoSize = true;
     this.lblDelegacion.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDelegacion.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblDelegacion.Location = new System.Drawing.Point(3, 183);
     this.lblDelegacion.Name = "lblDelegacion";
     this.lblDelegacion.Size = new System.Drawing.Size(75, 26);
     this.lblDelegacion.TabIndex = 12;
     this.lblDelegacion.Text = "Delegación/Municipio";
     //
     // lblColonia
     //
     this.lblColonia.AutoSize = true;
     this.lblColonia.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblColonia.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblColonia.Location = new System.Drawing.Point(3, 0);
     this.lblColonia.Name = "lblColonia";
     this.lblColonia.Size = new System.Drawing.Size(48, 13);
     this.lblColonia.TabIndex = 0;
     this.lblColonia.Text = "Colonia";
     //
     // lblCalle
     //
     this.lblCalle.AutoSize = true;
     this.lblCalle.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCalle.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblCalle.Location = new System.Drawing.Point(3, 144);
     this.lblCalle.Name = "lblCalle";
     this.lblCalle.Size = new System.Drawing.Size(75, 13);
     this.lblCalle.TabIndex = 9;
     this.lblCalle.Text = "Calle y Núm.";
     //
     // lblFiscal
     //
     this.lblFiscal.AutoSize = true;
     this.lblFiscal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFiscal.ForeColor = System.Drawing.Color.Black;
     this.lblFiscal.Location = new System.Drawing.Point(3, 89);
     this.lblFiscal.Name = "lblFiscal";
     this.lblFiscal.Size = new System.Drawing.Size(75, 13);
     this.lblFiscal.TabIndex = 7;
     this.lblFiscal.Text = "Persona Moral";
     //
     // lblNombre
     //
     this.lblNombre.AutoSize = true;
     this.lblNombre.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNombre.ForeColor = System.Drawing.Color.Black;
     this.lblNombre.Location = new System.Drawing.Point(3, 0);
     this.lblNombre.Name = "lblNombre";
     this.lblNombre.Size = new System.Drawing.Size(44, 13);
     this.lblNombre.TabIndex = 0;
     this.lblNombre.Text = "Nombre";
     //
     // lblMaterno
     //
     this.lblMaterno.AutoSize = true;
     this.lblMaterno.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaterno.ForeColor = System.Drawing.Color.Black;
     this.lblMaterno.Location = new System.Drawing.Point(3, 0);
     this.lblMaterno.Name = "lblMaterno";
     this.lblMaterno.Size = new System.Drawing.Size(47, 13);
     this.lblMaterno.TabIndex = 0;
     this.lblMaterno.Text = "Materno";
     //
     // lblPaterno
     //
     this.lblPaterno.AutoSize = true;
     this.lblPaterno.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPaterno.ForeColor = System.Drawing.Color.Black;
     this.lblPaterno.Location = new System.Drawing.Point(3, 0);
     this.lblPaterno.Name = "lblPaterno";
     this.lblPaterno.Size = new System.Drawing.Size(45, 13);
     this.lblPaterno.TabIndex = 0;
     this.lblPaterno.Text = "Paterno";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label1.Location = new System.Drawing.Point(428, 83);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(334, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Los campos marcados en azul son obligatorios";
     //
     // lblProveedor
     //
     this.lblProveedor.AutoSize = true;
     this.lblProveedor.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblProveedor.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblProveedor.Location = new System.Drawing.Point(3, 0);
     this.lblProveedor.Name = "lblProveedor";
     this.lblProveedor.Size = new System.Drawing.Size(38, 13);
     this.lblProveedor.TabIndex = 0;
     this.lblProveedor.Text = "Clave";
     //
     // txtClave
     //
     this.txtClave.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtClave.Location = new System.Drawing.Point(3, 3);
     this.txtClave.MenuManager = this.barManager1;
     this.txtClave.Name = "txtClave";
     this.txtClave.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtClave.Properties.Appearance.Options.UseFont = true;
     this.txtClave.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtClave.Properties.Mask.EditMask = "n0";
     this.txtClave.Size = new System.Drawing.Size(59, 20);
     this.txtClave.TabIndex = 1;
     //
     // txtPaterno
     //
     this.txtPaterno.Location = new System.Drawing.Point(54, 3);
     this.txtPaterno.MenuManager = this.barManager1;
     this.txtPaterno.Name = "txtPaterno";
     this.txtPaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPaterno.Properties.Appearance.Options.UseFont = true;
     this.txtPaterno.Size = new System.Drawing.Size(239, 19);
     this.txtPaterno.TabIndex = 1;
     this.txtPaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtMaterno
     //
     this.txtMaterno.Location = new System.Drawing.Point(56, 3);
     this.txtMaterno.MenuManager = this.barManager1;
     this.txtMaterno.Name = "txtMaterno";
     this.txtMaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaterno.Properties.Appearance.Options.UseFont = true;
     this.txtMaterno.Size = new System.Drawing.Size(239, 19);
     this.txtMaterno.TabIndex = 1;
     this.txtMaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtNombre
     //
     this.txtNombre.Location = new System.Drawing.Point(53, 3);
     this.txtNombre.MenuManager = this.barManager1;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNombre.Properties.Appearance.Options.UseFont = true;
     this.txtNombre.Size = new System.Drawing.Size(239, 19);
     this.txtNombre.TabIndex = 1;
     this.txtNombre.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtCalle
     //
     this.txtCalle.Location = new System.Drawing.Point(91, 147);
     this.txtCalle.MenuManager = this.barManager1;
     this.txtCalle.Name = "txtCalle";
     this.txtCalle.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCalle.Properties.Appearance.Options.UseFont = true;
     this.txtCalle.Size = new System.Drawing.Size(299, 19);
     this.txtCalle.TabIndex = 10;
     this.txtCalle.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtColonia
     //
     this.txtColonia.Location = new System.Drawing.Point(57, 3);
     this.txtColonia.MenuManager = this.barManager1;
     this.txtColonia.Name = "txtColonia";
     this.txtColonia.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtColonia.Properties.Appearance.Options.UseFont = true;
     this.txtColonia.Size = new System.Drawing.Size(244, 19);
     this.txtColonia.TabIndex = 1;
     this.txtColonia.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtDelegacion
     //
     this.txtDelegacion.Location = new System.Drawing.Point(91, 186);
     this.txtDelegacion.MenuManager = this.barManager1;
     this.txtDelegacion.Name = "txtDelegacion";
     this.txtDelegacion.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDelegacion.Properties.Appearance.Options.UseFont = true;
     this.txtDelegacion.Size = new System.Drawing.Size(215, 19);
     this.txtDelegacion.TabIndex = 13;
     this.txtDelegacion.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtEstado
     //
     this.txtEstado.Location = new System.Drawing.Point(54, 3);
     this.txtEstado.MenuManager = this.barManager1;
     this.txtEstado.Name = "txtEstado";
     this.txtEstado.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEstado.Properties.Appearance.Options.UseFont = true;
     this.txtEstado.Size = new System.Drawing.Size(183, 19);
     this.txtEstado.TabIndex = 1;
     this.txtEstado.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtPais
     //
     this.txtPais.EditValue = "MEXICO";
     this.txtPais.Location = new System.Drawing.Point(91, 228);
     this.txtPais.MenuManager = this.barManager1;
     this.txtPais.Name = "txtPais";
     this.txtPais.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPais.Properties.Appearance.Options.UseFont = true;
     this.txtPais.Size = new System.Drawing.Size(164, 19);
     this.txtPais.TabIndex = 16;
     this.txtPais.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtRpaterno
     //
     this.txtRpaterno.Location = new System.Drawing.Point(54, 3);
     this.txtRpaterno.MenuManager = this.barManager1;
     this.txtRpaterno.Name = "txtRpaterno";
     this.txtRpaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRpaterno.Properties.Appearance.Options.UseFont = true;
     this.txtRpaterno.Size = new System.Drawing.Size(239, 19);
     this.txtRpaterno.TabIndex = 1;
     this.txtRpaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtRmaterno
     //
     this.txtRmaterno.Location = new System.Drawing.Point(56, 3);
     this.txtRmaterno.MenuManager = this.barManager1;
     this.txtRmaterno.Name = "txtRmaterno";
     this.txtRmaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRmaterno.Properties.Appearance.Options.UseFont = true;
     this.txtRmaterno.Size = new System.Drawing.Size(239, 19);
     this.txtRmaterno.TabIndex = 1;
     this.txtRmaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtRnombre
     //
     this.txtRnombre.Location = new System.Drawing.Point(53, 3);
     this.txtRnombre.MenuManager = this.barManager1;
     this.txtRnombre.Name = "txtRnombre";
     this.txtRnombre.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRnombre.Properties.Appearance.Options.UseFont = true;
     this.txtRnombre.Size = new System.Drawing.Size(239, 19);
     this.txtRnombre.TabIndex = 1;
     this.txtRnombre.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtGiro
     //
     this.txtGiro.Location = new System.Drawing.Point(412, 397);
     this.txtGiro.MenuManager = this.barManager1;
     this.txtGiro.Name = "txtGiro";
     this.txtGiro.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGiro.Properties.Appearance.Options.UseFont = true;
     this.txtGiro.Size = new System.Drawing.Size(295, 19);
     this.txtGiro.TabIndex = 27;
     this.txtGiro.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtObservaciones
     //
     this.txtObservaciones.Location = new System.Drawing.Point(122, 547);
     this.txtObservaciones.MenuManager = this.barManager1;
     this.txtObservaciones.Name = "txtObservaciones";
     this.txtObservaciones.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtObservaciones.Properties.Appearance.Options.UseFont = true;
     this.txtObservaciones.Size = new System.Drawing.Size(396, 96);
     this.txtObservaciones.TabIndex = 3;
     this.txtObservaciones.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtCorreo
     //
     this.txtCorreo.Location = new System.Drawing.Point(49, 3);
     this.txtCorreo.MenuManager = this.barManager1;
     this.txtCorreo.Name = "txtCorreo";
     this.txtCorreo.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCorreo.Properties.Appearance.Options.UseFont = true;
     this.txtCorreo.Size = new System.Drawing.Size(243, 19);
     this.txtCorreo.TabIndex = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(3, 38);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(75, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Persona Fisica";
     //
     // cbxEmpresa
     //
     this.cbxEmpresa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxEmpresa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbxEmpresa.FormattingEnabled = true;
     this.cbxEmpresa.Location = new System.Drawing.Point(65, 3);
     this.cbxEmpresa.Name = "cbxEmpresa";
     this.cbxEmpresa.Size = new System.Drawing.Size(165, 21);
     this.cbxEmpresa.TabIndex = 1;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label3.Location = new System.Drawing.Point(3, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Empresa";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 4;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 21.48541F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 78.51459F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 339F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 437F));
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel9, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.lblProveedor, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.txtGiro, 2, 9);
     this.tableLayoutPanel1.Controls.Add(this.label5, 1, 9);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel2, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.txtPais, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel3, 3, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblRepresentante, 0, 8);
     this.tableLayoutPanel1.Controls.Add(this.lblFiscal, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.txtTel, 1, 6);
     this.tableLayoutPanel1.Controls.Add(this.txtDelegacion, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.txtCalle, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblCalle, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblDelegacion, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblTel1, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.lblPais, 0, 5);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel4, 2, 7);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel5, 3, 7);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel6, 1, 8);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel7, 2, 8);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel8, 3, 8);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel10, 2, 3);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel11, 2, 4);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel12, 2, 5);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel13, 2, 6);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel14, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel15, 3, 6);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel16, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel17, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.txtCentinela, 3, 2);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel18, 1, 0);
     this.tableLayoutPanel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 102);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 10;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 43.03798F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 56.96202F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 39F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 42F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 39F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 49F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 44F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(1186, 439);
     this.tableLayoutPanel1.TabIndex = 2;
     //
     // flowLayoutPanel9
     //
     this.flowLayoutPanel9.Controls.Add(this.lblRfc);
     this.flowLayoutPanel9.Controls.Add(this.txtRfc);
     this.flowLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel9.Location = new System.Drawing.Point(751, 3);
     this.flowLayoutPanel9.Name = "flowLayoutPanel9";
     this.flowLayoutPanel9.Size = new System.Drawing.Size(432, 32);
     this.flowLayoutPanel9.TabIndex = 3;
     //
     // lblRfc
     //
     this.lblRfc.AutoSize = true;
     this.lblRfc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRfc.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblRfc.Location = new System.Drawing.Point(3, 0);
     this.lblRfc.Name = "lblRfc";
     this.lblRfc.Size = new System.Drawing.Size(28, 13);
     this.lblRfc.TabIndex = 0;
     this.lblRfc.Text = "RFC";
     //
     // txtRfc
     //
     this.txtRfc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRfc.Location = new System.Drawing.Point(37, 3);
     this.txtRfc.Mask = "LLLL-000000-AAA";
     this.txtRfc.Name = "txtRfc";
     this.txtRfc.Size = new System.Drawing.Size(121, 20);
     this.txtRfc.TabIndex = 1;
     this.txtRfc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.lblPaterno);
     this.flowLayoutPanel1.Controls.Add(this.txtPaterno);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(91, 41);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(315, 45);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Controls.Add(this.lblMaterno);
     this.flowLayoutPanel2.Controls.Add(this.txtMaterno);
     this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel2.Location = new System.Drawing.Point(412, 41);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(333, 45);
     this.flowLayoutPanel2.TabIndex = 5;
     //
     // flowLayoutPanel3
     //
     this.flowLayoutPanel3.Controls.Add(this.lblNombre);
     this.flowLayoutPanel3.Controls.Add(this.txtNombre);
     this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel3.Location = new System.Drawing.Point(751, 41);
     this.flowLayoutPanel3.Name = "flowLayoutPanel3";
     this.flowLayoutPanel3.Size = new System.Drawing.Size(432, 45);
     this.flowLayoutPanel3.TabIndex = 6;
     //
     // flowLayoutPanel4
     //
     this.flowLayoutPanel4.Controls.Add(this.lblFax);
     this.flowLayoutPanel4.Controls.Add(this.txtFax);
     this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel4.Location = new System.Drawing.Point(412, 312);
     this.flowLayoutPanel4.Name = "flowLayoutPanel4";
     this.flowLayoutPanel4.Size = new System.Drawing.Size(333, 30);
     this.flowLayoutPanel4.TabIndex = 22;
     //
     // flowLayoutPanel5
     //
     this.flowLayoutPanel5.Controls.Add(this.lblCorreo);
     this.flowLayoutPanel5.Controls.Add(this.txtCorreo);
     this.flowLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel5.Location = new System.Drawing.Point(751, 312);
     this.flowLayoutPanel5.Name = "flowLayoutPanel5";
     this.flowLayoutPanel5.Size = new System.Drawing.Size(432, 30);
     this.flowLayoutPanel5.TabIndex = 23;
     //
     // flowLayoutPanel6
     //
     this.flowLayoutPanel6.Controls.Add(this.lblPaterno2);
     this.flowLayoutPanel6.Controls.Add(this.txtRpaterno);
     this.flowLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel6.Location = new System.Drawing.Point(91, 348);
     this.flowLayoutPanel6.Name = "flowLayoutPanel6";
     this.flowLayoutPanel6.Size = new System.Drawing.Size(315, 43);
     this.flowLayoutPanel6.TabIndex = 24;
     //
     // flowLayoutPanel7
     //
     this.flowLayoutPanel7.Controls.Add(this.lblMaterno2);
     this.flowLayoutPanel7.Controls.Add(this.txtRmaterno);
     this.flowLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel7.Location = new System.Drawing.Point(412, 348);
     this.flowLayoutPanel7.Name = "flowLayoutPanel7";
     this.flowLayoutPanel7.Size = new System.Drawing.Size(333, 43);
     this.flowLayoutPanel7.TabIndex = 25;
     //
     // flowLayoutPanel8
     //
     this.flowLayoutPanel8.Controls.Add(this.lblNombre2);
     this.flowLayoutPanel8.Controls.Add(this.txtRnombre);
     this.flowLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel8.Location = new System.Drawing.Point(751, 348);
     this.flowLayoutPanel8.Name = "flowLayoutPanel8";
     this.flowLayoutPanel8.Size = new System.Drawing.Size(432, 43);
     this.flowLayoutPanel8.TabIndex = 26;
     //
     // flowLayoutPanel10
     //
     this.flowLayoutPanel10.Controls.Add(this.lblColonia);
     this.flowLayoutPanel10.Controls.Add(this.txtColonia);
     this.flowLayoutPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel10.Location = new System.Drawing.Point(412, 147);
     this.flowLayoutPanel10.Name = "flowLayoutPanel10";
     this.flowLayoutPanel10.Size = new System.Drawing.Size(333, 33);
     this.flowLayoutPanel10.TabIndex = 11;
     //
     // flowLayoutPanel11
     //
     this.flowLayoutPanel11.Controls.Add(this.lblEstado);
     this.flowLayoutPanel11.Controls.Add(this.txtEstado);
     this.flowLayoutPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel11.Location = new System.Drawing.Point(412, 186);
     this.flowLayoutPanel11.Name = "flowLayoutPanel11";
     this.flowLayoutPanel11.Size = new System.Drawing.Size(333, 36);
     this.flowLayoutPanel11.TabIndex = 14;
     //
     // flowLayoutPanel12
     //
     this.flowLayoutPanel12.Controls.Add(this.lblCodigo);
     this.flowLayoutPanel12.Controls.Add(this.txtCodigoP);
     this.flowLayoutPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel12.Location = new System.Drawing.Point(412, 228);
     this.flowLayoutPanel12.Name = "flowLayoutPanel12";
     this.flowLayoutPanel12.Size = new System.Drawing.Size(333, 33);
     this.flowLayoutPanel12.TabIndex = 17;
     //
     // flowLayoutPanel13
     //
     this.flowLayoutPanel13.Controls.Add(this.lblTel2);
     this.flowLayoutPanel13.Controls.Add(this.txtTel2);
     this.flowLayoutPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel13.Location = new System.Drawing.Point(412, 267);
     this.flowLayoutPanel13.Name = "flowLayoutPanel13";
     this.flowLayoutPanel13.Size = new System.Drawing.Size(333, 39);
     this.flowLayoutPanel13.TabIndex = 20;
     //
     // flowLayoutPanel14
     //
     this.flowLayoutPanel14.Controls.Add(this.label3);
     this.flowLayoutPanel14.Controls.Add(this.cbxEmpresa);
     this.flowLayoutPanel14.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel14.Location = new System.Drawing.Point(412, 3);
     this.flowLayoutPanel14.Name = "flowLayoutPanel14";
     this.flowLayoutPanel14.Size = new System.Drawing.Size(333, 32);
     this.flowLayoutPanel14.TabIndex = 2;
     //
     // flowLayoutPanel15
     //
     this.flowLayoutPanel15.Controls.Add(this.lblTel3);
     this.flowLayoutPanel15.Controls.Add(this.txtTel3);
     this.flowLayoutPanel15.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel15.Location = new System.Drawing.Point(751, 267);
     this.flowLayoutPanel15.Name = "flowLayoutPanel15";
     this.flowLayoutPanel15.Size = new System.Drawing.Size(432, 39);
     this.flowLayoutPanel15.TabIndex = 21;
     //
     // lblTel3
     //
     this.lblTel3.AutoSize = true;
     this.lblTel3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTel3.Location = new System.Drawing.Point(3, 0);
     this.lblTel3.Name = "lblTel3";
     this.lblTel3.Size = new System.Drawing.Size(58, 13);
     this.lblTel3.TabIndex = 0;
     this.lblTel3.Text = "Teléfono 3";
     //
     // txtTel3
     //
     this.txtTel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTel3.Location = new System.Drawing.Point(67, 3);
     this.txtTel3.Name = "txtTel3";
     this.txtTel3.Size = new System.Drawing.Size(164, 20);
     this.txtTel3.TabIndex = 1;
     //
     // flowLayoutPanel16
     //
     this.flowLayoutPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel16.Location = new System.Drawing.Point(412, 92);
     this.flowLayoutPanel16.Name = "flowLayoutPanel16";
     this.flowLayoutPanel16.Size = new System.Drawing.Size(333, 49);
     this.flowLayoutPanel16.TabIndex = 8;
     //
     // flowLayoutPanel17
     //
     this.flowLayoutPanel17.Controls.Add(this.label4);
     this.flowLayoutPanel17.Controls.Add(this.txtNombreFiscal);
     this.flowLayoutPanel17.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel17.Location = new System.Drawing.Point(91, 92);
     this.flowLayoutPanel17.Name = "flowLayoutPanel17";
     this.flowLayoutPanel17.Size = new System.Drawing.Size(315, 49);
     this.flowLayoutPanel17.TabIndex = 7;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(3, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(73, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Nombre Fiscal";
     //
     // txtNombreFiscal
     //
     this.txtNombreFiscal.Location = new System.Drawing.Point(3, 16);
     this.txtNombreFiscal.MenuManager = this.barManager1;
     this.txtNombreFiscal.Name = "txtNombreFiscal";
     this.txtNombreFiscal.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNombreFiscal.Properties.Appearance.Options.UseFont = true;
     this.txtNombreFiscal.Size = new System.Drawing.Size(311, 19);
     this.txtNombreFiscal.TabIndex = 1;
     this.txtNombreFiscal.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtCentinela
     //
     this.txtCentinela.Location = new System.Drawing.Point(751, 92);
     this.txtCentinela.Name = "txtCentinela";
     this.txtCentinela.Size = new System.Drawing.Size(10, 21);
     this.txtCentinela.TabIndex = 8;
     this.txtCentinela.TabStop = false;
     //
     // flowLayoutPanel18
     //
     this.flowLayoutPanel18.Controls.Add(this.txtClave);
     this.flowLayoutPanel18.Controls.Add(this.label6);
     this.flowLayoutPanel18.Controls.Add(this.cbxTipo);
     this.flowLayoutPanel18.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel18.Location = new System.Drawing.Point(91, 3);
     this.flowLayoutPanel18.Name = "flowLayoutPanel18";
     this.flowLayoutPanel18.Size = new System.Drawing.Size(315, 32);
     this.flowLayoutPanel18.TabIndex = 28;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label6.Location = new System.Drawing.Point(68, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(31, 13);
     this.label6.TabIndex = 2;
     this.label6.Text = "Tipo";
     //
     // cbxTipo
     //
     this.cbxTipo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxTipo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbxTipo.FormattingEnabled = true;
     this.cbxTipo.Items.AddRange(new object[] {
     "MORAL",
     "FISICA"});
     this.cbxTipo.Location = new System.Drawing.Point(105, 3);
     this.cbxTipo.Name = "cbxTipo";
     this.cbxTipo.Size = new System.Drawing.Size(110, 21);
     this.cbxTipo.TabIndex = 3;
     this.cbxTipo.SelectedIndexChanged += new System.EventHandler(this.cbxTipo_SelectedIndexChanged);
     //
     // FrmCatalogoProveedor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1210, 672);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.txtObservaciones);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lblObservaciones);
     this.Name = "FrmCatalogoProveedor";
     this.Text = "Nuevo Proveedor";
     this.Controls.SetChildIndex(this.lblObservaciones, 0);
     this.Controls.SetChildIndex(this.label1, 0);
     this.Controls.SetChildIndex(this.txtObservaciones, 0);
     this.Controls.SetChildIndex(this.tableLayoutPanel1, 0);
     ((System.ComponentModel.ISupportInitialize)(this.bsSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClave.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCalle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtColonia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDelegacion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEstado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPais.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRpaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRmaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRnombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGiro.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservaciones.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.flowLayoutPanel9.ResumeLayout(false);
     this.flowLayoutPanel9.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.flowLayoutPanel2.ResumeLayout(false);
     this.flowLayoutPanel2.PerformLayout();
     this.flowLayoutPanel3.ResumeLayout(false);
     this.flowLayoutPanel3.PerformLayout();
     this.flowLayoutPanel4.ResumeLayout(false);
     this.flowLayoutPanel4.PerformLayout();
     this.flowLayoutPanel5.ResumeLayout(false);
     this.flowLayoutPanel5.PerformLayout();
     this.flowLayoutPanel6.ResumeLayout(false);
     this.flowLayoutPanel6.PerformLayout();
     this.flowLayoutPanel7.ResumeLayout(false);
     this.flowLayoutPanel7.PerformLayout();
     this.flowLayoutPanel8.ResumeLayout(false);
     this.flowLayoutPanel8.PerformLayout();
     this.flowLayoutPanel10.ResumeLayout(false);
     this.flowLayoutPanel10.PerformLayout();
     this.flowLayoutPanel11.ResumeLayout(false);
     this.flowLayoutPanel11.PerformLayout();
     this.flowLayoutPanel12.ResumeLayout(false);
     this.flowLayoutPanel12.PerformLayout();
     this.flowLayoutPanel13.ResumeLayout(false);
     this.flowLayoutPanel13.PerformLayout();
     this.flowLayoutPanel14.ResumeLayout(false);
     this.flowLayoutPanel14.PerformLayout();
     this.flowLayoutPanel15.ResumeLayout(false);
     this.flowLayoutPanel15.PerformLayout();
     this.flowLayoutPanel17.ResumeLayout(false);
     this.flowLayoutPanel17.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombreFiscal.Properties)).EndInit();
     this.flowLayoutPanel18.ResumeLayout(false);
     this.flowLayoutPanel18.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.spinedtLastNonMemberID = new DevExpress.XtraEditors.SpinEdit();
     this.spinedtLastMemberID    = new DevExpress.XtraEditors.SpinEdit();
     this.sbtnCancel             = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnOK             = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1      = new DevExpress.XtraEditors.GroupControl();
     this.luedtBranchCode    = new DevExpress.XtraEditors.LookUpEdit();
     this.label4             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.groupControl2      = new DevExpress.XtraEditors.GroupControl();
     this.txtLastNonMemberID = new DevExpress.XtraEditors.TextEdit();
     this.label3             = new System.Windows.Forms.Label();
     this.txtLastMemberID    = new DevExpress.XtraEditors.TextEdit();
     this.label5             = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(6, 44);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(204, 18);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Number of Non-Member ids to block ID:";
     //
     // spinedtLastNonMemberID
     //
     this.spinedtLastNonMemberID.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinedtLastNonMemberID.Location = new System.Drawing.Point(212, 42);
     this.spinedtLastNonMemberID.Name     = "spinedtLastNonMemberID";
     //
     // spinedtLastNonMemberID.Properties
     //
     this.spinedtLastNonMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinedtLastNonMemberID.Properties.IsFloatValue  = false;
     this.spinedtLastNonMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastNonMemberID.Properties.NullText      = "0";
     this.spinedtLastNonMemberID.Size     = new System.Drawing.Size(80, 20);
     this.spinedtLastNonMemberID.TabIndex = 1;
     //
     // spinedtLastMemberID
     //
     this.spinedtLastMemberID.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinedtLastMemberID.Location = new System.Drawing.Point(212, 42);
     this.spinedtLastMemberID.Name     = "spinedtLastMemberID";
     //
     // spinedtLastMemberID.Properties
     //
     this.spinedtLastMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinedtLastMemberID.Properties.IsFloatValue  = false;
     this.spinedtLastMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastMemberID.Properties.NullText      = "0";
     this.spinedtLastMemberID.Size     = new System.Drawing.Size(80, 20);
     this.spinedtLastMemberID.TabIndex = 1;
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(170, 168);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.TabIndex     = 3;
     this.sbtnCancel.Text         = "Cancel";
     //
     // sbtnOK
     //
     this.sbtnOK.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnOK.Location     = new System.Drawing.Point(76, 168);
     this.sbtnOK.Name         = "sbtnOK";
     this.sbtnOK.TabIndex     = 2;
     this.sbtnOK.Text         = "OK";
     this.sbtnOK.Click       += new System.EventHandler(this.sbtnOK_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtLastMemberID);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.luedtBranchCode);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.spinedtLastMemberID);
     this.groupControl1.Location = new System.Drawing.Point(6, 76);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(298, 88);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text     = "Member";
     //
     // luedtBranchCode
     //
     this.luedtBranchCode.Location = new System.Drawing.Point(212, 64);
     this.luedtBranchCode.Name     = "luedtBranchCode";
     //
     // luedtBranchCode.Properties
     //
     this.luedtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtBranchCode.Size              = new System.Drawing.Size(80, 20);
     this.luedtBranchCode.TabIndex          = 2;
     this.luedtBranchCode.EditValueChanged += new System.EventHandler(this.luedtBranchCode_EditValueChanged);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(6, 66);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(78, 18);
     this.label4.TabIndex = 5;
     this.label4.Text     = "Branch:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(6, 44);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(204, 18);
     this.label2.TabIndex = 4;
     this.label2.Text     = "Number of Member ids to block ID:";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.txtLastNonMemberID);
     this.groupControl2.Controls.Add(this.label3);
     this.groupControl2.Controls.Add(this.spinedtLastNonMemberID);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Location = new System.Drawing.Point(4, 4);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(300, 68);
     this.groupControl2.TabIndex = 0;
     this.groupControl2.Text     = "Non-member";
     //
     // txtLastNonMemberID
     //
     this.txtLastNonMemberID.EditValue = "";
     this.txtLastNonMemberID.Location  = new System.Drawing.Point(212, 20);
     this.txtLastNonMemberID.Name      = "txtLastNonMemberID";
     //
     // txtLastNonMemberID.Properties
     //
     this.txtLastNonMemberID.Properties.ReadOnly = true;
     this.txtLastNonMemberID.RightToLeft         = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastNonMemberID.Size     = new System.Drawing.Size(64, 20);
     this.txtLastNonMemberID.TabIndex = 0;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(6, 22);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(154, 18);
     this.label3.TabIndex = 11;
     this.label3.Text     = "Current Last Non-Member ID:";
     //
     // txtLastMemberID
     //
     this.txtLastMemberID.EditValue = "";
     this.txtLastMemberID.Location  = new System.Drawing.Point(212, 20);
     this.txtLastMemberID.Name      = "txtLastMemberID";
     //
     // txtLastMemberID.Properties
     //
     this.txtLastMemberID.Properties.ReadOnly = true;
     this.txtLastMemberID.RightToLeft         = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastMemberID.Size     = new System.Drawing.Size(64, 20);
     this.txtLastMemberID.TabIndex = 0;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 22);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(154, 18);
     this.label5.TabIndex = 12;
     this.label5.Text     = "Current Last Member ID:";
     //
     // frmBlockMembershipID
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.sbtnCancel;
     this.ClientSize        = new System.Drawing.Size(306, 194);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.sbtnOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmBlockMembershipID";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Block Membership ID";
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChuongTrinh));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControlThongTinPhatSong = new DevExpress.XtraEditors.GroupControl();
     this.ReleaseDate = new DevExpress.XtraEditors.DateEdit();
     this.SoRunConlai = new DevExpress.XtraEditors.SpinEdit();
     this.ReleaseRun = new DevExpress.XtraEditors.SpinEdit();
     this.Release = new DevExpress.XtraEditors.SpinEdit();
     this.SoDaRun = new DevExpress.XtraEditors.SpinEdit();
     this.gridControlPhatSongKhac = new DevExpress.XtraGrid.GridControl();
     this.gridviewPhatSongKhac = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColPSK_Kenh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_LanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhPhatSong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColIsPhatLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatStart = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatEnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColTimeSlot = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.RunThu = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRun = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ReleaseRule = new DevExpress.XtraEditors.MemoEdit();
     this.MuaKem = new DevExpress.XtraEditors.MemoEdit();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlNguonGoc = new DevExpress.XtraEditors.GroupControl();
     this.NoteBQ = new DevExpress.XtraEditors.MemoEdit();
     this.gridControlThongTinBan = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongTinBan = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhBan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanTu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanDen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.DonViHauKy = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.HangSanXuat = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.KenhHanCheBan = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.BanQuyenHTV = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDStart = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNStart = new DevExpress.XtraEditors.DateEdit();
     this.ChanelRight = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.DaoDien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGhiChu = new DevExpress.XtraGrid.GridControl();
     this.gridViewGhiChu = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.colLoaiGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNoiDungGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.PhanLoaiDrama = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.NguonTrading = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ClassName = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.Code = new DevExpress.XtraEditors.TextEdit();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Period = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TrailerGoc = new DevExpress.XtraEditors.CheckEdit();
     this.Photos = new DevExpress.XtraEditors.CheckEdit();
     this.Script = new DevExpress.XtraEditors.CheckEdit();
     this.ckcMoiTrenThiTruong = new DevExpress.XtraEditors.CheckEdit();
     this.ckcTrongKho = new DevExpress.XtraEditors.CheckEdit();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Ranking = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DienVien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.NgayAWB = new DevExpress.XtraEditors.DateEdit();
     this.TomTatNoiDung = new DevExpress.XtraEditors.MemoEdit();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.TinhTrangBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.MaChuongTrinh = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControlMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChuongTrinh = new DevExpress.XtraTab.XtraTabPage();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.popupMenuTab = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).BeginInit();
     this.groupControlThongTinPhatSong.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).BeginInit();
     this.groupControlNguonGoc.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit();
     this.groupControlThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).BeginInit();
     this.xtraTabControlMain.SuspendLayout();
     this.xtraTabPageChuongTrinh.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(626, 716);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(30, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(117, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(21, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 716);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(218, 31);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(638, 52);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 76);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(82, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Tên chương trình";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(405, 165);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(227, 20);
     this.KyHieuPhanLoai.TabIndex = 11;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(343, 168);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(345, 191);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 33);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(5, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(9, 100);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Đạo diễn";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(639, 122);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(1049, 38);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "CHƯƠNG TRÌNH";
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(3, 1);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(221, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 0;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControlThongTinPhatSong
     //
     this.groupControlThongTinPhatSong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTinPhatSong.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTinPhatSong.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseDate);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoRunConlai);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.Release);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoDaRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlPhatSongKhac);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl8);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl9);
     this.groupControlThongTinPhatSong.Controls.Add(this.RunThu);
     this.groupControlThongTinPhatSong.Controls.Add(this.TongSoRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl20);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl19);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl6);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl24);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl21);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl15);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl10);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRule);
     this.groupControlThongTinPhatSong.Controls.Add(this.MuaKem);
     this.groupControlThongTinPhatSong.Location = new System.Drawing.Point(3, 672);
     this.groupControlThongTinPhatSong.Name = "groupControlThongTinPhatSong";
     this.groupControlThongTinPhatSong.Size = new System.Drawing.Size(1000, 351);
     this.groupControlThongTinPhatSong.TabIndex = 2;
     this.groupControlThongTinPhatSong.Text = "Thông tin phát sóng";
     //
     // ReleaseDate
     //
     this.ReleaseDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseDate.EditValue = null;
     this.ReleaseDate.Location = new System.Drawing.Point(840, 150);
     this.ReleaseDate.Name = "ReleaseDate";
     this.ReleaseDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ReleaseDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseDate.Size = new System.Drawing.Size(155, 20);
     this.ReleaseDate.TabIndex = 5;
     //
     // SoRunConlai
     //
     this.SoRunConlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConlai.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConlai.Location = new System.Drawing.Point(840, 102);
     this.SoRunConlai.Name = "SoRunConlai";
     this.SoRunConlai.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoRunConlai.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConlai.Properties.ReadOnly = true;
     this.SoRunConlai.Size = new System.Drawing.Size(155, 20);
     this.SoRunConlai.TabIndex = 4;
     this.SoRunConlai.TabStop = false;
     //
     // ReleaseRun
     //
     this.ReleaseRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.ReleaseRun.Location = new System.Drawing.Point(841, 175);
     this.ReleaseRun.Name = "ReleaseRun";
     this.ReleaseRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseRun.Size = new System.Drawing.Size(154, 20);
     this.ReleaseRun.TabIndex = 5;
     //
     // Release
     //
     this.Release.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Release.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Release.Location = new System.Drawing.Point(840, 125);
     this.Release.Name = "Release";
     this.Release.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Release.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Release.Size = new System.Drawing.Size(155, 20);
     this.Release.TabIndex = 5;
     //
     // SoDaRun
     //
     this.SoDaRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDaRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoDaRun.Location = new System.Drawing.Point(840, 78);
     this.SoDaRun.Name = "SoDaRun";
     this.SoDaRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoDaRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoDaRun.Size = new System.Drawing.Size(155, 20);
     this.SoDaRun.TabIndex = 3;
     this.SoDaRun.TabStop = false;
     this.SoDaRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // gridControlPhatSongKhac
     //
     this.gridControlPhatSongKhac.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlPhatSongKhac.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlPhatSongKhac.BackgroundImage")));
     this.gridControlPhatSongKhac.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlPhatSongKhac.Location = new System.Drawing.Point(450, 32);
     this.gridControlPhatSongKhac.MainView = this.gridviewPhatSongKhac;
     this.gridControlPhatSongKhac.Name = "gridControlPhatSongKhac";
     this.gridControlPhatSongKhac.Size = new System.Drawing.Size(305, 314);
     this.gridControlPhatSongKhac.TabIndex = 1;
     this.gridControlPhatSongKhac.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridviewPhatSongKhac});
     //
     // gridviewPhatSongKhac
     //
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridviewPhatSongKhac.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColPSK_Kenh,
     this.ColPSK_TuNgay,
     this.ColPSK_DenNgay,
     this.ColPSK_LanPhat});
     this.gridviewPhatSongKhac.GridControl = this.gridControlPhatSongKhac;
     this.gridviewPhatSongKhac.GroupCount = 1;
     this.gridviewPhatSongKhac.IndicatorWidth = 40;
     this.gridviewPhatSongKhac.Name = "gridviewPhatSongKhac";
     this.gridviewPhatSongKhac.OptionsLayout.Columns.AddNewColumns = false;
     this.gridviewPhatSongKhac.OptionsNavigation.AutoFocusNewRow = true;
     this.gridviewPhatSongKhac.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridviewPhatSongKhac.OptionsPrint.UsePrintStyles = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceEvenRow = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceOddRow = true;
     this.gridviewPhatSongKhac.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridviewPhatSongKhac.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridviewPhatSongKhac.OptionsView.ShowFooter = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupedColumns = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupPanel = false;
     this.gridviewPhatSongKhac.OptionsView.ShowIndicator = false;
     this.gridviewPhatSongKhac.OptionsView.ShowViewCaption = true;
     this.gridviewPhatSongKhac.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColPSK_Kenh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridviewPhatSongKhac.ViewCaption = "Thời gian phát sóng trên các kênh khác";
     this.gridviewPhatSongKhac.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewPhatSongKhac_ValidateRow);
     //
     // ColPSK_Kenh
     //
     this.ColPSK_Kenh.Caption = "Kênh phát sóng";
     this.ColPSK_Kenh.Name = "ColPSK_Kenh";
     this.ColPSK_Kenh.SummaryItem.DisplayFormat = "Số lần đã phát {0}";
     this.ColPSK_Kenh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColPSK_Kenh.Visible = true;
     this.ColPSK_Kenh.VisibleIndex = 0;
     this.ColPSK_Kenh.Width = 100;
     //
     // ColPSK_TuNgay
     //
     this.ColPSK_TuNgay.Caption = "Từ ngày";
     this.ColPSK_TuNgay.Name = "ColPSK_TuNgay";
     this.ColPSK_TuNgay.Visible = true;
     this.ColPSK_TuNgay.VisibleIndex = 1;
     this.ColPSK_TuNgay.Width = 52;
     //
     // ColPSK_DenNgay
     //
     this.ColPSK_DenNgay.Caption = "Đến ngày";
     this.ColPSK_DenNgay.Name = "ColPSK_DenNgay";
     this.ColPSK_DenNgay.Visible = true;
     this.ColPSK_DenNgay.VisibleIndex = 2;
     this.ColPSK_DenNgay.Width = 59;
     //
     // ColPSK_LanPhat
     //
     this.ColPSK_LanPhat.Caption = "Run thứ";
     this.ColPSK_LanPhat.Name = "ColPSK_LanPhat";
     this.ColPSK_LanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColPSK_LanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColPSK_LanPhat.Visible = true;
     this.ColPSK_LanPhat.VisibleIndex = 3;
     this.ColPSK_LanPhat.Width = 52;
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(6, 32);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(436, 314);
     this.gridControlNgayPhatDauTien.TabIndex = 0;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhPhatSong,
     this.ColIsPhatLai,
     this.ColNgayPhatStart,
     this.ColNgayPhatEnd,
     this.ColTimeSlot,
     this.ColLanPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsMenu.EnableFooterMenu = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowViewCaption = true;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.ViewCaption = "Ngày phát sóng đầu tiên";
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridViewNgayPhatDauTien_RowUpdated);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // ColKenhPhatSong
     //
     this.ColKenhPhatSong.Caption = "Kênh";
     this.ColKenhPhatSong.Name = "ColKenhPhatSong";
     this.ColKenhPhatSong.SummaryItem.DisplayFormat = "Phát chính: {0} lần";
     this.ColKenhPhatSong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhPhatSong.Visible = true;
     this.ColKenhPhatSong.VisibleIndex = 0;
     this.ColKenhPhatSong.Width = 83;
     //
     // ColIsPhatLai
     //
     this.ColIsPhatLai.Caption = "Phát lại";
     this.ColIsPhatLai.Name = "ColIsPhatLai";
     this.ColIsPhatLai.SummaryItem.DisplayFormat = "Phát lại: {0} lần";
     this.ColIsPhatLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColIsPhatLai.Visible = true;
     this.ColIsPhatLai.VisibleIndex = 1;
     this.ColIsPhatLai.Width = 68;
     //
     // ColNgayPhatStart
     //
     this.ColNgayPhatStart.Caption = "Từ ngày";
     this.ColNgayPhatStart.Name = "ColNgayPhatStart";
     this.ColNgayPhatStart.Visible = true;
     this.ColNgayPhatStart.VisibleIndex = 2;
     this.ColNgayPhatStart.Width = 52;
     //
     // ColNgayPhatEnd
     //
     this.ColNgayPhatEnd.Caption = "Đến ngày";
     this.ColNgayPhatEnd.Name = "ColNgayPhatEnd";
     this.ColNgayPhatEnd.Visible = true;
     this.ColNgayPhatEnd.VisibleIndex = 3;
     this.ColNgayPhatEnd.Width = 59;
     //
     // ColTimeSlot
     //
     this.ColTimeSlot.Caption = "Timeslot";
     this.ColTimeSlot.Name = "ColTimeSlot";
     this.ColTimeSlot.Visible = true;
     this.ColTimeSlot.VisibleIndex = 4;
     this.ColTimeSlot.Width = 51;
     //
     // ColLanPhat
     //
     this.ColLanPhat.Caption = "Run thứ";
     this.ColLanPhat.Name = "ColLanPhat";
     this.ColLanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColLanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColLanPhat.Visible = true;
     this.ColLanPhat.VisibleIndex = 5;
     this.ColLanPhat.Width = 52;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(760, 105);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(52, 13);
     this.labelControl8.TabIndex = 137;
     this.labelControl8.Text = "Run còn lại";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(760, 81);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(49, 13);
     this.labelControl9.TabIndex = 137;
     this.labelControl9.Text = "Số đã Run";
     //
     // RunThu
     //
     this.RunThu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RunThu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.RunThu.Location = new System.Drawing.Point(840, 32);
     this.RunThu.Name = "RunThu";
     this.RunThu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.RunThu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.RunThu.Size = new System.Drawing.Size(155, 20);
     this.RunThu.TabIndex = 2;
     this.RunThu.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // TongSoRun
     //
     this.TongSoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRun.Location = new System.Drawing.Point(840, 55);
     this.TongSoRun.Name = "TongSoRun";
     this.TongSoRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongSoRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRun.Size = new System.Drawing.Size(155, 20);
     this.TongSoRun.TabIndex = 2;
     this.TongSoRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // labelControl20
     //
     this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl20.Location = new System.Drawing.Point(760, 178);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(57, 13);
     this.labelControl20.TabIndex = 129;
     this.labelControl20.Text = "Release run";
     //
     // labelControl19
     //
     this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl19.Location = new System.Drawing.Point(760, 151);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(63, 13);
     this.labelControl19.TabIndex = 129;
     this.labelControl19.Text = "Release date";
     //
     // labelControl6
     //
     this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl6.Location = new System.Drawing.Point(760, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(74, 13);
     this.labelControl6.TabIndex = 129;
     this.labelControl6.Text = "Release (Ngày)";
     //
     // labelControl24
     //
     this.labelControl24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl24.Location = new System.Drawing.Point(760, 205);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(53, 13);
     this.labelControl24.TabIndex = 137;
     this.labelControl24.Text = "Realse rule";
     //
     // labelControl21
     //
     this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl21.Location = new System.Drawing.Point(760, 276);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(42, 13);
     this.labelControl21.TabIndex = 137;
     this.labelControl21.Text = "Mua kèm";
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.Location = new System.Drawing.Point(760, 36);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(39, 13);
     this.labelControl15.TabIndex = 137;
     this.labelControl15.Text = "Run thứ";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(760, 57);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(60, 13);
     this.labelControl10.TabIndex = 137;
     this.labelControl10.Text = "Tổng số Run";
     //
     // ReleaseRule
     //
     this.ReleaseRule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRule.Location = new System.Drawing.Point(841, 201);
     this.ReleaseRule.Name = "ReleaseRule";
     this.ReleaseRule.Size = new System.Drawing.Size(152, 70);
     this.ReleaseRule.TabIndex = 6;
     //
     // MuaKem
     //
     this.MuaKem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.MuaKem.Location = new System.Drawing.Point(841, 277);
     this.MuaKem.Name = "MuaKem";
     this.MuaKem.Size = new System.Drawing.Size(155, 69);
     this.MuaKem.TabIndex = 6;
     //
     // Rating
     //
     this.Rating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Rating.Location = new System.Drawing.Point(690, 120);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(303, 20);
     this.Rating.TabIndex = 12;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(93, 120);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(241, 20);
     this.DoiTuongKhanGia.TabIndex = 10;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControlNguonGoc
     //
     this.groupControlNguonGoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlNguonGoc.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlNguonGoc.AppearanceCaption.Options.UseFont = true;
     this.groupControlNguonGoc.Controls.Add(this.NoteBQ);
     this.groupControlNguonGoc.Controls.Add(this.gridControlThongTinBan);
     this.groupControlNguonGoc.Controls.Add(this.groupControl7);
     this.groupControlNguonGoc.Controls.Add(this.labelControl17);
     this.groupControlNguonGoc.Controls.Add(this.groupControl1);
     this.groupControlNguonGoc.Controls.Add(this.labelControl14);
     this.groupControlNguonGoc.Location = new System.Drawing.Point(4, 425);
     this.groupControlNguonGoc.Name = "groupControlNguonGoc";
     this.groupControlNguonGoc.Size = new System.Drawing.Size(999, 228);
     this.groupControlNguonGoc.TabIndex = 1;
     this.groupControlNguonGoc.Text = "Nguồn gốc - bản quyền";
     //
     // NoteBQ
     //
     this.NoteBQ.Location = new System.Drawing.Point(95, 180);
     this.NoteBQ.Name = "NoteBQ";
     this.NoteBQ.Size = new System.Drawing.Size(539, 43);
     this.NoteBQ.TabIndex = 136;
     //
     // gridControlThongTinBan
     //
     this.gridControlThongTinBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlThongTinBan.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongTinBan.BackgroundImage")));
     this.gridControlThongTinBan.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongTinBan.Location = new System.Drawing.Point(645, 29);
     this.gridControlThongTinBan.MainView = this.gridViewThongTinBan;
     this.gridControlThongTinBan.Name = "gridControlThongTinBan";
     this.gridControlThongTinBan.Size = new System.Drawing.Size(350, 194);
     this.gridControlThongTinBan.TabIndex = 2;
     this.gridControlThongTinBan.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongTinBan});
     //
     // gridViewThongTinBan
     //
     this.gridViewThongTinBan.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongTinBan.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongTinBan.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhBan,
     this.ColNgayBanTu,
     this.ColNgayBanDen});
     this.gridViewThongTinBan.GridControl = this.gridControlThongTinBan;
     this.gridViewThongTinBan.GroupCount = 1;
     this.gridViewThongTinBan.IndicatorWidth = 40;
     this.gridViewThongTinBan.Name = "gridViewThongTinBan";
     this.gridViewThongTinBan.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongTinBan.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongTinBan.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongTinBan.OptionsPrint.UsePrintStyles = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongTinBan.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewThongTinBan.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewThongTinBan.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongTinBan.OptionsView.ShowGroupPanel = false;
     this.gridViewThongTinBan.OptionsView.ShowIndicator = false;
     this.gridViewThongTinBan.OptionsView.ShowViewCaption = true;
     this.gridViewThongTinBan.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhBan, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewThongTinBan.ViewCaption = "Thông tin bán";
     this.gridViewThongTinBan.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewThongTinBan_CustomDrawGroupRow);
     this.gridViewThongTinBan.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongTinBan_ValidateRow);
     //
     // ColKenhBan
     //
     this.ColKenhBan.Caption = "Kênh bán";
     this.ColKenhBan.Name = "ColKenhBan";
     this.ColKenhBan.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.ColKenhBan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhBan.Visible = true;
     this.ColKenhBan.VisibleIndex = 0;
     this.ColKenhBan.Width = 70;
     //
     // ColNgayBanTu
     //
     this.ColNgayBanTu.Caption = "Từ ngày";
     this.ColNgayBanTu.Name = "ColNgayBanTu";
     this.ColNgayBanTu.Visible = true;
     this.ColNgayBanTu.VisibleIndex = 1;
     this.ColNgayBanTu.Width = 52;
     //
     // ColNgayBanDen
     //
     this.ColNgayBanDen.Caption = "Đên ngày";
     this.ColNgayBanDen.Name = "ColNgayBanDen";
     this.ColNgayBanDen.Visible = true;
     this.ColNgayBanDen.VisibleIndex = 2;
     this.ColNgayBanDen.Width = 59;
     //
     // groupControl7
     //
     this.groupControl7.Controls.Add(this.DonViHauKy);
     this.groupControl7.Controls.Add(this.HangSanXuat);
     this.groupControl7.Controls.Add(this.DonViSoHuu);
     this.groupControl7.Controls.Add(this.NamSanXuat);
     this.groupControl7.Controls.Add(this.label4);
     this.groupControl7.Controls.Add(this.label2);
     this.groupControl7.Controls.Add(this.labelControl33);
     this.groupControl7.Controls.Add(this.labelControl32);
     this.groupControl7.Controls.Add(this.labelControl4);
     this.groupControl7.Controls.Add(this.labelControl7);
     this.groupControl7.Controls.Add(this.QuocGia);
     this.groupControl7.Controls.Add(this.label25);
     this.groupControl7.Controls.Add(this.KenhHanCheBan);
     this.groupControl7.Controls.Add(this.DonViCungCap);
     this.groupControl7.Location = new System.Drawing.Point(2, 29);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.ShowCaption = false;
     this.groupControl7.Size = new System.Drawing.Size(338, 147);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "groupControl7";
     //
     // DonViHauKy
     //
     this.DonViHauKy._DataSource = null;
     this.DonViHauKy._GetField = null;
     this.DonViHauKy.Location = new System.Drawing.Point(92, 53);
     this.DonViHauKy.Name = "DonViHauKy";
     this.DonViHauKy.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.DonViHauKy.Size = new System.Drawing.Size(241, 20);
     this.DonViHauKy.TabIndex = 133;
     //
     // HangSanXuat
     //
     this.HangSanXuat.Location = new System.Drawing.Point(92, 78);
     this.HangSanXuat.Name = "HangSanXuat";
     this.HangSanXuat.Size = new System.Drawing.Size(241, 20);
     this.HangSanXuat.TabIndex = 1;
     this.HangSanXuat.ZZZWidthFactor = 2F;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(92, 31);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(241, 20);
     this.DonViSoHuu.TabIndex = 1;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(278, 101);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(55, 20);
     this.NamSanXuat.TabIndex = 3;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(6, 81);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(70, 13);
     this.labelControl33.TabIndex = 0;
     this.labelControl33.Text = "Hãng sản xuất";
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(5, 55);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(66, 13);
     this.labelControl32.TabIndex = 0;
     this.labelControl32.Text = "Đơn vị hậu kỳ";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(5, 104);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(70, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "Nước sản xuất";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(5, 127);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(86, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "Kênh hạn chế bán";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(92, 101);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(137, 20);
     this.QuocGia.TabIndex = 2;
     this.QuocGia.ValueField = null;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(236, 104);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // KenhHanCheBan
     //
     this.KenhHanCheBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.KenhHanCheBan.DataSource = null;
     this.KenhHanCheBan.DisplayField = null;
     this.KenhHanCheBan.EditValue = "";
     this.KenhHanCheBan.Location = new System.Drawing.Point(92, 123);
     this.KenhHanCheBan.Name = "KenhHanCheBan";
     this.KenhHanCheBan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.KenhHanCheBan.Size = new System.Drawing.Size(241, 20);
     this.KenhHanCheBan.TabIndex = 4;
     this.KenhHanCheBan.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(92, 8);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(241, 20);
     this.DonViCungCap.TabIndex = 0;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(436, 23);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(95, 13);
     this.labelControl17.TabIndex = 0;
     this.labelControl17.Text = "Thời hạn bản quyền";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.BanQuyenHTV);
     this.groupControl1.Controls.Add(this.BanQuyenDIDEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDIDStart);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNStart);
     this.groupControl1.Controls.Add(this.ChanelRight);
     this.groupControl1.Controls.Add(this.labelControl25);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.labelControl28);
     this.groupControl1.Controls.Add(this.labelControl29);
     this.groupControl1.Controls.Add(this.labelControl30);
     this.groupControl1.Controls.Add(this.BanQuyenThuoc);
     this.groupControl1.Controls.Add(this.labelControl31);
     this.groupControl1.Location = new System.Drawing.Point(345, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(289, 145);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "groupControl5";
     //
     // BanQuyenHTV
     //
     this.BanQuyenHTV.EditValue = null;
     this.BanQuyenHTV.Location = new System.Drawing.Point(72, 83);
     this.BanQuyenHTV.Name = "BanQuyenHTV";
     this.BanQuyenHTV.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenHTV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenHTV.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenHTV.Size = new System.Drawing.Size(213, 20);
     this.BanQuyenHTV.TabIndex = 5;
     //
     // BanQuyenDIDEnd
     //
     this.BanQuyenDIDEnd.EditValue = null;
     this.BanQuyenDIDEnd.Location = new System.Drawing.Point(192, 38);
     this.BanQuyenDIDEnd.Name = "BanQuyenDIDEnd";
     this.BanQuyenDIDEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDIDEnd.TabIndex = 2;
     this.BanQuyenDIDEnd.ToolTip = "Bản quyền đối với đối tác trong nước End";
     //
     // BanQuyenDTNNEnd
     //
     this.BanQuyenDTNNEnd.EditValue = null;
     this.BanQuyenDTNNEnd.Location = new System.Drawing.Point(192, 60);
     this.BanQuyenDTNNEnd.Name = "BanQuyenDTNNEnd";
     this.BanQuyenDTNNEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDTNNEnd.TabIndex = 4;
     this.BanQuyenDTNNEnd.ToolTip = "Bản quyền với đối tác nước ngoài end";
     //
     // BanQuyenDIDStart
     //
     this.BanQuyenDIDStart.EditValue = null;
     this.BanQuyenDIDStart.Location = new System.Drawing.Point(71, 38);
     this.BanQuyenDIDStart.Name = "BanQuyenDIDStart";
     this.BanQuyenDIDStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDStart.Size = new System.Drawing.Size(91, 20);
     this.BanQuyenDIDStart.TabIndex = 1;
     this.BanQuyenDIDStart.ToolTip = "Bản quyền đối với đối tác trong nước start";
     //
     // BanQuyenDTNNStart
     //
     this.BanQuyenDTNNStart.EditValue = null;
     this.BanQuyenDTNNStart.Location = new System.Drawing.Point(71, 60);
     this.BanQuyenDTNNStart.Name = "BanQuyenDTNNStart";
     this.BanQuyenDTNNStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNStart.Size = new System.Drawing.Size(90, 20);
     this.BanQuyenDTNNStart.TabIndex = 3;
     //
     // ChanelRight
     //
     this.ChanelRight.DataSource = null;
     this.ChanelRight.DisplayField = null;
     this.ChanelRight.EditValue = "";
     this.ChanelRight.Location = new System.Drawing.Point(72, 106);
     this.ChanelRight.Name = "ChanelRight";
     this.ChanelRight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ChanelRight.Size = new System.Drawing.Size(213, 20);
     this.ChanelRight.TabIndex = 11;
     this.ChanelRight.ValueField = null;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(2, 110);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(64, 13);
     this.labelControl25.TabIndex = 0;
     this.labelControl25.Text = "Channel right";
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(3, 20);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(44, 13);
     this.labelControl26.TabIndex = 0;
     this.labelControl26.Text = "BQ thuộc";
     this.labelControl26.ToolTip = "Bản quyền thuộc";
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(3, 87);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(19, 13);
     this.labelControl27.TabIndex = 0;
     this.labelControl27.Text = "HTV";
     this.labelControl27.ToolTip = "Bản quyền HTV";
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(3, 64);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(54, 13);
     this.labelControl28.TabIndex = 0;
     this.labelControl28.Text = "DTNN Start";
     this.labelControl28.ToolTip = "Bản quyền với đối tác nước ngoài Start";
     //
     // labelControl29
     //
     this.labelControl29.Location = new System.Drawing.Point(3, 42);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(53, 13);
     this.labelControl29.TabIndex = 0;
     this.labelControl29.Text = "DTTN Start";
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(169, 64);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(18, 13);
     this.labelControl30.TabIndex = 0;
     this.labelControl30.Text = "End";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.Location = new System.Drawing.Point(71, 16);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Size = new System.Drawing.Size(217, 20);
     this.BanQuyenThuoc.TabIndex = 0;
     this.BanQuyenThuoc.ZZZWidthFactor = 2F;
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(169, 42);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(18, 13);
     this.labelControl31.TabIndex = 0;
     this.labelControl31.Text = "End";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(6, 182);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(40, 13);
     this.labelControl14.TabIndex = 0;
     this.labelControl14.Text = "Note BQ";
     //
     // DaoDien
     //
     this.DaoDien.DataSource = null;
     this.DaoDien.DisplayField = null;
     this.DaoDien.EditValue = "";
     this.DaoDien.Location = new System.Drawing.Point(93, 96);
     this.DaoDien.Name = "DaoDien";
     this.DaoDien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DaoDien.Size = new System.Drawing.Size(239, 20);
     this.DaoDien.TabIndex = 7;
     this.DaoDien.ValueField = null;
     //
     // groupControlThongTin
     //
     this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTin.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTin.Controls.Add(this.gridControlGhiChu);
     this.groupControlThongTin.Controls.Add(this.labelControl34);
     this.groupControlThongTin.Controls.Add(this.PhanLoaiDrama);
     this.groupControlThongTin.Controls.Add(this.labelControl18);
     this.groupControlThongTin.Controls.Add(this.NguonTrading);
     this.groupControlThongTin.Controls.Add(this.ClassName);
     this.groupControlThongTin.Controls.Add(this.labelControl23);
     this.groupControlThongTin.Controls.Add(this.labelControl13);
     this.groupControlThongTin.Controls.Add(this.Code);
     this.groupControlThongTin.Controls.Add(this.TenGoc);
     this.groupControlThongTin.Controls.Add(this.NoiDung);
     this.groupControlThongTin.Controls.Add(this.Period);
     this.groupControlThongTin.Controls.Add(this.Category);
     this.groupControlThongTin.Controls.Add(this.TrailerGoc);
     this.groupControlThongTin.Controls.Add(this.Photos);
     this.groupControlThongTin.Controls.Add(this.Script);
     this.groupControlThongTin.Controls.Add(this.ckcMoiTrenThiTruong);
     this.groupControlThongTin.Controls.Add(this.ckcTrongKho);
     this.groupControlThongTin.Controls.Add(this.ThanhLy);
     this.groupControlThongTin.Controls.Add(this.groupControl8);
     this.groupControlThongTin.Controls.Add(this.label22);
     this.groupControlThongTin.Controls.Add(this.Ranking);
     this.groupControlThongTin.Controls.Add(this.Rating);
     this.groupControlThongTin.Controls.Add(this.DienVien);
     this.groupControlThongTin.Controls.Add(this.DaoDien);
     this.groupControlThongTin.Controls.Add(this.KyHieuPhanLoai);
     this.groupControlThongTin.Controls.Add(this.labelControl22);
     this.groupControlThongTin.Controls.Add(this.labelControl16);
     this.groupControlThongTin.Controls.Add(this.label21);
     this.groupControlThongTin.Controls.Add(this.labelControl12);
     this.groupControlThongTin.Controls.Add(this.label15);
     this.groupControlThongTin.Controls.Add(this.label5);
     this.groupControlThongTin.Controls.Add(this.label24);
     this.groupControlThongTin.Controls.Add(this.TuKhoaSelect);
     this.groupControlThongTin.Controls.Add(this.DoiTuongKhanGia);
     this.groupControlThongTin.Controls.Add(this.labelControl11);
     this.groupControlThongTin.Controls.Add(this.label14);
     this.groupControlThongTin.Controls.Add(this.NgayAWB);
     this.groupControlThongTin.Controls.Add(this.TomTatNoiDung);
     this.groupControlThongTin.Controls.Add(this.GhiChu);
     this.groupControlThongTin.Controls.Add(this.TuKhoaText);
     this.groupControlThongTin.Controls.Add(this.label20);
     this.groupControlThongTin.Controls.Add(this.labelControl2);
     this.groupControlThongTin.Controls.Add(this.label33);
     this.groupControlThongTin.Controls.Add(this.labelControl5);
     this.groupControlThongTin.Controls.Add(this.label36);
     this.groupControlThongTin.Controls.Add(this.Info);
     this.groupControlThongTin.Controls.Add(this.TinhTrangBang);
     this.groupControlThongTin.Controls.Add(this.TietMuc);
     this.groupControlThongTin.Controls.Add(this.labelControl3);
     this.groupControlThongTin.Controls.Add(this.MaChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.label7);
     this.groupControlThongTin.Controls.Add(this.label42);
     this.groupControlThongTin.Controls.Add(this.labelControl1);
     this.groupControlThongTin.Controls.Add(this.label8);
     this.groupControlThongTin.Location = new System.Drawing.Point(3, 0);
     this.groupControlThongTin.Name = "groupControlThongTin";
     this.groupControlThongTin.Size = new System.Drawing.Size(1000, 410);
     this.groupControlThongTin.TabIndex = 0;
     this.groupControlThongTin.Text = "Thông tin chính";
     //
     // gridControlGhiChu
     //
     this.gridControlGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlGhiChu.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlGhiChu.BackgroundImage")));
     this.gridControlGhiChu.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlGhiChu.Location = new System.Drawing.Point(405, 241);
     this.gridControlGhiChu.MainView = this.gridViewGhiChu;
     this.gridControlGhiChu.Name = "gridControlGhiChu";
     this.gridControlGhiChu.Size = new System.Drawing.Size(588, 152);
     this.gridControlGhiChu.TabIndex = 138;
     this.gridControlGhiChu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGhiChu});
     //
     // gridViewGhiChu
     //
     this.gridViewGhiChu.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewGhiChu.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewGhiChu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLoaiGhiChu,
     this.colNoiDungGhiChu});
     this.gridViewGhiChu.GridControl = this.gridControlGhiChu;
     this.gridViewGhiChu.IndicatorWidth = 40;
     this.gridViewGhiChu.Name = "gridViewGhiChu";
     this.gridViewGhiChu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewGhiChu.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewGhiChu.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewGhiChu.OptionsPrint.UsePrintStyles = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewGhiChu.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewGhiChu.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewGhiChu.OptionsView.ShowGroupedColumns = true;
     this.gridViewGhiChu.OptionsView.ShowGroupPanel = false;
     this.gridViewGhiChu.OptionsView.ShowIndicator = false;
     this.gridViewGhiChu.ViewCaption = "Thông tin bán";
     //
     // colLoaiGhiChu
     //
     this.colLoaiGhiChu.Caption = "Loại ghi chú";
     this.colLoaiGhiChu.Name = "colLoaiGhiChu";
     this.colLoaiGhiChu.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.colLoaiGhiChu.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.colLoaiGhiChu.Visible = true;
     this.colLoaiGhiChu.VisibleIndex = 0;
     this.colLoaiGhiChu.Width = 68;
     //
     // colNoiDungGhiChu
     //
     this.colNoiDungGhiChu.Caption = "Nội dung";
     this.colNoiDungGhiChu.Name = "colNoiDungGhiChu";
     this.colNoiDungGhiChu.Visible = true;
     this.colNoiDungGhiChu.VisibleIndex = 1;
     this.colNoiDungGhiChu.Width = 54;
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(342, 245);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(60, 13);
     this.labelControl34.TabIndex = 139;
     this.labelControl34.Text = "Ghi chú khác";
     //
     // PhanLoaiDrama
     //
     this.PhanLoaiDrama._DataSource = null;
     this.PhanLoaiDrama._GetField = null;
     this.PhanLoaiDrama.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PhanLoaiDrama.Location = new System.Drawing.Point(690, 142);
     this.PhanLoaiDrama.MenuManager = this.barManager1;
     this.PhanLoaiDrama.Name = "PhanLoaiDrama";
     this.PhanLoaiDrama.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.PhanLoaiDrama.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PhanLoaiDrama.Size = new System.Drawing.Size(303, 20);
     this.PhanLoaiDrama.TabIndex = 137;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 2;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 750);
     this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 750);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1049, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 750);
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(639, 144);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(49, 13);
     this.labelControl18.TabIndex = 136;
     this.labelControl18.Text = "P/L Drama";
     this.labelControl18.ToolTip = "Phân loại Drama";
     //
     // NguonTrading
     //
     this.NguonTrading._DataSource = null;
     this.NguonTrading._GetField = null;
     this.NguonTrading.Location = new System.Drawing.Point(93, 191);
     this.NguonTrading.Name = "NguonTrading";
     this.NguonTrading.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
     this.NguonTrading.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NguonTrading.Size = new System.Drawing.Size(239, 20);
     this.NguonTrading.TabIndex = 135;
     //
     // ClassName
     //
     this.ClassName._DataSource = null;
     this.ClassName._GetField = null;
     this.ClassName.Location = new System.Drawing.Point(405, 119);
     this.ClassName.MenuManager = this.barManager1;
     this.ClassName.Name = "ClassName";
     this.ClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, false)});
     this.ClassName.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.ClassName.Size = new System.Drawing.Size(227, 20);
     this.ClassName.TabIndex = 135;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(8, 192);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(70, 13);
     this.labelControl23.TabIndex = 134;
     this.labelControl23.Text = "Nguồn Trading";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 170);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(41, 13);
     this.labelControl13.TabIndex = 134;
     this.labelControl13.Text = "Code CT";
     this.labelControl13.ToolTip = "Mã code kế toán";
     //
     // Code
     //
     this.Code.Location = new System.Drawing.Point(93, 168);
     this.Code.MenuManager = this.barManager1;
     this.Code.Name = "Code";
     this.Code.Size = new System.Drawing.Size(239, 20);
     this.Code.TabIndex = 133;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(405, 73);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(227, 20);
     this.TenGoc.TabIndex = 132;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(93, 73);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(240, 20);
     this.NoiDung.TabIndex = 132;
     this.NoiDung.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // Period
     //
     this.Period._DataSource = null;
     this.Period._GetField = null;
     this.Period.Location = new System.Drawing.Point(405, 142);
     this.Period.Name = "Period";
     this.Period.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, false)});
     this.Period.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Period.Size = new System.Drawing.Size(228, 20);
     this.Period.TabIndex = 6;
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Category.Location = new System.Drawing.Point(690, 72);
     this.Category.MenuManager = this.barManager1;
     this.Category.Name = "Category";
     this.Category.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, false)});
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(303, 20);
     this.Category.TabIndex = 6;
     //
     // TrailerGoc
     //
     this.TrailerGoc.Location = new System.Drawing.Point(260, 215);
     this.TrailerGoc.Name = "TrailerGoc";
     this.TrailerGoc.Properties.Caption = "Trailer gốc";
     this.TrailerGoc.Size = new System.Drawing.Size(72, 19);
     this.TrailerGoc.TabIndex = 16;
     //
     // Photos
     //
     this.Photos.Location = new System.Drawing.Point(174, 215);
     this.Photos.Name = "Photos";
     this.Photos.Properties.Caption = "Photo";
     this.Photos.Size = new System.Drawing.Size(56, 19);
     this.Photos.TabIndex = 15;
     //
     // Script
     //
     this.Script.Location = new System.Drawing.Point(93, 215);
     this.Script.MenuManager = this.barManager1;
     this.Script.Name = "Script";
     this.Script.Properties.Caption = "Script";
     this.Script.Size = new System.Drawing.Size(48, 19);
     this.Script.TabIndex = 14;
     //
     // ckcMoiTrenThiTruong
     //
     this.ckcMoiTrenThiTruong.Location = new System.Drawing.Point(313, 25);
     this.ckcMoiTrenThiTruong.Name = "ckcMoiTrenThiTruong";
     this.ckcMoiTrenThiTruong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcMoiTrenThiTruong.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseFont = true;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseForeColor = true;
     this.ckcMoiTrenThiTruong.Properties.Caption = "Mới trên thị trường";
     this.ckcMoiTrenThiTruong.Size = new System.Drawing.Size(142, 19);
     this.ckcMoiTrenThiTruong.TabIndex = 0;
     //
     // ckcTrongKho
     //
     this.ckcTrongKho.Location = new System.Drawing.Point(204, 24);
     this.ckcTrongKho.Name = "ckcTrongKho";
     this.ckcTrongKho.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcTrongKho.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcTrongKho.Properties.Appearance.Options.UseFont = true;
     this.ckcTrongKho.Properties.Appearance.Options.UseForeColor = true;
     this.ckcTrongKho.Properties.Caption = "Có trong kho";
     this.ckcTrongKho.Size = new System.Drawing.Size(98, 19);
     this.ckcTrongKho.TabIndex = 0;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(91, 24);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 0;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(405, 188);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(227, 46);
     this.groupControl8.TabIndex = 17;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(220, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 2;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(220, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Ranking
     //
     this.Ranking.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ranking.Location = new System.Drawing.Point(690, 96);
     this.Ranking.Name = "Ranking";
     this.Ranking.Size = new System.Drawing.Size(305, 20);
     this.Ranking.TabIndex = 9;
     this.Ranking.ZZZWidthFactor = 2F;
     //
     // DienVien
     //
     this.DienVien.DataSource = null;
     this.DienVien.DisplayField = null;
     this.DienVien.EditValue = "";
     this.DienVien.Location = new System.Drawing.Point(405, 96);
     this.DienVien.Name = "DienVien";
     this.DienVien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DienVien.Size = new System.Drawing.Size(227, 20);
     this.DienVien.TabIndex = 8;
     this.DienVien.ValueField = null;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(344, 122);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(24, 13);
     this.labelControl22.TabIndex = 0;
     this.labelControl22.Text = "Điểm";
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(343, 145);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(30, 13);
     this.labelControl16.TabIndex = 0;
     this.labelControl16.Text = "Period";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(640, 98);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(38, 13);
     this.labelControl12.TabIndex = 0;
     this.labelControl12.Text = "Ranking";
     //
     // label24
     //
     this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label24.Location = new System.Drawing.Point(968, 125);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(690, 216);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(303, 19);
     this.TuKhoaSelect.TabIndex = 18;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(638, 74);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(45, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "Category";
     //
     // NgayAWB
     //
     this.NgayAWB.EditValue = null;
     this.NgayAWB.Location = new System.Drawing.Point(405, 48);
     this.NgayAWB.Name = "NgayAWB";
     this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayAWB.Size = new System.Drawing.Size(227, 20);
     this.NgayAWB.TabIndex = 2;
     //
     // TomTatNoiDung
     //
     this.TomTatNoiDung.Location = new System.Drawing.Point(93, 242);
     this.TomTatNoiDung.Name = "TomTatNoiDung";
     this.TomTatNoiDung.Size = new System.Drawing.Size(241, 80);
     this.TomTatNoiDung.TabIndex = 20;
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(91, 326);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(243, 78);
     this.GhiChu.TabIndex = 21;
     this.GhiChu.EditValueChanged += new System.EventHandler(this.GhiChu_EditValueChanged);
     //
     // TuKhoaText
     //
     this.TuKhoaText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaText.Location = new System.Drawing.Point(690, 167);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(303, 50);
     this.TuKhoaText.TabIndex = 19;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(639, 169);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(343, 100);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(44, 13);
     this.labelControl2.TabIndex = 129;
     this.labelControl2.Text = "Diễn viên";
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(343, 52);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(51, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày AWB";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(8, 244);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 129;
     this.labelControl5.Text = "Tóm tắt nội dung";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(12, 329);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(308, 46);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 1;
     //
     // TinhTrangBang
     //
     this.TinhTrangBang.Location = new System.Drawing.Point(93, 144);
     this.TinhTrangBang.Name = "TinhTrangBang";
     this.TinhTrangBang.Size = new System.Drawing.Size(241, 20);
     this.TinhTrangBang.TabIndex = 13;
     this.TinhTrangBang.ZZZWidthFactor = 2F;
     //
     // TietMuc
     //
     this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TietMuc.Location = new System.Drawing.Point(690, 48);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(303, 20);
     this.TietMuc.TabIndex = 3;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(9, 148);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(39, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "TT băng";
     this.labelControl3.ToolTip = "Tình trạng băng";
     //
     // MaChuongTrinh
     //
     this.MaChuongTrinh.Location = new System.Drawing.Point(93, 48);
     this.MaChuongTrinh.Name = "MaChuongTrinh";
     this.MaChuongTrinh.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.MaChuongTrinh.Properties.Appearance.Options.UseBackColor = true;
     this.MaChuongTrinh.Properties.MaxLength = 100;
     this.MaChuongTrinh.Properties.ReadOnly = true;
     this.MaChuongTrinh.Size = new System.Drawing.Size(209, 20);
     this.MaChuongTrinh.TabIndex = 1;
     this.MaChuongTrinh.TabStop = false;
     this.MaChuongTrinh.ToolTip = "Mã chương trình";
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(342, 76);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 52);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(78, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Mã chương trình";
     //
     // xtraTabControlMain
     //
     this.xtraTabControlMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControlMain.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.Blue;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseForeColor = true;
     this.xtraTabControlMain.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControlMain.Location = new System.Drawing.Point(6, 44);
     this.xtraTabControlMain.Name = "xtraTabControlMain";
     this.xtraTabControlMain.SelectedTabPage = this.xtraTabPageChuongTrinh;
     this.xtraTabControlMain.Size = new System.Drawing.Size(1043, 666);
     this.xtraTabControlMain.TabIndex = 130;
     this.xtraTabControlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageChuongTrinh,
     this.xtraTabPageAdd});
     this.xtraTabControlMain.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging);
     this.xtraTabControlMain.CloseButtonClick += new System.EventHandler(this.xtraTabControlMain_CloseButtonClick);
     //
     // xtraTabPageChuongTrinh
     //
     this.xtraTabPageChuongTrinh.AutoScroll = true;
     this.xtraTabPageChuongTrinh.Controls.Add(this.xtraScrollableControl1);
     this.xtraTabPageChuongTrinh.FireScrollEventOnMouseWheel = true;
     this.xtraTabPageChuongTrinh.Name = "xtraTabPageChuongTrinh";
     this.xtraTabPageChuongTrinh.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageChuongTrinh.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageChuongTrinh.Text = "Thông tin chương trình";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTinPhatSong);
     this.xtraScrollableControl1.Controls.Add(this.groupControlNguonGoc);
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTin);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(1036, 637);
     this.xtraScrollableControl1.TabIndex = 130;
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPageAdd.Appearance.Header.Options.UseFont = true;
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageAdd.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageAdd.Text = "+";
     //
     // popupMenuTab
     //
     this.popupMenuTab.Manager = this.barManager1;
     this.popupMenuTab.Name = "popupMenuTab";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Text";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // FrmChuongTrinh
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1049, 750);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.xtraTabControlMain);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmChuongTrinh";
     this.Text = "Chương trình";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).EndInit();
     this.groupControlThongTinPhatSong.ResumeLayout(false);
     this.groupControlThongTinPhatSong.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).EndInit();
     this.groupControlNguonGoc.ResumeLayout(false);
     this.groupControlNguonGoc.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit();
     this.groupControlThongTin.ResumeLayout(false);
     this.groupControlThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).EndInit();
     this.xtraTabControlMain.ResumeLayout(false);
     this.xtraTabPageChuongTrinh.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.spinedtLastNonMemberID = new DevExpress.XtraEditors.SpinEdit();
     this.spinedtLastMemberID = new DevExpress.XtraEditors.SpinEdit();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnOK = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.txtLastNonMemberID = new DevExpress.XtraEditors.TextEdit();
     this.txtLastMemberID = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 30);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(162, 18);
     this.label1.TabIndex = 0;
     this.label1.Text = "Reset Last Non-Member ID To:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 78);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(138, 18);
     this.label2.TabIndex = 1;
     this.label2.Text = "Reset Last Member ID To:";
     //
     // spinedtLastNonMemberID
     //
     this.spinedtLastNonMemberID.EditValue = new System.Decimal(new int[] {
                                                                              0,
                                                                              0,
                                                                              0,
                                                                              0});
     this.spinedtLastNonMemberID.Location = new System.Drawing.Point(174, 28);
     this.spinedtLastNonMemberID.Name = "spinedtLastNonMemberID";
     //
     // spinedtLastNonMemberID.Properties
     //
     this.spinedtLastNonMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinedtLastNonMemberID.Properties.IsFloatValue = false;
     this.spinedtLastNonMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastNonMemberID.Properties.NullText = "0";
     this.spinedtLastNonMemberID.Size = new System.Drawing.Size(80, 20);
     this.spinedtLastNonMemberID.TabIndex = 1;
     //
     // spinedtLastMemberID
     //
     this.spinedtLastMemberID.EditValue = new System.Decimal(new int[] {
                                                                           0,
                                                                           0,
                                                                           0,
                                                                           0});
     this.spinedtLastMemberID.Location = new System.Drawing.Point(174, 76);
     this.spinedtLastMemberID.Name = "spinedtLastMemberID";
     //
     // spinedtLastMemberID.Properties
     //
     this.spinedtLastMemberID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinedtLastMemberID.Properties.IsFloatValue = false;
     this.spinedtLastMemberID.Properties.Mask.EditMask = "N00";
     this.spinedtLastMemberID.Properties.NullText = "0";
     this.spinedtLastMemberID.Size = new System.Drawing.Size(80, 20);
     this.spinedtLastMemberID.TabIndex = 3;
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(142, 102);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.TabIndex = 5;
     this.sbtnCancel.Text = "Cancel";
     //
     // sbtnOK
     //
     this.sbtnOK.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnOK.Location = new System.Drawing.Point(48, 102);
     this.sbtnOK.Name = "sbtnOK";
     this.sbtnOK.TabIndex = 4;
     this.sbtnOK.Text = "OK";
     this.sbtnOK.Click += new System.EventHandler(this.sbtnOK_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(154, 18);
     this.label3.TabIndex = 9;
     this.label3.Text = "Current Last Non-Member ID:";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(10, 56);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(154, 18);
     this.label4.TabIndex = 10;
     this.label4.Text = "Current Last Member ID:";
     //
     // txtLastNonMemberID
     //
     this.txtLastNonMemberID.EditValue = "";
     this.txtLastNonMemberID.Location = new System.Drawing.Point(174, 6);
     this.txtLastNonMemberID.Name = "txtLastNonMemberID";
     //
     // txtLastNonMemberID.Properties
     //
     this.txtLastNonMemberID.Properties.ReadOnly = true;
     this.txtLastNonMemberID.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastNonMemberID.Size = new System.Drawing.Size(64, 20);
     this.txtLastNonMemberID.TabIndex = 0;
     //
     // txtLastMemberID
     //
     this.txtLastMemberID.EditValue = "";
     this.txtLastMemberID.Location = new System.Drawing.Point(174, 54);
     this.txtLastMemberID.Name = "txtLastMemberID";
     //
     // txtLastMemberID.Properties
     //
     this.txtLastMemberID.Properties.ReadOnly = true;
     this.txtLastMemberID.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtLastMemberID.Size = new System.Drawing.Size(64, 20);
     this.txtLastMemberID.TabIndex = 2;
     //
     // frmResetMembershipID
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(262, 128);
     this.Controls.Add(this.txtLastMemberID);
     this.Controls.Add(this.txtLastNonMemberID);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.sbtnOK);
     this.Controls.Add(this.spinedtLastMemberID);
     this.Controls.Add(this.spinedtLastNonMemberID);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmResetMembershipID";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Reset Membership ID";
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinedtLastMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastNonMemberID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastMemberID.Properties)).EndInit();
     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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Tester));
     this.label1                     = new System.Windows.Forms.Label();
     this.tabControl1                = new System.Windows.Forms.TabControl();
     this.tabPage1                   = new System.Windows.Forms.TabPage();
     this.btnTestTagEditorGUI        = new System.Windows.Forms.Button();
     this.btnLoadProjectFile         = new System.Windows.Forms.Button();
     this.btnCreateNewProjectFile    = new System.Windows.Forms.Button();
     this.btnBuildTagListTreeview    = new System.Windows.Forms.Button();
     this.btnGenerateMasterTagList   = new System.Windows.Forms.Button();
     this.btnTestTagLoaders          = new System.Windows.Forms.Button();
     this.btnTestOptionsManager      = new System.Windows.Forms.Button();
     this.btnTestXMLConverter        = new System.Windows.Forms.Button();
     this.btnTestFieldCodeGeneration = new System.Windows.Forms.Button();
     this.tabPage2                   = new System.Windows.Forms.TabPage();
     this.buttonTestEditorDataBinder = new System.Windows.Forms.Button();
     this.tabPage3                   = new System.Windows.Forms.TabPage();
     this.panelControl1              = new DevExpress.XtraEditors.PanelControl();
     this.imageButton1               = new UIControls.StandardControls.ImageButton();
     this.label2                     = new System.Windows.Forms.Label();
     this.sizeChange                 = new DevExpress.XtraEditors.SpinEdit();
     this.angleEdit1                 = new TagEditor.Controls.AngleEdit();
     this.btnTestNotes               = new System.Windows.Forms.Button();
     this.panel1                     = new UIControls.StandardControls.ControlListPanel();
     this.button1                    = new System.Windows.Forms.Button();
     this.button2                    = new System.Windows.Forms.Button();
     this.imageLabel1                = new UIControls.StandardControls.ImageLabel();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.sizeChange.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(360, 40);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Test your new code here!  Make your own tab so you do not interefere with other p" +
                            "eople\'s tests.";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(8, 56);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(360, 320);
     this.tabControl1.TabIndex      = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.btnTestTagEditorGUI);
     this.tabPage1.Controls.Add(this.btnLoadProjectFile);
     this.tabPage1.Controls.Add(this.btnCreateNewProjectFile);
     this.tabPage1.Controls.Add(this.btnBuildTagListTreeview);
     this.tabPage1.Controls.Add(this.btnGenerateMasterTagList);
     this.tabPage1.Controls.Add(this.btnTestTagLoaders);
     this.tabPage1.Controls.Add(this.btnTestOptionsManager);
     this.tabPage1.Controls.Add(this.btnTestXMLConverter);
     this.tabPage1.Controls.Add(this.btnTestFieldCodeGeneration);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(352, 294);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Mono";
     //
     // btnTestTagEditorGUI
     //
     this.btnTestTagEditorGUI.Location = new System.Drawing.Point(8, 264);
     this.btnTestTagEditorGUI.Name     = "btnTestTagEditorGUI";
     this.btnTestTagEditorGUI.Size     = new System.Drawing.Size(336, 23);
     this.btnTestTagEditorGUI.TabIndex = 8;
     this.btnTestTagEditorGUI.Text     = "Test Tag Editor GUI";
     this.btnTestTagEditorGUI.Click   += new System.EventHandler(this.btnTestTagEditorGUI_Click);
     //
     // btnLoadProjectFile
     //
     this.btnLoadProjectFile.Location = new System.Drawing.Point(8, 232);
     this.btnLoadProjectFile.Name     = "btnLoadProjectFile";
     this.btnLoadProjectFile.Size     = new System.Drawing.Size(336, 23);
     this.btnLoadProjectFile.TabIndex = 7;
     this.btnLoadProjectFile.Text     = "Load a Project File";
     this.btnLoadProjectFile.Click   += new System.EventHandler(this.btnLoadProjectFile_Click);
     //
     // btnCreateNewProjectFile
     //
     this.btnCreateNewProjectFile.Location = new System.Drawing.Point(8, 200);
     this.btnCreateNewProjectFile.Name     = "btnCreateNewProjectFile";
     this.btnCreateNewProjectFile.Size     = new System.Drawing.Size(336, 23);
     this.btnCreateNewProjectFile.TabIndex = 6;
     this.btnCreateNewProjectFile.Text     = "Create New Project File";
     this.btnCreateNewProjectFile.Click   += new System.EventHandler(this.btnCreateNewProjectFile_Click);
     //
     // btnBuildTagListTreeview
     //
     this.btnBuildTagListTreeview.Location = new System.Drawing.Point(8, 168);
     this.btnBuildTagListTreeview.Name     = "btnBuildTagListTreeview";
     this.btnBuildTagListTreeview.Size     = new System.Drawing.Size(336, 23);
     this.btnBuildTagListTreeview.TabIndex = 5;
     this.btnBuildTagListTreeview.Text     = "Build Tag List TreeView";
     this.btnBuildTagListTreeview.Click   += new System.EventHandler(this.btnBuildTagListTreeview_Click);
     //
     // btnGenerateMasterTagList
     //
     this.btnGenerateMasterTagList.Location = new System.Drawing.Point(8, 136);
     this.btnGenerateMasterTagList.Name     = "btnGenerateMasterTagList";
     this.btnGenerateMasterTagList.Size     = new System.Drawing.Size(336, 23);
     this.btnGenerateMasterTagList.TabIndex = 4;
     this.btnGenerateMasterTagList.Text     = "Generate Master Tag List";
     this.btnGenerateMasterTagList.Click   += new System.EventHandler(this.btnGenerateMasterTagList_Click);
     //
     // btnTestTagLoaders
     //
     this.btnTestTagLoaders.Location = new System.Drawing.Point(8, 104);
     this.btnTestTagLoaders.Name     = "btnTestTagLoaders";
     this.btnTestTagLoaders.Size     = new System.Drawing.Size(336, 23);
     this.btnTestTagLoaders.TabIndex = 3;
     this.btnTestTagLoaders.Text     = "Test Tag Loaders";
     this.btnTestTagLoaders.Click   += new System.EventHandler(this.btnTestTagLoaders_Click);
     //
     // btnTestOptionsManager
     //
     this.btnTestOptionsManager.Location = new System.Drawing.Point(8, 72);
     this.btnTestOptionsManager.Name     = "btnTestOptionsManager";
     this.btnTestOptionsManager.Size     = new System.Drawing.Size(336, 23);
     this.btnTestOptionsManager.TabIndex = 2;
     this.btnTestOptionsManager.Text     = "Test OptionsManager";
     this.btnTestOptionsManager.Click   += new System.EventHandler(this.btnTestOptionsManager_Click);
     //
     // btnTestXMLConverter
     //
     this.btnTestXMLConverter.Location = new System.Drawing.Point(8, 40);
     this.btnTestXMLConverter.Name     = "btnTestXMLConverter";
     this.btnTestXMLConverter.Size     = new System.Drawing.Size(336, 23);
     this.btnTestXMLConverter.TabIndex = 1;
     this.btnTestXMLConverter.Text     = "Test XML Converter";
     this.btnTestXMLConverter.Click   += new System.EventHandler(this.btnTestXMLConverter_Click);
     //
     // btnTestFieldCodeGeneration
     //
     this.btnTestFieldCodeGeneration.Location = new System.Drawing.Point(8, 8);
     this.btnTestFieldCodeGeneration.Name     = "btnTestFieldCodeGeneration";
     this.btnTestFieldCodeGeneration.Size     = new System.Drawing.Size(336, 23);
     this.btnTestFieldCodeGeneration.TabIndex = 0;
     this.btnTestFieldCodeGeneration.Text     = "Test Field Code Generation";
     this.btnTestFieldCodeGeneration.Click   += new System.EventHandler(this.btnTestFieldCodeGeneration_Click);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.buttonTestEditorDataBinder);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(352, 294);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Gren";
     //
     // buttonTestEditorDataBinder
     //
     this.buttonTestEditorDataBinder.Location = new System.Drawing.Point(8, 8);
     this.buttonTestEditorDataBinder.Name     = "buttonTestEditorDataBinder";
     this.buttonTestEditorDataBinder.Size     = new System.Drawing.Size(336, 23);
     this.buttonTestEditorDataBinder.TabIndex = 1;
     this.buttonTestEditorDataBinder.Text     = "Test Editor Data Binder";
     this.buttonTestEditorDataBinder.Click   += new System.EventHandler(this.buttonTestEditorDataBinder_Click);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.panelControl1);
     this.tabPage3.Controls.Add(this.label2);
     this.tabPage3.Controls.Add(this.sizeChange);
     this.tabPage3.Controls.Add(this.angleEdit1);
     this.tabPage3.Controls.Add(this.btnTestNotes);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(352, 294);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "rec0";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.imageButton1);
     this.panelControl1.Location          = new System.Drawing.Point(136, 200);
     this.panelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.panelControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.panelControl1.LookAndFeel.UseWindowsXPTheme     = false;
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(184, 80);
     this.panelControl1.TabIndex = 7;
     this.panelControl1.Text     = "panelControl1";
     //
     // imageButton1
     //
     this.imageButton1.AltImage = null;
     this.imageButton1.Appearance.Options.UseBackColor = true;
     this.imageButton1.HotTrack          = true;
     this.imageButton1.Image             = ((System.Drawing.Image)(resources.GetObject("imageButton1.Image")));
     this.imageButton1.ImageSizeRatio    = 0.8F;
     this.imageButton1.Location          = new System.Drawing.Point(64, 16);
     this.imageButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.imageButton1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.imageButton1.LookAndFeel.UseWindowsXPTheme     = false;
     this.imageButton1.Name         = "imageButton1";
     this.imageButton1.PressedImage = null;
     this.imageButton1.Size         = new System.Drawing.Size(56, 48);
     this.imageButton1.TabIndex     = 6;
     this.imageButton1.Toggle       = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(216, 56);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 24);
     this.label2.TabIndex = 4;
     this.label2.Text     = "Control Size:";
     //
     // sizeChange
     //
     this.sizeChange.EditValue = new System.Decimal(new int[] {
         50,
         0,
         0,
         0
     });
     this.sizeChange.Location = new System.Drawing.Point(296, 56);
     this.sizeChange.Name     = "sizeChange";
     //
     // sizeChange.Properties
     //
     this.sizeChange.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.sizeChange.Properties.UseCtrlIncrement = false;
     this.sizeChange.Size              = new System.Drawing.Size(40, 20);
     this.sizeChange.TabIndex          = 3;
     this.sizeChange.EditValueChanged += new System.EventHandler(this.sizeChange_EditValueChanged);
     //
     // angleEdit1
     //
     this.angleEdit1.Angle    = 0;
     this.angleEdit1.Location = new System.Drawing.Point(24, 56);
     this.angleEdit1.Name     = "angleEdit1";
     this.angleEdit1.Size     = new System.Drawing.Size(50, 50);
     this.angleEdit1.TabIndex = 2;
     //
     // btnTestNotes
     //
     this.btnTestNotes.Location = new System.Drawing.Point(8, 8);
     this.btnTestNotes.Name     = "btnTestNotes";
     this.btnTestNotes.Size     = new System.Drawing.Size(336, 23);
     this.btnTestNotes.TabIndex = 1;
     this.btnTestNotes.Text     = "Test Notes Dialog";
     this.btnTestNotes.Click   += new System.EventHandler(this.btnTestNotes_Click);
     //
     // panel1
     //
     this.panel1.Location       = new System.Drawing.Point(376, 8);
     this.panel1.Name           = "panel1";
     this.panel1.Padding        = 10;
     this.panel1.ResizeBehavior = UIControls.StandardControls.ResizeBehavior.None;
     this.panel1.Size           = new System.Drawing.Size(122, 90);
     this.panel1.Spacing        = 10;
     this.panel1.TabIndex       = 2;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(392, 232);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(104, 22);
     this.button1.TabIndex = 0;
     this.button1.Text     = "More Benchmarks";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(392, 200);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(104, 23);
     this.button2.TabIndex = 5;
     this.button2.Text     = "Benchmark";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // imageLabel1
     //
     this.imageLabel1.Appearance.BackColor            = System.Drawing.Color.IndianRed;
     this.imageLabel1.Appearance.Options.UseBackColor = true;
     this.imageLabel1.Captions        = "This is a test of the emergency broadcast system.  This is only a test.";
     this.imageLabel1.ForegroundColor = System.Drawing.Color.DarkRed;
     this.imageLabel1.Image           = ((System.Drawing.Image)(resources.GetObject("imageLabel1.Image")));
     this.imageLabel1.Location        = new System.Drawing.Point(392, 144);
     this.imageLabel1.Name            = "imageLabel1";
     this.imageLabel1.PanelColor      = System.Drawing.Color.IndianRed;
     this.imageLabel1.Size            = new System.Drawing.Size(288, 48);
     this.imageLabel1.TabIndex        = 7;
     //
     // Tester
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(792, 438);
     this.Controls.Add(this.imageLabel1);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.Name  = "Tester";
     this.Text  = "Tester";
     this.Load += new System.EventHandler(this.Tester_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.sizeChange.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ventas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btn_del = new System.Windows.Forms.Button();
     this.btn_add = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.telef = new System.Windows.Forms.TextBox();
     this.vendpername = new System.Windows.Forms.TextBox();
     this.vendperid = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txtvuelto = new System.Windows.Forms.TextBox();
     this.txtefectivo = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.dctoTda = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dctoTotal = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.dctoTarj = new System.Windows.Forms.TextBox();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.shapeContainer3 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.griddetallemov = new System.Windows.Forms.DataGridView();
     this.nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rollo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ubicacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
     this.cbo_incprec = new System.Windows.Forms.ComboBox();
     this.label20 = new System.Windows.Forms.Label();
     this.lbltitulo = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_upload = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_information = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.lblruc = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pdtimagen = new System.Windows.Forms.PictureBox();
     this.lstListaprec = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.canticombo = new DevExpress.XtraEditors.SpinEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.preccombo = new System.Windows.Forms.TextBox();
     this.princombo = new System.Windows.Forms.CheckBox();
     this.glosa = new System.Windows.Forms.TextBox();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.label23 = new System.Windows.Forms.Label();
     this.importtarj = new System.Windows.Forms.TextBox();
     this.lstTarjGroup = new System.Windows.Forms.ListBox();
     this.dgbtarjetas = new System.Windows.Forms.DataGridView();
     this._tarjetalogo = new System.Windows.Forms.DataGridViewImageColumn();
     this._tarjetaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetanum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaimpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ddnni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.numnotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.sernotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipnotac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.numguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipguia = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.numfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipfac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.recep_fecha = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.recep_dni = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.recep_name = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chkNC = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkGR = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkFA = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.fechnotac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechguia = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechfac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).BeginInit();
     this.SuspendLayout();
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_del.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_del.Location = new System.Drawing.Point(226, 34);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(21, 21);
     this.btn_del.TabIndex = 99;
     this.toolTip1.SetToolTip(this.btn_del, "Quitar");
     this.btn_del.UseVisualStyleBackColor = true;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_add.Image = global::BapFormulariosNet.Properties.Resources.go_add1;
     this.btn_add.Location = new System.Drawing.Point(226, 12);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(21, 21);
     this.btn_add.TabIndex = 98;
     this.toolTip1.SetToolTip(this.btn_add, "Agregar");
     this.btn_add.UseVisualStyleBackColor = true;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(302, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 13);
     this.label12.TabIndex = 92;
     this.label12.Text = "Telef:";
     //
     // telef
     //
     this.telef.Location = new System.Drawing.Point(338, 125);
     this.telef.MaxLength = 100;
     this.telef.Name = "telef";
     this.telef.Size = new System.Drawing.Size(86, 21);
     this.telef.TabIndex = 83;
     //
     // vendpername
     //
     this.vendpername.Location = new System.Drawing.Point(100, 183);
     this.vendpername.Name = "vendpername";
     this.vendpername.Size = new System.Drawing.Size(351, 21);
     this.vendpername.TabIndex = 81;
     //
     // vendperid
     //
     this.vendperid.Location = new System.Drawing.Point(64, 183);
     this.vendperid.MaxLength = 8;
     this.vendperid.Name = "vendperid";
     this.vendperid.Size = new System.Drawing.Size(35, 21);
     this.vendperid.TabIndex = 80;
     this.vendperid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.vendperid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.vendperid_KeyDown);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(3, 186);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 13);
     this.label11.TabIndex = 78;
     this.label11.Text = "Vendedor:";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(64, 83);
     this.ctacte.MaxLength = 7;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(53, 21);
     this.ctacte.TabIndex = 11;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txtvuelto);
     this.panel2.Controls.Add(this.txtefectivo);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.dctoTda);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dctoTotal);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.dctoTarj);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.shapeContainer3);
     this.panel2.Location = new System.Drawing.Point(0, 480);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(989, 80);
     this.panel2.TabIndex = 73;
     //
     // txtvuelto
     //
     this.txtvuelto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtvuelto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtvuelto.Location = new System.Drawing.Point(905, 52);
     this.txtvuelto.Name = "txtvuelto";
     this.txtvuelto.Size = new System.Drawing.Size(75, 20);
     this.txtvuelto.TabIndex = 101;
     this.txtvuelto.Text = "00.00";
     this.txtvuelto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtefectivo
     //
     this.txtefectivo.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtefectivo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtefectivo.Location = new System.Drawing.Point(904, 29);
     this.txtefectivo.Name = "txtefectivo";
     this.txtefectivo.Size = new System.Drawing.Size(75, 20);
     this.txtefectivo.TabIndex = 100;
     this.txtefectivo.Text = "00.00";
     this.txtefectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtefectivo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtefectivo_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(849, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 99;
     this.label19.Text = "Vuelto :";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(838, 33);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(62, 13);
     this.label18.TabIndex = 98;
     this.label18.Text = "Efectivo :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(669, 13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(508, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 92;
     this.label9.Text = "Dcto.Tda :";
     //
     // valventa
     //
     this.valventa.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.valventa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valventa.Location = new System.Drawing.Point(747, 8);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 20);
     this.valventa.TabIndex = 80;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dctoTda
     //
     this.dctoTda.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTda.Location = new System.Drawing.Point(577, 8);
     this.dctoTda.Name = "dctoTda";
     this.dctoTda.Size = new System.Drawing.Size(75, 20);
     this.dctoTda.TabIndex = 91;
     this.dctoTda.Text = "00.00";
     this.dctoTda.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(677, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 83;
     this.label4.Text = "Impuesto :";
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(173, 53);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(72, 13);
     this.lbl_valor.TabIndex = 87;
     this.lbl_valor.Text = "Cost.Prom :";
     //
     // totimporte
     //
     this.totimporte.BackColor = System.Drawing.Color.YellowGreen;
     this.totimporte.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimporte.Location = new System.Drawing.Point(747, 50);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 84;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(508, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(68, 13);
     this.label14.TabIndex = 94;
     this.label14.Text = "Dcto.Tarj :";
     //
     // totimpto
     //
     this.totimpto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.totimpto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimpto.Location = new System.Drawing.Point(747, 29);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 20);
     this.totimpto.TabIndex = 82;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(246, 49);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 86;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(699, 54);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 85;
     this.label3.Text = "Total :";
     //
     // dctoTotal
     //
     this.dctoTotal.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTotal.Location = new System.Drawing.Point(577, 50);
     this.dctoTotal.Name = "dctoTotal";
     this.dctoTotal.Size = new System.Drawing.Size(75, 21);
     this.dctoTotal.TabIndex = 95;
     this.dctoTotal.Text = "00.00";
     this.dctoTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(170, 31);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(76, 13);
     this.label39.TabIndex = 79;
     this.label39.Text = "Descuento :";
     //
     // dctoTarj
     //
     this.dctoTarj.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTarj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTarj.Location = new System.Drawing.Point(577, 29);
     this.dctoTarj.Name = "dctoTarj";
     this.dctoTarj.Size = new System.Drawing.Size(75, 20);
     this.dctoTarj.TabIndex = 93;
     this.dctoTarj.Text = "00.00";
     this.dctoTarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(246, 28);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 78;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(501, 53);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(75, 13);
     this.label17.TabIndex = 96;
     this.label17.Text = "Descto.TT :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(3, 51);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto :";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(76, 48);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 76;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(344, 52);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 89;
     this.label40.Text = "Stock :";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(6, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 75;
     this.label7.Text = "T. Piezas :";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(76, 26);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 74;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(392, 48);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 88;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(29, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 13);
     this.label1.TabIndex = 73;
     this.label1.Text = "Items :";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(77, 4);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 72;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // shapeContainer3
     //
     this.shapeContainer3.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer3.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer3.Name = "shapeContainer3";
     this.shapeContainer3.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer3.Size = new System.Drawing.Size(989, 80);
     this.shapeContainer3.TabIndex = 97;
     this.shapeContainer3.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderWidth = 2;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 482;
     this.lineShape4.X2 = 482;
     this.lineShape4.Y1 = 10;
     this.lineShape4.Y2 = 71;
     //
     // lineShape3
     //
     this.lineShape3.BorderWidth = 2;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 665;
     this.lineShape3.X2 = 665;
     this.lineShape3.Y1 = 10;
     this.lineShape3.Y2 = 71;
     //
     // griddetallemov
     //
     this.griddetallemov.AllowUserToAddRows = false;
     this.griddetallemov.AllowUserToDeleteRows = false;
     this.griddetallemov.AllowUserToResizeColumns = false;
     this.griddetallemov.AllowUserToResizeRows = false;
     this.griddetallemov.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.griddetallemov.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetallemov.ColumnHeadersHeight = 20;
     this.griddetallemov.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nostock,
     this.item,
     this.productid,
     this.productname,
     this.rollo,
     this.unmed,
     this.Ubicacion,
     this.stock_old,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.cantidad_old,
     this.precioanterior,
     this.precunit,
     this.valor,
     this.dtotimpto,
     this.importe,
     this.importfac,
     this.dalmacaccionid,
     this.cantidadcta});
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.griddetallemov.DefaultCellStyle = dataGridViewCellStyle8;
     this.griddetallemov.Location = new System.Drawing.Point(1, 214);
     this.griddetallemov.MultiSelect = false;
     this.griddetallemov.Name = "griddetallemov";
     this.griddetallemov.RowHeadersVisible = false;
     this.griddetallemov.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.NullValue = null;
     this.griddetallemov.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetallemov.RowTemplate.DefaultCellStyle.NullValue = null;
     this.griddetallemov.RowTemplate.Height = 20;
     this.griddetallemov.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetallemov.Size = new System.Drawing.Size(989, 266);
     this.griddetallemov.TabIndex = 71;
     this.griddetallemov.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEndEdit);
     this.griddetallemov.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEnter);
     this.griddetallemov.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellLeave);
     this.griddetallemov.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetallemov_EditingControlShowing);
     this.griddetallemov.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyDown);
     this.griddetallemov.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyUp);
     //
     // nostock
     //
     this.nostock.DataPropertyName = "nostock";
     this.nostock.FalseValue = "false";
     this.nostock.Frozen = true;
     this.nostock.HeaderText = "Aft";
     this.nostock.Name = "nostock";
     this.nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.nostock.TrueValue = "true";
     this.nostock.Width = 20;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.Frozen = true;
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.Frozen = true;
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.Frozen = true;
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 400;
     //
     // rollo
     //
     this.rollo.DataPropertyName = "rollo";
     this.rollo.Frozen = true;
     this.rollo.HeaderText = "Rollo";
     this.rollo.MaxInputLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.rollo.Visible = false;
     this.rollo.Width = 80;
     //
     // unmed
     //
     this.unmed.DataPropertyName = "unmed";
     this.unmed.Frozen = true;
     this.unmed.HeaderText = "UnMed";
     this.unmed.Name = "unmed";
     this.unmed.Width = 48;
     //
     // Ubicacion
     //
     this.Ubicacion.DataPropertyName = "ubicacion";
     dataGridViewCellStyle2.NullValue = null;
     this.Ubicacion.DefaultCellStyle = dataGridViewCellStyle2;
     this.Ubicacion.Frozen = true;
     this.Ubicacion.HeaderText = "Ubicacion";
     this.Ubicacion.MaxInputLength = 4;
     this.Ubicacion.Name = "Ubicacion";
     this.Ubicacion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Ubicacion.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.Frozen = true;
     this.stock_old.HeaderText = "stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle3.NullValue = null;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.Frozen = true;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.Frozen = true;
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.Frozen = true;
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.Frozen = true;
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.Frozen = true;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad.Width = 80;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.Frozen = true;
     this.cantidad_old.HeaderText = "cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.Frozen = true;
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.Frozen = true;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit.Width = 90;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importe.DefaultCellStyle = dataGridViewCellStyle6;
     this.importe.HeaderText = "Importe";
     this.importe.Name = "importe";
     this.importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importe.Visible = false;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle7;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(64, 125);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(233, 21);
     this.direc.TabIndex = 23;
     //
     // ctactename
     //
     this.ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactename.Location = new System.Drawing.Point(64, 104);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(387, 21);
     this.ctactename.TabIndex = 21;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(160, 82);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(90, 21);
     this.nmruc.TabIndex = 12;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.chkfijar);
     this.panel1.Controls.Add(this.cbo_incprec);
     this.panel1.Controls.Add(this.label20);
     this.panel1.Controls.Add(this.lbltitulo);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.fechdoc);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numdoc);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.tipodoc);
     this.panel1.Controls.Add(this.serdoc);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 29);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(993, 45);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(643, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 23;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // chkfijar
     //
     this.chkfijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chkfijar.Location = new System.Drawing.Point(137, 21);
     this.chkfijar.Name = "chkfijar";
     this.chkfijar.Properties.Caption = "Fijar";
     this.chkfijar.Size = new System.Drawing.Size(51, 19);
     this.chkfijar.TabIndex = 22;
     this.chkfijar.CheckedChanged += new System.EventHandler(this.chkfijar_CheckedChanged);
     //
     // cbo_incprec
     //
     this.cbo_incprec.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cbo_incprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_incprec.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbo_incprec.FormattingEnabled = true;
     this.cbo_incprec.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.cbo_incprec.Items.AddRange(new object[] {
     "SI",
     "NO"});
     this.cbo_incprec.Location = new System.Drawing.Point(946, 20);
     this.cbo_incprec.Name = "cbo_incprec";
     this.cbo_incprec.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cbo_incprec.Size = new System.Drawing.Size(40, 21);
     this.cbo_incprec.TabIndex = 21;
     this.cbo_incprec.SelectedIndexChanged += new System.EventHandler(this.cbo_incprec_SelectedIndexChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(947, 5);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 20;
     this.label20.Text = "Inclu.";
     //
     // lbltitulo
     //
     this.lbltitulo.AutoSize = true;
     this.lbltitulo.BackColor = System.Drawing.Color.Transparent;
     this.lbltitulo.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbltitulo.ForeColor = System.Drawing.Color.White;
     this.lbltitulo.Location = new System.Drawing.Point(422, 9);
     this.lbltitulo.Name = "lbltitulo";
     this.lbltitulo.Size = new System.Drawing.Size(151, 31);
     this.lbltitulo.TabIndex = 19;
     this.lbltitulo.Text = "FACTURA";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(928, 22);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 18;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(887, 20);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 17;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // fechdoc
     //
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.Location = new System.Drawing.Point(669, 21);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 7;
     this.fechdoc.Value = new System.DateTime(2014, 4, 14, 0, 0, 0, 0);
     this.fechdoc.ValueChanged += new System.EventHandler(this.fechdoc_ValueChanged);
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(756, 20);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 8;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Tipo Documento";
     //
     // numdoc
     //
     this.numdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(231, 20);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(87, 21);
     this.numdoc.TabIndex = 8;
     this.numdoc.Text = "000000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(828, 20);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 9;
     this.tcamb.Text = "3.420";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
     this.tipodoc.FormattingEnabled = true;
     this.tipodoc.Location = new System.Drawing.Point(7, 20);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(128, 20);
     this.tipodoc.TabIndex = 4;
     this.tipodoc.SelectedIndexChanged += new System.EventHandler(this.tipodoc_SelectedIndexChanged);
     //
     // serdoc
     //
     this.serdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(189, 20);
     this.serdoc.MaxLength = 5;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(40, 21);
     this.serdoc.TabIndex = 4;
     this.serdoc.Text = "2014";
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(761, 5);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 12;
     this.label21.Text = "Moneda";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(193, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Serie";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(883, 5);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Impuesto";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(247, 5);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 7;
     this.label8.Text = "Número";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(826, 5);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 14;
     this.label15.Text = "T Cambio";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(688, 5);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 10;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.BackColor = System.Drawing.SystemColors.Control;
     this.Botonera.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnImprimirNoval,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_Calculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_upload,
     this.btn_salir,
     this.btn_information});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(993, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     this.Botonera.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Botonera_ItemClicked);
     //
     // btn_nuevo
     //
     this.btn_nuevo.BackColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Image")));
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = global::BapFormulariosNet.Properties.Resources.btn_eliminar20;
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Image")));
     this.btn_imprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(24, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.ToolTipText = "Impresion Valorizada";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btnImprimirNoval
     //
     this.btnImprimirNoval.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnImprimirNoval.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btnImprimirNoval.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimirNoval.Name = "btnImprimirNoval";
     this.btnImprimirNoval.Size = new System.Drawing.Size(26, 26);
     this.btnImprimirNoval.ToolTipText = "Impresion No Valorizada";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = global::BapFormulariosNet.Properties.Resources.go_add;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(26, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_Calculadora
     //
     this.btn_Calculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Calculadora.Image = global::BapFormulariosNet.Properties.Resources.go_calc2;
     this.btn_Calculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Calculadora.Name = "btn_Calculadora";
     this.btn_Calculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_Calculadora.Text = "Calculadora";
     this.btn_Calculadora.Click += new System.EventHandler(this.btn_Calculadora_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_upload
     //
     this.btn_upload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_upload.Image = global::BapFormulariosNet.Properties.Resources.btn_barcode;
     this.btn_upload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_upload.Name = "btn_upload";
     this.btn_upload.Size = new System.Drawing.Size(26, 26);
     this.btn_upload.Text = "Leer Codigo Barras";
     this.btn_upload.ToolTipText = "Cargar";
     this.btn_upload.Click += new System.EventHandler(this.btn_upload_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_information
     //
     this.btn_information.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_information.Image = global::BapFormulariosNet.Properties.Resources.go_information;
     this.btn_information.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_information.Name = "btn_information";
     this.btn_information.Size = new System.Drawing.Size(26, 26);
     this.btn_information.Text = "Informacion";
     this.btn_information.Click += new System.EventHandler(this.btn_information_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(6, 86);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(42, 13);
     this.tipoclieprov.TabIndex = 18;
     this.tipoclieprov.Text = "Cliente:";
     //
     // lblruc
     //
     this.lblruc.AutoSize = true;
     this.lblruc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblruc.Location = new System.Drawing.Point(123, 85);
     this.lblruc.Name = "lblruc";
     this.lblruc.Size = new System.Drawing.Size(33, 13);
     this.lblruc.TabIndex = 75;
     this.lblruc.Text = "RUC:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(6, 128);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 22;
     this.label24.Text = "Dirección:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(993, 560);
     this.shapeContainer1.TabIndex = 82;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.SelectionColor = System.Drawing.SystemColors.HotTrack;
     this.lineShape2.X1 = 2;
     this.lineShape2.X2 = 453;
     this.lineShape2.Y1 = 176;
     this.lineShape2.Y2 = 176;
     //
     // pdtimagen
     //
     this.pdtimagen.BackColor = System.Drawing.Color.Transparent;
     this.pdtimagen.Image = global::BapFormulariosNet.Properties.Resources.anulado;
     this.pdtimagen.Location = new System.Drawing.Point(378, 286);
     this.pdtimagen.Name = "pdtimagen";
     this.pdtimagen.Size = new System.Drawing.Size(262, 135);
     this.pdtimagen.TabIndex = 96;
     this.pdtimagen.TabStop = false;
     //
     // lstListaprec
     //
     this.lstListaprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstListaprec.FormattingEnabled = true;
     this.lstListaprec.Location = new System.Drawing.Point(873, 99);
     this.lstListaprec.Name = "lstListaprec";
     this.lstListaprec.Size = new System.Drawing.Size(113, 21);
     this.lstListaprec.TabIndex = 98;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(870, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(85, 13);
     this.label22.TabIndex = 99;
     this.label22.Text = "Lista de Precios:";
     //
     // btnextraersunat
     //
     this.btnextraersunat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnextraersunat.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnextraersunat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnextraersunat.Image = global::BapFormulariosNet.Properties.Resources.go_sunat1;
     this.btnextraersunat.Location = new System.Drawing.Point(256, 80);
     this.btnextraersunat.Name = "btnextraersunat";
     this.btnextraersunat.Size = new System.Drawing.Size(90, 23);
     this.btnextraersunat.TabIndex = 100;
     this.btnextraersunat.ToolTip = "Extrae Datos";
     this.btnextraersunat.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnextraersunat.Click += new System.EventHandler(this.btnextraersunat_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(466, 76);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(401, 137);
     this.xtraTabControl1.TabIndex = 101;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.canticombo);
     this.xtraTabPage3.Controls.Add(this.label26);
     this.xtraTabPage3.Controls.Add(this.label25);
     this.xtraTabPage3.Controls.Add(this.preccombo);
     this.xtraTabPage3.Controls.Add(this.princombo);
     this.xtraTabPage3.Controls.Add(this.glosa);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage3.Text = "Observaciones";
     //
     // canticombo
     //
     this.canticombo.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.canticombo.Location = new System.Drawing.Point(295, 30);
     this.canticombo.Name = "canticombo";
     this.canticombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.canticombo.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.canticombo.Size = new System.Drawing.Size(67, 20);
     this.canticombo.TabIndex = 87;
     this.canticombo.EditValueChanged += new System.EventHandler(this.canticombo_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 64);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(55, 13);
     this.label26.TabIndex = 86;
     this.label26.Text = "Prec/Unit:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(210, 34);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(84, 13);
     this.label25.TabIndex = 85;
     this.label25.Text = "Nro de Combos:";
     //
     // preccombo
     //
     this.preccombo.Location = new System.Drawing.Point(295, 60);
     this.preccombo.Name = "preccombo";
     this.preccombo.ReadOnly = true;
     this.preccombo.Size = new System.Drawing.Size(67, 21);
     this.preccombo.TabIndex = 83;
     this.preccombo.Text = "0.00";
     this.preccombo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // princombo
     //
     this.princombo.AutoSize = true;
     this.princombo.Location = new System.Drawing.Point(219, 9);
     this.princombo.Name = "princombo";
     this.princombo.Size = new System.Drawing.Size(151, 17);
     this.princombo.TabIndex = 81;
     this.princombo.Text = "Imprimir en Detalle Combo";
     this.princombo.UseVisualStyleBackColor = true;
     this.princombo.CheckedChanged += new System.EventHandler(this.princombo_CheckedChanged);
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(18, 9);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(186, 72);
     this.glosa.TabIndex = 80;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.label23);
     this.xtraTabPage1.Controls.Add(this.importtarj);
     this.xtraTabPage1.Controls.Add(this.btn_del);
     this.xtraTabPage1.Controls.Add(this.btn_add);
     this.xtraTabPage1.Controls.Add(this.lstTarjGroup);
     this.xtraTabPage1.Controls.Add(this.dgbtarjetas);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage1.Text = "Pago con Tarjeta";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(73, 83);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 101;
     this.label23.Text = "Total >>";
     //
     // importtarj
     //
     this.importtarj.Location = new System.Drawing.Point(129, 80);
     this.importtarj.MaxLength = 8;
     this.importtarj.Name = "importtarj";
     this.importtarj.Size = new System.Drawing.Size(69, 21);
     this.importtarj.TabIndex = 100;
     this.importtarj.Text = "0.00";
     this.importtarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lstTarjGroup
     //
     this.lstTarjGroup.FormattingEnabled = true;
     this.lstTarjGroup.Location = new System.Drawing.Point(253, 12);
     this.lstTarjGroup.Name = "lstTarjGroup";
     this.lstTarjGroup.Size = new System.Drawing.Size(116, 56);
     this.lstTarjGroup.TabIndex = 97;
     //
     // dgbtarjetas
     //
     this.dgbtarjetas.AllowUserToAddRows = false;
     this.dgbtarjetas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbtarjetas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tarjetalogo,
     this._tarjetaid,
     this._tarjetaname,
     this._tarjetanum,
     this._tarjetaimpo,
     this._ddnni});
     this.dgbtarjetas.Location = new System.Drawing.Point(5, 12);
     this.dgbtarjetas.Name = "dgbtarjetas";
     this.dgbtarjetas.ReadOnly = true;
     this.dgbtarjetas.RowHeadersVisible = false;
     this.dgbtarjetas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgbtarjetas.Size = new System.Drawing.Size(214, 68);
     this.dgbtarjetas.TabIndex = 96;
     //
     // _tarjetalogo
     //
     this._tarjetalogo.DataPropertyName = "tarjetalogo";
     this._tarjetalogo.HeaderText = "TarJ";
     this._tarjetalogo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;
     this._tarjetalogo.Name = "_tarjetalogo";
     this._tarjetalogo.ReadOnly = true;
     this._tarjetalogo.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._tarjetalogo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._tarjetalogo.Width = 40;
     //
     // _tarjetaid
     //
     this._tarjetaid.DataPropertyName = "tarjetaid";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._tarjetaid.DefaultCellStyle = dataGridViewCellStyle10;
     this._tarjetaid.HeaderText = "Cod";
     this._tarjetaid.Name = "_tarjetaid";
     this._tarjetaid.ReadOnly = true;
     this._tarjetaid.Visible = false;
     this._tarjetaid.Width = 30;
     //
     // _tarjetaname
     //
     this._tarjetaname.DataPropertyName = "tarjetaname";
     this._tarjetaname.HeaderText = "Nom";
     this._tarjetaname.Name = "_tarjetaname";
     this._tarjetaname.ReadOnly = true;
     this._tarjetaname.Visible = false;
     //
     // _tarjetanum
     //
     this._tarjetanum.DataPropertyName = "tarjetanume";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this._tarjetanum.DefaultCellStyle = dataGridViewCellStyle11;
     this._tarjetanum.HeaderText = "Aprob.";
     this._tarjetanum.Name = "_tarjetanum";
     this._tarjetanum.ReadOnly = true;
     this._tarjetanum.Width = 80;
     //
     // _tarjetaimpo
     //
     this._tarjetaimpo.DataPropertyName = "tarjetaimpo";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle12.Format = "N2";
     dataGridViewCellStyle12.NullValue = null;
     this._tarjetaimpo.DefaultCellStyle = dataGridViewCellStyle12;
     this._tarjetaimpo.HeaderText = "Importe";
     this._tarjetaimpo.Name = "_tarjetaimpo";
     this._tarjetaimpo.ReadOnly = true;
     this._tarjetaimpo.Width = 80;
     //
     // _ddnni
     //
     this._ddnni.DataPropertyName = "ddnni";
     this._ddnni.HeaderText = "Dni";
     this._ddnni.Name = "_ddnni";
     this._ddnni.ReadOnly = true;
     this._ddnni.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.numnotac);
     this.xtraTabPage2.Controls.Add(this.sernotac);
     this.xtraTabPage2.Controls.Add(this.tipnotac);
     this.xtraTabPage2.Controls.Add(this.numguia);
     this.xtraTabPage2.Controls.Add(this.serguia);
     this.xtraTabPage2.Controls.Add(this.tipguia);
     this.xtraTabPage2.Controls.Add(this.numfac);
     this.xtraTabPage2.Controls.Add(this.serfac);
     this.xtraTabPage2.Controls.Add(this.tipfac);
     this.xtraTabPage2.Controls.Add(this.recep_fecha);
     this.xtraTabPage2.Controls.Add(this.recep_dni);
     this.xtraTabPage2.Controls.Add(this.recep_name);
     this.xtraTabPage2.Controls.Add(this.chkNC);
     this.xtraTabPage2.Controls.Add(this.chkGR);
     this.xtraTabPage2.Controls.Add(this.chkFA);
     this.xtraTabPage2.Controls.Add(this.fechnotac);
     this.xtraTabPage2.Controls.Add(this.fechguia);
     this.xtraTabPage2.Controls.Add(this.fechfac);
     this.xtraTabPage2.Controls.Add(this.label29);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Controls.Add(this.label27);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage2.Text = "Docs Referencia";
     //
     // numnotac
     //
     //
     //
     //
     this.numnotac.Border.Class = "TextBoxBorder";
     this.numnotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numnotac.ButtonCustom.Tooltip = "";
     this.numnotac.ButtonCustom2.Tooltip = "";
     this.numnotac.Location = new System.Drawing.Point(88, 60);
     this.numnotac.MaxLength = 10;
     this.numnotac.Name = "numnotac";
     this.numnotac.PreventEnterBeep = true;
     this.numnotac.Size = new System.Drawing.Size(79, 21);
     this.numnotac.TabIndex = 94;
     //
     // sernotac
     //
     //
     //
     //
     this.sernotac.Border.Class = "TextBoxBorder";
     this.sernotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sernotac.ButtonCustom.Tooltip = "";
     this.sernotac.ButtonCustom2.Tooltip = "";
     this.sernotac.Location = new System.Drawing.Point(49, 60);
     this.sernotac.MaxLength = 4;
     this.sernotac.Name = "sernotac";
     this.sernotac.PreventEnterBeep = true;
     this.sernotac.Size = new System.Drawing.Size(37, 21);
     this.sernotac.TabIndex = 93;
     //
     // tipnotac
     //
     this.tipnotac.DisplayMember = "Text";
     this.tipnotac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipnotac.FormattingEnabled = true;
     this.tipnotac.ItemHeight = 15;
     this.tipnotac.Items.AddRange(new object[] {
     this.comboItem5});
     this.tipnotac.Location = new System.Drawing.Point(6, 60);
     this.tipnotac.Name = "tipnotac";
     this.tipnotac.Size = new System.Drawing.Size(40, 21);
     this.tipnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipnotac.TabIndex = 92;
     this.tipnotac.Text = "NC";
     //
     // comboItem5
     //
     this.comboItem5.Text = "NC";
     //
     // numguia
     //
     //
     //
     //
     this.numguia.Border.Class = "TextBoxBorder";
     this.numguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numguia.ButtonCustom.Tooltip = "";
     this.numguia.ButtonCustom2.Tooltip = "";
     this.numguia.Location = new System.Drawing.Point(88, 36);
     this.numguia.MaxLength = 10;
     this.numguia.Name = "numguia";
     this.numguia.PreventEnterBeep = true;
     this.numguia.Size = new System.Drawing.Size(79, 21);
     this.numguia.TabIndex = 91;
     //
     // serguia
     //
     //
     //
     //
     this.serguia.Border.Class = "TextBoxBorder";
     this.serguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serguia.ButtonCustom.Tooltip = "";
     this.serguia.ButtonCustom2.Tooltip = "";
     this.serguia.Location = new System.Drawing.Point(49, 36);
     this.serguia.MaxLength = 4;
     this.serguia.Name = "serguia";
     this.serguia.PreventEnterBeep = true;
     this.serguia.Size = new System.Drawing.Size(37, 21);
     this.serguia.TabIndex = 90;
     //
     // tipguia
     //
     this.tipguia.DisplayMember = "Text";
     this.tipguia.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipguia.FormattingEnabled = true;
     this.tipguia.ItemHeight = 15;
     this.tipguia.Items.AddRange(new object[] {
     this.comboItem3});
     this.tipguia.Location = new System.Drawing.Point(6, 36);
     this.tipguia.Name = "tipguia";
     this.tipguia.Size = new System.Drawing.Size(40, 21);
     this.tipguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipguia.TabIndex = 89;
     this.tipguia.Text = "GR";
     //
     // comboItem3
     //
     this.comboItem3.Text = "GR";
     //
     // numfac
     //
     //
     //
     //
     this.numfac.Border.Class = "TextBoxBorder";
     this.numfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numfac.ButtonCustom.Tooltip = "";
     this.numfac.ButtonCustom2.Tooltip = "";
     this.numfac.Location = new System.Drawing.Point(88, 12);
     this.numfac.MaxLength = 10;
     this.numfac.Name = "numfac";
     this.numfac.PreventEnterBeep = true;
     this.numfac.Size = new System.Drawing.Size(79, 21);
     this.numfac.TabIndex = 88;
     this.numfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numfac_KeyDown);
     //
     // serfac
     //
     //
     //
     //
     this.serfac.Border.Class = "TextBoxBorder";
     this.serfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serfac.ButtonCustom.Tooltip = "";
     this.serfac.ButtonCustom2.Tooltip = "";
     this.serfac.Location = new System.Drawing.Point(49, 12);
     this.serfac.MaxLength = 4;
     this.serfac.Name = "serfac";
     this.serfac.PreventEnterBeep = true;
     this.serfac.Size = new System.Drawing.Size(37, 21);
     this.serfac.TabIndex = 87;
     this.serfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.serfac_KeyDown);
     //
     // tipfac
     //
     this.tipfac.DisplayMember = "Text";
     this.tipfac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipfac.FormattingEnabled = true;
     this.tipfac.ItemHeight = 15;
     this.tipfac.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.tipfac.Location = new System.Drawing.Point(6, 12);
     this.tipfac.Name = "tipfac";
     this.tipfac.Size = new System.Drawing.Size(40, 21);
     this.tipfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipfac.TabIndex = 86;
     //
     // comboItem1
     //
     this.comboItem1.Text = "FA";
     //
     // comboItem2
     //
     this.comboItem2.Text = "BV";
     //
     // recep_fecha
     //
     //
     //
     //
     this.recep_fecha.BackgroundStyle.Class = "DateTimeInputBackground";
     this.recep_fecha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.ButtonClear.Tooltip = "";
     this.recep_fecha.ButtonCustom.Tooltip = "";
     this.recep_fecha.ButtonCustom2.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.recep_fecha.ButtonDropDown.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Visible = true;
     this.recep_fecha.ButtonFreeText.Tooltip = "";
     this.recep_fecha.IsPopupCalendarOpen = false;
     this.recep_fecha.Location = new System.Drawing.Point(297, 79);
     //
     //
     //
     this.recep_fecha.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.recep_fecha.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.recep_fecha.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.recep_fecha.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.TodayButtonVisible = true;
     this.recep_fecha.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.recep_fecha.Name = "recep_fecha";
     this.recep_fecha.Size = new System.Drawing.Size(82, 21);
     this.recep_fecha.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.recep_fecha.TabIndex = 85;
     //
     // recep_dni
     //
     //
     //
     //
     this.recep_dni.Border.Class = "TextBoxBorder";
     this.recep_dni.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_dni.ButtonCustom.Tooltip = "";
     this.recep_dni.ButtonCustom2.Tooltip = "";
     this.recep_dni.Location = new System.Drawing.Point(297, 58);
     this.recep_dni.MaxLength = 8;
     this.recep_dni.Name = "recep_dni";
     this.recep_dni.PreventEnterBeep = true;
     this.recep_dni.Size = new System.Drawing.Size(83, 21);
     this.recep_dni.TabIndex = 84;
     //
     // recep_name
     //
     //
     //
     //
     this.recep_name.Border.Class = "TextBoxBorder";
     this.recep_name.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_name.ButtonCustom.Tooltip = "";
     this.recep_name.ButtonCustom2.Tooltip = "";
     this.recep_name.Location = new System.Drawing.Point(269, 21);
     this.recep_name.MaxLength = 100;
     this.recep_name.Multiline = true;
     this.recep_name.Name = "recep_name";
     this.recep_name.PreventEnterBeep = true;
     this.recep_name.Size = new System.Drawing.Size(111, 36);
     this.recep_name.TabIndex = 83;
     //
     // chkNC
     //
     //
     //
     //
     this.chkNC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkNC.Location = new System.Drawing.Point(247, 58);
     this.chkNC.Name = "chkNC";
     this.chkNC.Size = new System.Drawing.Size(16, 23);
     this.chkNC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkNC.TabIndex = 82;
     this.chkNC.CheckedChanged += new System.EventHandler(this.chkNC_CheckedChanged);
     //
     // chkGR
     //
     //
     //
     //
     this.chkGR.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkGR.Location = new System.Drawing.Point(247, 36);
     this.chkGR.Name = "chkGR";
     this.chkGR.Size = new System.Drawing.Size(16, 23);
     this.chkGR.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkGR.TabIndex = 81;
     this.chkGR.CheckedChanged += new System.EventHandler(this.chkGR_CheckedChanged);
     //
     // chkFA
     //
     //
     //
     //
     this.chkFA.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkFA.Location = new System.Drawing.Point(247, 12);
     this.chkFA.Name = "chkFA";
     this.chkFA.Size = new System.Drawing.Size(16, 23);
     this.chkFA.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkFA.TabIndex = 80;
     this.chkFA.CheckedChanged += new System.EventHandler(this.chkFA_CheckedChanged);
     //
     // fechnotac
     //
     //
     //
     //
     this.fechnotac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechnotac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.ButtonClear.Tooltip = "";
     this.fechnotac.ButtonCustom.Tooltip = "";
     this.fechnotac.ButtonCustom2.Tooltip = "";
     this.fechnotac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechnotac.ButtonDropDown.Tooltip = "";
     this.fechnotac.ButtonDropDown.Visible = true;
     this.fechnotac.ButtonFreeText.Tooltip = "";
     this.fechnotac.IsPopupCalendarOpen = false;
     this.fechnotac.Location = new System.Drawing.Point(168, 59);
     //
     //
     //
     this.fechnotac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechnotac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechnotac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechnotac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.TodayButtonVisible = true;
     this.fechnotac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechnotac.Name = "fechnotac";
     this.fechnotac.Size = new System.Drawing.Size(82, 21);
     this.fechnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechnotac.TabIndex = 79;
     //
     // fechguia
     //
     //
     //
     //
     this.fechguia.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechguia.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.ButtonClear.Tooltip = "";
     this.fechguia.ButtonCustom.Tooltip = "";
     this.fechguia.ButtonCustom2.Tooltip = "";
     this.fechguia.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechguia.ButtonDropDown.Tooltip = "";
     this.fechguia.ButtonDropDown.Visible = true;
     this.fechguia.ButtonFreeText.Tooltip = "";
     this.fechguia.IsPopupCalendarOpen = false;
     this.fechguia.Location = new System.Drawing.Point(168, 36);
     //
     //
     //
     this.fechguia.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechguia.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechguia.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechguia.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.TodayButtonVisible = true;
     this.fechguia.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechguia.Name = "fechguia";
     this.fechguia.Size = new System.Drawing.Size(82, 21);
     this.fechguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechguia.TabIndex = 78;
     //
     // fechfac
     //
     //
     //
     //
     this.fechfac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechfac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.ButtonClear.Tooltip = "";
     this.fechfac.ButtonCustom.Tooltip = "";
     this.fechfac.ButtonCustom2.Tooltip = "";
     this.fechfac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechfac.ButtonDropDown.Tooltip = "";
     this.fechfac.ButtonDropDown.Visible = true;
     this.fechfac.ButtonFreeText.Tooltip = "";
     this.fechfac.IsPopupCalendarOpen = false;
     this.fechfac.Location = new System.Drawing.Point(168, 12);
     //
     //
     //
     this.fechfac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechfac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechfac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechfac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.TodayButtonVisible = true;
     this.fechfac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechfac.Name = "fechfac";
     this.fechfac.Size = new System.Drawing.Size(82, 21);
     this.fechfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechfac.TabIndex = 77;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(225, 84);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 72;
     this.label29.Text = "Fecha Recep:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(269, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(29, 13);
     this.label28.TabIndex = 69;
     this.label28.Text = "DNI:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(271, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(55, 13);
     this.label27.TabIndex = 67;
     this.label27.Text = "Receptor:";
     //
     // Frm_ventas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(993, 560);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnextraersunat);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.lstListaprec);
     this.Controls.Add(this.pdtimagen);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.telef);
     this.Controls.Add(this.vendpername);
     this.Controls.Add(this.vendperid);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetallemov);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.lblruc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ventas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modulo de Ventas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_movimiento_FormClosing);
     this.Load += new System.EventHandler(this.Frm_ventas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_movimiento_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #47
0
        public StepMovePopUp(
            Dictionary <string, SmcvData.StepInfo> stepInfoDic,
            Dictionary <string, SmcvData.WipDetail> wipCurStepDic, Dictionary <string, SmcvData.WipDetail> wipMainStepDic,
            List <string> maindatoryStepList,
            bool isTimeConditionDay, bool isSelectedInputWip,
            DevExpress.XtraEditors.ComboBoxEdit paramShopIdComboBox,
            System.Windows.Forms.Label dayShiftLabel, DevExpress.XtraEditors.DateEdit paramFromDateEdit,
            IExperimentResultItem result,
            DevExpress.XtraEditors.SpinEdit paramDayShiftSpinEdit)
        {
            InitializeComponent();

            _stepInfoDic        = stepInfoDic;
            _maindatoryStepList = maindatoryStepList;
            _wipCurStepDic      = wipCurStepDic;
            _wipMainStepDic     = wipMainStepDic;

            _result = result;

            this.fromTimeEdit.DateTime = paramFromDateEdit.DateTime;
            this.fromTimeEdit.Properties.VistaDisplayMode = DevExpress.Utils.DefaultBoolean.True;
            this.fromTimeEdit.Properties.VistaEditTime    = DevExpress.Utils.DefaultBoolean.True;

            this.hourRadioButton.Checked  = isTimeConditionDay;
            this.shiftRadioButton.Checked = isTimeConditionDay ? false : true;
            this.hourShiftRangeLabel.Text = dayShiftLabel.Text;

            this.wipCondInputBtn.Checked   = isSelectedInputWip;
            this.wipCondSimTimeBtn.Checked = isSelectedInputWip ? false : true;

            foreach (string shopID in paramShopIdComboBox.Properties.Items)
            {
                this.shopIdComboBoxEdit.Properties.Items.Add(shopID);
            }
            this.shopIdComboBoxEdit.SelectedIndex = paramShopIdComboBox.SelectedIndex;

            this.hourShiftSpinEdit.Value = paramDayShiftSpinEdit.Value;

            this.mainOnlyCheckBox.Checked = true;

            var modelContext = this._result.GetCtx <ModelDataContext>();

            //this.GetConsInfo();
            this._eqpInfoDT = Globals.GetConsInfo(modelContext);

            _selectedEqpGrpInAreaList = null;
            _eqpGrpsInAreaDic         = new Dictionary <string, List <string> >();

            //string filter = string.Format("{0} = '{1}'", SimInputData.ConstSchema.CATEGORY, "AREA_INFO");
            //DataRow[] drs = this._eqpInfoDT.Select(filter);

            //DataTable dtConst = _result.LoadInput(SimInputData.InputName.Const, filter);

            List <string> eqpGrpsAllInAreaList = new List <string>();

            foreach (DataRow drow in _eqpInfoDT.Rows)
            {
                SimInputData.Const configConst = new SimInputData.Const(drow);

                if (this.areaChkBoxEdit.Properties.Items.Contains(configConst.Code) == false)
                {
                    this.areaChkBoxEdit.Properties.Items.Add(configConst.Code);
                }

                string[] eqpGrps = configConst.Description.Split('@');
                foreach (string eqpGrp in eqpGrps)
                {
                    if (eqpGrpsAllInAreaList.Contains(eqpGrp) == false)
                    {
                        eqpGrpsAllInAreaList.Add(eqpGrp);
                    }

                    List <string> eqpGrpList;
                    if (_eqpGrpsInAreaDic.TryGetValue(configConst.Code, out eqpGrpList) == false)
                    {
                        _eqpGrpsInAreaDic.Add(configConst.Code, eqpGrpList = new List <string>());
                    }

                    if (eqpGrpList.Contains(eqpGrp) == false)
                    {
                        eqpGrpList.Add(eqpGrp);
                    }
                }
            }

            if (this.areaChkBoxEdit.Properties.Items.Contains("OTHERS") == false)
            {
                this.areaChkBoxEdit.Properties.Items.Add("OTHERS");
            }

            var eqpGrpInEqpList = modelContext.Eqp.Select(x => x.EQP_GROUP_ID).Distinct();

            foreach (var eqpGrp in eqpGrpInEqpList)
            {
                if (eqpGrpsAllInAreaList.Contains(eqpGrp) == false)
                {
                    List <string> eqpGrpList;
                    if (_eqpGrpsInAreaDic.TryGetValue("OTHERS", out eqpGrpList) == false)
                    {
                        _eqpGrpsInAreaDic.Add("OTHERS", eqpGrpList = new List <string>());
                    }

                    if (eqpGrpList.Contains(eqpGrp) == false)
                    {
                        eqpGrpList.Add(eqpGrp);
                    }
                }
            }


            if (this.areaChkBoxEdit.Properties.Items.Count > 0)
            {
                this.areaChkBoxEdit.CheckAll();
            }

            InitializeData();

            Query();
        }