Exemplo n.º 1
0
        ///
        /// Misc Event Handlers
        //


        private void rgHideDisabledTasks_SelectedIndexChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.RadioGroup rg = (DevExpress.XtraEditors.RadioGroup)sender;
            int index = rg.SelectedIndex;

            switch (index)
            {
            case 0:
            {
                VWA4Common.GlobalSettings.HideDisabledTasks = "0";
                break;
            }

            case 1:
            {
                VWA4Common.GlobalSettings.HideDisabledTasks = "1";
                break;
            }

            case 2:
            {
                VWA4Common.GlobalSettings.HideDisabledTasks = "2";
                break;
            }
            }
            LoadTaskBarData();
        }
Exemplo n.º 2
0
 public static void SelectedRadioItemByText(DevExpress.XtraEditors.RadioGroup radioGroup, string content)
 {
     for (int index = 0; index < radioGroup.Properties.Items.Count; index++)
     {
         if (radioGroup.Properties.Items[index].Description.ToUpper().Equals(content.ToUpper()))
         {
             radioGroup.SelectedIndex = index;
             break;
         }
     }
 }
Exemplo n.º 3
0
        public LocalizedItem(DevExpress.XtraEditors.RadioGroup radio, string[] resourceIds)
        {
            this.resourceIds = new string[resourceIds.Length];
            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.resourceIds[index] = resourceIds[index];
            }
            this.obj           = (object)radio;
            this.type          = ItemType.RadioGroup;
            this.defaultValues = new string[resourceIds.Length];

            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.defaultValues[index] = radio.Properties.Items[index].ToString();
            }
        }
Exemplo n.º 4
0
        private void gbMarket_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.RadioGroup rb = sender as DevExpress.XtraEditors.RadioGroup;
            if (rb == null)
            {
                return;
            }
            switch (rb.EditValue.ToString())
            {
            case "rb_market_0":
                //商品群組
                dwProdCt.SelectedText          = "";
                dwProdCt.Properties.DataSource = _D500Xx.GbGroup == "rb_s" ? ProdCtData.Filter("APDK_PROD_SUBTYPE='S'") : ProdCtData;//統計依照"股票各類群組"時僅開放"商品群組"選單,且選單內容僅提供APDK_PROD_SUBTYPE='S'的商品
                //2碼商品
                dwProdKdSto.SelectedText          = "";
                dwProdKdSto.Properties.DataSource = ProdKdStoData;
                //造市商品
                dwProdKd.SelectedText          = "";
                dwProdKd.Properties.DataSource = ProdKdData;
                break;

            case "rb_market_1":
                //商品群組
                dwProdCt.SelectedText          = "";
                dwProdCt.Properties.DataSource = _D500Xx.GbGroup == "rb_s" ? ProdCtCodeFilter.Filter("APDK_PROD_SUBTYPE='S'") : ProdCtCodeFilter;//統計依照"股票各類群組"時僅開放"商品群組"選單,且選單內容僅提供APDK_PROD_SUBTYPE='S'的商品
                //2碼商品
                dwProdKdSto.SelectedText          = "";
                dwProdKdSto.Properties.DataSource = ProdKdStoDataFilter;
                //造市商品
                dwProdKd.SelectedText          = "";
                dwProdKd.Properties.DataSource = ProdKdDataFilter;
                break;

            default:
                break;
            }

            DataTable dt = (DataTable)dwProdCt.Properties.DataSource;

            if (dt.Rows.Count <= 0)
            {
                dt.Rows.Add();
                dwProdCt.Properties.DataSource = dt;
            }
        }
Exemplo n.º 5
0
        private void rgDate_SelectedIndexChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.RadioGroup rb = sender as DevExpress.XtraEditors.RadioGroup;
            if (rb == null)
            {
                return;
            }
            switch (rb.EditValue.ToString())
            {
            case "rb_day":               //日期
                stDate.Visible = true;   //日期
                stDate.FocusHelper.FocusFirst();
                stWeek.Visible  = false; //週期
                stMonth.Visible = false; //月份
                stYear.Visible  = false; //年度
                break;

            case "rb_week":              //週期
                stDate.Visible = false;  //日期
                stWeek.Visible = true;   //週期
                stWeek.FocusHelper.FocusFirst();
                stMonth.Visible = false; //月份
                stYear.Visible  = false; //年度
                break;

            case "rb_month":             //月份
                stDate.Visible  = false; //日期
                stWeek.Visible  = false; //週期
                stMonth.Visible = true;  //月份
                stMonth.FocusHelper.FocusFirst();
                stYear.Visible = false;  //年度
                break;

            case "rb_year":              //年度
                stDate.Visible  = false; //日期
                stWeek.Visible  = false; //週期
                stMonth.Visible = false; //月份
                stYear.Visible  = true;  //年度
                stYear.FocusHelper.FocusFirst();
                break;

            default:
                break;
            }
        }
Exemplo n.º 6
0
        private void gbDetial_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.RadioGroup rb = sender as DevExpress.XtraEditors.RadioGroup;
            if (rb == null)
            {
                return;
            }

            switch (rb.EditValue.ToString())
            {
            case "rb_detail":
                layoutControl1.Enabled = false;
                gbReportType.EditValue = "rb_date";
                gbReportType.Enabled   = false;
                break;

            default:
                layoutControl1.Enabled = true;
                gbReportType.Enabled   = true;
                break;
            }
        }
Exemplo n.º 7
0
        private void rgDate_SelectedIndexChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.RadioGroup rb = sender as DevExpress.XtraEditors.RadioGroup;
            if (rb == null)
            {
                return;
            }
            switch (rb.EditValue.ToString())
            {
            case "rb_month"://月報
                emMonth.Enabled = true;
                sleYear.Enabled = false;
                break;

            case "rb_year"://年報
                emMonth.Enabled = false;
                sleYear.Enabled = true;
                break;

            default:
                break;
            }
        }
Exemplo n.º 8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
     DevExpress.XtraCharts.PieSeriesView pieSeriesView2 = new DevExpress.XtraCharts.PieSeriesView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.labelControlMark = new DevExpress.XtraEditors.LabelControl();
     this.radioGroupOption = new DevExpress.XtraEditors.RadioGroup();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.ReportPage = new DevExpress.XtraTab.XtraTabPage();
     this.ReportListView = new DevExpress.XtraGrid.GridControl();
     this.gridViewMain = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ChartPage = new DevExpress.XtraTab.XtraTabPage();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupOption.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.ReportPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReportListView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMain)).BeginInit();
     this.ChartPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnExport);
     this.panelControl1.Controls.Add(this.btnClose);
     this.panelControl1.Controls.Add(this.labelControlMark);
     this.panelControl1.Controls.Add(this.radioGroupOption);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 416);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(804, 62);
     this.panelControl1.TabIndex = 6;
     //
     // btnExport
     //
     this.btnExport.Location = new System.Drawing.Point(591, 22);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(105, 23);
     this.btnExport.TabIndex = 6;
     this.btnExport.Text = "导出为Excel";
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(718, 22);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 4;
     this.btnClose.Text = "关闭";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // labelControlMark
     //
     this.labelControlMark.Appearance.Font = new System.Drawing.Font("黑体", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelControlMark.Appearance.Options.UseFont = true;
     this.labelControlMark.Location = new System.Drawing.Point(12, 12);
     this.labelControlMark.Name = "labelControlMark";
     this.labelControlMark.Size = new System.Drawing.Size(324, 35);
     this.labelControlMark.TabIndex = 3;
     this.labelControlMark.Text = "总分: 100 没有错误";
     //
     // radioGroupOption
     //
     this.radioGroupOption.EditValue = true;
     this.radioGroupOption.Location = new System.Drawing.Point(409, 22);
     this.radioGroupOption.Name = "radioGroupOption";
     this.radioGroupOption.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.radioGroupOption.Properties.Appearance.Options.UseBackColor = true;
     this.radioGroupOption.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "检查类型"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(false, "检查图层")});
     this.radioGroupOption.Size = new System.Drawing.Size(176, 23);
     this.radioGroupOption.TabIndex = 2;
     this.radioGroupOption.SelectedIndexChanged += new System.EventHandler(this.radioGroupOption_SelectedIndexChanged);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.ReportPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(804, 416);
     this.xtraTabControl1.TabIndex = 7;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.ReportPage,
     this.ChartPage});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // ReportPage
     //
     this.ReportPage.Controls.Add(this.ReportListView);
     this.ReportPage.Name = "ReportPage";
     this.ReportPage.Size = new System.Drawing.Size(795, 385);
     this.ReportPage.Text = "检查结果统计表";
     //
     // ReportListView
     //
     this.ReportListView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ReportListView.EmbeddedNavigator.Name = "";
     gridLevelNode1.RelationName = "Level1";
     this.ReportListView.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.ReportListView.Location = new System.Drawing.Point(0, 0);
     this.ReportListView.MainView = this.gridViewMain;
     this.ReportListView.Name = "ReportListView";
     this.ReportListView.Size = new System.Drawing.Size(795, 385);
     this.ReportListView.TabIndex = 1;
     this.ReportListView.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMain});
     //
     // gridViewMain
     //
     this.gridViewMain.GridControl = this.ReportListView;
     this.gridViewMain.Name = "gridViewMain";
     this.gridViewMain.OptionsBehavior.Editable = false;
     this.gridViewMain.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMain.OptionsCustomization.AllowFilter = false;
     this.gridViewMain.OptionsMenu.EnableColumnMenu = false;
     this.gridViewMain.OptionsMenu.EnableFooterMenu = false;
     this.gridViewMain.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridViewMain.OptionsView.ShowGroupPanel = false;
     this.gridViewMain.OptionsView.ShowIndicator = false;
     //
     // ChartPage
     //
     this.ChartPage.Controls.Add(this.chartControl1);
     this.ChartPage.Name = "ChartPage";
     this.ChartPage.Size = new System.Drawing.Size(795, 385);
     this.ChartPage.Text = "检查结果统计图";
     //
     // chartControl1
     //
     this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Location = new System.Drawing.Point(0, 0);
     this.chartControl1.Name = "chartControl1";
     series1.Name = "Series 1";
     pieSeriesView1.RuntimeExploding = false;
     series1.View = pieSeriesView1;
     series1.ShowInLegend = false;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     pieSeriesView2.RuntimeExploding = false;
     this.chartControl1.SeriesTemplate.View = pieSeriesView2;
     this.chartControl1.Size = new System.Drawing.Size(795, 385);
     this.chartControl1.TabIndex = 0;
     //
     // frmAppraise
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 478);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmAppraise";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "检查结果分析评价";
     this.Load += new System.EventHandler(this.frmAppraise_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupOption.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.ReportPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ReportListView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMain)).EndInit();
     this.ChartPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 9
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);
 }
Exemplo n.º 10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridPTPackage = new DevExpress.XtraGrid.GridControl();
     this.gvPTPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPTPackageRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvPTPackageSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvPTPackageTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label6 = new System.Windows.Forms.Label();
     this.RGPTPackage = new DevExpress.XtraEditors.RadioGroup();
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.gridPTPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPTPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGPTPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridPTPackage
     //
     this.gridPTPackage.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridPTPackage.Location = new System.Drawing.Point(0, 96);
     this.gridPTPackage.MainView = this.gvPTPackage;
     this.gridPTPackage.Name = "gridPTPackage";
     this.gridPTPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_Employee});
     this.gridPTPackage.Size = new System.Drawing.Size(960, 384);
     this.gridPTPackage.TabIndex = 16;
     this.gridPTPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPTPackage,
     this.gridView7});
     //
     // gvPTPackage
     //
     this.gvPTPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gvPTPackageRank,
     this.gridColumn11,
     this.gridColumn12,
     this.gvPTPackageSalesPercentage,
     this.gvPTPackageTotalSales});
     this.gvPTPackage.GridControl = this.gridPTPackage;
     this.gvPTPackage.Name = "gvPTPackage";
     this.gvPTPackage.OptionsBehavior.Editable = false;
     this.gvPTPackage.OptionsCustomization.AllowFilter = false;
     this.gvPTPackage.OptionsCustomization.AllowGroup = false;
     this.gvPTPackage.OptionsCustomization.AllowSort = false;
     this.gvPTPackage.OptionsView.ShowGroupPanel = false;
     this.gvPTPackage.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvPTPackage_CustomUnboundColumnData);
     this.gvPTPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvPTPackage_FocusedRowChanged);
     //
     // gvPTPackageRank
     //
     this.gvPTPackageRank.Caption = "Rank";
     this.gvPTPackageRank.FieldName = "gridColumn1";
     this.gvPTPackageRank.Name = "gvPTPackageRank";
     this.gvPTPackageRank.SummaryItem.DisplayFormat = "{0}";
     this.gvPTPackageRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvPTPackageRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvPTPackageRank.Visible = true;
     this.gvPTPackageRank.VisibleIndex = 0;
     this.gvPTPackageRank.Width = 50;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Employee Name";
     this.gridColumn11.ColumnEdit = this.lk_Employee;
     this.gridColumn11.FieldName = "nSalesPersonID";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 1;
     this.gridColumn11.Width = 54;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Branch Code";
     this.gridColumn12.FieldName = "strBranchCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 4;
     this.gridColumn12.Width = 72;
     //
     // gvPTPackageSalesPercentage
     //
     this.gvPTPackageSalesPercentage.Caption = "Sales Percentage";
     this.gvPTPackageSalesPercentage.FieldName = "SalesPercentage";
     this.gvPTPackageSalesPercentage.Name = "gvPTPackageSalesPercentage";
     this.gvPTPackageSalesPercentage.Visible = true;
     this.gvPTPackageSalesPercentage.VisibleIndex = 2;
     this.gvPTPackageSalesPercentage.Width = 54;
     //
     // gvPTPackageTotalSales
     //
     this.gvPTPackageTotalSales.Caption = "Total Sales";
     this.gvPTPackageTotalSales.FieldName = "TotalSales";
     this.gvPTPackageTotalSales.Name = "gvPTPackageTotalSales";
     this.gvPTPackageTotalSales.Visible = true;
     this.gvPTPackageTotalSales.VisibleIndex = 3;
     this.gvPTPackageTotalSales.Width = 54;
     //
     // gridView7
     //
     this.gridView7.GridControl = this.gridPTPackage;
     this.gridView7.Name = "gridView7";
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(0, 40);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(944, 24);
     this.label6.TabIndex = 18;
     this.label6.Text = "Ranking of Personal Trainer Sales";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGPTPackage
     //
     this.RGPTPackage.EditValue = 0;
     this.RGPTPackage.Location = new System.Drawing.Point(0, 64);
     this.RGPTPackage.Name = "RGPTPackage";
     this.RGPTPackage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGPTPackage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RGPTPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGPTPackage.Properties.Appearance.Options.UseFont = true;
     this.RGPTPackage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGPTPackage.Properties.Columns = 2;
     this.RGPTPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Personal Trainer Sales By %"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Personal Trainer Sales")});
     this.RGPTPackage.Size = new System.Drawing.Size(496, 32);
     this.RGPTPackage.TabIndex = 17;
     this.RGPTPackage.SelectedIndexChanged += new System.EventHandler(this.RGPTPackage_SelectedIndexChanged);
     this.RGPTPackage.Click += new System.EventHandler(this.RGPTPackage_Click);
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 35;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 34;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 33;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 32;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(492, 67);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 36;
     this.button1.Text = "Print";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmSRPTPackage
     //
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.gridPTPackage);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.RGPTPackage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRPTPackage";
     this.Text = "frmSRPTPackage";
     this.Load += new System.EventHandler(this.frmSRPTPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridPTPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPTPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGPTPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.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(PopupRegistration));
     this.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
     this.panelLicense = new DevExpress.XtraEditors.PanelControl();
     this.textEditFile = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.textEditKey3 = new DevExpress.XtraEditors.TextEdit();
     this.textEditKey2 = new DevExpress.XtraEditors.TextEdit();
     this.textEditKey4 = new DevExpress.XtraEditors.TextEdit();
     this.textEditKey1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.btBrowse = new DevExpress.XtraEditors.SimpleButton();
     this.radioGroupTrial = new DevExpress.XtraEditors.RadioGroup();
     this.memoEditTrial = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.btOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
     this.groupControlWarning.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
     this.panelControlSetting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelLicense)).BeginInit();
     this.panelLicense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditFile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupTrial.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditTrial.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControlWarning
     //
     this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
     this.groupControlWarning.Controls.Add(this.panelControl1);
     this.groupControlWarning.Controls.Add(this.panelControlSetting);
     this.groupControlWarning.Controls.Add(this.panelControl2);
     this.groupControlWarning.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlWarning.Location = new System.Drawing.Point(20, 20);
     this.groupControlWarning.Name = "groupControlWarning";
     this.groupControlWarning.Padding = new System.Windows.Forms.Padding(5);
     this.groupControlWarning.Size = new System.Drawing.Size(584, 217);
     this.groupControlWarning.TabIndex = 342;
     this.groupControlWarning.Text = "ลงทะเบียน";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.ContentImage = ((System.Drawing.Image)(resources.GetObject("panelControl1.ContentImage")));
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelControl1.Location = new System.Drawing.Point(7, 27);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Padding = new System.Windows.Forms.Padding(5);
     this.panelControl1.Size = new System.Drawing.Size(164, 145);
     this.panelControl1.TabIndex = 1;
     //
     // panelControlSetting
     //
     this.panelControlSetting.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlSetting.Controls.Add(this.panelLicense);
     this.panelControlSetting.Controls.Add(this.radioGroupTrial);
     this.panelControlSetting.Controls.Add(this.memoEditTrial);
     this.panelControlSetting.Controls.Add(this.labelControl2);
     this.panelControlSetting.Controls.Add(this.labelControl1);
     this.panelControlSetting.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelControlSetting.Location = new System.Drawing.Point(177, 27);
     this.panelControlSetting.Name = "panelControlSetting";
     this.panelControlSetting.Padding = new System.Windows.Forms.Padding(5);
     this.panelControlSetting.Size = new System.Drawing.Size(400, 145);
     this.panelControlSetting.TabIndex = 0;
     //
     // panelLicense
     //
     this.panelLicense.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelLicense.Controls.Add(this.textEditFile);
     this.panelLicense.Controls.Add(this.labelControl7);
     this.panelLicense.Controls.Add(this.labelControl6);
     this.panelLicense.Controls.Add(this.labelControl5);
     this.panelLicense.Controls.Add(this.textEditKey3);
     this.panelLicense.Controls.Add(this.textEditKey2);
     this.panelLicense.Controls.Add(this.textEditKey4);
     this.panelLicense.Controls.Add(this.textEditKey1);
     this.panelLicense.Controls.Add(this.labelControl4);
     this.panelLicense.Controls.Add(this.labelControl3);
     this.panelLicense.Controls.Add(this.btBrowse);
     this.panelLicense.Enabled = false;
     this.panelLicense.Location = new System.Drawing.Point(30, 82);
     this.panelLicense.Name = "panelLicense";
     this.panelLicense.Size = new System.Drawing.Size(360, 63);
     this.panelLicense.TabIndex = 319;
     //
     // textEditFile
     //
     this.textEditFile.Location = new System.Drawing.Point(84, 5);
     this.textEditFile.Name = "textEditFile";
     this.textEditFile.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditFile.Properties.Appearance.Options.UseBackColor = true;
     this.textEditFile.Properties.ReadOnly = true;
     this.textEditFile.Size = new System.Drawing.Size(204, 20);
     this.textEditFile.TabIndex = 327;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(257, 38);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(4, 13);
     this.labelControl7.TabIndex = 326;
     this.labelControl7.Text = "-";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(193, 38);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(4, 13);
     this.labelControl6.TabIndex = 325;
     this.labelControl6.Text = "-";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(130, 38);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(4, 13);
     this.labelControl5.TabIndex = 324;
     this.labelControl5.Text = "-";
     //
     // textEditKey3
     //
     this.textEditKey3.Location = new System.Drawing.Point(210, 39);
     this.textEditKey3.Name = "textEditKey3";
     this.textEditKey3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditKey3.Properties.Mask.BeepOnError = true;
     this.textEditKey3.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditKey3.Properties.MaxLength = 5;
     this.textEditKey3.Size = new System.Drawing.Size(44, 20);
     this.textEditKey3.TabIndex = 323;
     //
     // textEditKey2
     //
     this.textEditKey2.Location = new System.Drawing.Point(146, 39);
     this.textEditKey2.Name = "textEditKey2";
     this.textEditKey2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditKey2.Properties.Mask.BeepOnError = true;
     this.textEditKey2.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditKey2.Properties.MaxLength = 5;
     this.textEditKey2.Size = new System.Drawing.Size(44, 20);
     this.textEditKey2.TabIndex = 322;
     //
     // textEditKey4
     //
     this.textEditKey4.Location = new System.Drawing.Point(273, 39);
     this.textEditKey4.Name = "textEditKey4";
     this.textEditKey4.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditKey4.Properties.Mask.BeepOnError = true;
     this.textEditKey4.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditKey4.Properties.MaxLength = 5;
     this.textEditKey4.Size = new System.Drawing.Size(44, 20);
     this.textEditKey4.TabIndex = 321;
     //
     // textEditKey1
     //
     this.textEditKey1.Location = new System.Drawing.Point(84, 39);
     this.textEditKey1.Name = "textEditKey1";
     this.textEditKey1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditKey1.Properties.Mask.BeepOnError = true;
     this.textEditKey1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditKey1.Properties.MaxLength = 5;
     this.textEditKey1.Size = new System.Drawing.Size(44, 20);
     this.textEditKey1.TabIndex = 320;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(8, 38);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(66, 13);
     this.labelControl4.TabIndex = 319;
     this.labelControl4.Text = "Licence Key : ";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(12, 5);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(62, 13);
     this.labelControl3.TabIndex = 318;
     this.labelControl3.Text = "Licence file : ";
     //
     // btBrowse
     //
     this.btBrowse.Location = new System.Drawing.Point(294, 3);
     this.btBrowse.Name = "btBrowse";
     this.btBrowse.Size = new System.Drawing.Size(57, 22);
     this.btBrowse.TabIndex = 317;
     this.btBrowse.Text = "Browse";
     //
     // radioGroupTrial
     //
     this.radioGroupTrial.EditValue = 0;
     this.radioGroupTrial.Location = new System.Drawing.Point(6, -23);
     this.radioGroupTrial.Name = "radioGroupTrial";
     this.radioGroupTrial.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.radioGroupTrial.Properties.Appearance.Options.UseBackColor = true;
     this.radioGroupTrial.Properties.Appearance.Options.UseTextOptions = true;
     this.radioGroupTrial.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.radioGroupTrial.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.radioGroupTrial.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "")});
     this.radioGroupTrial.Size = new System.Drawing.Size(23, 127);
     this.radioGroupTrial.TabIndex = 318;
     this.radioGroupTrial.SelectedIndexChanged += new System.EventHandler(this.radioGroupTrial_SelectedIndexChanged);
     //
     // memoEditTrial
     //
     this.memoEditTrial.EditValue = "Trial version can not read data from electronic meter and limit check in 5 time.";
     this.memoEditTrial.Location = new System.Drawing.Point(36, 27);
     this.memoEditTrial.Name = "memoEditTrial";
     this.memoEditTrial.Properties.AcceptsReturn = false;
     this.memoEditTrial.Properties.AllowFocused = false;
     this.memoEditTrial.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.memoEditTrial.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.memoEditTrial.Properties.Appearance.Options.UseBackColor = true;
     this.memoEditTrial.Properties.Appearance.Options.UseForeColor = true;
     this.memoEditTrial.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.memoEditTrial.Properties.ReadOnly = true;
     this.memoEditTrial.Properties.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.memoEditTrial.Size = new System.Drawing.Size(360, 32);
     this.memoEditTrial.TabIndex = 317;
     this.memoEditTrial.TabStop = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(33, 63);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(93, 13);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "Register Licence";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(33, 5);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(161, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "This program is trial version.";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.btOK);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(7, 172);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(570, 38);
     this.panelControl2.TabIndex = 2;
     //
     // btOK
     //
     this.btOK.Location = new System.Drawing.Point(503, 6);
     this.btOK.Name = "btOK";
     this.btOK.Size = new System.Drawing.Size(57, 23);
     this.btOK.TabIndex = 0;
     this.btOK.Text = "OK";
     this.btOK.Click += new System.EventHandler(this.btOK_Click);
     //
     // PopupRegistration
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(624, 257);
     this.Controls.Add(this.groupControlWarning);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "PopupRegistration";
     this.Padding = new System.Windows.Forms.Padding(20);
     this.Text = "[ Software Name ]";
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).EndInit();
     this.groupControlWarning.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).EndInit();
     this.panelControlSetting.ResumeLayout(false);
     this.panelControlSetting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelLicense)).EndInit();
     this.panelLicense.ResumeLayout(false);
     this.panelLicense.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditFile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditKey1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupTrial.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditTrial.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
     this.textEditItemUnitPrice = new DevExpress.XtraEditors.TextEdit();
     this.labelControlItemPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlItemName = new DevExpress.XtraEditors.LabelControl();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemUnit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.radioGroupVat = new DevExpress.XtraEditors.RadioGroup();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemUnitPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupVat.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.simpleButton3.Dock = System.Windows.Forms.DockStyle.Top;
     this.simpleButton3.Location = new System.Drawing.Point(0, 0);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(461, 23);
     this.simpleButton3.TabIndex = 285;
     this.simpleButton3.Text = "เพิ่มข้อมูลรายละเอียดค่าใช้จ่ายเพิ่มเติม";
     //
     // textEditItemName
     //
     this.textEditItemName.Location = new System.Drawing.Point(134, 29);
     this.textEditItemName.Name = "textEditItemName";
     this.textEditItemName.Properties.Mask.BeepOnError = true;
     this.textEditItemName.Properties.Mask.EditMask = "([A-Z|a-z|0-9|ก-๙]| )*";
     this.textEditItemName.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemName.Size = new System.Drawing.Size(243, 20);
     this.textEditItemName.TabIndex = 304;
     //
     // textEditItemUnitPrice
     //
     this.textEditItemUnitPrice.EditValue = 0;
     this.textEditItemUnitPrice.Location = new System.Drawing.Point(134, 81);
     this.textEditItemUnitPrice.Name = "textEditItemUnitPrice";
     this.textEditItemUnitPrice.Properties.Mask.BeepOnError = true;
     this.textEditItemUnitPrice.Properties.Mask.EditMask = "n2";
     this.textEditItemUnitPrice.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemUnitPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditItemUnitPrice.Size = new System.Drawing.Size(243, 20);
     this.textEditItemUnitPrice.TabIndex = 303;
     //
     // labelControlItemPrice
     //
     this.labelControlItemPrice.Location = new System.Drawing.Point(36, 88);
     this.labelControlItemPrice.Name = "labelControlItemPrice";
     this.labelControlItemPrice.Size = new System.Drawing.Size(92, 13);
     this.labelControlItemPrice.TabIndex = 302;
     this.labelControlItemPrice.Text = "จำนวนเงินต่อหน่วย :";
     //
     // labelControlItemName
     //
     this.labelControlItemName.Location = new System.Drawing.Point(47, 36);
     this.labelControlItemName.Name = "labelControlItemName";
     this.labelControlItemName.Size = new System.Drawing.Size(81, 13);
     this.labelControlItemName.TabIndex = 301;
     this.labelControlItemName.Text = "รายการค่าใช้จ่าย :";
     //
     // bttSave
     //
     this.bttSave.Location = new System.Drawing.Point(134, 137);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(75, 35);
     this.bttSave.TabIndex = 300;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // bttCancel
     //
     this.bttCancel.Location = new System.Drawing.Point(215, 137);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(75, 35);
     this.bttCancel.TabIndex = 299;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(383, 36);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(20, 13);
     this.labelControl32.TabIndex = 305;
     this.labelControl32.Text = "บาท";
     //
     // textEditItemUnit
     //
     this.textEditItemUnit.EditValue = 0;
     this.textEditItemUnit.Location = new System.Drawing.Point(134, 55);
     this.textEditItemUnit.Name = "textEditItemUnit";
     this.textEditItemUnit.Properties.Mask.BeepOnError = true;
     this.textEditItemUnit.Properties.Mask.EditMask = "n0";
     this.textEditItemUnit.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemUnit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditItemUnit.Size = new System.Drawing.Size(243, 20);
     this.textEditItemUnit.TabIndex = 306;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(66, 62);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(62, 13);
     this.labelControl1.TabIndex = 307;
     this.labelControl1.Text = "จำนวนหน่วย :";
     //
     // radioGroupVat
     //
     this.radioGroupVat.EditValue = 1F;
     this.radioGroupVat.Location = new System.Drawing.Point(134, 107);
     this.radioGroupVat.Name = "radioGroupVat";
     this.radioGroupVat.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.radioGroupVat.Properties.Appearance.Options.UseBackColor = true;
     this.radioGroupVat.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.radioGroupVat.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1F, "คิดรวมกับยอดสุทธิ"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2F, "คิดเพิ่มจากยอดสุทธิ")});
     this.radioGroupVat.Size = new System.Drawing.Size(265, 24);
     this.radioGroupVat.TabIndex = 309;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(383, 88);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(20, 13);
     this.labelControl4.TabIndex = 313;
     this.labelControl4.Text = "บาท";
     //
     // RoomCheckOutAddItem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.radioGroupVat);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.textEditItemUnit);
     this.Controls.Add(this.labelControl32);
     this.Controls.Add(this.textEditItemName);
     this.Controls.Add(this.textEditItemUnitPrice);
     this.Controls.Add(this.labelControlItemPrice);
     this.Controls.Add(this.labelControlItemName);
     this.Controls.Add(this.bttSave);
     this.Controls.Add(this.bttCancel);
     this.Controls.Add(this.simpleButton3);
     this.Name = "RoomCheckOutAddItem";
     this.Size = new System.Drawing.Size(461, 206);
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemUnitPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupVat.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.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.txtNombre = new DevExpress.XtraEditors.TextEdit();
     this.lblCedula = new DevExpress.XtraEditors.LabelControl();
     this.tbcEmpleado = new System.Windows.Forms.TabControl();
     this.tpGenerales = new System.Windows.Forms.TabPage();
     this.txtid = new DevExpress.XtraEditors.TextEdit();
     this.rgGenero = new DevExpress.XtraEditors.RadioGroup();
     this.deFNacimiento = new DevExpress.XtraEditors.DateEdit();
     this.btnImagen = new DevExpress.XtraEditors.SimpleButton();
     this.btnBuscarCedula = new DevExpress.XtraEditors.SimpleButton();
     this.lblFecha = new DevExpress.XtraEditors.LabelControl();
     this.lblGenero = new DevExpress.XtraEditors.LabelControl();
     this.peFoto = new DevExpress.XtraEditors.PictureEdit();
     this.lblApellido = new DevExpress.XtraEditors.LabelControl();
     this.txtApellido = new DevExpress.XtraEditors.TextEdit();
     this.lblNombre = new DevExpress.XtraEditors.LabelControl();
     this.txtCedula = new DevExpress.XtraEditors.TextEdit();
     this.tpContrato = new System.Windows.Forms.TabPage();
     this.gcTelefono = new DevExpress.XtraEditors.GroupControl();
     this.txtOtro = new DevExpress.XtraEditors.TextEdit();
     this.lblOtro = new DevExpress.XtraEditors.LabelControl();
     this.txtCasa = new DevExpress.XtraEditors.TextEdit();
     this.lblCasa = new DevExpress.XtraEditors.LabelControl();
     this.txtMovil = new DevExpress.XtraEditors.TextEdit();
     this.lblMovil = new DevExpress.XtraEditors.LabelControl();
     this.txtGeneral = new DevExpress.XtraEditors.TextEdit();
     this.lblGeneral = new DevExpress.XtraEditors.LabelControl();
     this.txtCorreo = new DevExpress.XtraEditors.TextEdit();
     this.lblCorreo = new DevExpress.XtraEditors.LabelControl();
     this.lblDireccion = new DevExpress.XtraEditors.LabelControl();
     this.txtDireccion = new DevExpress.XtraEditors.MemoEdit();
     this.tpAcademico = new System.Windows.Forms.TabPage();
     this.dgvAcademico = new System.Windows.Forms.DataGridView();
     this.clsTituloBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.clsUniversidadBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.tpLaborales = new System.Windows.Forms.TabPage();
     this.cmbDepartamento = new DevExpress.XtraEditors.LookUpEdit();
     this.clsDepartamentoBindingSource3 = new System.Windows.Forms.BindingSource(this.components);
     this.cmbEstado = new DevExpress.XtraEditors.ComboBoxEdit();
     this.deFechaIngreso = new DevExpress.XtraEditors.DateEdit();
     this.lblEstado = new DevExpress.XtraEditors.LabelControl();
     this.lblCargo = new DevExpress.XtraEditors.LabelControl();
     this.lblDpartamento = new DevExpress.XtraEditors.LabelControl();
     this.lblFIngreso = new DevExpress.XtraEditors.LabelControl();
     this.cmbCargo = new DevExpress.XtraEditors.LookUpEdit();
     this.clsCargoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tpFamiliar = new System.Windows.Forms.TabPage();
     this.gcCargaFamiliar = new DevExpress.XtraGrid.GridControl();
     this.gvCargaFamiliar = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.clsEmpleadoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.clsTituloBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.clsUniversidadBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tituloBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tituloBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.cargoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.clsDepartamentoBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.clsDepartamentoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.clsDatosDepartamentoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.departamentoBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.titulo1BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.teHora = new DevExpress.XtraEditors.TimeEdit();
     this.lblHora = new DevExpress.XtraEditors.LabelControl();
     this.lblPUsuario = new DevExpress.XtraEditors.LabelControl();
     this.lblUsuario = new DevExpress.XtraEditors.LabelControl();
     this.tsMenu = new System.Windows.Forms.ToolStrip();
     this.tsbNuevo = new System.Windows.Forms.ToolStripButton();
     this.tsbGuardar = new System.Windows.Forms.ToolStripButton();
     this.tsbModificar = new System.Windows.Forms.ToolStripButton();
     this.tsbEliminar = new System.Windows.Forms.ToolStripButton();
     this.clsDepartamentoBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.universidadBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.clsTituloBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.clsUniversidadBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.cmbTitulo = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.cmbInstitucion = new System.Windows.Forms.DataGridViewComboBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).BeginInit();
     this.tbcEmpleado.SuspendLayout();
     this.tpGenerales.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtid.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgGenero.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.peFoto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCedula.Properties)).BeginInit();
     this.tpContrato.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTelefono)).BeginInit();
     this.gcTelefono.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtOtro.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCasa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMovil.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGeneral.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDireccion.Properties)).BeginInit();
     this.tpAcademico.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAcademico)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTituloBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUniversidadBindingSource1)).BeginInit();
     this.tpLaborales.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDepartamento.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEstado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaIngreso.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaIngreso.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCargo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsCargoBindingSource)).BeginInit();
     this.tpFamiliar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcCargaFamiliar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCargaFamiliar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsEmpleadoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTituloBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUniversidadBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tituloBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tituloBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cargoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDatosDepartamentoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.departamentoBindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.titulo1BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teHora.Properties)).BeginInit();
     this.tsMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.universidadBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTituloBindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUniversidadBindingSource2)).BeginInit();
     this.SuspendLayout();
     //
     // txtNombre
     //
     this.txtNombre.Location = new System.Drawing.Point(122, 64);
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Size = new System.Drawing.Size(248, 20);
     this.txtNombre.TabIndex = 4;
     //
     // lblCedula
     //
     this.lblCedula.Location = new System.Drawing.Point(79, 20);
     this.lblCedula.Name = "lblCedula";
     this.lblCedula.Size = new System.Drawing.Size(37, 13);
     this.lblCedula.TabIndex = 0;
     this.lblCedula.Text = "Cédula:";
     //
     // tbcEmpleado
     //
     this.tbcEmpleado.Controls.Add(this.tpGenerales);
     this.tbcEmpleado.Controls.Add(this.tpContrato);
     this.tbcEmpleado.Controls.Add(this.tpAcademico);
     this.tbcEmpleado.Controls.Add(this.tpLaborales);
     this.tbcEmpleado.Controls.Add(this.tpFamiliar);
     this.tbcEmpleado.Location = new System.Drawing.Point(0, 28);
     this.tbcEmpleado.Name = "tbcEmpleado";
     this.tbcEmpleado.SelectedIndex = 0;
     this.tbcEmpleado.Size = new System.Drawing.Size(520, 297);
     this.tbcEmpleado.TabIndex = 16;
     //
     // tpGenerales
     //
     this.tpGenerales.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpGenerales.Controls.Add(this.txtid);
     this.tpGenerales.Controls.Add(this.rgGenero);
     this.tpGenerales.Controls.Add(this.deFNacimiento);
     this.tpGenerales.Controls.Add(this.btnImagen);
     this.tpGenerales.Controls.Add(this.btnBuscarCedula);
     this.tpGenerales.Controls.Add(this.lblFecha);
     this.tpGenerales.Controls.Add(this.lblGenero);
     this.tpGenerales.Controls.Add(this.peFoto);
     this.tpGenerales.Controls.Add(this.lblApellido);
     this.tpGenerales.Controls.Add(this.txtApellido);
     this.tpGenerales.Controls.Add(this.lblNombre);
     this.tpGenerales.Controls.Add(this.txtCedula);
     this.tpGenerales.Controls.Add(this.lblCedula);
     this.tpGenerales.Controls.Add(this.txtNombre);
     this.tpGenerales.Location = new System.Drawing.Point(4, 22);
     this.tpGenerales.Name = "tpGenerales";
     this.tpGenerales.Padding = new System.Windows.Forms.Padding(3);
     this.tpGenerales.Size = new System.Drawing.Size(512, 271);
     this.tpGenerales.TabIndex = 0;
     this.tpGenerales.Text = "Datos Generales";
     //
     // txtid
     //
     this.txtid.Location = new System.Drawing.Point(23, 17);
     this.txtid.Name = "txtid";
     this.txtid.Size = new System.Drawing.Size(29, 20);
     this.txtid.TabIndex = 78;
     //
     // rgGenero
     //
     this.rgGenero.Location = new System.Drawing.Point(122, 152);
     this.rgGenero.Name = "rgGenero";
     this.rgGenero.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rgGenero.Properties.Appearance.Options.UseBackColor = true;
     this.rgGenero.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Maculino"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Femenino")});
     this.rgGenero.Size = new System.Drawing.Size(197, 31);
     this.rgGenero.TabIndex = 77;
     //
     // deFNacimiento
     //
     this.deFNacimiento.EditValue = new System.DateTime(2013, 7, 11, 21, 20, 29, 313);
     this.deFNacimiento.Location = new System.Drawing.Point(122, 199);
     this.deFNacimiento.Name = "deFNacimiento";
     this.deFNacimiento.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFNacimiento.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deFNacimiento.Size = new System.Drawing.Size(100, 20);
     this.deFNacimiento.TabIndex = 76;
     //
     // btnImagen
     //
     this.btnImagen.Location = new System.Drawing.Point(415, 105);
     this.btnImagen.Name = "btnImagen";
     this.btnImagen.Size = new System.Drawing.Size(75, 23);
     this.btnImagen.TabIndex = 66;
     this.btnImagen.Text = "Editar foto";
     //
     // btnBuscarCedula
     //
     this.btnBuscarCedula.Image = global::forms.Properties.Resources.consultar;
     this.btnBuscarCedula.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnBuscarCedula.Location = new System.Drawing.Point(347, 17);
     this.btnBuscarCedula.Name = "btnBuscarCedula";
     this.btnBuscarCedula.Size = new System.Drawing.Size(23, 20);
     this.btnBuscarCedula.TabIndex = 65;
     this.btnBuscarCedula.Click += new System.EventHandler(this.btnBuscarCedula_Click);
     //
     // lblFecha
     //
     this.lblFecha.Location = new System.Drawing.Point(13, 202);
     this.lblFecha.Name = "lblFecha";
     this.lblFecha.Size = new System.Drawing.Size(103, 13);
     this.lblFecha.TabIndex = 20;
     this.lblFecha.Text = "Fecha de Nacimiento:";
     //
     // lblGenero
     //
     this.lblGenero.Location = new System.Drawing.Point(77, 157);
     this.lblGenero.Name = "lblGenero";
     this.lblGenero.Size = new System.Drawing.Size(39, 13);
     this.lblGenero.TabIndex = 17;
     this.lblGenero.Text = "Género:";
     //
     // peFoto
     //
     this.peFoto.Location = new System.Drawing.Point(401, 3);
     this.peFoto.Name = "peFoto";
     this.peFoto.Size = new System.Drawing.Size(100, 96);
     this.peFoto.TabIndex = 15;
     //
     // lblApellido
     //
     this.lblApellido.Location = new System.Drawing.Point(70, 111);
     this.lblApellido.Name = "lblApellido";
     this.lblApellido.Size = new System.Drawing.Size(46, 13);
     this.lblApellido.TabIndex = 14;
     this.lblApellido.Text = "Apellidos:";
     //
     // txtApellido
     //
     this.txtApellido.Location = new System.Drawing.Point(122, 108);
     this.txtApellido.Name = "txtApellido";
     this.txtApellido.Size = new System.Drawing.Size(248, 20);
     this.txtApellido.TabIndex = 13;
     //
     // lblNombre
     //
     this.lblNombre.Location = new System.Drawing.Point(70, 71);
     this.lblNombre.Name = "lblNombre";
     this.lblNombre.Size = new System.Drawing.Size(46, 13);
     this.lblNombre.TabIndex = 12;
     this.lblNombre.Text = "Nombres:";
     //
     // txtCedula
     //
     this.txtCedula.Location = new System.Drawing.Point(122, 17);
     this.txtCedula.Name = "txtCedula";
     this.txtCedula.Size = new System.Drawing.Size(176, 20);
     this.txtCedula.TabIndex = 4;
     //
     // tpContrato
     //
     this.tpContrato.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpContrato.Controls.Add(this.gcTelefono);
     this.tpContrato.Controls.Add(this.txtCorreo);
     this.tpContrato.Controls.Add(this.lblCorreo);
     this.tpContrato.Controls.Add(this.lblDireccion);
     this.tpContrato.Controls.Add(this.txtDireccion);
     this.tpContrato.Location = new System.Drawing.Point(4, 22);
     this.tpContrato.Name = "tpContrato";
     this.tpContrato.Padding = new System.Windows.Forms.Padding(3);
     this.tpContrato.Size = new System.Drawing.Size(512, 271);
     this.tpContrato.TabIndex = 1;
     this.tpContrato.Text = "Datos de Contacto";
     //
     // gcTelefono
     //
     this.gcTelefono.Controls.Add(this.txtOtro);
     this.gcTelefono.Controls.Add(this.lblOtro);
     this.gcTelefono.Controls.Add(this.txtCasa);
     this.gcTelefono.Controls.Add(this.lblCasa);
     this.gcTelefono.Controls.Add(this.txtMovil);
     this.gcTelefono.Controls.Add(this.lblMovil);
     this.gcTelefono.Controls.Add(this.txtGeneral);
     this.gcTelefono.Controls.Add(this.lblGeneral);
     this.gcTelefono.Location = new System.Drawing.Point(47, 115);
     this.gcTelefono.Name = "gcTelefono";
     this.gcTelefono.Size = new System.Drawing.Size(366, 150);
     this.gcTelefono.TabIndex = 25;
     this.gcTelefono.Text = "Teléfono";
     //
     // txtOtro
     //
     this.txtOtro.Location = new System.Drawing.Point(110, 119);
     this.txtOtro.Name = "txtOtro";
     this.txtOtro.Size = new System.Drawing.Size(113, 20);
     this.txtOtro.TabIndex = 32;
     //
     // lblOtro
     //
     this.lblOtro.Location = new System.Drawing.Point(75, 122);
     this.lblOtro.Name = "lblOtro";
     this.lblOtro.Size = new System.Drawing.Size(29, 13);
     this.lblOtro.TabIndex = 31;
     this.lblOtro.Text = "Otro :";
     //
     // txtCasa
     //
     this.txtCasa.Location = new System.Drawing.Point(110, 82);
     this.txtCasa.Name = "txtCasa";
     this.txtCasa.Size = new System.Drawing.Size(113, 20);
     this.txtCasa.TabIndex = 30;
     //
     // lblCasa
     //
     this.lblCasa.Location = new System.Drawing.Point(73, 85);
     this.lblCasa.Name = "lblCasa";
     this.lblCasa.Size = new System.Drawing.Size(31, 13);
     this.lblCasa.TabIndex = 29;
     this.lblCasa.Text = "Casa :";
     //
     // txtMovil
     //
     this.txtMovil.Location = new System.Drawing.Point(110, 48);
     this.txtMovil.Name = "txtMovil";
     this.txtMovil.Size = new System.Drawing.Size(113, 20);
     this.txtMovil.TabIndex = 28;
     //
     // lblMovil
     //
     this.lblMovil.Location = new System.Drawing.Point(73, 51);
     this.lblMovil.Name = "lblMovil";
     this.lblMovil.Size = new System.Drawing.Size(31, 13);
     this.lblMovil.TabIndex = 27;
     this.lblMovil.Text = "Movil :";
     //
     // txtGeneral
     //
     this.txtGeneral.Location = new System.Drawing.Point(110, 22);
     this.txtGeneral.Name = "txtGeneral";
     this.txtGeneral.Size = new System.Drawing.Size(113, 20);
     this.txtGeneral.TabIndex = 26;
     //
     // lblGeneral
     //
     this.lblGeneral.Location = new System.Drawing.Point(60, 25);
     this.lblGeneral.Name = "lblGeneral";
     this.lblGeneral.Size = new System.Drawing.Size(44, 13);
     this.lblGeneral.TabIndex = 25;
     this.lblGeneral.Text = "General :";
     //
     // txtCorreo
     //
     this.txtCorreo.Location = new System.Drawing.Point(148, 70);
     this.txtCorreo.Name = "txtCorreo";
     this.txtCorreo.Size = new System.Drawing.Size(248, 20);
     this.txtCorreo.TabIndex = 16;
     //
     // lblCorreo
     //
     this.lblCorreo.Location = new System.Drawing.Point(47, 77);
     this.lblCorreo.Name = "lblCorreo";
     this.lblCorreo.Size = new System.Drawing.Size(95, 13);
     this.lblCorreo.TabIndex = 15;
     this.lblCorreo.Text = "Correo electrónico :";
     //
     // lblDireccion
     //
     this.lblDireccion.Location = new System.Drawing.Point(92, 18);
     this.lblDireccion.Name = "lblDireccion";
     this.lblDireccion.Size = new System.Drawing.Size(50, 13);
     this.lblDireccion.TabIndex = 13;
     this.lblDireccion.Text = "Dirección :";
     //
     // txtDireccion
     //
     this.txtDireccion.Location = new System.Drawing.Point(148, 15);
     this.txtDireccion.Name = "txtDireccion";
     this.txtDireccion.Size = new System.Drawing.Size(248, 47);
     this.txtDireccion.TabIndex = 14;
     //
     // tpAcademico
     //
     this.tpAcademico.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpAcademico.Controls.Add(this.dgvAcademico);
     this.tpAcademico.Location = new System.Drawing.Point(4, 22);
     this.tpAcademico.Name = "tpAcademico";
     this.tpAcademico.Padding = new System.Windows.Forms.Padding(3);
     this.tpAcademico.Size = new System.Drawing.Size(512, 271);
     this.tpAcademico.TabIndex = 2;
     this.tpAcademico.Text = "Datos Académicos";
     //
     // dgvAcademico
     //
     this.dgvAcademico.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvAcademico.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.cmbTitulo,
     this.cmbInstitucion});
     this.dgvAcademico.Location = new System.Drawing.Point(23, 6);
     this.dgvAcademico.Name = "dgvAcademico";
     this.dgvAcademico.Size = new System.Drawing.Size(452, 235);
     this.dgvAcademico.TabIndex = 0;
     //
     // clsTituloBindingSource1
     //
     this.clsTituloBindingSource1.DataSource = typeof(clases.RecursosHumanos.clsTitulo);
     //
     // clsUniversidadBindingSource1
     //
     this.clsUniversidadBindingSource1.DataSource = typeof(clases.RecursosHumanos.clsUniversidad);
     //
     // tpLaborales
     //
     this.tpLaborales.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpLaborales.Controls.Add(this.cmbDepartamento);
     this.tpLaborales.Controls.Add(this.cmbEstado);
     this.tpLaborales.Controls.Add(this.deFechaIngreso);
     this.tpLaborales.Controls.Add(this.lblEstado);
     this.tpLaborales.Controls.Add(this.lblCargo);
     this.tpLaborales.Controls.Add(this.lblDpartamento);
     this.tpLaborales.Controls.Add(this.lblFIngreso);
     this.tpLaborales.Controls.Add(this.cmbCargo);
     this.tpLaborales.Location = new System.Drawing.Point(4, 22);
     this.tpLaborales.Name = "tpLaborales";
     this.tpLaborales.Padding = new System.Windows.Forms.Padding(3);
     this.tpLaborales.Size = new System.Drawing.Size(512, 271);
     this.tpLaborales.TabIndex = 3;
     this.tpLaborales.Text = "Datos Laborales";
     //
     // cmbDepartamento
     //
     this.cmbDepartamento.Location = new System.Drawing.Point(209, 99);
     this.cmbDepartamento.Name = "cmbDepartamento";
     this.cmbDepartamento.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbDepartamento.Properties.DataSource = this.clsDepartamentoBindingSource3;
     this.cmbDepartamento.Properties.DisplayMember = "Descripcion";
     this.cmbDepartamento.Properties.ValueMember = "IdDepartamento";
     this.cmbDepartamento.Size = new System.Drawing.Size(151, 20);
     this.cmbDepartamento.TabIndex = 80;
     //
     // clsDepartamentoBindingSource3
     //
     this.clsDepartamentoBindingSource3.DataSource = typeof(clases.RecursosHumanos.clsDepartamento);
     //
     // cmbEstado
     //
     this.cmbEstado.Location = new System.Drawing.Point(209, 170);
     this.cmbEstado.Name = "cmbEstado";
     this.cmbEstado.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbEstado.Properties.Items.AddRange(new object[] {
     "Seleccione estado",
     "Activo",
     "Inactivo"});
     this.cmbEstado.Size = new System.Drawing.Size(151, 20);
     this.cmbEstado.TabIndex = 79;
     //
     // deFechaIngreso
     //
     this.deFechaIngreso.EditValue = new System.DateTime(2013, 7, 11, 21, 20, 29, 313);
     this.deFechaIngreso.Location = new System.Drawing.Point(209, 65);
     this.deFechaIngreso.Name = "deFechaIngreso";
     this.deFechaIngreso.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFechaIngreso.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deFechaIngreso.Size = new System.Drawing.Size(108, 20);
     this.deFechaIngreso.TabIndex = 76;
     //
     // lblEstado
     //
     this.lblEstado.Location = new System.Drawing.Point(166, 173);
     this.lblEstado.Name = "lblEstado";
     this.lblEstado.Size = new System.Drawing.Size(37, 13);
     this.lblEstado.TabIndex = 28;
     this.lblEstado.Text = "Estado:";
     //
     // lblCargo
     //
     this.lblCargo.Location = new System.Drawing.Point(170, 135);
     this.lblCargo.Name = "lblCargo";
     this.lblCargo.Size = new System.Drawing.Size(33, 13);
     this.lblCargo.TabIndex = 26;
     this.lblCargo.Text = "Cargo:";
     //
     // lblDpartamento
     //
     this.lblDpartamento.Location = new System.Drawing.Point(130, 102);
     this.lblDpartamento.Name = "lblDpartamento";
     this.lblDpartamento.Size = new System.Drawing.Size(73, 13);
     this.lblDpartamento.TabIndex = 24;
     this.lblDpartamento.Text = "Departamento:";
     //
     // lblFIngreso
     //
     this.lblFIngreso.Location = new System.Drawing.Point(115, 72);
     this.lblFIngreso.Name = "lblFIngreso";
     this.lblFIngreso.Size = new System.Drawing.Size(88, 13);
     this.lblFIngreso.TabIndex = 22;
     this.lblFIngreso.Text = "Fecha de Ingreso:";
     //
     // cmbCargo
     //
     this.cmbCargo.Location = new System.Drawing.Point(209, 132);
     this.cmbCargo.Name = "cmbCargo";
     this.cmbCargo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbCargo.Properties.DataSource = this.clsCargoBindingSource;
     this.cmbCargo.Properties.DisplayMember = "Descripcion";
     this.cmbCargo.Properties.NullText = "";
     this.cmbCargo.Properties.PopupSizeable = false;
     this.cmbCargo.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cmbCargo.Properties.ValueMember = "IdCargo";
     this.cmbCargo.Size = new System.Drawing.Size(151, 20);
     this.cmbCargo.TabIndex = 78;
     //
     // clsCargoBindingSource
     //
     this.clsCargoBindingSource.DataSource = typeof(clases.RecursosHumanos.clsCargo);
     //
     // tpFamiliar
     //
     this.tpFamiliar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpFamiliar.Controls.Add(this.gcCargaFamiliar);
     this.tpFamiliar.Location = new System.Drawing.Point(4, 22);
     this.tpFamiliar.Name = "tpFamiliar";
     this.tpFamiliar.Padding = new System.Windows.Forms.Padding(3);
     this.tpFamiliar.Size = new System.Drawing.Size(512, 271);
     this.tpFamiliar.TabIndex = 4;
     this.tpFamiliar.Text = "Carga Familiar";
     //
     // gcCargaFamiliar
     //
     this.gcCargaFamiliar.Location = new System.Drawing.Point(0, 6);
     this.gcCargaFamiliar.MainView = this.gvCargaFamiliar;
     this.gcCargaFamiliar.Name = "gcCargaFamiliar";
     this.gcCargaFamiliar.Size = new System.Drawing.Size(506, 230);
     this.gcCargaFamiliar.TabIndex = 3;
     this.gcCargaFamiliar.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvCargaFamiliar});
     //
     // gvCargaFamiliar
     //
     this.gvCargaFamiliar.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9});
     this.gvCargaFamiliar.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gvCargaFamiliar.GridControl = this.gcCargaFamiliar;
     this.gvCargaFamiliar.Name = "gvCargaFamiliar";
     this.gvCargaFamiliar.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gvCargaFamiliar.OptionsBehavior.SummariesIgnoreNullValues = true;
     this.gvCargaFamiliar.OptionsNavigation.AutoFocusNewRow = true;
     this.gvCargaFamiliar.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Cedula";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width = 97;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Nombres";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Apellidos";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     this.gridColumn7.Width = 97;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Fecha de Nacimiento";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     this.gridColumn8.Width = 111;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Parentesco";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 4;
     this.gridColumn9.Width = 86;
     //
     // clsEmpleadoBindingSource
     //
        // this.clsEmpleadoBindingSource.DataSource = typeof(clases.RecursosHumanos.clsEmpleado);
     //
     // clsTituloBindingSource
     //
     this.clsTituloBindingSource.DataSource = typeof(clases.RecursosHumanos.clsTitulo);
     //
     // clsUniversidadBindingSource
     //
     this.clsUniversidadBindingSource.DataSource = typeof(clases.RecursosHumanos.clsUniversidad);
     //
     // clsDepartamentoBindingSource2
     //
     this.clsDepartamentoBindingSource2.DataSource = typeof(clases.RecursosHumanos.clsDepartamento);
     //
     // clsDepartamentoBindingSource
     //
     this.clsDepartamentoBindingSource.DataSource = typeof(clases.RecursosHumanos.clsDepartamento);
     //
     // clsDatosDepartamentoBindingSource
     //
     this.clsDatosDepartamentoBindingSource.DataSource = typeof(datos.RecursosHumanos.clsDatosDepartamento);
     //
     // teHora
     //
     this.teHora.EditValue = new System.DateTime(2013, 6, 20, 0, 0, 0, 0);
     this.teHora.Location = new System.Drawing.Point(416, 347);
     this.teHora.Name = "teHora";
     this.teHora.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.teHora.Size = new System.Drawing.Size(100, 20);
     this.teHora.TabIndex = 81;
     //
     // lblHora
     //
     this.lblHora.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHora.Location = new System.Drawing.Point(363, 350);
     this.lblHora.Name = "lblHora";
     this.lblHora.Size = new System.Drawing.Size(30, 13);
     this.lblHora.TabIndex = 80;
     this.lblHora.Text = "Hora:";
     //
     // lblPUsuario
     //
     this.lblPUsuario.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPUsuario.Location = new System.Drawing.Point(62, 350);
     this.lblPUsuario.Name = "lblPUsuario";
     this.lblPUsuario.Size = new System.Drawing.Size(56, 13);
     this.lblPUsuario.TabIndex = 79;
     this.lblPUsuario.Text = "María Perez";
     //
     // lblUsuario
     //
     this.lblUsuario.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUsuario.Location = new System.Drawing.Point(10, 350);
     this.lblUsuario.Name = "lblUsuario";
     this.lblUsuario.Size = new System.Drawing.Size(46, 13);
     this.lblUsuario.TabIndex = 78;
     this.lblUsuario.Text = "Usuario:";
     //
     // tsMenu
     //
     this.tsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsbNuevo,
     this.tsbGuardar,
     this.tsbModificar,
     this.tsbEliminar});
     this.tsMenu.Location = new System.Drawing.Point(0, 0);
     this.tsMenu.Name = "tsMenu";
     this.tsMenu.Size = new System.Drawing.Size(524, 25);
     this.tsMenu.TabIndex = 82;
     this.tsMenu.Text = "toolStrip1";
     //
     // tsbNuevo
     //
     this.tsbNuevo.Image = global::forms.Properties.Resources.nuevo;
     this.tsbNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbNuevo.Name = "tsbNuevo";
     this.tsbNuevo.Size = new System.Drawing.Size(62, 22);
     this.tsbNuevo.Text = "Nuevo";
     //
     // tsbGuardar
     //
     this.tsbGuardar.Image = global::forms.Properties.Resources.guardar;
     this.tsbGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbGuardar.Name = "tsbGuardar";
     this.tsbGuardar.Size = new System.Drawing.Size(69, 22);
     this.tsbGuardar.Text = "Guardar";
     this.tsbGuardar.Click += new System.EventHandler(this.tsbGuardar_Click);
     //
     // tsbModificar
     //
     this.tsbModificar.Image = global::forms.Properties.Resources.modificar;
     this.tsbModificar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbModificar.Name = "tsbModificar";
     this.tsbModificar.Size = new System.Drawing.Size(78, 22);
     this.tsbModificar.Text = "Modificar";
     this.tsbModificar.Click += new System.EventHandler(this.tsbModificar_Click_1);
     //
     // tsbEliminar
     //
     this.tsbEliminar.Image = global::forms.Properties.Resources.eliminar1;
     this.tsbEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbEliminar.Name = "tsbEliminar";
     this.tsbEliminar.Size = new System.Drawing.Size(70, 22);
     this.tsbEliminar.Text = "Eliminar";
     this.tsbEliminar.Click += new System.EventHandler(this.tsbEliminar_Click);
     //
     // clsDepartamentoBindingSource1
     //
     this.clsDepartamentoBindingSource1.DataSource = typeof(clases.RecursosHumanos.clsDepartamento);
     //
     // clsTituloBindingSource2
     //
     this.clsTituloBindingSource2.DataSource = typeof(clases.RecursosHumanos.clsTitulo);
     //
     // clsUniversidadBindingSource2
     //
     this.clsUniversidadBindingSource2.DataSource = typeof(clases.RecursosHumanos.clsUniversidad);
     //
     // cmbTitulo
     //
     this.cmbTitulo.DataSource = this.clsTituloBindingSource2;
     this.cmbTitulo.DisplayMember = "Nombre";
     this.cmbTitulo.HeaderText = "Titulo";
     this.cmbTitulo.Name = "cmbTitulo";
     this.cmbTitulo.ValueMember = "IdTitulo";
     //
     // cmbInstitucion
     //
     this.cmbInstitucion.DataSource = this.clsUniversidadBindingSource2;
     this.cmbInstitucion.DisplayMember = "Nombre";
     this.cmbInstitucion.HeaderText = "Institucion";
     this.cmbInstitucion.Name = "cmbInstitucion";
     this.cmbInstitucion.ValueMember = "IdUniversidad";
     //
     // frmMantenimientoEmpleado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(524, 375);
     this.Controls.Add(this.tsMenu);
     this.Controls.Add(this.teHora);
     this.Controls.Add(this.lblHora);
     this.Controls.Add(this.lblPUsuario);
     this.Controls.Add(this.lblUsuario);
     this.Controls.Add(this.tbcEmpleado);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(530, 399);
     this.MinimumSize = new System.Drawing.Size(530, 399);
     this.Name = "frmMantenimientoEmpleado";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento empleado";
     this.Load += new System.EventHandler(this.frmMantenimientoEmpleado_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).EndInit();
     this.tbcEmpleado.ResumeLayout(false);
     this.tpGenerales.ResumeLayout(false);
     this.tpGenerales.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtid.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgGenero.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.peFoto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCedula.Properties)).EndInit();
     this.tpContrato.ResumeLayout(false);
     this.tpContrato.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTelefono)).EndInit();
     this.gcTelefono.ResumeLayout(false);
     this.gcTelefono.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtOtro.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCasa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMovil.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGeneral.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDireccion.Properties)).EndInit();
     this.tpAcademico.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvAcademico)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTituloBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUniversidadBindingSource1)).EndInit();
     this.tpLaborales.ResumeLayout(false);
     this.tpLaborales.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDepartamento.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEstado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaIngreso.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaIngreso.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCargo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsCargoBindingSource)).EndInit();
     this.tpFamiliar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcCargaFamiliar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCargaFamiliar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsEmpleadoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTituloBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUniversidadBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tituloBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tituloBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cargoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsDatosDepartamentoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.departamentoBindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.titulo1BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teHora.Properties)).EndInit();
     this.tsMenu.ResumeLayout(false);
     this.tsMenu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.clsDepartamentoBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.universidadBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTituloBindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUniversidadBindingSource2)).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()
 {
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.txtNombre = new DevExpress.XtraEditors.TextEdit();
     this.lblCedula = new DevExpress.XtraEditors.LabelControl();
     this.tbcEmpleado = new System.Windows.Forms.TabControl();
     this.tpGenerales = new System.Windows.Forms.TabPage();
     this.gcBanco = new DevExpress.XtraEditors.GroupControl();
     this.btnBuscarBanco = new DevExpress.XtraEditors.SimpleButton();
     this.txtCuenta = new DevExpress.XtraEditors.TextEdit();
     this.lblCuenta = new DevExpress.XtraEditors.LabelControl();
     this.txtBanco = new DevExpress.XtraEditors.TextEdit();
     this.lblBanco = new DevExpress.XtraEditors.LabelControl();
     this.rgGenero = new DevExpress.XtraEditors.RadioGroup();
     this.deFNacimiento = new DevExpress.XtraEditors.DateEdit();
     this.btnImagen = new DevExpress.XtraEditors.SimpleButton();
     this.btnBuscarCedula = new DevExpress.XtraEditors.SimpleButton();
     this.lblFecha = new DevExpress.XtraEditors.LabelControl();
     this.lblGenero = new DevExpress.XtraEditors.LabelControl();
     this.peFoto = new DevExpress.XtraEditors.PictureEdit();
     this.lblApellido = new DevExpress.XtraEditors.LabelControl();
     this.txtApellido = new DevExpress.XtraEditors.TextEdit();
     this.lblNombre = new DevExpress.XtraEditors.LabelControl();
     this.txtCedula = new DevExpress.XtraEditors.TextEdit();
     this.tpContrato = new System.Windows.Forms.TabPage();
     this.gcTelefono = new DevExpress.XtraGrid.GridControl();
     this.gvTlefono = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtCorreo = new DevExpress.XtraEditors.TextEdit();
     this.lblCorreo = new DevExpress.XtraEditors.LabelControl();
     this.lblDireccion = new DevExpress.XtraEditors.LabelControl();
     this.txtDireccion = new DevExpress.XtraEditors.MemoEdit();
     this.tpAcademico = new System.Windows.Forms.TabPage();
     this.gcAcademico = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tpLaborales = new System.Windows.Forms.TabPage();
     this.cmbEstado = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbCargo = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbDepartamento = new DevExpress.XtraEditors.ComboBoxEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.lblEstado = new DevExpress.XtraEditors.LabelControl();
     this.lblCargo = new DevExpress.XtraEditors.LabelControl();
     this.lblDpartamento = new DevExpress.XtraEditors.LabelControl();
     this.lblFIngreso = new DevExpress.XtraEditors.LabelControl();
     this.tpFamiliar = new System.Windows.Forms.TabPage();
     this.gcCargaFamiliar = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.teHora = new DevExpress.XtraEditors.TimeEdit();
     this.lblHora = new DevExpress.XtraEditors.LabelControl();
     this.lblPUsuario = new DevExpress.XtraEditors.LabelControl();
     this.lblUsuario = new DevExpress.XtraEditors.LabelControl();
     this.tsMenu = new System.Windows.Forms.ToolStrip();
     this.tsbNuevo = new System.Windows.Forms.ToolStripButton();
     this.tsbGuardar = new System.Windows.Forms.ToolStripButton();
     this.tsbModificar = new System.Windows.Forms.ToolStripButton();
     this.tsbEliminar = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).BeginInit();
     this.tbcEmpleado.SuspendLayout();
     this.tpGenerales.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcBanco)).BeginInit();
     this.gcBanco.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCuenta.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBanco.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgGenero.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.peFoto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCedula.Properties)).BeginInit();
     this.tpContrato.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTelefono)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTlefono)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDireccion.Properties)).BeginInit();
     this.tpAcademico.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAcademico)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.tpLaborales.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEstado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCargo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDepartamento.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     this.tpFamiliar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcCargaFamiliar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teHora.Properties)).BeginInit();
     this.tsMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // txtNombre
     //
     this.txtNombre.Location = new System.Drawing.Point(122, 43);
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Size = new System.Drawing.Size(248, 20);
     this.txtNombre.TabIndex = 4;
     //
     // lblCedula
     //
     this.lblCedula.Location = new System.Drawing.Point(79, 20);
     this.lblCedula.Name = "lblCedula";
     this.lblCedula.Size = new System.Drawing.Size(37, 13);
     this.lblCedula.TabIndex = 0;
     this.lblCedula.Text = "Cédula:";
     //
     // tbcEmpleado
     //
     this.tbcEmpleado.Controls.Add(this.tpGenerales);
     this.tbcEmpleado.Controls.Add(this.tpContrato);
     this.tbcEmpleado.Controls.Add(this.tpAcademico);
     this.tbcEmpleado.Controls.Add(this.tpLaborales);
     this.tbcEmpleado.Controls.Add(this.tpFamiliar);
     this.tbcEmpleado.Location = new System.Drawing.Point(0, 28);
     this.tbcEmpleado.Name = "tbcEmpleado";
     this.tbcEmpleado.SelectedIndex = 0;
     this.tbcEmpleado.Size = new System.Drawing.Size(520, 297);
     this.tbcEmpleado.TabIndex = 16;
     //
     // tpGenerales
     //
     this.tpGenerales.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpGenerales.Controls.Add(this.gcBanco);
     this.tpGenerales.Controls.Add(this.rgGenero);
     this.tpGenerales.Controls.Add(this.deFNacimiento);
     this.tpGenerales.Controls.Add(this.btnImagen);
     this.tpGenerales.Controls.Add(this.btnBuscarCedula);
     this.tpGenerales.Controls.Add(this.lblFecha);
     this.tpGenerales.Controls.Add(this.lblGenero);
     this.tpGenerales.Controls.Add(this.peFoto);
     this.tpGenerales.Controls.Add(this.lblApellido);
     this.tpGenerales.Controls.Add(this.txtApellido);
     this.tpGenerales.Controls.Add(this.lblNombre);
     this.tpGenerales.Controls.Add(this.txtCedula);
     this.tpGenerales.Controls.Add(this.lblCedula);
     this.tpGenerales.Controls.Add(this.txtNombre);
     this.tpGenerales.Location = new System.Drawing.Point(4, 22);
     this.tpGenerales.Name = "tpGenerales";
     this.tpGenerales.Padding = new System.Windows.Forms.Padding(3);
     this.tpGenerales.Size = new System.Drawing.Size(512, 271);
     this.tpGenerales.TabIndex = 0;
     this.tpGenerales.Text = "Datos Generales";
     this.tpGenerales.Click += new System.EventHandler(this.tabPage1_Click);
     //
     // gcBanco
     //
     this.gcBanco.Controls.Add(this.btnBuscarBanco);
     this.gcBanco.Controls.Add(this.txtCuenta);
     this.gcBanco.Controls.Add(this.lblCuenta);
     this.gcBanco.Controls.Add(this.txtBanco);
     this.gcBanco.Controls.Add(this.lblBanco);
     this.gcBanco.Location = new System.Drawing.Point(107, 168);
     this.gcBanco.Name = "gcBanco";
     this.gcBanco.Size = new System.Drawing.Size(317, 97);
     this.gcBanco.TabIndex = 78;
     this.gcBanco.Text = "Datos Bancarios";
     //
     // btnBuscarBanco
     //
     this.btnBuscarBanco.Image = global::forms.Properties.Resources.consultar;
     this.btnBuscarBanco.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnBuscarBanco.Location = new System.Drawing.Point(280, 30);
     this.btnBuscarBanco.Name = "btnBuscarBanco";
     this.btnBuscarBanco.Size = new System.Drawing.Size(23, 20);
     this.btnBuscarBanco.TabIndex = 25;
     //
     // txtCuenta
     //
     this.txtCuenta.Location = new System.Drawing.Point(61, 66);
     this.txtCuenta.Name = "txtCuenta";
     this.txtCuenta.Size = new System.Drawing.Size(242, 20);
     this.txtCuenta.TabIndex = 24;
     //
     // lblCuenta
     //
     this.lblCuenta.Location = new System.Drawing.Point(16, 69);
     this.lblCuenta.Name = "lblCuenta";
     this.lblCuenta.Size = new System.Drawing.Size(39, 13);
     this.lblCuenta.TabIndex = 23;
     this.lblCuenta.Text = "Cuenta:";
     //
     // txtBanco
     //
     this.txtBanco.Location = new System.Drawing.Point(61, 34);
     this.txtBanco.Name = "txtBanco";
     this.txtBanco.Size = new System.Drawing.Size(184, 20);
     this.txtBanco.TabIndex = 22;
     //
     // lblBanco
     //
     this.lblBanco.Location = new System.Drawing.Point(22, 37);
     this.lblBanco.Name = "lblBanco";
     this.lblBanco.Size = new System.Drawing.Size(33, 13);
     this.lblBanco.TabIndex = 21;
     this.lblBanco.Text = "Banco:";
     //
     // rgGenero
     //
     this.rgGenero.Location = new System.Drawing.Point(122, 95);
     this.rgGenero.Name = "rgGenero";
     this.rgGenero.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rgGenero.Properties.Appearance.Options.UseBackColor = true;
     this.rgGenero.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Maculino"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Femenino")});
     this.rgGenero.Size = new System.Drawing.Size(197, 31);
     this.rgGenero.TabIndex = 77;
     //
     // deFNacimiento
     //
     this.deFNacimiento.EditValue = new System.DateTime(2013, 7, 11, 21, 20, 29, 313);
     this.deFNacimiento.Location = new System.Drawing.Point(122, 142);
     this.deFNacimiento.Name = "deFNacimiento";
     this.deFNacimiento.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFNacimiento.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deFNacimiento.Size = new System.Drawing.Size(100, 20);
     this.deFNacimiento.TabIndex = 76;
     this.deFNacimiento.EditValueChanged += new System.EventHandler(this.dateEdit3_EditValueChanged);
     //
     // btnImagen
     //
     this.btnImagen.Location = new System.Drawing.Point(415, 105);
     this.btnImagen.Name = "btnImagen";
     this.btnImagen.Size = new System.Drawing.Size(75, 23);
     this.btnImagen.TabIndex = 66;
     this.btnImagen.Text = "Editar foto";
     //
     // btnBuscarCedula
     //
     this.btnBuscarCedula.Image = global::forms.Properties.Resources.consultar;
     this.btnBuscarCedula.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnBuscarCedula.Location = new System.Drawing.Point(347, 17);
     this.btnBuscarCedula.Name = "btnBuscarCedula";
     this.btnBuscarCedula.Size = new System.Drawing.Size(23, 20);
     this.btnBuscarCedula.TabIndex = 65;
     //
     // lblFecha
     //
     this.lblFecha.Location = new System.Drawing.Point(13, 145);
     this.lblFecha.Name = "lblFecha";
     this.lblFecha.Size = new System.Drawing.Size(103, 13);
     this.lblFecha.TabIndex = 20;
     this.lblFecha.Text = "Fecha de Nacimiento:";
     //
     // lblGenero
     //
     this.lblGenero.Location = new System.Drawing.Point(77, 100);
     this.lblGenero.Name = "lblGenero";
     this.lblGenero.Size = new System.Drawing.Size(39, 13);
     this.lblGenero.TabIndex = 17;
     this.lblGenero.Text = "Género:";
     this.lblGenero.Click += new System.EventHandler(this.labelControl2_Click);
     //
     // peFoto
     //
     this.peFoto.Location = new System.Drawing.Point(401, 3);
     this.peFoto.Name = "peFoto";
     this.peFoto.Size = new System.Drawing.Size(100, 96);
     this.peFoto.TabIndex = 15;
     //
     // lblApellido
     //
     this.lblApellido.Location = new System.Drawing.Point(70, 72);
     this.lblApellido.Name = "lblApellido";
     this.lblApellido.Size = new System.Drawing.Size(46, 13);
     this.lblApellido.TabIndex = 14;
     this.lblApellido.Text = "Apellidos:";
     //
     // txtApellido
     //
     this.txtApellido.Location = new System.Drawing.Point(122, 69);
     this.txtApellido.Name = "txtApellido";
     this.txtApellido.Size = new System.Drawing.Size(248, 20);
     this.txtApellido.TabIndex = 13;
     //
     // lblNombre
     //
     this.lblNombre.Location = new System.Drawing.Point(70, 50);
     this.lblNombre.Name = "lblNombre";
     this.lblNombre.Size = new System.Drawing.Size(46, 13);
     this.lblNombre.TabIndex = 12;
     this.lblNombre.Text = "Nombres:";
     //
     // txtCedula
     //
     this.txtCedula.Location = new System.Drawing.Point(122, 17);
     this.txtCedula.Name = "txtCedula";
     this.txtCedula.Size = new System.Drawing.Size(176, 20);
     this.txtCedula.TabIndex = 4;
     this.txtCedula.EditValueChanged += new System.EventHandler(this.textEdit7_EditValueChanged);
     //
     // tpContrato
     //
     this.tpContrato.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpContrato.Controls.Add(this.gcTelefono);
     this.tpContrato.Controls.Add(this.txtCorreo);
     this.tpContrato.Controls.Add(this.lblCorreo);
     this.tpContrato.Controls.Add(this.lblDireccion);
     this.tpContrato.Controls.Add(this.txtDireccion);
     this.tpContrato.Location = new System.Drawing.Point(4, 22);
     this.tpContrato.Name = "tpContrato";
     this.tpContrato.Padding = new System.Windows.Forms.Padding(3);
     this.tpContrato.Size = new System.Drawing.Size(512, 271);
     this.tpContrato.TabIndex = 1;
     this.tpContrato.Text = "Datos de Contacto";
     this.tpContrato.Click += new System.EventHandler(this.tabPage2_Click);
     //
     // gcTelefono
     //
     this.gcTelefono.Location = new System.Drawing.Point(59, 116);
     this.gcTelefono.MainView = this.gvTlefono;
     this.gcTelefono.Name = "gcTelefono";
     this.gcTelefono.Size = new System.Drawing.Size(362, 137);
     this.gcTelefono.TabIndex = 17;
     this.gcTelefono.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvTlefono});
     this.gcTelefono.Click += new System.EventHandler(this.gridControl1_Click_1);
     //
     // gvTlefono
     //
     this.gvTlefono.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2});
     this.gvTlefono.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gvTlefono.GridControl = this.gcTelefono;
     this.gvTlefono.Name = "gvTlefono";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Tipo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Número";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // txtCorreo
     //
     this.txtCorreo.Location = new System.Drawing.Point(148, 70);
     this.txtCorreo.Name = "txtCorreo";
     this.txtCorreo.Size = new System.Drawing.Size(248, 20);
     this.txtCorreo.TabIndex = 16;
     //
     // lblCorreo
     //
     this.lblCorreo.Location = new System.Drawing.Point(47, 77);
     this.lblCorreo.Name = "lblCorreo";
     this.lblCorreo.Size = new System.Drawing.Size(95, 13);
     this.lblCorreo.TabIndex = 15;
     this.lblCorreo.Text = "Correo electrónico :";
     //
     // lblDireccion
     //
     this.lblDireccion.Location = new System.Drawing.Point(92, 18);
     this.lblDireccion.Name = "lblDireccion";
     this.lblDireccion.Size = new System.Drawing.Size(50, 13);
     this.lblDireccion.TabIndex = 13;
     this.lblDireccion.Text = "Dirección :";
     //
     // txtDireccion
     //
     this.txtDireccion.Location = new System.Drawing.Point(148, 15);
     this.txtDireccion.Name = "txtDireccion";
     this.txtDireccion.Size = new System.Drawing.Size(248, 47);
     this.txtDireccion.TabIndex = 14;
     //
     // tpAcademico
     //
     this.tpAcademico.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpAcademico.Controls.Add(this.gcAcademico);
     this.tpAcademico.Location = new System.Drawing.Point(4, 22);
     this.tpAcademico.Name = "tpAcademico";
     this.tpAcademico.Padding = new System.Windows.Forms.Padding(3);
     this.tpAcademico.Size = new System.Drawing.Size(512, 271);
     this.tpAcademico.TabIndex = 2;
     this.tpAcademico.Text = "Datos Académicos";
     //
     // gcAcademico
     //
     this.gcAcademico.Location = new System.Drawing.Point(62, 32);
     this.gcAcademico.MainView = this.gridView2;
     this.gcAcademico.Name = "gcAcademico";
     this.gcAcademico.Size = new System.Drawing.Size(391, 168);
     this.gcAcademico.TabIndex = 2;
     this.gcAcademico.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn10});
     this.gridView2.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.gridView2.GridControl = this.gcAcademico;
     this.gridView2.Name = "gridView2";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Título";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Institución";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Año";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     //
     // tpLaborales
     //
     this.tpLaborales.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpLaborales.Controls.Add(this.cmbEstado);
     this.tpLaborales.Controls.Add(this.cmbCargo);
     this.tpLaborales.Controls.Add(this.cmbDepartamento);
     this.tpLaborales.Controls.Add(this.dateEdit1);
     this.tpLaborales.Controls.Add(this.lblEstado);
     this.tpLaborales.Controls.Add(this.lblCargo);
     this.tpLaborales.Controls.Add(this.lblDpartamento);
     this.tpLaborales.Controls.Add(this.lblFIngreso);
     this.tpLaborales.Location = new System.Drawing.Point(4, 22);
     this.tpLaborales.Name = "tpLaborales";
     this.tpLaborales.Padding = new System.Windows.Forms.Padding(3);
     this.tpLaborales.Size = new System.Drawing.Size(512, 271);
     this.tpLaborales.TabIndex = 3;
     this.tpLaborales.Text = "Datos Laborales";
     //
     // cmbEstado
     //
     this.cmbEstado.Location = new System.Drawing.Point(209, 170);
     this.cmbEstado.Name = "cmbEstado";
     this.cmbEstado.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbEstado.Size = new System.Drawing.Size(151, 20);
     this.cmbEstado.TabIndex = 79;
     //
     // cmbCargo
     //
     this.cmbCargo.Location = new System.Drawing.Point(209, 132);
     this.cmbCargo.Name = "cmbCargo";
     this.cmbCargo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbCargo.Size = new System.Drawing.Size(151, 20);
     this.cmbCargo.TabIndex = 78;
     //
     // cmbDepartamento
     //
     this.cmbDepartamento.Location = new System.Drawing.Point(209, 99);
     this.cmbDepartamento.Name = "cmbDepartamento";
     this.cmbDepartamento.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbDepartamento.Size = new System.Drawing.Size(151, 20);
     this.cmbDepartamento.TabIndex = 77;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2013, 7, 11, 21, 20, 29, 313);
     this.dateEdit1.Location = new System.Drawing.Point(209, 65);
     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.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(108, 20);
     this.dateEdit1.TabIndex = 76;
     //
     // lblEstado
     //
     this.lblEstado.Location = new System.Drawing.Point(166, 173);
     this.lblEstado.Name = "lblEstado";
     this.lblEstado.Size = new System.Drawing.Size(37, 13);
     this.lblEstado.TabIndex = 28;
     this.lblEstado.Text = "Estado:";
     //
     // lblCargo
     //
     this.lblCargo.Location = new System.Drawing.Point(170, 135);
     this.lblCargo.Name = "lblCargo";
     this.lblCargo.Size = new System.Drawing.Size(33, 13);
     this.lblCargo.TabIndex = 26;
     this.lblCargo.Text = "Cargo:";
     //
     // lblDpartamento
     //
     this.lblDpartamento.Location = new System.Drawing.Point(130, 102);
     this.lblDpartamento.Name = "lblDpartamento";
     this.lblDpartamento.Size = new System.Drawing.Size(73, 13);
     this.lblDpartamento.TabIndex = 24;
     this.lblDpartamento.Text = "Departamento:";
     //
     // lblFIngreso
     //
     this.lblFIngreso.Location = new System.Drawing.Point(115, 72);
     this.lblFIngreso.Name = "lblFIngreso";
     this.lblFIngreso.Size = new System.Drawing.Size(88, 13);
     this.lblFIngreso.TabIndex = 22;
     this.lblFIngreso.Text = "Fecha de Ingreso:";
     //
     // tpFamiliar
     //
     this.tpFamiliar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tpFamiliar.Controls.Add(this.gcCargaFamiliar);
     this.tpFamiliar.Location = new System.Drawing.Point(4, 22);
     this.tpFamiliar.Name = "tpFamiliar";
     this.tpFamiliar.Padding = new System.Windows.Forms.Padding(3);
     this.tpFamiliar.Size = new System.Drawing.Size(512, 271);
     this.tpFamiliar.TabIndex = 4;
     this.tpFamiliar.Text = "Carga Familiar";
     //
     // gcCargaFamiliar
     //
     this.gcCargaFamiliar.Location = new System.Drawing.Point(0, 6);
     this.gcCargaFamiliar.MainView = this.gridView3;
     this.gcCargaFamiliar.Name = "gcCargaFamiliar";
     this.gcCargaFamiliar.Size = new System.Drawing.Size(506, 230);
     this.gcCargaFamiliar.TabIndex = 3;
     this.gcCargaFamiliar.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3});
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9});
     this.gridView3.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition3});
     this.gridView3.GridControl = this.gcCargaFamiliar;
     this.gridView3.Name = "gridView3";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Cedula";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width = 97;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Nombres";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Apellidos";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     this.gridColumn7.Width = 97;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Fecha de Nacimiento";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     this.gridColumn8.Width = 111;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Parentesco";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 4;
     this.gridColumn9.Width = 86;
     //
     // teHora
     //
     this.teHora.EditValue = new System.DateTime(2013, 6, 20, 0, 0, 0, 0);
     this.teHora.Location = new System.Drawing.Point(416, 347);
     this.teHora.Name = "teHora";
     this.teHora.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.teHora.Size = new System.Drawing.Size(100, 20);
     this.teHora.TabIndex = 81;
     //
     // lblHora
     //
     this.lblHora.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHora.Location = new System.Drawing.Point(363, 350);
     this.lblHora.Name = "lblHora";
     this.lblHora.Size = new System.Drawing.Size(30, 13);
     this.lblHora.TabIndex = 80;
     this.lblHora.Text = "Hora:";
     //
     // lblPUsuario
     //
     this.lblPUsuario.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPUsuario.Location = new System.Drawing.Point(62, 350);
     this.lblPUsuario.Name = "lblPUsuario";
     this.lblPUsuario.Size = new System.Drawing.Size(56, 13);
     this.lblPUsuario.TabIndex = 79;
     this.lblPUsuario.Text = "María Perez";
     //
     // lblUsuario
     //
     this.lblUsuario.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUsuario.Location = new System.Drawing.Point(10, 350);
     this.lblUsuario.Name = "lblUsuario";
     this.lblUsuario.Size = new System.Drawing.Size(46, 13);
     this.lblUsuario.TabIndex = 78;
     this.lblUsuario.Text = "Usuario:";
     //
     // tsMenu
     //
     this.tsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsbNuevo,
     this.tsbGuardar,
     this.tsbModificar,
     this.tsbEliminar});
     this.tsMenu.Location = new System.Drawing.Point(0, 0);
     this.tsMenu.Name = "tsMenu";
     this.tsMenu.Size = new System.Drawing.Size(524, 25);
     this.tsMenu.TabIndex = 82;
     this.tsMenu.Text = "toolStrip1";
     //
     // tsbNuevo
     //
     this.tsbNuevo.Image = global::forms.Properties.Resources.nuevo;
     this.tsbNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbNuevo.Name = "tsbNuevo";
     this.tsbNuevo.Size = new System.Drawing.Size(62, 22);
     this.tsbNuevo.Text = "Nuevo";
     //
     // tsbGuardar
     //
     this.tsbGuardar.Image = global::forms.Properties.Resources.guardar;
     this.tsbGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbGuardar.Name = "tsbGuardar";
     this.tsbGuardar.Size = new System.Drawing.Size(69, 22);
     this.tsbGuardar.Text = "Guardar";
     //
     // tsbModificar
     //
     this.tsbModificar.Image = global::forms.Properties.Resources.modificar;
     this.tsbModificar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbModificar.Name = "tsbModificar";
     this.tsbModificar.Size = new System.Drawing.Size(78, 22);
     this.tsbModificar.Text = "Modificar";
     //
     // tsbEliminar
     //
     this.tsbEliminar.Image = global::forms.Properties.Resources.eliminar1;
     this.tsbEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbEliminar.Name = "tsbEliminar";
     this.tsbEliminar.Size = new System.Drawing.Size(70, 22);
     this.tsbEliminar.Text = "Eliminar";
     //
     // frmMantenimientoEmpleado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(524, 375);
     this.Controls.Add(this.tsMenu);
     this.Controls.Add(this.teHora);
     this.Controls.Add(this.lblHora);
     this.Controls.Add(this.lblPUsuario);
     this.Controls.Add(this.lblUsuario);
     this.Controls.Add(this.tbcEmpleado);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(530, 399);
     this.MinimumSize = new System.Drawing.Size(530, 399);
     this.Name = "frmMantenimientoEmpleado";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento empleado";
     this.Load += new System.EventHandler(this.frmMantenimientoEmpleado_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).EndInit();
     this.tbcEmpleado.ResumeLayout(false);
     this.tpGenerales.ResumeLayout(false);
     this.tpGenerales.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcBanco)).EndInit();
     this.gcBanco.ResumeLayout(false);
     this.gcBanco.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCuenta.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBanco.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgGenero.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFNacimiento.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.peFoto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCedula.Properties)).EndInit();
     this.tpContrato.ResumeLayout(false);
     this.tpContrato.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTelefono)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTlefono)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDireccion.Properties)).EndInit();
     this.tpAcademico.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAcademico)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.tpLaborales.ResumeLayout(false);
     this.tpLaborales.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEstado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCargo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDepartamento.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     this.tpFamiliar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcCargaFamiliar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teHora.Properties)).EndInit();
     this.tsMenu.ResumeLayout(false);
     this.tsMenu.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 15
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);
 }
Exemplo n.º 16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dataSet1      = new System.Data.DataSet();
     this.dataTable1    = new System.Data.DataTable();
     this.dataColumn1   = new System.Data.DataColumn();
     this.dataColumn2   = new System.Data.DataColumn();
     this.dataColumn3   = new System.Data.DataColumn();
     this.dataColumn4   = new System.Data.DataColumn();
     this.vGridControl1 = new DevExpress.XtraVerticalGrid.VGridControl();
     this.rowColumn1    = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowColumn2    = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowColumn3    = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowColumn4    = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.radioGroup1   = new DevExpress.XtraEditors.RadioGroup();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.dataColumn2,
         this.dataColumn3,
         this.dataColumn4
     });
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Column1";
     this.dataColumn1.DataType   = typeof(int);
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "Column2";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "Column3";
     this.dataColumn3.DataType   = typeof(System.DateTime);
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "Column4";
     this.dataColumn4.DataType   = typeof(bool);
     //
     // vGridControl1
     //
     this.vGridControl1.DataSource = this.dataTable1;
     this.vGridControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.vGridControl1.Location   = new System.Drawing.Point(0, 0);
     this.vGridControl1.Name       = "vGridControl1";
     this.vGridControl1.Rows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
         this.rowColumn1,
         this.rowColumn2,
         this.rowColumn3,
         this.rowColumn4
     });
     this.vGridControl1.Size             = new System.Drawing.Size(504, 306);
     this.vGridControl1.TabIndex         = 0;
     this.vGridControl1.RecordCellStyle += new DevExpress.XtraVerticalGrid.Events.GetCustomRowCellStyleEventHandler(this.vGridControl1_RecordCellStyle);
     //
     // rowColumn1
     //
     this.rowColumn1.Name = "rowColumn1";
     this.rowColumn1.Properties.Caption   = "Column1";
     this.rowColumn1.Properties.FieldName = "Column1";
     //
     // rowColumn2
     //
     this.rowColumn2.Name = "rowColumn2";
     this.rowColumn2.Properties.Caption   = "Column2";
     this.rowColumn2.Properties.FieldName = "Column2";
     //
     // rowColumn3
     //
     this.rowColumn3.Name = "rowColumn3";
     this.rowColumn3.Properties.Caption   = "Column3";
     this.rowColumn3.Properties.FieldName = "Column3";
     //
     // rowColumn4
     //
     this.rowColumn4.Name = "rowColumn4";
     this.rowColumn4.Properties.Caption   = "Column4";
     this.rowColumn4.Properties.FieldName = "Column4";
     //
     // radioGroup1
     //
     this.radioGroup1.Dock               = System.Windows.Forms.DockStyle.Bottom;
     this.radioGroup1.EditValue          = true;
     this.radioGroup1.Location           = new System.Drawing.Point(0, 306);
     this.radioGroup1.Name               = "radioGroup1";
     this.radioGroup1.Properties.Columns = 2;
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "Apply to records"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(false, "Apply to rows")
     });
     this.radioGroup1.Size                  = new System.Drawing.Size(504, 35);
     this.radioGroup1.TabIndex              = 1;
     this.radioGroup1.SelectedIndexChanged += new System.EventHandler(this.radioGroup1_SelectedIndexChanged);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(504, 341);
     this.Controls.Add(this.vGridControl1);
     this.Controls.Add(this.radioGroup1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridFitnessPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Rank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.RGFitnessPackage = new DevExpress.XtraEditors.RadioGroup();
     this.label1 = new System.Windows.Forms.Label();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.RGFitnessProduct = new DevExpress.XtraEditors.RadioGroup();
     this.gridFitnessProduct = new DevExpress.XtraGrid.GridControl();
     this.gvFitnessProduct = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvFitnessProductRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.RGSpaProduct = new DevExpress.XtraEditors.RadioGroup();
     this.gridSpaProduct = new DevExpress.XtraGrid.GridControl();
     this.gvSpaProduct = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvSpaProductRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvSpaProductSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvSpaProductTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label6 = new System.Windows.Forms.Label();
     this.RGPTPackage = new DevExpress.XtraEditors.RadioGroup();
     this.gridPTPackage = new DevExpress.XtraGrid.GridControl();
     this.gvPTPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPTPackageRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvPTPackageSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvPTPackageTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label7 = new System.Windows.Forms.Label();
     this.RGIPLService = new DevExpress.XtraEditors.RadioGroup();
     this.gridIPLService = new DevExpress.XtraGrid.GridControl();
     this.gvIPLService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvIPLServiceRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvIPLServiceSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvIPLServiceTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label8 = new System.Windows.Forms.Label();
     this.RGSpaService = new DevExpress.XtraEditors.RadioGroup();
     this.gridSpaService = new DevExpress.XtraGrid.GridControl();
     this.gvSpaService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvSpaServiceRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvSpaServiceSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvSpaServiceTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGSpaProduct.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSpaProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGPTPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPTPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPTPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGIPLService.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridIPLService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvIPLService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGSpaService.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSpaService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
     this.SuspendLayout();
     //
     // gridFitnessPackage
     //
     //
     // gridFitnessPackage.EmbeddedNavigator
     //
     this.gridFitnessPackage.EmbeddedNavigator.Name = "";
     this.gridFitnessPackage.Location = new System.Drawing.Point(8, 96);
     this.gridFitnessPackage.MainView = this.gridView2;
     this.gridFitnessPackage.Name = "gridFitnessPackage";
     this.gridFitnessPackage.Size = new System.Drawing.Size(305, 200);
     this.gridFitnessPackage.TabIndex = 0;
     this.gridFitnessPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                       this.gridView2,
                                                                                                       this.gridView1});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.Rank,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn5,
                                                                                      this.SalesPercentage,
                                                                                      this.SalesTotal});
     this.gridView2.GridControl = this.gridFitnessPackage;
     this.gridView2.Name = "gridView2";
     this.gridView2.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView2_CustomUnboundColumnData);
     //
     // Rank
     //
     this.Rank.Caption = "Rank";
     this.Rank.FieldName = "gridColumn1";
     this.Rank.Name = "Rank";
     this.Rank.SummaryItem.DisplayFormat = "{0}";
     this.Rank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.Rank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.Rank.Visible = true;
     this.Rank.VisibleIndex = 0;
     this.Rank.Width = 50;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Employee Name";
     this.gridColumn2.FieldName = "strEmployeeName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 54;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch Code";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 72;
     //
     // SalesPercentage
     //
     this.SalesPercentage.Caption = "Sales Percentage";
     this.SalesPercentage.FieldName = "SalesPercentage";
     this.SalesPercentage.Name = "SalesPercentage";
     this.SalesPercentage.Visible = true;
     this.SalesPercentage.VisibleIndex = 2;
     this.SalesPercentage.Width = 54;
     //
     // SalesTotal
     //
     this.SalesTotal.Caption = "Total Sales";
     this.SalesTotal.FieldName = "TotalSales";
     this.SalesTotal.Name = "SalesTotal";
     this.SalesTotal.Visible = true;
     this.SalesTotal.VisibleIndex = 3;
     this.SalesTotal.Width = 54;
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridFitnessPackage;
     this.gridView1.Name = "gridView1";
     //
     // RGFitnessPackage
     //
     this.RGFitnessPackage.EditValue = 0;
     this.RGFitnessPackage.Location = new System.Drawing.Point(8, 64);
     this.RGFitnessPackage.Name = "RGFitnessPackage";
     //
     // RGFitnessPackage.Properties
     //
     this.RGFitnessPackage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessPackage.Properties.Columns = 2;
     this.RGFitnessPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGFitnessPackage.Size = new System.Drawing.Size(305, 24);
     this.RGFitnessPackage.TabIndex = 1;
     this.RGFitnessPackage.SelectedIndexChanged += new System.EventHandler(this.RGFitnessPackage_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(304, 24);
     this.label1.TabIndex = 2;
     this.label1.Text = "Ranking of Fitness Package Sales";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.TabIndex = 3;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     //
     // Month.Properties
     //
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
                                                           "1",
                                                           "2",
                                                           "3",
                                                           "4",
                                                           "5",
                                                           "6",
                                                           "7",
                                                           "8",
                                                           "9",
                                                           "10",
                                                           "11",
                                                           "12"});
     this.Month.Size = new System.Drawing.Size(74, 20);
     this.Month.TabIndex = 4;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // RGFitnessProduct
     //
     this.RGFitnessProduct.EditValue = 0;
     this.RGFitnessProduct.Location = new System.Drawing.Point(320, 64);
     this.RGFitnessProduct.Name = "RGFitnessProduct";
     //
     // RGFitnessProduct.Properties
     //
     this.RGFitnessProduct.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessProduct.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessProduct.Properties.Columns = 2;
     this.RGFitnessProduct.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGFitnessProduct.Size = new System.Drawing.Size(305, 24);
     this.RGFitnessProduct.TabIndex = 6;
     this.RGFitnessProduct.SelectedIndexChanged += new System.EventHandler(this.RGFitnessProduct_SelectedIndexChanged);
     //
     // gridFitnessProduct
     //
     //
     // gridFitnessProduct.EmbeddedNavigator
     //
     this.gridFitnessProduct.EmbeddedNavigator.Name = "";
     this.gridFitnessProduct.Location = new System.Drawing.Point(320, 96);
     this.gridFitnessProduct.MainView = this.gvFitnessProduct;
     this.gridFitnessProduct.Name = "gridFitnessProduct";
     this.gridFitnessProduct.Size = new System.Drawing.Size(305, 200);
     this.gridFitnessProduct.TabIndex = 5;
     this.gridFitnessProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                       this.gvFitnessProduct,
                                                                                                       this.gridView4});
     //
     // gvFitnessProduct
     //
     this.gvFitnessProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gvFitnessProductRank,
                                                                                             this.gridColumn3,
                                                                                             this.gridColumn4,
                                                                                             this.gvFitnessProductSalesPercentage,
                                                                                             this.gvFitnessProductTotalSales});
     this.gvFitnessProduct.GridControl = this.gridFitnessProduct;
     this.gvFitnessProduct.Name = "gvFitnessProduct";
     this.gvFitnessProduct.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.RPComSalesRanking_CustomUnboundColumnData);
     //
     // gvFitnessProductRank
     //
     this.gvFitnessProductRank.Caption = "Rank";
     this.gvFitnessProductRank.FieldName = "gridColumn1";
     this.gvFitnessProductRank.Name = "gvFitnessProductRank";
     this.gvFitnessProductRank.SummaryItem.DisplayFormat = "{0}";
     this.gvFitnessProductRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvFitnessProductRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvFitnessProductRank.Visible = true;
     this.gvFitnessProductRank.VisibleIndex = 0;
     this.gvFitnessProductRank.Width = 50;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Employee Name";
     this.gridColumn3.FieldName = "strEmployeeName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 54;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Branch Code";
     this.gridColumn4.FieldName = "strBranchCode";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     this.gridColumn4.Width = 72;
     //
     // gvFitnessProductSalesPercentage
     //
     this.gvFitnessProductSalesPercentage.Caption = "Sales Percentage";
     this.gvFitnessProductSalesPercentage.FieldName = "SalesPercentage";
     this.gvFitnessProductSalesPercentage.Name = "gvFitnessProductSalesPercentage";
     this.gvFitnessProductSalesPercentage.Visible = true;
     this.gvFitnessProductSalesPercentage.VisibleIndex = 2;
     this.gvFitnessProductSalesPercentage.Width = 54;
     //
     // gvFitnessProductTotalSales
     //
     this.gvFitnessProductTotalSales.Caption = "Total Sales";
     this.gvFitnessProductTotalSales.FieldName = "TotalSales";
     this.gvFitnessProductTotalSales.Name = "gvFitnessProductTotalSales";
     this.gvFitnessProductTotalSales.Visible = true;
     this.gvFitnessProductTotalSales.VisibleIndex = 3;
     this.gvFitnessProductTotalSales.Width = 54;
     //
     // gridView4
     //
     this.gridView4.GridControl = this.gridFitnessProduct;
     this.gridView4.Name = "gridView4";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(8, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 23);
     this.label2.TabIndex = 7;
     this.label2.Text = "Month";
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(144, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 23);
     this.label3.TabIndex = 8;
     this.label3.Text = "Year";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(320, 40);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(304, 24);
     this.label4.TabIndex = 9;
     this.label4.Text = "Ranking of Fitness Product Sales";
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location = new System.Drawing.Point(8, 312);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(304, 24);
     this.label5.TabIndex = 12;
     this.label5.Text = "Ranking of Spa Product Sales";
     //
     // RGSpaProduct
     //
     this.RGSpaProduct.EditValue = 0;
     this.RGSpaProduct.Location = new System.Drawing.Point(8, 336);
     this.RGSpaProduct.Name = "RGSpaProduct";
     //
     // RGSpaProduct.Properties
     //
     this.RGSpaProduct.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGSpaProduct.Properties.Appearance.Options.UseBackColor = true;
     this.RGSpaProduct.Properties.Columns = 2;
     this.RGSpaProduct.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                          new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
                                                                                                          new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGSpaProduct.Size = new System.Drawing.Size(305, 24);
     this.RGSpaProduct.TabIndex = 11;
     this.RGSpaProduct.SelectedIndexChanged += new System.EventHandler(this.RGSpaProduct_SelectedIndexChanged);
     //
     // gridSpaProduct
     //
     //
     // gridSpaProduct.EmbeddedNavigator
     //
     this.gridSpaProduct.EmbeddedNavigator.Name = "";
     this.gridSpaProduct.Location = new System.Drawing.Point(8, 368);
     this.gridSpaProduct.MainView = this.gvSpaProduct;
     this.gridSpaProduct.Name = "gridSpaProduct";
     this.gridSpaProduct.Size = new System.Drawing.Size(305, 200);
     this.gridSpaProduct.TabIndex = 10;
     this.gridSpaProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gvSpaProduct,
                                                                                                   this.gridView5});
     //
     // gvSpaProduct
     //
     this.gvSpaProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                         this.gvSpaProductRank,
                                                                                         this.gridColumn6,
                                                                                         this.gridColumn7,
                                                                                         this.gvSpaProductSalesPercentage,
                                                                                         this.gvSpaProductTotalSales});
     this.gvSpaProduct.GridControl = this.gridSpaProduct;
     this.gvSpaProduct.Name = "gvSpaProduct";
     this.gvSpaProduct.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvSpaProduct_CustomUnboundColumnData);
     //
     // gvSpaProductRank
     //
     this.gvSpaProductRank.Caption = "Rank";
     this.gvSpaProductRank.FieldName = "gridColumn1";
     this.gvSpaProductRank.Name = "gvSpaProductRank";
     this.gvSpaProductRank.SummaryItem.DisplayFormat = "{0}";
     this.gvSpaProductRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvSpaProductRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvSpaProductRank.Visible = true;
     this.gvSpaProductRank.VisibleIndex = 0;
     this.gvSpaProductRank.Width = 50;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Employee Name";
     this.gridColumn6.FieldName = "strEmployeeName";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     this.gridColumn6.Width = 54;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Branch Code";
     this.gridColumn7.FieldName = "strBranchCode";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     this.gridColumn7.Width = 72;
     //
     // gvSpaProductSalesPercentage
     //
     this.gvSpaProductSalesPercentage.Caption = "Sales Percentage";
     this.gvSpaProductSalesPercentage.FieldName = "SalesPercentage";
     this.gvSpaProductSalesPercentage.Name = "gvSpaProductSalesPercentage";
     this.gvSpaProductSalesPercentage.Visible = true;
     this.gvSpaProductSalesPercentage.VisibleIndex = 2;
     this.gvSpaProductSalesPercentage.Width = 54;
     //
     // gvSpaProductTotalSales
     //
     this.gvSpaProductTotalSales.Caption = "Total Sales";
     this.gvSpaProductTotalSales.FieldName = "TotalSales";
     this.gvSpaProductTotalSales.Name = "gvSpaProductTotalSales";
     this.gvSpaProductTotalSales.Visible = true;
     this.gvSpaProductTotalSales.VisibleIndex = 3;
     this.gvSpaProductTotalSales.Width = 54;
     //
     // gridView5
     //
     this.gridView5.GridControl = this.gridSpaProduct;
     this.gridView5.Name = "gridView5";
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(320, 312);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(304, 24);
     this.label6.TabIndex = 15;
     this.label6.Text = "Ranking of Personal Trainer Sales";
     //
     // RGPTPackage
     //
     this.RGPTPackage.EditValue = 0;
     this.RGPTPackage.Location = new System.Drawing.Point(320, 336);
     this.RGPTPackage.Name = "RGPTPackage";
     //
     // RGPTPackage.Properties
     //
     this.RGPTPackage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGPTPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGPTPackage.Properties.Columns = 2;
     this.RGPTPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                         new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
                                                                                                         new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGPTPackage.Size = new System.Drawing.Size(305, 24);
     this.RGPTPackage.TabIndex = 14;
     this.RGPTPackage.SelectedIndexChanged += new System.EventHandler(this.RGPTPackage_SelectedIndexChanged);
     //
     // gridPTPackage
     //
     //
     // gridPTPackage.EmbeddedNavigator
     //
     this.gridPTPackage.EmbeddedNavigator.Name = "";
     this.gridPTPackage.Location = new System.Drawing.Point(320, 368);
     this.gridPTPackage.MainView = this.gvPTPackage;
     this.gridPTPackage.Name = "gridPTPackage";
     this.gridPTPackage.Size = new System.Drawing.Size(305, 200);
     this.gridPTPackage.TabIndex = 13;
     this.gridPTPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gvPTPackage,
                                                                                                  this.gridView7});
     //
     // gvPTPackage
     //
     this.gvPTPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.gvPTPackageRank,
                                                                                        this.gridColumn11,
                                                                                        this.gridColumn12,
                                                                                        this.gvPTPackageSalesPercentage,
                                                                                        this.gvPTPackageTotalSales});
     this.gvPTPackage.GridControl = this.gridPTPackage;
     this.gvPTPackage.Name = "gvPTPackage";
     this.gvPTPackage.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvPTPackage_CustomUnboundColumnData);
     //
     // gvPTPackageRank
     //
     this.gvPTPackageRank.Caption = "Rank";
     this.gvPTPackageRank.FieldName = "gridColumn1";
     this.gvPTPackageRank.Name = "gvPTPackageRank";
     this.gvPTPackageRank.SummaryItem.DisplayFormat = "{0}";
     this.gvPTPackageRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvPTPackageRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvPTPackageRank.Visible = true;
     this.gvPTPackageRank.VisibleIndex = 0;
     this.gvPTPackageRank.Width = 50;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Employee Name";
     this.gridColumn11.FieldName = "strEmployeeName";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 1;
     this.gridColumn11.Width = 54;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Branch Code";
     this.gridColumn12.FieldName = "strBranchCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 4;
     this.gridColumn12.Width = 72;
     //
     // gvPTPackageSalesPercentage
     //
     this.gvPTPackageSalesPercentage.Caption = "Sales Percentage";
     this.gvPTPackageSalesPercentage.FieldName = "SalesPercentage";
     this.gvPTPackageSalesPercentage.Name = "gvPTPackageSalesPercentage";
     this.gvPTPackageSalesPercentage.Visible = true;
     this.gvPTPackageSalesPercentage.VisibleIndex = 2;
     this.gvPTPackageSalesPercentage.Width = 54;
     //
     // gvPTPackageTotalSales
     //
     this.gvPTPackageTotalSales.Caption = "Total Sales";
     this.gvPTPackageTotalSales.FieldName = "TotalSales";
     this.gvPTPackageTotalSales.Name = "gvPTPackageTotalSales";
     this.gvPTPackageTotalSales.Visible = true;
     this.gvPTPackageTotalSales.VisibleIndex = 3;
     this.gvPTPackageTotalSales.Width = 54;
     //
     // gridView7
     //
     this.gridView7.GridControl = this.gridPTPackage;
     this.gridView7.Name = "gridView7";
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label7.Location = new System.Drawing.Point(320, 576);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(304, 24);
     this.label7.TabIndex = 21;
     this.label7.Text = "Ranking of Cross Selling Sales";
     //
     // RGIPLService
     //
     this.RGIPLService.EditValue = 0;
     this.RGIPLService.Location = new System.Drawing.Point(320, 600);
     this.RGIPLService.Name = "RGIPLService";
     //
     // RGIPLService.Properties
     //
     this.RGIPLService.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGIPLService.Properties.Appearance.Options.UseBackColor = true;
     this.RGIPLService.Properties.Columns = 2;
     this.RGIPLService.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                          new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
                                                                                                          new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGIPLService.Size = new System.Drawing.Size(305, 24);
     this.RGIPLService.TabIndex = 20;
     this.RGIPLService.SelectedIndexChanged += new System.EventHandler(this.RGIPLService_SelectedIndexChanged);
     //
     // gridIPLService
     //
     //
     // gridIPLService.EmbeddedNavigator
     //
     this.gridIPLService.EmbeddedNavigator.Name = "";
     this.gridIPLService.Location = new System.Drawing.Point(320, 632);
     this.gridIPLService.MainView = this.gvIPLService;
     this.gridIPLService.Name = "gridIPLService";
     this.gridIPLService.Size = new System.Drawing.Size(305, 200);
     this.gridIPLService.TabIndex = 19;
     this.gridIPLService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gvIPLService,
                                                                                                   this.gridView6});
     //
     // gvIPLService
     //
     this.gvIPLService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                         this.gvIPLServiceRank,
                                                                                         this.gridColumn8,
                                                                                         this.gridColumn9,
                                                                                         this.gvIPLServiceSalesPercentage,
                                                                                         this.gvIPLServiceTotalSales});
     this.gvIPLService.GridControl = this.gridIPLService;
     this.gvIPLService.Name = "gvIPLService";
     this.gvIPLService.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvIPLService_CustomUnboundColumnData);
     //
     // gvIPLServiceRank
     //
     this.gvIPLServiceRank.Caption = "Rank";
     this.gvIPLServiceRank.FieldName = "gridColumn1";
     this.gvIPLServiceRank.Name = "gvIPLServiceRank";
     this.gvIPLServiceRank.SummaryItem.DisplayFormat = "{0}";
     this.gvIPLServiceRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvIPLServiceRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvIPLServiceRank.Visible = true;
     this.gvIPLServiceRank.VisibleIndex = 0;
     this.gvIPLServiceRank.Width = 50;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Employee Name";
     this.gridColumn8.FieldName = "strEmployeeName";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     this.gridColumn8.Width = 54;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Branch Code";
     this.gridColumn9.FieldName = "strBranchCode";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 4;
     this.gridColumn9.Width = 72;
     //
     // gvIPLServiceSalesPercentage
     //
     this.gvIPLServiceSalesPercentage.Caption = "Sales Percentage";
     this.gvIPLServiceSalesPercentage.FieldName = "SalesPercentage";
     this.gvIPLServiceSalesPercentage.Name = "gvIPLServiceSalesPercentage";
     this.gvIPLServiceSalesPercentage.Visible = true;
     this.gvIPLServiceSalesPercentage.VisibleIndex = 2;
     this.gvIPLServiceSalesPercentage.Width = 54;
     //
     // gvIPLServiceTotalSales
     //
     this.gvIPLServiceTotalSales.Caption = "Total Sales";
     this.gvIPLServiceTotalSales.FieldName = "TotalSales";
     this.gvIPLServiceTotalSales.Name = "gvIPLServiceTotalSales";
     this.gvIPLServiceTotalSales.Visible = true;
     this.gvIPLServiceTotalSales.VisibleIndex = 3;
     this.gvIPLServiceTotalSales.Width = 54;
     //
     // gridView6
     //
     this.gridView6.GridControl = this.gridIPLService;
     this.gridView6.Name = "gridView6";
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label8.Location = new System.Drawing.Point(8, 576);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(304, 24);
     this.label8.TabIndex = 18;
     this.label8.Text = "Ranking of Spa Service Sales";
     //
     // RGSpaService
     //
     this.RGSpaService.EditValue = 0;
     this.RGSpaService.Location = new System.Drawing.Point(8, 600);
     this.RGSpaService.Name = "RGSpaService";
     //
     // RGSpaService.Properties
     //
     this.RGSpaService.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGSpaService.Properties.Appearance.Options.UseBackColor = true;
     this.RGSpaService.Properties.Columns = 2;
     this.RGSpaService.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                          new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
                                                                                                          new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGSpaService.Size = new System.Drawing.Size(305, 24);
     this.RGSpaService.TabIndex = 17;
     this.RGSpaService.SelectedIndexChanged += new System.EventHandler(this.RGSpaService_SelectedIndexChanged);
     //
     // gridSpaService
     //
     //
     // gridSpaService.EmbeddedNavigator
     //
     this.gridSpaService.EmbeddedNavigator.Name = "";
     this.gridSpaService.Location = new System.Drawing.Point(8, 632);
     this.gridSpaService.MainView = this.gvSpaService;
     this.gridSpaService.Name = "gridSpaService";
     this.gridSpaService.Size = new System.Drawing.Size(305, 200);
     this.gridSpaService.TabIndex = 16;
     this.gridSpaService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gvSpaService,
                                                                                                   this.gridView9});
     //
     // gvSpaService
     //
     this.gvSpaService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                         this.gvSpaServiceRank,
                                                                                         this.gridColumn15,
                                                                                         this.gridColumn16,
                                                                                         this.gvSpaServiceSalesPercentage,
                                                                                         this.gvSpaServiceTotalSales});
     this.gvSpaService.GridControl = this.gridSpaService;
     this.gvSpaService.Name = "gvSpaService";
     this.gvSpaService.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvSpaService_CustomUnboundColumnData);
     //
     // gvSpaServiceRank
     //
     this.gvSpaServiceRank.Caption = "Rank";
     this.gvSpaServiceRank.FieldName = "gridColumn1";
     this.gvSpaServiceRank.Name = "gvSpaServiceRank";
     this.gvSpaServiceRank.SummaryItem.DisplayFormat = "{0}";
     this.gvSpaServiceRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvSpaServiceRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvSpaServiceRank.Visible = true;
     this.gvSpaServiceRank.VisibleIndex = 0;
     this.gvSpaServiceRank.Width = 50;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Employee Name";
     this.gridColumn15.FieldName = "strEmployeeName";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 1;
     this.gridColumn15.Width = 54;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Branch Code";
     this.gridColumn16.FieldName = "strBranchCode";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     this.gridColumn16.Width = 72;
     //
     // gvSpaServiceSalesPercentage
     //
     this.gvSpaServiceSalesPercentage.Caption = "Sales Percentage";
     this.gvSpaServiceSalesPercentage.FieldName = "SalesPercentage";
     this.gvSpaServiceSalesPercentage.Name = "gvSpaServiceSalesPercentage";
     this.gvSpaServiceSalesPercentage.Visible = true;
     this.gvSpaServiceSalesPercentage.VisibleIndex = 2;
     this.gvSpaServiceSalesPercentage.Width = 54;
     //
     // gvSpaServiceTotalSales
     //
     this.gvSpaServiceTotalSales.Caption = "Total Sales";
     this.gvSpaServiceTotalSales.FieldName = "TotalSales";
     this.gvSpaServiceTotalSales.Name = "gvSpaServiceTotalSales";
     this.gvSpaServiceTotalSales.Visible = true;
     this.gvSpaServiceTotalSales.VisibleIndex = 3;
     this.gvSpaServiceTotalSales.Width = 54;
     //
     // gridView9
     //
     this.gridView9.GridControl = this.gridSpaService;
     this.gridView9.Name = "gridView9";
     //
     // RPComSalesRanking
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(607, 436);
     this.Controls.Add(this.gridFitnessProduct);
     this.Controls.Add(this.gridSpaProduct);
     this.Controls.Add(this.gridPTPackage);
     this.Controls.Add(this.gridIPLService);
     this.Controls.Add(this.gridSpaService);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.RGIPLService);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.RGSpaService);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.RGPTPackage);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.RGSpaProduct);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.RGFitnessProduct);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.RGFitnessPackage);
     this.Controls.Add(this.gridFitnessPackage);
     this.DockPadding.Bottom = 30;
     this.MinimizeBox = false;
     this.Name = "RPComSalesRanking";
     this.Text = "RPComSalesRanking";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPComSalesRanking_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGSpaProduct.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSpaProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGPTPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPTPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPTPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGIPLService.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridIPLService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvIPLService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGSpaService.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSpaService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView9)).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.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
     this.dropDownButton1 = new DevExpress.XtraEditors.DropDownButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.simpleButton2);
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Controls.Add(this.memoEdit1);
     this.groupControl1.Controls.Add(this.memoEdit2);
     this.groupControl1.Location = new System.Drawing.Point(13, 139);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(402, 110);
     this.groupControl1.TabIndex = 35;
     this.groupControl1.Text = "Empleado";
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(181, 65);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(40, 23);
     this.simpleButton2.TabIndex = 5;
     this.simpleButton2.Text = "<<";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(181, 36);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(40, 23);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = ">>";
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(14, 24);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(145, 76);
     this.memoEdit1.TabIndex = 3;
     //
     // memoEdit2
     //
     this.memoEdit2.Location = new System.Drawing.Point(244, 24);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(145, 76);
     this.memoEdit2.TabIndex = 2;
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit2.Location = new System.Drawing.Point(302, 53);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit2.Size = new System.Drawing.Size(100, 20);
     this.dateEdit2.TabIndex = 34;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit1.Location = new System.Drawing.Point(146, 53);
     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.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 33;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(257, 56);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(28, 13);
     this.labelControl2.TabIndex = 32;
     this.labelControl2.Text = "Hasta";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(110, 56);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(30, 13);
     this.labelControl1.TabIndex = 31;
     this.labelControl1.Text = "Desde";
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4,
     this.toolStripButton1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(432, 25);
     this.toolStrip1.TabIndex = 30;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton4
     //
     this.toolStripButton4.Image = global::forms.Properties.Resources.imprimir;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(68, 22);
     this.toolStripButton4.Text = "Generar";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = global::forms.Properties.Resources.guardar;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(69, 22);
     this.toolStripButton1.Text = "Guardar";
     //
     // toolStripButton3
     //
     this.toolStripButton3.Image = global::forms.Properties.Resources._24_cancelar;
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(49, 22);
     this.toolStripButton3.Text = "Salir";
     //
     // radioGroup1
     //
     this.radioGroup1.Location = new System.Drawing.Point(12, 45);
     this.radioGroup1.Name = "radioGroup1";
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Fecha"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Tipo Permiso"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Todos")});
     this.radioGroup1.Size = new System.Drawing.Size(403, 80);
     this.radioGroup1.TabIndex = 29;
     //
     // dropDownButton1
     //
     this.dropDownButton1.Location = new System.Drawing.Point(110, 76);
     this.dropDownButton1.Name = "dropDownButton1";
     this.dropDownButton1.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton1.TabIndex = 36;
     //
     // frmConsultaPermisos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(432, 262);
     this.Controls.Add(this.dropDownButton1);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.dateEdit2);
     this.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.radioGroup1);
     this.Name = "frmConsultaPermisos";
     this.Text = "Consulta de Permisos";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.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.txtDescripcion = new DevExpress.XtraEditors.TextEdit();
     this.lblDescripcion = new DevExpress.XtraEditors.LabelControl();
     this.txtCodigo = new DevExpress.XtraEditors.TextEdit();
     this.lblCodigo = new DevExpress.XtraEditors.LabelControl();
     this.deDesde = new DevExpress.XtraEditors.DateEdit();
     this.lblDesde = new DevExpress.XtraEditors.LabelControl();
     this.lblHasta = new DevExpress.XtraEditors.LabelControl();
     this.deHasta = new DevExpress.XtraEditors.DateEdit();
     this.lblMonto = new DevExpress.XtraEditors.LabelControl();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.rgMulta = new DevExpress.XtraEditors.RadioGroup();
     this.lblPorcentaje = new DevExpress.XtraEditors.LabelControl();
     this.lblSimboloPor = new DevExpress.XtraEditors.LabelControl();
     this.lblSimboloDol = new DevExpress.XtraEditors.LabelControl();
     this.lblEstado = new DevExpress.XtraEditors.LabelControl();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnBuscar = new DevExpress.XtraEditors.SimpleButton();
     this.tsMenu = new System.Windows.Forms.ToolStrip();
     this.tsbNuevo = new System.Windows.Forms.ToolStripButton();
     this.tsbGuardar = new System.Windows.Forms.ToolStripButton();
     this.tsbModificar = new System.Windows.Forms.ToolStripButton();
     this.tsbEliminar = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescripcion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCodigo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDesde.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDesde.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHasta.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHasta.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgMulta.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     this.tsMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // txtDescripcion
     //
     this.txtDescripcion.Location = new System.Drawing.Point(287, 42);
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.Size = new System.Drawing.Size(169, 20);
     this.txtDescripcion.TabIndex = 40;
     //
     // lblDescripcion
     //
     this.lblDescripcion.Location = new System.Drawing.Point(219, 45);
     this.lblDescripcion.Name = "lblDescripcion";
     this.lblDescripcion.Size = new System.Drawing.Size(58, 13);
     this.lblDescripcion.TabIndex = 39;
     this.lblDescripcion.Text = "Descripción:";
     //
     // txtCodigo
     //
     this.txtCodigo.Location = new System.Drawing.Point(64, 42);
     this.txtCodigo.Name = "txtCodigo";
     this.txtCodigo.Size = new System.Drawing.Size(92, 20);
     this.txtCodigo.TabIndex = 38;
     //
     // lblCodigo
     //
     this.lblCodigo.Location = new System.Drawing.Point(21, 45);
     this.lblCodigo.Name = "lblCodigo";
     this.lblCodigo.Size = new System.Drawing.Size(37, 13);
     this.lblCodigo.TabIndex = 37;
     this.lblCodigo.Text = "Código:";
     //
     // deDesde
     //
     this.deDesde.EditValue = null;
     this.deDesde.Location = new System.Drawing.Point(64, 68);
     this.deDesde.Name = "deDesde";
     this.deDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deDesde.Size = new System.Drawing.Size(100, 20);
     this.deDesde.TabIndex = 47;
     //
     // lblDesde
     //
     this.lblDesde.Location = new System.Drawing.Point(21, 71);
     this.lblDesde.Name = "lblDesde";
     this.lblDesde.Size = new System.Drawing.Size(37, 13);
     this.lblDesde.TabIndex = 48;
     this.lblDesde.Text = "Desde :";
     //
     // lblHasta
     //
     this.lblHasta.Location = new System.Drawing.Point(245, 71);
     this.lblHasta.Name = "lblHasta";
     this.lblHasta.Size = new System.Drawing.Size(32, 13);
     this.lblHasta.TabIndex = 50;
     this.lblHasta.Text = "Hasta:";
     //
     // deHasta
     //
     this.deHasta.EditValue = null;
     this.deHasta.Location = new System.Drawing.Point(287, 68);
     this.deHasta.Name = "deHasta";
     this.deHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHasta.Size = new System.Drawing.Size(100, 20);
     this.deHasta.TabIndex = 49;
     //
     // lblMonto
     //
     this.lblMonto.Enabled = false;
     this.lblMonto.Location = new System.Drawing.Point(64, 78);
     this.lblMonto.Name = "lblMonto";
     this.lblMonto.Size = new System.Drawing.Size(37, 13);
     this.lblMonto.TabIndex = 51;
     this.lblMonto.Text = "Monto :";
     //
     // textEdit3
     //
     this.textEdit3.Enabled = false;
     this.textEdit3.Location = new System.Drawing.Point(107, 75);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Size = new System.Drawing.Size(100, 20);
     this.textEdit3.TabIndex = 52;
     //
     // rgMulta
     //
     this.rgMulta.Location = new System.Drawing.Point(34, 10);
     this.rgMulta.Name = "rgMulta";
     this.rgMulta.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rgMulta.Properties.Appearance.Options.UseBackColor = true;
     this.rgMulta.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rgMulta.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.rgMulta.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Porcentaje"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Monto")});
     this.rgMulta.Size = new System.Drawing.Size(242, 25);
     this.rgMulta.TabIndex = 46;
     this.rgMulta.SelectedIndexChanged += new System.EventHandler(this.radioGroup1_SelectedIndexChanged);
     //
     // lblPorcentaje
     //
     this.lblPorcentaje.Location = new System.Drawing.Point(46, 52);
     this.lblPorcentaje.Name = "lblPorcentaje";
     this.lblPorcentaje.Size = new System.Drawing.Size(56, 13);
     this.lblPorcentaje.TabIndex = 43;
     this.lblPorcentaje.Text = "Porcentaje:";
     this.lblPorcentaje.Click += new System.EventHandler(this.labelControl4_Click);
     //
     // lblSimboloPor
     //
     this.lblSimboloPor.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSimboloPor.Location = new System.Drawing.Point(216, 52);
     this.lblSimboloPor.Name = "lblSimboloPor";
     this.lblSimboloPor.Size = new System.Drawing.Size(13, 13);
     this.lblSimboloPor.TabIndex = 53;
     this.lblSimboloPor.Text = "%";
     //
     // lblSimboloDol
     //
     this.lblSimboloDol.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSimboloDol.Enabled = false;
     this.lblSimboloDol.Location = new System.Drawing.Point(216, 78);
     this.lblSimboloDol.Name = "lblSimboloDol";
     this.lblSimboloDol.Size = new System.Drawing.Size(7, 13);
     this.lblSimboloDol.TabIndex = 54;
     this.lblSimboloDol.Text = "$";
     //
     // lblEstado
     //
     this.lblEstado.Location = new System.Drawing.Point(64, 107);
     this.lblEstado.Name = "lblEstado";
     this.lblEstado.Size = new System.Drawing.Size(37, 13);
     this.lblEstado.TabIndex = 41;
     this.lblEstado.Text = "Estado:";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(107, 49);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(100, 20);
     this.textEdit2.TabIndex = 44;
     this.textEdit2.EditValueChanged += new System.EventHandler(this.textEdit2_EditValueChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.comboBoxEdit1);
     this.panelControl1.Controls.Add(this.textEdit2);
     this.panelControl1.Controls.Add(this.lblEstado);
     this.panelControl1.Controls.Add(this.lblSimboloDol);
     this.panelControl1.Controls.Add(this.lblSimboloPor);
     this.panelControl1.Controls.Add(this.lblPorcentaje);
     this.panelControl1.Controls.Add(this.rgMulta);
     this.panelControl1.Controls.Add(this.textEdit3);
     this.panelControl1.Controls.Add(this.lblMonto);
     this.panelControl1.Location = new System.Drawing.Point(76, 105);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(290, 150);
     this.panelControl1.TabIndex = 57;
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.Location = new System.Drawing.Point(107, 104);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Size = new System.Drawing.Size(100, 20);
     this.comboBoxEdit1.TabIndex = 57;
     //
     // btnBuscar
     //
     this.btnBuscar.Image = global::forms.Properties.Resources.consultar;
     this.btnBuscar.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnBuscar.Location = new System.Drawing.Point(162, 42);
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(23, 20);
     this.btnBuscar.TabIndex = 58;
     //
     // tsMenu
     //
     this.tsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsbNuevo,
     this.tsbGuardar,
     this.tsbModificar,
     this.tsbEliminar});
     this.tsMenu.Location = new System.Drawing.Point(0, 0);
     this.tsMenu.Name = "tsMenu";
     this.tsMenu.Size = new System.Drawing.Size(468, 25);
     this.tsMenu.TabIndex = 79;
     this.tsMenu.Text = "toolStrip1";
     //
     // tsbNuevo
     //
     this.tsbNuevo.Image = global::forms.Properties.Resources.nuevo;
     this.tsbNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbNuevo.Name = "tsbNuevo";
     this.tsbNuevo.Size = new System.Drawing.Size(62, 22);
     this.tsbNuevo.Text = "Nuevo";
     //
     // tsbGuardar
     //
     this.tsbGuardar.Image = global::forms.Properties.Resources.guardar;
     this.tsbGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbGuardar.Name = "tsbGuardar";
     this.tsbGuardar.Size = new System.Drawing.Size(69, 22);
     this.tsbGuardar.Text = "Guardar";
     //
     // tsbModificar
     //
     this.tsbModificar.Image = global::forms.Properties.Resources.modificar;
     this.tsbModificar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbModificar.Name = "tsbModificar";
     this.tsbModificar.Size = new System.Drawing.Size(78, 22);
     this.tsbModificar.Text = "Modificar";
     //
     // tsbEliminar
     //
     this.tsbEliminar.Image = global::forms.Properties.Resources.eliminar1;
     this.tsbEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbEliminar.Name = "tsbEliminar";
     this.tsbEliminar.Size = new System.Drawing.Size(70, 22);
     this.tsbEliminar.Text = "Eliminar";
     //
     // frmMantenimientoMulta
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(468, 267);
     this.Controls.Add(this.tsMenu);
     this.Controls.Add(this.btnBuscar);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.lblHasta);
     this.Controls.Add(this.deHasta);
     this.Controls.Add(this.lblDesde);
     this.Controls.Add(this.deDesde);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.lblDescripcion);
     this.Controls.Add(this.txtCodigo);
     this.Controls.Add(this.lblCodigo);
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(484, 305);
     this.MinimumSize = new System.Drawing.Size(484, 305);
     this.Name = "frmMantenimientoMulta";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento Multa";
     this.Load += new System.EventHandler(this.frmMantenimientoMulta_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtDescripcion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCodigo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDesde.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDesde.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHasta.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHasta.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgMulta.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     this.tsMenu.ResumeLayout(false);
     this.tsMenu.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(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()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_promociones));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.articid = new System.Windows.Forms.TextBox();
     this.articname = new System.Windows.Forms.TextBox();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.pnl_01 = new DevExpress.XtraEditors.PanelControl();
     this.rdb_estado = new DevExpress.XtraEditors.RadioGroup();
     this.pnl_dias = new DevExpress.XtraEditors.PanelControl();
     this.chk_sab = new DevExpress.XtraEditors.CheckEdit();
     this.chk_lun = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mar = new DevExpress.XtraEditors.CheckEdit();
     this.chk_dom = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mie = new DevExpress.XtraEditors.CheckEdit();
     this.chk_jue = new DevExpress.XtraEditors.CheckEdit();
     this.chk_vie = new DevExpress.XtraEditors.CheckEdit();
     this.exclusivo = new System.Windows.Forms.TextBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.chk_solodias = new DevExpress.XtraEditors.CheckEdit();
     this.impopack = new System.Windows.Forms.TextBox();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.npack = new System.Windows.Forms.TextBox();
     this.aplicfin = new System.Windows.Forms.TextBox();
     this.aplicini = new System.Windows.Forms.TextBox();
     this.impodoc = new System.Windows.Forms.TextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_grupopromocion = new System.Windows.Forms.ComboBox();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.perdsctocab = new System.Windows.Forms.TextBox();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.chk_aldocum = new DevExpress.XtraEditors.CheckEdit();
     this.prioridad = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tarjgrupoid = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tiendalist = new System.Windows.Forms.ComboBox();
     this.fechafin = new System.Windows.Forms.DateTimePicker();
     this.fechaini = new System.Windows.Forms.DateTimePicker();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.promoname = new System.Windows.Forms.TextBox();
     this.promoid = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.pnlcontroldet = new DevExpress.XtraEditors.PanelControl();
     this.btn_update = new DevExpress.XtraEditors.SimpleButton();
     this.btn_search = new DevExpress.XtraEditors.SimpleButton();
     this.rollo_search = new System.Windows.Forms.TextBox();
     this.btn_exportar = new DevExpress.XtraEditors.SimpleButton();
     this.btn_importar = new DevExpress.XtraEditors.SimpleButton();
     this.chk_aldoc2 = new DevExpress.XtraEditors.CheckEdit();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.precunit = new System.Windows.Forms.TextBox();
     this.percdscto = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.dgb_promodet = new System.Windows.Forms.DataGridView();
     this.@__promoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._es_dscto = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.@__percdscto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._usuarip = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.Group_chks = new DevExpress.XtraEditors.RadioGroup();
     this.cmb_perianio = new System.Windows.Forms.ComboBox();
     this.cmb_grupopromocion2 = new System.Windows.Forms.ComboBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.Mdi_dgv_promociones = new DevExpress.XtraGrid.GridControl();
     this.dgv_promociones = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._promoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._prioridad = new DevExpress.XtraGrid.Columns.GridColumn();
     this._status = new DevExpress.XtraGrid.Columns.GridColumn();
     this._exclusivo = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tiendalist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjgrupoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjetaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._percdscto = new DevExpress.XtraGrid.Columns.GridColumn();
     this._al_docum = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechaini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechafin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promotipoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._grupopromoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._campaniaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fecre = new DevExpress.XtraGrid.Columns.GridColumn();
     this._feact = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuarap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._solodias = new DevExpress.XtraGrid.Columns.GridColumn();
     this._dom = new DevExpress.XtraGrid.Columns.GridColumn();
     this._lun = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._jue = new DevExpress.XtraGrid.Columns.GridColumn();
     this._vie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._sab = new DevExpress.XtraGrid.Columns.GridColumn();
     this._npack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impopack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicfin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impodoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).BeginInit();
     this.pnl_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).BeginInit();
     this.pnl_dias.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).BeginInit();
     this.pnlcontroldet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     this.SuspendLayout();
     //
     // articid
     //
     this.articid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.articid.Location = new System.Drawing.Point(76, 4);
     this.articid.MaxLength = 10;
     this.articid.Name = "articid";
     this.articid.Size = new System.Drawing.Size(66, 20);
     this.articid.TabIndex = 11;
     this.articid.Text = "00000000";
     this.articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.articid_KeyDown);
     //
     // articname
     //
     this.articname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articname.Location = new System.Drawing.Point(143, 4);
     this.articname.Name = "articname";
     this.articname.Size = new System.Drawing.Size(326, 21);
     this.articname.TabIndex = 12;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem14.Text = "Nuevo";
     superToolTip14.Items.Add(toolTipTitleItem14);
     this.btn_nuevo.SuperTip = superToolTip14;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem15.Text = "Editar";
     superToolTip15.Items.Add(toolTipTitleItem15);
     this.btn_editar.SuperTip = superToolTip15;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem17.Text = "Cancelar";
     superToolTip17.Items.Add(toolTipTitleItem17);
     this.btn_cancelar.SuperTip = superToolTip17;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem16.Text = "Guardar";
     superToolTip16.Items.Add(toolTipTitleItem16);
     this.btn_grabar.SuperTip = superToolTip16;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem18.Text = "Elimar Registro";
     superToolTip18.Items.Add(toolTipTitleItem18);
     this.btn_eliminar.SuperTip = superToolTip18;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem19.Text = "Imprimir";
     superToolTip19.Items.Add(toolTipTitleItem19);
     this.btn_imprimir.SuperTip = superToolTip19;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem21.Text = "Log";
     superToolTip21.Items.Add(toolTipTitleItem21);
     this.btn_log.SuperTip = superToolTip21;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem26.Text = "Salir";
     superToolTip26.Items.Add(toolTipTitleItem26);
     this.btn_salir.SuperTip = superToolTip26;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1038, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 595);
     this.barDockControlBottom.Size = new System.Drawing.Size(1038, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 567);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1038, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 567);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem20.Text = "Actualizar";
     superToolTip20.Items.Add(toolTipTitleItem20);
     this.btnLoad.SuperTip = superToolTip20;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem22.Text = "Primer Registro";
     superToolTip22.Items.Add(toolTipTitleItem22);
     this.btnInicio.SuperTip = superToolTip22;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem23.Text = "Anterior Registro";
     superToolTip23.Items.Add(toolTipTitleItem23);
     this.btnAnterior.SuperTip = superToolTip23;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem24.Text = "Siguiente Registro";
     superToolTip24.Items.Add(toolTipTitleItem24);
     this.btnSiguiente.SuperTip = superToolTip24;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem25.Text = "Ultimo Registro";
     superToolTip25.Items.Add(toolTipTitleItem25);
     this.btnUltimo.SuperTip = superToolTip25;
     //
     // pnl_01
     //
     this.pnl_01.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_01.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_01.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.pnl_01.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnl_01.Appearance.Options.UseBackColor = true;
     this.pnl_01.Appearance.Options.UseFont = true;
     this.pnl_01.Appearance.Options.UseForeColor = true;
     this.pnl_01.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_01.Controls.Add(this.rdb_estado);
     this.pnl_01.Controls.Add(this.pnl_dias);
     this.pnl_01.Controls.Add(this.exclusivo);
     this.pnl_01.Controls.Add(this.labelControl1);
     this.pnl_01.Controls.Add(this.chk_solodias);
     this.pnl_01.Controls.Add(this.impopack);
     this.pnl_01.Controls.Add(this.labelControl19);
     this.pnl_01.Controls.Add(this.npack);
     this.pnl_01.Controls.Add(this.aplicfin);
     this.pnl_01.Controls.Add(this.aplicini);
     this.pnl_01.Controls.Add(this.impodoc);
     this.pnl_01.Controls.Add(this.labelControl18);
     this.pnl_01.Controls.Add(this.labelControl17);
     this.pnl_01.Controls.Add(this.labelControl16);
     this.pnl_01.Controls.Add(this.labelControl7);
     this.pnl_01.Controls.Add(this.cmb_grupopromocion);
     this.pnl_01.Controls.Add(this.labelControl15);
     this.pnl_01.Controls.Add(this.perdsctocab);
     this.pnl_01.Controls.Add(this.labelControl14);
     this.pnl_01.Controls.Add(this.chk_aldocum);
     this.pnl_01.Controls.Add(this.prioridad);
     this.pnl_01.Controls.Add(this.labelControl13);
     this.pnl_01.Controls.Add(this.cmb_tarjgrupoid);
     this.pnl_01.Controls.Add(this.labelControl12);
     this.pnl_01.Controls.Add(this.cmb_tiendalist);
     this.pnl_01.Controls.Add(this.fechafin);
     this.pnl_01.Controls.Add(this.fechaini);
     this.pnl_01.Controls.Add(this.labelControl6);
     this.pnl_01.Controls.Add(this.labelControl5);
     this.pnl_01.Controls.Add(this.labelControl4);
     this.pnl_01.Controls.Add(this.promoname);
     this.pnl_01.Controls.Add(this.promoid);
     this.pnl_01.Controls.Add(this.labelControl3);
     this.pnl_01.Location = new System.Drawing.Point(474, 31);
     this.pnl_01.Name = "pnl_01";
     this.pnl_01.Size = new System.Drawing.Size(873, 272);
     this.pnl_01.TabIndex = 120;
     //
     // rdb_estado
     //
     this.rdb_estado.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rdb_estado.Location = new System.Drawing.Point(402, 29);
     this.rdb_estado.MenuManager = this.barManager1;
     this.rdb_estado.Name = "rdb_estado";
     this.rdb_estado.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rdb_estado.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rdb_estado.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.rdb_estado.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.rdb_estado.Properties.Appearance.Options.UseBackColor = true;
     this.rdb_estado.Properties.Appearance.Options.UseFont = true;
     this.rdb_estado.Properties.Appearance.Options.UseForeColor = true;
     this.rdb_estado.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rdb_estado.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Activo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(9, "Inactivo")});
     this.rdb_estado.Size = new System.Drawing.Size(81, 38);
     this.rdb_estado.TabIndex = 183;
     //
     // pnl_dias
     //
     this.pnl_dias.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_dias.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_dias.Appearance.Options.UseBackColor = true;
     this.pnl_dias.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_dias.Controls.Add(this.chk_sab);
     this.pnl_dias.Controls.Add(this.chk_lun);
     this.pnl_dias.Controls.Add(this.chk_mar);
     this.pnl_dias.Controls.Add(this.chk_dom);
     this.pnl_dias.Controls.Add(this.chk_mie);
     this.pnl_dias.Controls.Add(this.chk_jue);
     this.pnl_dias.Controls.Add(this.chk_vie);
     this.pnl_dias.Location = new System.Drawing.Point(120, 140);
     this.pnl_dias.Name = "pnl_dias";
     this.pnl_dias.Size = new System.Drawing.Size(139, 60);
     this.pnl_dias.TabIndex = 182;
     //
     // chk_sab
     //
     this.chk_sab.Location = new System.Drawing.Point(51, 40);
     this.chk_sab.MenuManager = this.barManager1;
     this.chk_sab.Name = "chk_sab";
     this.chk_sab.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_sab.Properties.Appearance.Options.UseForeColor = true;
     this.chk_sab.Properties.Caption = "SA";
     this.chk_sab.Size = new System.Drawing.Size(39, 19);
     this.chk_sab.TabIndex = 178;
     //
     // chk_lun
     //
     this.chk_lun.Location = new System.Drawing.Point(6, 0);
     this.chk_lun.MenuManager = this.barManager1;
     this.chk_lun.Name = "chk_lun";
     this.chk_lun.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_lun.Properties.Appearance.Options.UseForeColor = true;
     this.chk_lun.Properties.Caption = "LU";
     this.chk_lun.Size = new System.Drawing.Size(39, 19);
     this.chk_lun.TabIndex = 173;
     //
     // chk_mar
     //
     this.chk_mar.Location = new System.Drawing.Point(6, 20);
     this.chk_mar.MenuManager = this.barManager1;
     this.chk_mar.Name = "chk_mar";
     this.chk_mar.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mar.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mar.Properties.Caption = "MA";
     this.chk_mar.Size = new System.Drawing.Size(39, 19);
     this.chk_mar.TabIndex = 174;
     //
     // chk_dom
     //
     this.chk_dom.Location = new System.Drawing.Point(96, 0);
     this.chk_dom.MenuManager = this.barManager1;
     this.chk_dom.Name = "chk_dom";
     this.chk_dom.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_dom.Properties.Appearance.Options.UseForeColor = true;
     this.chk_dom.Properties.Caption = "DO";
     this.chk_dom.Size = new System.Drawing.Size(39, 19);
     this.chk_dom.TabIndex = 179;
     //
     // chk_mie
     //
     this.chk_mie.Location = new System.Drawing.Point(6, 40);
     this.chk_mie.MenuManager = this.barManager1;
     this.chk_mie.Name = "chk_mie";
     this.chk_mie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mie.Properties.Caption = "MI";
     this.chk_mie.Size = new System.Drawing.Size(39, 19);
     this.chk_mie.TabIndex = 175;
     //
     // chk_jue
     //
     this.chk_jue.Location = new System.Drawing.Point(51, 0);
     this.chk_jue.MenuManager = this.barManager1;
     this.chk_jue.Name = "chk_jue";
     this.chk_jue.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_jue.Properties.Appearance.Options.UseForeColor = true;
     this.chk_jue.Properties.Caption = "JU";
     this.chk_jue.Size = new System.Drawing.Size(39, 19);
     this.chk_jue.TabIndex = 176;
     //
     // chk_vie
     //
     this.chk_vie.Location = new System.Drawing.Point(51, 20);
     this.chk_vie.MenuManager = this.barManager1;
     this.chk_vie.Name = "chk_vie";
     this.chk_vie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_vie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_vie.Properties.Caption = "VI";
     this.chk_vie.Size = new System.Drawing.Size(39, 19);
     this.chk_vie.TabIndex = 177;
     //
     // exclusivo
     //
     this.exclusivo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.exclusivo.Location = new System.Drawing.Point(352, 160);
     this.exclusivo.Name = "exclusivo";
     this.exclusivo.Size = new System.Drawing.Size(22, 21);
     this.exclusivo.TabIndex = 181;
     this.exclusivo.Text = "1";
     this.exclusivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl1.Location = new System.Drawing.Point(280, 165);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 180;
     this.labelControl1.Text = "» Exclusivo:";
     //
     // chk_solodias
     //
     this.chk_solodias.Location = new System.Drawing.Point(45, 140);
     this.chk_solodias.MenuManager = this.barManager1;
     this.chk_solodias.Name = "chk_solodias";
     this.chk_solodias.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_solodias.Properties.Appearance.Options.UseForeColor = true;
     this.chk_solodias.Properties.Caption = "Solo Dias ?";
     this.chk_solodias.Size = new System.Drawing.Size(85, 19);
     this.chk_solodias.TabIndex = 172;
     this.chk_solodias.CheckedChanged += new System.EventHandler(this.chk_solodias_CheckedChanged);
     //
     // impopack
     //
     this.impopack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impopack.Location = new System.Drawing.Point(275, 206);
     this.impopack.Name = "impopack";
     this.impopack.Size = new System.Drawing.Size(72, 21);
     this.impopack.TabIndex = 171;
     this.impopack.Text = "0.00";
     this.impopack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.impopack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.impopack_KeyDown);
     //
     // labelControl19
     //
     this.labelControl19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl19.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl19.Location = new System.Drawing.Point(159, 211);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(108, 13);
     this.labelControl19.TabIndex = 170;
     this.labelControl19.Text = "» Importe de Pack:";
     //
     // npack
     //
     this.npack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.npack.Location = new System.Drawing.Point(121, 206);
     this.npack.Name = "npack";
     this.npack.Size = new System.Drawing.Size(22, 21);
     this.npack.TabIndex = 169;
     this.npack.Text = "1";
     this.npack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.npack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.npack_KeyDown);
     //
     // aplicfin
     //
     this.aplicfin.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicfin.Location = new System.Drawing.Point(194, 229);
     this.aplicfin.Name = "aplicfin";
     this.aplicfin.Size = new System.Drawing.Size(25, 21);
     this.aplicfin.TabIndex = 168;
     this.aplicfin.Text = "999";
     this.aplicfin.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicfin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicfin_KeyDown);
     //
     // aplicini
     //
     this.aplicini.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicini.Location = new System.Drawing.Point(121, 229);
     this.aplicini.Name = "aplicini";
     this.aplicini.Size = new System.Drawing.Size(22, 21);
     this.aplicini.TabIndex = 167;
     this.aplicini.Text = "1";
     this.aplicini.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicini.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicini_KeyDown);
     //
     // impodoc
     //
     this.impodoc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impodoc.Location = new System.Drawing.Point(305, 247);
     this.impodoc.Name = "impodoc";
     this.impodoc.Size = new System.Drawing.Size(69, 21);
     this.impodoc.TabIndex = 166;
     this.impodoc.Text = "0.00";
     this.impodoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl18
     //
     this.labelControl18.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl18.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl18.Location = new System.Drawing.Point(11, 253);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(288, 13);
     this.labelControl18.TabIndex = 165;
     this.labelControl18.Text = "»» Siempre que el Importe del Documento sea >= ";
     //
     // labelControl17
     //
     this.labelControl17.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl17.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl17.Location = new System.Drawing.Point(159, 234);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(28, 13);
     this.labelControl17.TabIndex = 164;
     this.labelControl17.Text = "» AL:";
     //
     // labelControl16
     //
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl16.Location = new System.Drawing.Point(12, 235);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(73, 13);
     this.labelControl16.TabIndex = 163;
     this.labelControl16.Text = "» Aplicar del:";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(11, 211);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(58, 13);
     this.labelControl7.TabIndex = 162;
     this.labelControl7.Text = "» Pack de:";
     //
     // cmb_grupopromocion
     //
     this.cmb_grupopromocion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion.FormattingEnabled = true;
     this.cmb_grupopromocion.Location = new System.Drawing.Point(120, 116);
     this.cmb_grupopromocion.Name = "cmb_grupopromocion";
     this.cmb_grupopromocion.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion.TabIndex = 160;
     //
     // labelControl15
     //
     this.labelControl15.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl15.Location = new System.Drawing.Point(10, 119);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(81, 13);
     this.labelControl15.TabIndex = 159;
     this.labelControl15.Text = "» Grupo Prom:";
     //
     // perdsctocab
     //
     this.perdsctocab.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.perdsctocab.Location = new System.Drawing.Point(321, 70);
     this.perdsctocab.Name = "perdsctocab";
     this.perdsctocab.Size = new System.Drawing.Size(69, 21);
     this.perdsctocab.TabIndex = 158;
     this.perdsctocab.Text = "0.00";
     this.perdsctocab.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl14
     //
     this.labelControl14.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl14.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl14.Location = new System.Drawing.Point(256, 74);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(59, 13);
     this.labelControl14.TabIndex = 157;
     this.labelControl14.Text = "» %Dscto:";
     //
     // chk_aldocum
     //
     this.chk_aldocum.Location = new System.Drawing.Point(155, 71);
     this.chk_aldocum.MenuManager = this.barManager1;
     this.chk_aldocum.Name = "chk_aldocum";
     this.chk_aldocum.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldocum.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldocum.Properties.Caption = "Al Documento ?";
     this.chk_aldocum.Size = new System.Drawing.Size(97, 19);
     this.chk_aldocum.TabIndex = 156;
     //
     // prioridad
     //
     this.prioridad.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.prioridad.Location = new System.Drawing.Point(120, 70);
     this.prioridad.Name = "prioridad";
     this.prioridad.Size = new System.Drawing.Size(22, 21);
     this.prioridad.TabIndex = 155;
     this.prioridad.Text = "2";
     this.prioridad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl13
     //
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl13.Location = new System.Drawing.Point(11, 74);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(65, 13);
     this.labelControl13.TabIndex = 154;
     this.labelControl13.Text = "» Prioridad:";
     //
     // cmb_tarjgrupoid
     //
     this.cmb_tarjgrupoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tarjgrupoid.FormattingEnabled = true;
     this.cmb_tarjgrupoid.Location = new System.Drawing.Point(120, 47);
     this.cmb_tarjgrupoid.Name = "cmb_tarjgrupoid";
     this.cmb_tarjgrupoid.Size = new System.Drawing.Size(201, 21);
     this.cmb_tarjgrupoid.TabIndex = 153;
     //
     // labelControl12
     //
     this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl12.Location = new System.Drawing.Point(11, 52);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(99, 13);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "» Grupo Tarjetas:";
     //
     // cmb_tiendalist
     //
     this.cmb_tiendalist.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tiendalist.FormattingEnabled = true;
     this.cmb_tiendalist.Location = new System.Drawing.Point(120, 25);
     this.cmb_tiendalist.Name = "cmb_tiendalist";
     this.cmb_tiendalist.Size = new System.Drawing.Size(201, 21);
     this.cmb_tiendalist.TabIndex = 151;
     //
     // fechafin
     //
     this.fechafin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechafin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechafin.Location = new System.Drawing.Point(321, 93);
     this.fechafin.Name = "fechafin";
     this.fechafin.Size = new System.Drawing.Size(80, 20);
     this.fechafin.TabIndex = 125;
     //
     // fechaini
     //
     this.fechaini.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechaini.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechaini.Location = new System.Drawing.Point(120, 93);
     this.fechaini.Name = "fechaini";
     this.fechaini.Size = new System.Drawing.Size(80, 20);
     this.fechaini.TabIndex = 124;
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl6.Location = new System.Drawing.Point(250, 96);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(66, 13);
     this.labelControl6.TabIndex = 135;
     this.labelControl6.Text = "» Fecha Fin:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(11, 96);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 134;
     this.labelControl5.Text = "» Fecha Inicio:";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 29);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(105, 13);
     this.labelControl4.TabIndex = 131;
     this.labelControl4.Text = "» Lista de Tiendas:";
     //
     // promoname
     //
     this.promoname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.promoname.Location = new System.Drawing.Point(158, 3);
     this.promoname.Name = "promoname";
     this.promoname.Size = new System.Drawing.Size(325, 21);
     this.promoname.TabIndex = 130;
     //
     // promoid
     //
     this.promoid.AccessibleDescription = "";
     this.promoid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.promoid.Location = new System.Drawing.Point(121, 3);
     this.promoid.MaxLength = 4;
     this.promoid.Name = "promoid";
     this.promoid.Size = new System.Drawing.Size(35, 20);
     this.promoid.TabIndex = 128;
     this.promoid.Text = "0";
     this.promoid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(11, 6);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(94, 13);
     this.labelControl3.TabIndex = 123;
     this.labelControl3.Text = "» Denominación:";
     //
     // pnlcontroldet
     //
     this.pnlcontroldet.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnlcontroldet.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.Options.UseBackColor = true;
     this.pnlcontroldet.Appearance.Options.UseForeColor = true;
     this.pnlcontroldet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlcontroldet.Controls.Add(this.btn_update);
     this.pnlcontroldet.Controls.Add(this.btn_search);
     this.pnlcontroldet.Controls.Add(this.rollo_search);
     this.pnlcontroldet.Controls.Add(this.btn_exportar);
     this.pnlcontroldet.Controls.Add(this.btn_importar);
     this.pnlcontroldet.Controls.Add(this.chk_aldoc2);
     this.pnlcontroldet.Controls.Add(this.btn_del);
     this.pnlcontroldet.Controls.Add(this.btn_add);
     this.pnlcontroldet.Controls.Add(this.btn_save);
     this.pnlcontroldet.Controls.Add(this.precunit);
     this.pnlcontroldet.Controls.Add(this.percdscto);
     this.pnlcontroldet.Controls.Add(this.labelControl9);
     this.pnlcontroldet.Controls.Add(this.labelControl8);
     this.pnlcontroldet.Controls.Add(this.dgb_promodet);
     this.pnlcontroldet.Controls.Add(this.labelControl2);
     this.pnlcontroldet.Controls.Add(this.articid);
     this.pnlcontroldet.Controls.Add(this.articname);
     this.pnlcontroldet.Location = new System.Drawing.Point(474, 304);
     this.pnlcontroldet.Name = "pnlcontroldet";
     this.pnlcontroldet.Size = new System.Drawing.Size(872, 296);
     this.pnlcontroldet.TabIndex = 121;
     //
     // btn_update
     //
     this.btn_update.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_update.Image = ((System.Drawing.Image)(resources.GetObject("btn_update.Image")));
     this.btn_update.Location = new System.Drawing.Point(494, 34);
     this.btn_update.Name = "btn_update";
     this.btn_update.Size = new System.Drawing.Size(70, 23);
     this.btn_update.TabIndex = 162;
     this.btn_update.Text = "&Modificar";
     this.btn_update.ToolTip = "Modificar";
     this.btn_update.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_update.Click += new System.EventHandler(this.btn_update_Click);
     //
     // btn_search
     //
     this.btn_search.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_search.Image = ((System.Drawing.Image)(resources.GetObject("btn_search.Image")));
     this.btn_search.Location = new System.Drawing.Point(208, 64);
     this.btn_search.Name = "btn_search";
     this.btn_search.Size = new System.Drawing.Size(25, 23);
     this.btn_search.TabIndex = 161;
     this.btn_search.ToolTip = "Buscar Codigo";
     this.btn_search.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     //
     // rollo_search
     //
     this.rollo_search.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.rollo_search.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rollo_search.ForeColor = System.Drawing.Color.Firebrick;
     this.rollo_search.Location = new System.Drawing.Point(233, 64);
     this.rollo_search.Name = "rollo_search";
     this.rollo_search.Size = new System.Drawing.Size(76, 21);
     this.rollo_search.TabIndex = 160;
     this.rollo_search.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rollo_search_KeyDown);
     //
     // btn_exportar
     //
     this.btn_exportar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_exportar.Image = ((System.Drawing.Image)(resources.GetObject("btn_exportar.Image")));
     this.btn_exportar.Location = new System.Drawing.Point(22, 62);
     this.btn_exportar.Name = "btn_exportar";
     this.btn_exportar.Size = new System.Drawing.Size(70, 23);
     this.btn_exportar.TabIndex = 159;
     this.btn_exportar.Text = "&Exportar";
     this.btn_exportar.ToolTip = "Exportar";
     this.btn_exportar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_exportar.Click += new System.EventHandler(this.btn_exportar_Click);
     //
     // btn_importar
     //
     this.btn_importar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_importar.Image = ((System.Drawing.Image)(resources.GetObject("btn_importar.Image")));
     this.btn_importar.Location = new System.Drawing.Point(98, 62);
     this.btn_importar.Name = "btn_importar";
     this.btn_importar.Size = new System.Drawing.Size(70, 23);
     this.btn_importar.TabIndex = 158;
     this.btn_importar.Text = "&Importar";
     this.btn_importar.ToolTip = "Importar";
     this.btn_importar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_importar.Click += new System.EventHandler(this.btn_importar_Click);
     //
     // chk_aldoc2
     //
     this.chk_aldoc2.Location = new System.Drawing.Point(10, 37);
     this.chk_aldoc2.MenuManager = this.barManager1;
     this.chk_aldoc2.Name = "chk_aldoc2";
     this.chk_aldoc2.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldoc2.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldoc2.Properties.Caption = "Al Documento ?";
     this.chk_aldoc2.Size = new System.Drawing.Size(97, 19);
     this.chk_aldoc2.TabIndex = 157;
     this.chk_aldoc2.CheckedChanged += new System.EventHandler(this.chk_aldoc2_CheckedChanged);
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_del.Location = new System.Drawing.Point(494, 61);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(70, 23);
     this.btn_del.TabIndex = 144;
     this.btn_del.Text = "Eliminar";
     this.btn_del.ToolTip = "Eliminar";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(417, 61);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(71, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "Adicionar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(341, 61);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(70, 23);
     this.btn_save.TabIndex = 154;
     this.btn_save.Text = "&Aceptar";
     this.btn_save.ToolTip = "Grabar";
     this.btn_save.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // precunit
     //
     this.precunit.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit.Location = new System.Drawing.Point(366, 34);
     this.precunit.Name = "precunit";
     this.precunit.Size = new System.Drawing.Size(80, 21);
     this.precunit.TabIndex = 153;
     this.precunit.Text = "0.00";
     this.precunit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // percdscto
     //
     this.percdscto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.percdscto.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.percdscto.Location = new System.Drawing.Point(173, 34);
     this.percdscto.Name = "percdscto";
     this.percdscto.Size = new System.Drawing.Size(80, 21);
     this.percdscto.TabIndex = 152;
     this.percdscto.Text = "0.00";
     this.percdscto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.percdscto.KeyDown += new System.Windows.Forms.KeyEventHandler(this.precunit1_KeyDown);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(304, 39);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 13);
     this.labelControl9.TabIndex = 151;
     this.labelControl9.Text = "» Precio :";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(111, 39);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(56, 13);
     this.labelControl8.TabIndex = 150;
     this.labelControl8.Text = "» % Dcto:";
     //
     // dgb_promodet
     //
     this.dgb_promodet.AllowUserToAddRows = false;
     this.dgb_promodet.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_promodet.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.@__promoid,
     this._articid,
     this._articidold,
     this._articname,
     this._es_dscto,
     this.@__percdscto,
     this._precunit,
     this.@__status,
     this.@__feact,
     this._usuarip,
     this._cantidad});
     this.dgb_promodet.EnableHeadersVisualStyles = false;
     this.dgb_promodet.Location = new System.Drawing.Point(2, 90);
     this.dgb_promodet.Name = "dgb_promodet";
     this.dgb_promodet.ReadOnly = true;
     this.dgb_promodet.RowHeadersVisible = false;
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.Black;
     this.dgb_promodet.RowsDefaultCellStyle = dataGridViewCellStyle8;
     this.dgb_promodet.Size = new System.Drawing.Size(562, 202);
     this.dgb_promodet.TabIndex = 149;
     this.dgb_promodet.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellClick);
     this.dgb_promodet.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellEnter);
     this.dgb_promodet.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_listaPrecios_KeyUp);
     //
     // __promoid
     //
     this.@__promoid.DataPropertyName = "promoid";
     this.@__promoid.HeaderText = "promoid";
     this.@__promoid.Name = "__promoid";
     this.@__promoid.ReadOnly = true;
     this.@__promoid.Visible = false;
     //
     // _articid
     //
     this._articid.DataPropertyName = "articid";
     this._articid.HeaderText = "articid";
     this._articid.Name = "_articid";
     this._articid.ReadOnly = true;
     this._articid.Visible = false;
     //
     // _articidold
     //
     this._articidold.DataPropertyName = "articidold";
     this._articidold.HeaderText = "Codigo";
     this._articidold.Name = "_articidold";
     this._articidold.ReadOnly = true;
     this._articidold.Width = 70;
     //
     // _articname
     //
     this._articname.DataPropertyName = "articname";
     this._articname.HeaderText = "Denominación";
     this._articname.Name = "_articname";
     this._articname.ReadOnly = true;
     this._articname.Width = 250;
     //
     // _es_dscto
     //
     this._es_dscto.DataPropertyName = "es_dscto";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._es_dscto.DefaultCellStyle = dataGridViewCellStyle5;
     this._es_dscto.HeaderText = "Desc ?";
     this._es_dscto.Name = "_es_dscto";
     this._es_dscto.ReadOnly = true;
     this._es_dscto.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._es_dscto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._es_dscto.Width = 65;
     //
     // __percdscto
     //
     this.@__percdscto.DataPropertyName = "percdscto";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N2";
     dataGridViewCellStyle6.NullValue = null;
     this.@__percdscto.DefaultCellStyle = dataGridViewCellStyle6;
     this.@__percdscto.HeaderText = "%";
     this.@__percdscto.Name = "__percdscto";
     this.@__percdscto.ReadOnly = true;
     this.@__percdscto.Width = 60;
     //
     // _precunit
     //
     this._precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this._precunit.DefaultCellStyle = dataGridViewCellStyle7;
     this._precunit.HeaderText = "Precio";
     this._precunit.Name = "_precunit";
     this._precunit.ReadOnly = true;
     this._precunit.Width = 80;
     //
     // __status
     //
     this.@__status.DataPropertyName = "status";
     this.@__status.HeaderText = "status";
     this.@__status.Name = "__status";
     this.@__status.ReadOnly = true;
     this.@__status.Visible = false;
     //
     // __feact
     //
     this.@__feact.DataPropertyName = "feact";
     this.@__feact.HeaderText = "feact";
     this.@__feact.Name = "__feact";
     this.@__feact.ReadOnly = true;
     this.@__feact.Visible = false;
     //
     // _usuarip
     //
     this._usuarip.DataPropertyName = "usuarip";
     this._usuarip.HeaderText = "usuarip";
     this._usuarip.Name = "_usuarip";
     this._usuarip.ReadOnly = true;
     this._usuarip.Visible = false;
     //
     // _cantidad
     //
     this._cantidad.DataPropertyName = "cantidad";
     this._cantidad.HeaderText = "cantidad";
     this._cantidad.Name = "_cantidad";
     this._cantidad.ReadOnly = true;
     this._cantidad.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(12, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 123;
     this.labelControl2.Text = "» Articulo:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.Group_chks);
     this.groupControl1.Controls.Add(this.cmb_perianio);
     this.groupControl1.Controls.Add(this.cmb_grupopromocion2);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.Mdi_dgv_promociones);
     this.groupControl1.Location = new System.Drawing.Point(0, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(471, 571);
     this.groupControl1.TabIndex = 142;
     this.groupControl1.Text = "Promociónes";
     //
     // Group_chks
     //
     this.Group_chks.Location = new System.Drawing.Point(31, 47);
     this.Group_chks.MenuManager = this.barManager1;
     this.Group_chks.Name = "Group_chks";
     this.Group_chks.Properties.Appearance.BackColor = System.Drawing.Color.Teal;
     this.Group_chks.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Group_chks.Properties.Appearance.ForeColor = System.Drawing.Color.White;
     this.Group_chks.Properties.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("Group_chks.Properties.Appearance.Image")));
     this.Group_chks.Properties.Appearance.Options.UseBackColor = true;
     this.Group_chks.Properties.Appearance.Options.UseFont = true;
     this.Group_chks.Properties.Appearance.Options.UseForeColor = true;
     this.Group_chks.Properties.Appearance.Options.UseImage = true;
     this.Group_chks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Group_chks.Properties.Columns = 3;
     this.Group_chks.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "Vigentes"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "Culminados"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("2", "Todos")});
     this.Group_chks.Size = new System.Drawing.Size(399, 21);
     this.Group_chks.TabIndex = 151;
     this.Group_chks.SelectedIndexChanged += new System.EventHandler(this.Group_chks_SelectedIndexChanged);
     //
     // cmb_perianio
     //
     this.cmb_perianio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_perianio.FormattingEnabled = true;
     this.cmb_perianio.Location = new System.Drawing.Point(52, 23);
     this.cmb_perianio.Name = "cmb_perianio";
     this.cmb_perianio.Size = new System.Drawing.Size(52, 21);
     this.cmb_perianio.TabIndex = 147;
     //
     // cmb_grupopromocion2
     //
     this.cmb_grupopromocion2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion2.FormattingEnabled = true;
     this.cmb_grupopromocion2.Location = new System.Drawing.Point(220, 23);
     this.cmb_grupopromocion2.Name = "cmb_grupopromocion2";
     this.cmb_grupopromocion2.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion2.TabIndex = 146;
     //
     // labelControl11
     //
     this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl11.Location = new System.Drawing.Point(133, 26);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(81, 13);
     this.labelControl11.TabIndex = 145;
     this.labelControl11.Text = "» Grupo Prom:";
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Location = new System.Drawing.Point(13, 26);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(36, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "» Año:";
     //
     // Mdi_dgv_promociones
     //
     this.Mdi_dgv_promociones.Location = new System.Drawing.Point(5, 71);
     this.Mdi_dgv_promociones.MainView = this.dgv_promociones;
     this.Mdi_dgv_promociones.Name = "Mdi_dgv_promociones";
     this.Mdi_dgv_promociones.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_promociones.Size = new System.Drawing.Size(461, 495);
     this.Mdi_dgv_promociones.TabIndex = 143;
     this.Mdi_dgv_promociones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_promociones});
     this.Mdi_dgv_promociones.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_promociones
     //
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_promociones.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_promociones.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_promociones.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_promociones.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_promociones.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_promociones.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_promociones.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.Row.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Row.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_promociones.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_promociones.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_promociones.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._promoid,
     this._prioridad,
     this._status,
     this._exclusivo,
     this._promoname,
     this._tiendalist,
     this._tarjgrupoid,
     this._tarjetaid,
     this._percdscto,
     this._al_docum,
     this._fechaini,
     this._fechafin,
     this._promotipoid,
     this._grupopromoid,
     this._campaniaid,
     this._usuar,
     this._fecre,
     this._feact,
     this._usuarap,
     this._fechap,
     this._solodias,
     this._dom,
     this._lun,
     this._mar,
     this._mie,
     this._jue,
     this._vie,
     this._sab,
     this._npack,
     this._impopack,
     this._aplicini,
     this._aplicfin,
     this._impodoc});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_promociones.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_promociones.GridControl = this.Mdi_dgv_promociones;
     this.dgv_promociones.Name = "dgv_promociones";
     this.dgv_promociones.OptionsSelection.MultiSelect = true;
     this.dgv_promociones.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_promociones.OptionsView.ShowGroupPanel = false;
     this.dgv_promociones.PaintStyleName = "Web";
     this.dgv_promociones.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // _promoid
     //
     this._promoid.Caption = "ID";
     this._promoid.FieldName = "promoid";
     this._promoid.Name = "_promoid";
     this._promoid.OptionsColumn.AllowEdit = false;
     this._promoid.Visible = true;
     this._promoid.VisibleIndex = 0;
     this._promoid.Width = 34;
     //
     // _prioridad
     //
     this._prioridad.Caption = "prioridad";
     this._prioridad.FieldName = "prioridad";
     this._prioridad.Name = "_prioridad";
     this._prioridad.OptionsColumn.AllowEdit = false;
     this._prioridad.Width = 281;
     //
     // _status
     //
     this._status.Caption = "status";
     this._status.FieldName = "status";
     this._status.Name = "_status";
     //
     // _exclusivo
     //
     this._exclusivo.Caption = "exclusivo";
     this._exclusivo.FieldName = "exclusivo";
     this._exclusivo.Name = "_exclusivo";
     //
     // _promoname
     //
     this._promoname.Caption = "Denominación";
     this._promoname.FieldName = "promoname";
     this._promoname.Name = "_promoname";
     this._promoname.OptionsColumn.AllowEdit = false;
     this._promoname.Visible = true;
     this._promoname.VisibleIndex = 1;
     this._promoname.Width = 252;
     //
     // _tiendalist
     //
     this._tiendalist.Caption = "tiendalist";
     this._tiendalist.FieldName = "tiendalist";
     this._tiendalist.Name = "_tiendalist";
     //
     // _tarjgrupoid
     //
     this._tarjgrupoid.Caption = "tarjgrupoid";
     this._tarjgrupoid.FieldName = "tarjgrupoid";
     this._tarjgrupoid.Name = "_tarjgrupoid";
     //
     // _tarjetaid
     //
     this._tarjetaid.Caption = "tarjetaid";
     this._tarjetaid.FieldName = "tarjetaid";
     this._tarjetaid.Name = "_tarjetaid";
     //
     // _percdscto
     //
     this._percdscto.Caption = "percdscto";
     this._percdscto.FieldName = "percdscto";
     this._percdscto.Name = "_percdscto";
     //
     // _al_docum
     //
     this._al_docum.Caption = "al_docum";
     this._al_docum.FieldName = "al_docum";
     this._al_docum.Name = "_al_docum";
     //
     // _fechaini
     //
     this._fechaini.Caption = "F.Ini";
     this._fechaini.FieldName = "fechaini";
     this._fechaini.Name = "_fechaini";
     this._fechaini.OptionsColumn.AllowEdit = false;
     this._fechaini.Visible = true;
     this._fechaini.VisibleIndex = 2;
     //
     // _fechafin
     //
     this._fechafin.Caption = "F.Fin";
     this._fechafin.FieldName = "fechafin";
     this._fechafin.Name = "_fechafin";
     this._fechafin.OptionsColumn.AllowEdit = false;
     this._fechafin.Visible = true;
     this._fechafin.VisibleIndex = 3;
     this._fechafin.Width = 85;
     //
     // _promotipoid
     //
     this._promotipoid.Caption = "promotipoid";
     this._promotipoid.FieldName = "promotipoid";
     this._promotipoid.Name = "_promotipoid";
     //
     // _grupopromoid
     //
     this._grupopromoid.Caption = "grupopromoid";
     this._grupopromoid.FieldName = "grupopromoid";
     this._grupopromoid.Name = "_grupopromoid";
     //
     // _campaniaid
     //
     this._campaniaid.Caption = "campaniaid";
     this._campaniaid.FieldName = "campaniaid";
     this._campaniaid.Name = "_campaniaid";
     //
     // _usuar
     //
     this._usuar.Caption = "usuar";
     this._usuar.FieldName = "usuar";
     this._usuar.Name = "_usuar";
     //
     // _fecre
     //
     this._fecre.Caption = "fecre";
     this._fecre.FieldName = "fecre";
     this._fecre.Name = "_fecre";
     //
     // _feact
     //
     this._feact.Caption = "feact";
     this._feact.FieldName = "feact";
     this._feact.Name = "_feact";
     //
     // _usuarap
     //
     this._usuarap.Caption = "gridColumn8";
     this._usuarap.Name = "_usuarap";
     //
     // _fechap
     //
     this._fechap.Caption = "fechap";
     this._fechap.FieldName = "fechap";
     this._fechap.Name = "_fechap";
     //
     // _solodias
     //
     this._solodias.Caption = "solodias";
     this._solodias.FieldName = "solodias";
     this._solodias.Name = "_solodias";
     //
     // _dom
     //
     this._dom.Caption = "dom";
     this._dom.FieldName = "dom";
     this._dom.Name = "_dom";
     //
     // _lun
     //
     this._lun.Caption = "lun";
     this._lun.FieldName = "lun";
     this._lun.Name = "_lun";
     //
     // _mar
     //
     this._mar.Caption = "mar";
     this._mar.FieldName = "mar";
     this._mar.Name = "_mar";
     //
     // _mie
     //
     this._mie.Caption = "mie";
     this._mie.FieldName = "mie";
     this._mie.Name = "_mie";
     //
     // _jue
     //
     this._jue.Caption = "jue";
     this._jue.FieldName = "jue";
     this._jue.Name = "_jue";
     //
     // _vie
     //
     this._vie.Caption = "vie";
     this._vie.FieldName = "vie";
     this._vie.Name = "_vie";
     //
     // _sab
     //
     this._sab.Caption = "sab";
     this._sab.FieldName = "sab";
     this._sab.Name = "_sab";
     //
     // _npack
     //
     this._npack.Caption = "npack";
     this._npack.FieldName = "npack";
     this._npack.Name = "_npack";
     //
     // _impopack
     //
     this._impopack.Caption = "impopack";
     this._impopack.FieldName = "impopack";
     this._impopack.Name = "_impopack";
     //
     // _aplicini
     //
     this._aplicini.Caption = "aplicini";
     this._aplicini.FieldName = "aplicini";
     this._aplicini.Name = "_aplicini";
     //
     // _aplicfin
     //
     this._aplicfin.Caption = "aplicfin";
     this._aplicfin.FieldName = "aplicfin";
     this._aplicfin.Name = "_aplicfin";
     //
     // _impodoc
     //
     this._impodoc.Caption = "impodoc";
     this._impodoc.FieldName = "impodoc";
     this._impodoc.Name = "_impodoc";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // Frm_promociones
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1038, 595);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.pnlcontroldet);
     this.Controls.Add(this.pnl_01);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_promociones";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Lista de Promociónes";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).EndInit();
     this.pnl_01.ResumeLayout(false);
     this.pnl_01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).EndInit();
     this.pnl_dias.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).EndInit();
     this.pnlcontroldet.ResumeLayout(false);
     this.pnlcontroldet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 22
0
 /// <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);
 }
Exemplo n.º 23
0
        private void gbGroup_EditValueChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.RadioGroup rb = sender as DevExpress.XtraEditors.RadioGroup;
            if (rb == null)
            {
                return;
            }
            _D500Xx.GbGroup = rb.EditValue.ToString();
            DataTable dt = gbMarket.EditValue.Equals("rb_market_0") ? ProdCtData : ProdCtCodeFilter;

            dwProdCt.Properties.DataSource = dt;

            switch (_D500Xx.GbGroup)
            {
            case "rb_gall":
                dwProdCt.Enabled = false;
                stProdCt.Enabled = false;

                dwProdKdSto.Enabled = false;
                stProdKdSto.Enabled = false;

                dwProdKd.Enabled = false;
                stProdKd.Enabled = false;
                break;

            case "rb_gparam":
                dwProdCt.Enabled = true;
                stProdCt.Enabled = true;

                dwProdKdSto.Enabled = false;
                stProdKdSto.Enabled = false;

                dwProdKd.Enabled = false;
                stProdKd.Enabled = false;
                break;

            case "rb_s":
                //統計依照"股票各類群組"時僅開放"商品群組"選單,且選單內容僅提供APDK_PROD_SUBTYPE='S'的商品
                dwProdCt.SelectedText = "";
                DataTable dtFilter = dt.Filter("APDK_PROD_SUBTYPE='S'");
                dwProdCt.Properties.DataSource = dtFilter;
                if (dtFilter.Rows.Count <= 0)
                {
                    dtFilter.Rows.Add();
                    dwProdCt.Properties.DataSource = dtFilter;
                }

                dwProdCt.Enabled = true;
                stProdCt.Enabled = true;

                dwProdKdSto.Enabled = false;
                stProdKdSto.Enabled = false;

                dwProdKd.Enabled = false;
                stProdKd.Enabled = false;
                break;

            case "rb_gkind2":
                dwProdCt.Enabled = true;
                stProdCt.Enabled = true;

                dwProdKdSto.Enabled = true;
                stProdKdSto.Enabled = true;

                dwProdKd.Enabled = false;
                stProdKd.Enabled = false;
                break;

            case "rb_gkind":
                dwProdCt.Enabled = true;
                stProdCt.Enabled = true;

                dwProdKdSto.Enabled = true;
                stProdKdSto.Enabled = true;

                dwProdKd.Enabled = true;
                stProdKd.Enabled = true;
                break;

            case "rb_gprod":
                dwProdCt.Enabled = true;
                stProdCt.Enabled = true;

                dwProdKdSto.Enabled = true;
                stProdKdSto.Enabled = true;

                dwProdKd.Enabled = true;
                stProdKd.Enabled = true;
                break;

            default:
                break;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControl1  = new DevExpress.XtraGrid.GridControl();
     this.gridView1     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.radioGroup1   = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(446, 321);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.GridControl   = this.gridControl1;
     this.gridView1.Name          = "gridView1";
     this.gridView1.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView1_RowCellStyle);
     //
     // radioGroup1
     //
     this.radioGroup1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.radioGroup1.EditValue = 0;
     this.radioGroup1.Location  = new System.Drawing.Point(2, 20);
     this.radioGroup1.Name      = "radioGroup1";
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Without styles"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Solution 1"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "Solution 2 (recommended)")
     });
     this.radioGroup1.Size              = new System.Drawing.Size(156, 104);
     this.radioGroup1.TabIndex          = 1;
     this.radioGroup1.EditValueChanged += new System.EventHandler(this.radioGroup1_EditValueChanged);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.radioGroup1);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.groupControl1.Location = new System.Drawing.Point(446, 0);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(160, 321);
     this.groupControl1.TabIndex = 2;
     this.groupControl1.Text     = "Available options";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(606, 321);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.groupControl1);
     this.Name  = "Form1";
     this.Text  = "How to apply custom styles to grid cells";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_proyeccion));
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.cmb_perianio = new System.Windows.Forms.ComboBox();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.Mdi_dgv_proyeccion = new DevExpress.XtraGrid.GridControl();
     this.dgv_proyeccion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.perianio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.temporadaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.canalventaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.marcaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lineaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.entalleid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tejidoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.marcaname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lineaname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.entallename = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tejidoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cantmod01 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cantmod02 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cantmod03 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cantmod04 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cantmod05 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cantmod06 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.canttotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.profundidad = new DevExpress.XtraGrid.Columns.GridColumn();
     this.totalprendas = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.rb_status = new DevExpress.XtraEditors.RadioGroup();
     this.btn_act = new DevExpress.XtraEditors.SimpleButton();
     this.txt_totalprendascab = new DevExpress.XtraEditors.TextEdit();
     this.txt_canttotalcab = new DevExpress.XtraEditors.TextEdit();
     this.txt_cantmod06 = new DevExpress.XtraEditors.TextEdit();
     this.txt_cantmod05 = new DevExpress.XtraEditors.TextEdit();
     this.txt_cantmod04 = new DevExpress.XtraEditors.TextEdit();
     this.txt_cantmod03 = new DevExpress.XtraEditors.TextEdit();
     this.txt_cantmod02 = new DevExpress.XtraEditors.TextEdit();
     this.txt_cantmod01 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.label11 = new System.Windows.Forms.Label();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txt_totprendas = new DevExpress.XtraEditors.TextEdit();
     this.txt_profun = new DevExpress.XtraEditors.TextEdit();
     this.txt_totmodels = new DevExpress.XtraEditors.TextEdit();
     this.lbl06 = new DevExpress.XtraEditors.LabelControl();
     this.lbl05 = new DevExpress.XtraEditors.LabelControl();
     this.lbl04 = new DevExpress.XtraEditors.LabelControl();
     this.lbl03 = new DevExpress.XtraEditors.LabelControl();
     this.lbl02 = new DevExpress.XtraEditors.LabelControl();
     this.txt_06 = new DevExpress.XtraEditors.TextEdit();
     this.txt_05 = new DevExpress.XtraEditors.TextEdit();
     this.txt_04 = new DevExpress.XtraEditors.TextEdit();
     this.txt_03 = new DevExpress.XtraEditors.TextEdit();
     this.txt_02 = new DevExpress.XtraEditors.TextEdit();
     this.txt_01 = new DevExpress.XtraEditors.TextEdit();
     this.lbl01 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_lineatelaid = new System.Windows.Forms.ComboBox();
     this.cmb_generoid = new System.Windows.Forms.ComboBox();
     this.cmb_entalleid = new System.Windows.Forms.ComboBox();
     this.cmb_lineaid = new System.Windows.Forms.ComboBox();
     this.cmb_marcaid = new System.Windows.Forms.ComboBox();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_canalvta = new System.Windows.Forms.ComboBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_temporadaid = new System.Windows.Forms.ComboBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btn_new = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_proyeccion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_proyeccion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rb_status.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_totalprendascab.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_canttotalcab.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod06.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod05.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod04.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod03.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod02.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod01.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_totprendas.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_profun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_totmodels.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_06.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_05.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_04.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_03.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_02.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_01.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem14.Text = "Nuevo";
     superToolTip14.Items.Add(toolTipTitleItem14);
     this.btn_nuevo.SuperTip = superToolTip14;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem15.Text = "Editar";
     superToolTip15.Items.Add(toolTipTitleItem15);
     this.btn_editar.SuperTip = superToolTip15;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem17.Text = "Cancelar";
     superToolTip17.Items.Add(toolTipTitleItem17);
     this.btn_cancelar.SuperTip = superToolTip17;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem16.Text = "Guardar";
     superToolTip16.Items.Add(toolTipTitleItem16);
     this.btn_grabar.SuperTip = superToolTip16;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem18.Text = "Elimar Registro";
     superToolTip18.Items.Add(toolTipTitleItem18);
     this.btn_eliminar.SuperTip = superToolTip18;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem19.Text = "Imprimir";
     superToolTip19.Items.Add(toolTipTitleItem19);
     this.btn_imprimir.SuperTip = superToolTip19;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem21.Text = "Log";
     superToolTip21.Items.Add(toolTipTitleItem21);
     this.btn_log.SuperTip = superToolTip21;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem26.Text = "Salir";
     superToolTip26.Items.Add(toolTipTitleItem26);
     this.btn_salir.SuperTip = superToolTip26;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(803, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 506);
     this.barDockControlBottom.Size = new System.Drawing.Size(803, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 478);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(803, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 478);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem20.Text = "Actualizar";
     superToolTip20.Items.Add(toolTipTitleItem20);
     this.btnLoad.SuperTip = superToolTip20;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem22.Text = "Primer Registro";
     superToolTip22.Items.Add(toolTipTitleItem22);
     this.btnInicio.SuperTip = superToolTip22;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem23.Text = "Anterior Registro";
     superToolTip23.Items.Add(toolTipTitleItem23);
     this.btnAnterior.SuperTip = superToolTip23;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem24.Text = "Siguiente Registro";
     superToolTip24.Items.Add(toolTipTitleItem24);
     this.btnSiguiente.SuperTip = superToolTip24;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem25.Text = "Ultimo Registro";
     superToolTip25.Items.Add(toolTipTitleItem25);
     this.btnUltimo.SuperTip = superToolTip25;
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(643, 77);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(48, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "ADD";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // cmb_perianio
     //
     this.cmb_perianio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_perianio.FormattingEnabled = true;
     this.cmb_perianio.Location = new System.Drawing.Point(91, 27);
     this.cmb_perianio.Name = "cmb_perianio";
     this.cmb_perianio.Size = new System.Drawing.Size(52, 21);
     this.cmb_perianio.TabIndex = 147;
     this.cmb_perianio.SelectedIndexChanged += new System.EventHandler(this.cmb_perianio_SelectedIndexChanged);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(62, 32);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(23, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "Año:";
     //
     // Mdi_dgv_proyeccion
     //
     this.Mdi_dgv_proyeccion.Location = new System.Drawing.Point(6, 211);
     this.Mdi_dgv_proyeccion.MainView = this.dgv_proyeccion;
     this.Mdi_dgv_proyeccion.Name = "Mdi_dgv_proyeccion";
     this.Mdi_dgv_proyeccion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_proyeccion.Size = new System.Drawing.Size(785, 231);
     this.Mdi_dgv_proyeccion.TabIndex = 143;
     this.Mdi_dgv_proyeccion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_proyeccion});
     this.Mdi_dgv_proyeccion.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_proyeccion
     //
     this.dgv_proyeccion.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_proyeccion.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_proyeccion.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_proyeccion.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_proyeccion.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_proyeccion.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_proyeccion.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_proyeccion.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_proyeccion.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_proyeccion.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_proyeccion.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_proyeccion.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_proyeccion.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_proyeccion.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_proyeccion.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_proyeccion.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_proyeccion.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_proyeccion.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_proyeccion.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_proyeccion.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_proyeccion.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_proyeccion.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_proyeccion.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_proyeccion.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_proyeccion.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_proyeccion.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_proyeccion.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_proyeccion.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_proyeccion.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_proyeccion.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_proyeccion.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_proyeccion.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_proyeccion.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_proyeccion.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_proyeccion.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_proyeccion.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_proyeccion.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_proyeccion.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_proyeccion.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_proyeccion.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_proyeccion.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_proyeccion.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_proyeccion.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_proyeccion.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_proyeccion.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_proyeccion.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_proyeccion.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_proyeccion.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_proyeccion.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_proyeccion.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_proyeccion.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_proyeccion.Appearance.Row.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.Row.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_proyeccion.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_proyeccion.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_proyeccion.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_proyeccion.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_proyeccion.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_proyeccion.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_proyeccion.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_proyeccion.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_proyeccion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.perianio,
     this.temporadaid,
     this.canalventaid,
     this.marcaid,
     this.lineaid,
     this.entalleid,
     this.tejidoid,
     this.marcaname,
     this.lineaname,
     this.entallename,
     this.tejidoname,
     this.cantmod01,
     this.cantmod02,
     this.cantmod03,
     this.cantmod04,
     this.cantmod05,
     this.cantmod06,
     this.canttotal,
     this.profundidad,
     this.totalprendas});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_proyeccion.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_proyeccion.GridControl = this.Mdi_dgv_proyeccion;
     this.dgv_proyeccion.Name = "dgv_proyeccion";
     this.dgv_proyeccion.OptionsSelection.MultiSelect = true;
     this.dgv_proyeccion.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_proyeccion.OptionsView.ShowGroupPanel = false;
     this.dgv_proyeccion.PaintStyleName = "Web";
     this.dgv_proyeccion.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // perianio
     //
     this.perianio.Caption = "perianio";
     this.perianio.FieldName = "perianio";
     this.perianio.Name = "perianio";
     //
     // temporadaid
     //
     this.temporadaid.Caption = "temporadaid";
     this.temporadaid.FieldName = "temporadaid";
     this.temporadaid.Name = "temporadaid";
     //
     // canalventaid
     //
     this.canalventaid.Caption = "canalventaid";
     this.canalventaid.FieldName = "canalventaid";
     this.canalventaid.Name = "canalventaid";
     //
     // marcaid
     //
     this.marcaid.Caption = "marcaid";
     this.marcaid.FieldName = "marcaid";
     this.marcaid.Name = "marcaid";
     //
     // lineaid
     //
     this.lineaid.Caption = "lineaid";
     this.lineaid.FieldName = "lineaid";
     this.lineaid.Name = "lineaid";
     //
     // entalleid
     //
     this.entalleid.Caption = "entalleid";
     this.entalleid.FieldName = "entalleid";
     this.entalleid.Name = "entalleid";
     //
     // tejidoid
     //
     this.tejidoid.Caption = "tejidoid";
     this.tejidoid.FieldName = "tejidoid";
     this.tejidoid.Name = "tejidoid";
     //
     // marcaname
     //
     this.marcaname.Caption = "Marca";
     this.marcaname.FieldName = "marcaname";
     this.marcaname.Name = "marcaname";
     this.marcaname.OptionsColumn.AllowEdit = false;
     this.marcaname.Visible = true;
     this.marcaname.VisibleIndex = 0;
     this.marcaname.Width = 69;
     //
     // lineaname
     //
     this.lineaname.Caption = "Linea";
     this.lineaname.FieldName = "lineaname";
     this.lineaname.Name = "lineaname";
     this.lineaname.OptionsColumn.AllowEdit = false;
     this.lineaname.Visible = true;
     this.lineaname.VisibleIndex = 1;
     this.lineaname.Width = 79;
     //
     // entallename
     //
     this.entallename.Caption = "Entalle";
     this.entallename.FieldName = "entallename";
     this.entallename.Name = "entallename";
     this.entallename.OptionsColumn.AllowEdit = false;
     this.entallename.Visible = true;
     this.entallename.VisibleIndex = 2;
     //
     // tejidoname
     //
     this.tejidoname.Caption = "Tejido";
     this.tejidoname.FieldName = "tejidoname";
     this.tejidoname.Name = "tejidoname";
     this.tejidoname.OptionsColumn.AllowEdit = false;
     this.tejidoname.Visible = true;
     this.tejidoname.VisibleIndex = 3;
     this.tejidoname.Width = 73;
     //
     // cantmod01
     //
     this.cantmod01.Caption = "M01";
     this.cantmod01.FieldName = "cantmod01";
     this.cantmod01.Name = "cantmod01";
     this.cantmod01.OptionsColumn.AllowEdit = false;
     this.cantmod01.Visible = true;
     this.cantmod01.VisibleIndex = 4;
     this.cantmod01.Width = 42;
     //
     // cantmod02
     //
     this.cantmod02.Caption = "M02";
     this.cantmod02.FieldName = "cantmod02";
     this.cantmod02.Name = "cantmod02";
     this.cantmod02.OptionsColumn.AllowEdit = false;
     this.cantmod02.Visible = true;
     this.cantmod02.VisibleIndex = 5;
     this.cantmod02.Width = 44;
     //
     // cantmod03
     //
     this.cantmod03.Caption = "M03";
     this.cantmod03.FieldName = "cantmod03";
     this.cantmod03.Name = "cantmod03";
     this.cantmod03.OptionsColumn.AllowEdit = false;
     this.cantmod03.Visible = true;
     this.cantmod03.VisibleIndex = 6;
     this.cantmod03.Width = 43;
     //
     // cantmod04
     //
     this.cantmod04.Caption = "M04";
     this.cantmod04.FieldName = "cantmod04";
     this.cantmod04.Name = "cantmod04";
     this.cantmod04.OptionsColumn.AllowEdit = false;
     this.cantmod04.Visible = true;
     this.cantmod04.VisibleIndex = 7;
     this.cantmod04.Width = 41;
     //
     // cantmod05
     //
     this.cantmod05.Caption = "M05";
     this.cantmod05.FieldName = "cantmod05";
     this.cantmod05.Name = "cantmod05";
     this.cantmod05.OptionsColumn.AllowEdit = false;
     this.cantmod05.Visible = true;
     this.cantmod05.VisibleIndex = 8;
     this.cantmod05.Width = 41;
     //
     // cantmod06
     //
     this.cantmod06.Caption = "M06";
     this.cantmod06.FieldName = "cantmod06";
     this.cantmod06.Name = "cantmod06";
     this.cantmod06.OptionsColumn.AllowEdit = false;
     this.cantmod06.Visible = true;
     this.cantmod06.VisibleIndex = 9;
     this.cantmod06.Width = 50;
     //
     // canttotal
     //
     this.canttotal.Caption = "TotModels";
     this.canttotal.FieldName = "canttotal";
     this.canttotal.Name = "canttotal";
     this.canttotal.OptionsColumn.AllowEdit = false;
     this.canttotal.Visible = true;
     this.canttotal.VisibleIndex = 10;
     this.canttotal.Width = 76;
     //
     // profundidad
     //
     this.profundidad.Caption = "Profundidad";
     this.profundidad.FieldName = "profundidad";
     this.profundidad.Name = "profundidad";
     this.profundidad.OptionsColumn.AllowEdit = false;
     this.profundidad.Visible = true;
     this.profundidad.VisibleIndex = 11;
     //
     // totalprendas
     //
     this.totalprendas.Caption = "TotPdas";
     this.totalprendas.FieldName = "totalprendas";
     this.totalprendas.Name = "totalprendas";
     this.totalprendas.OptionsColumn.AllowEdit = false;
     this.totalprendas.Visible = true;
     this.totalprendas.VisibleIndex = 12;
     this.totalprendas.Width = 62;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.rb_status);
     this.groupControl2.Controls.Add(this.btn_act);
     this.groupControl2.Controls.Add(this.txt_totalprendascab);
     this.groupControl2.Controls.Add(this.txt_canttotalcab);
     this.groupControl2.Controls.Add(this.txt_cantmod06);
     this.groupControl2.Controls.Add(this.txt_cantmod05);
     this.groupControl2.Controls.Add(this.txt_cantmod04);
     this.groupControl2.Controls.Add(this.txt_cantmod03);
     this.groupControl2.Controls.Add(this.txt_cantmod02);
     this.groupControl2.Controls.Add(this.txt_cantmod01);
     this.groupControl2.Controls.Add(this.labelControl12);
     this.groupControl2.Controls.Add(this.label11);
     this.groupControl2.Controls.Add(this.panelControl1);
     this.groupControl2.Controls.Add(this.Mdi_dgv_proyeccion);
     this.groupControl2.Controls.Add(this.cmb_canalvta);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.cmb_temporadaid);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Controls.Add(this.cmb_perianio);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Location = new System.Drawing.Point(2, 30);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(798, 474);
     this.groupControl2.TabIndex = 147;
     this.groupControl2.Text = "»» Datos";
     //
     // rb_status
     //
     this.rb_status.EditValue = "11";
     this.rb_status.Location = new System.Drawing.Point(630, 58);
     this.rb_status.MenuManager = this.barManager1;
     this.rb_status.Name = "rb_status";
     this.rb_status.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rb_status.Properties.Columns = 1;
     this.rb_status.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("11", "Edicion"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("12", "Listo")});
     this.rb_status.Size = new System.Drawing.Size(74, 37);
     this.rb_status.TabIndex = 200;
     //
     // btn_act
     //
     this.btn_act.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("btn_act.Appearance.Image")));
     this.btn_act.Appearance.Options.UseImage = true;
     this.btn_act.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_act.Image = ((System.Drawing.Image)(resources.GetObject("btn_act.Image")));
     this.btn_act.Location = new System.Drawing.Point(253, 76);
     this.btn_act.Name = "btn_act";
     this.btn_act.Size = new System.Drawing.Size(23, 16);
     this.btn_act.TabIndex = 186;
     this.btn_act.ToolTip = "CargaDatos";
     this.btn_act.ToolTipIconType = DevExpress.Utils.ToolTipIconType.WindLogo;
     this.btn_act.Click += new System.EventHandler(this.btn_act_Click);
     //
     // txt_totalprendascab
     //
     this.txt_totalprendascab.Enabled = false;
     this.txt_totalprendascab.Location = new System.Drawing.Point(724, 444);
     this.txt_totalprendascab.MenuManager = this.barManager1;
     this.txt_totalprendascab.Name = "txt_totalprendascab";
     this.txt_totalprendascab.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_totalprendascab.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_totalprendascab.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_totalprendascab.Size = new System.Drawing.Size(67, 22);
     this.txt_totalprendascab.TabIndex = 185;
     this.txt_totalprendascab.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_canttotalcab
     //
     this.txt_canttotalcab.Enabled = false;
     this.txt_canttotalcab.Location = new System.Drawing.Point(581, 444);
     this.txt_canttotalcab.MenuManager = this.barManager1;
     this.txt_canttotalcab.Name = "txt_canttotalcab";
     this.txt_canttotalcab.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_canttotalcab.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_canttotalcab.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_canttotalcab.Size = new System.Drawing.Size(77, 22);
     this.txt_canttotalcab.TabIndex = 183;
     this.txt_canttotalcab.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_cantmod06
     //
     this.txt_cantmod06.Enabled = false;
     this.txt_cantmod06.Location = new System.Drawing.Point(531, 444);
     this.txt_cantmod06.MenuManager = this.barManager1;
     this.txt_cantmod06.Name = "txt_cantmod06";
     this.txt_cantmod06.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_cantmod06.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_cantmod06.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_cantmod06.Size = new System.Drawing.Size(42, 22);
     this.txt_cantmod06.TabIndex = 182;
     this.txt_cantmod06.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_cantmod05
     //
     this.txt_cantmod05.Enabled = false;
     this.txt_cantmod05.Location = new System.Drawing.Point(486, 444);
     this.txt_cantmod05.MenuManager = this.barManager1;
     this.txt_cantmod05.Name = "txt_cantmod05";
     this.txt_cantmod05.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_cantmod05.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_cantmod05.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_cantmod05.Size = new System.Drawing.Size(41, 22);
     this.txt_cantmod05.TabIndex = 181;
     this.txt_cantmod05.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_cantmod04
     //
     this.txt_cantmod04.Enabled = false;
     this.txt_cantmod04.Location = new System.Drawing.Point(442, 444);
     this.txt_cantmod04.MenuManager = this.barManager1;
     this.txt_cantmod04.Name = "txt_cantmod04";
     this.txt_cantmod04.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_cantmod04.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_cantmod04.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_cantmod04.Size = new System.Drawing.Size(41, 22);
     this.txt_cantmod04.TabIndex = 180;
     this.txt_cantmod04.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_cantmod03
     //
     this.txt_cantmod03.Enabled = false;
     this.txt_cantmod03.Location = new System.Drawing.Point(400, 444);
     this.txt_cantmod03.MenuManager = this.barManager1;
     this.txt_cantmod03.Name = "txt_cantmod03";
     this.txt_cantmod03.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_cantmod03.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_cantmod03.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_cantmod03.Size = new System.Drawing.Size(41, 22);
     this.txt_cantmod03.TabIndex = 179;
     this.txt_cantmod03.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_cantmod02
     //
     this.txt_cantmod02.Enabled = false;
     this.txt_cantmod02.Location = new System.Drawing.Point(357, 444);
     this.txt_cantmod02.MenuManager = this.barManager1;
     this.txt_cantmod02.Name = "txt_cantmod02";
     this.txt_cantmod02.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_cantmod02.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_cantmod02.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_cantmod02.Size = new System.Drawing.Size(41, 22);
     this.txt_cantmod02.TabIndex = 178;
     this.txt_cantmod02.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_cantmod01
     //
     this.txt_cantmod01.Enabled = false;
     this.txt_cantmod01.Location = new System.Drawing.Point(314, 444);
     this.txt_cantmod01.MenuManager = this.barManager1;
     this.txt_cantmod01.Name = "txt_cantmod01";
     this.txt_cantmod01.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_cantmod01.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_cantmod01.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_cantmod01.Size = new System.Drawing.Size(41, 22);
     this.txt_cantmod01.TabIndex = 177;
     this.txt_cantmod01.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(280, 448);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(28, 13);
     this.labelControl12.TabIndex = 176;
     this.labelControl12.Text = "Total:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Teal;
     this.label11.Location = new System.Drawing.Point(338, 49);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(144, 24);
     this.label11.TabIndex = 153;
     this.label11.Text = "PROYECCIÓN";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btn_new);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl8);
     this.panelControl1.Controls.Add(this.txt_totprendas);
     this.panelControl1.Controls.Add(this.txt_profun);
     this.panelControl1.Controls.Add(this.txt_totmodels);
     this.panelControl1.Controls.Add(this.lbl06);
     this.panelControl1.Controls.Add(this.lbl05);
     this.panelControl1.Controls.Add(this.lbl04);
     this.panelControl1.Controls.Add(this.btn_add);
     this.panelControl1.Controls.Add(this.lbl03);
     this.panelControl1.Controls.Add(this.lbl02);
     this.panelControl1.Controls.Add(this.txt_06);
     this.panelControl1.Controls.Add(this.txt_05);
     this.panelControl1.Controls.Add(this.txt_04);
     this.panelControl1.Controls.Add(this.txt_03);
     this.panelControl1.Controls.Add(this.txt_02);
     this.panelControl1.Controls.Add(this.txt_01);
     this.panelControl1.Controls.Add(this.lbl01);
     this.panelControl1.Controls.Add(this.cmb_lineatelaid);
     this.panelControl1.Controls.Add(this.cmb_generoid);
     this.panelControl1.Controls.Add(this.cmb_entalleid);
     this.panelControl1.Controls.Add(this.cmb_lineaid);
     this.panelControl1.Controls.Add(this.cmb_marcaid);
     this.panelControl1.Controls.Add(this.labelControl7);
     this.panelControl1.Controls.Add(this.labelControl6);
     this.panelControl1.Controls.Add(this.labelControl5);
     this.panelControl1.Controls.Add(this.labelControl4);
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Location = new System.Drawing.Point(6, 101);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(698, 105);
     this.panelControl1.TabIndex = 152;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(578, 59);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(55, 13);
     this.labelControl11.TabIndex = 177;
     this.labelControl11.Text = "TotPrendas";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(515, 59);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(58, 13);
     this.labelControl9.TabIndex = 176;
     this.labelControl9.Text = "Profundidad";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(452, 59);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(55, 13);
     this.labelControl8.TabIndex = 175;
     this.labelControl8.Text = "TotModelos";
     //
     // txt_totprendas
     //
     this.txt_totprendas.Enabled = false;
     this.txt_totprendas.Location = new System.Drawing.Point(578, 78);
     this.txt_totprendas.MenuManager = this.barManager1;
     this.txt_totprendas.Name = "txt_totprendas";
     this.txt_totprendas.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_totprendas.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_totprendas.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_totprendas.Size = new System.Drawing.Size(59, 22);
     this.txt_totprendas.TabIndex = 174;
     this.txt_totprendas.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // txt_profun
     //
     this.txt_profun.Location = new System.Drawing.Point(515, 78);
     this.txt_profun.MenuManager = this.barManager1;
     this.txt_profun.Name = "txt_profun";
     this.txt_profun.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_profun.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_profun.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_profun.Properties.Mask.BeepOnError = true;
     this.txt_profun.Properties.Mask.EditMask = "n0";
     this.txt_profun.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_profun.Size = new System.Drawing.Size(59, 22);
     this.txt_profun.TabIndex = 173;
     this.txt_profun.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     this.txt_profun.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_profun_KeyUp);
     this.txt_profun.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_profun_MouseDown);
     //
     // txt_totmodels
     //
     this.txt_totmodels.Enabled = false;
     this.txt_totmodels.Location = new System.Drawing.Point(452, 78);
     this.txt_totmodels.MenuManager = this.barManager1;
     this.txt_totmodels.Name = "txt_totmodels";
     this.txt_totmodels.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_totmodels.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_totmodels.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_totmodels.Size = new System.Drawing.Size(59, 22);
     this.txt_totmodels.TabIndex = 172;
     this.txt_totmodels.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     //
     // lbl06
     //
     this.lbl06.Location = new System.Drawing.Point(339, 59);
     this.lbl06.Name = "lbl06";
     this.lbl06.Size = new System.Drawing.Size(22, 13);
     this.lbl06.TabIndex = 171;
     this.lbl06.Text = "lbl01";
     //
     // lbl05
     //
     this.lbl05.Location = new System.Drawing.Point(274, 59);
     this.lbl05.Name = "lbl05";
     this.lbl05.Size = new System.Drawing.Size(22, 13);
     this.lbl05.TabIndex = 170;
     this.lbl05.Text = "lbl01";
     //
     // lbl04
     //
     this.lbl04.Location = new System.Drawing.Point(209, 59);
     this.lbl04.Name = "lbl04";
     this.lbl04.Size = new System.Drawing.Size(22, 13);
     this.lbl04.TabIndex = 169;
     this.lbl04.Text = "lbl01";
     //
     // lbl03
     //
     this.lbl03.Location = new System.Drawing.Point(144, 59);
     this.lbl03.Name = "lbl03";
     this.lbl03.Size = new System.Drawing.Size(22, 13);
     this.lbl03.TabIndex = 168;
     this.lbl03.Text = "lbl01";
     //
     // lbl02
     //
     this.lbl02.Location = new System.Drawing.Point(79, 59);
     this.lbl02.Name = "lbl02";
     this.lbl02.Size = new System.Drawing.Size(22, 13);
     this.lbl02.TabIndex = 167;
     this.lbl02.Text = "lbl01";
     //
     // txt_06
     //
     this.txt_06.Location = new System.Drawing.Point(339, 78);
     this.txt_06.MenuManager = this.barManager1;
     this.txt_06.Name = "txt_06";
     this.txt_06.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_06.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_06.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_06.Properties.Mask.BeepOnError = true;
     this.txt_06.Properties.Mask.EditMask = "n0";
     this.txt_06.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_06.Size = new System.Drawing.Size(59, 22);
     this.txt_06.TabIndex = 166;
     this.txt_06.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     this.txt_06.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_06_KeyDown);
     this.txt_06.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_06_KeyUp);
     this.txt_06.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_06_MouseDown);
     //
     // txt_05
     //
     this.txt_05.Location = new System.Drawing.Point(274, 78);
     this.txt_05.MenuManager = this.barManager1;
     this.txt_05.Name = "txt_05";
     this.txt_05.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_05.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_05.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_05.Properties.Mask.BeepOnError = true;
     this.txt_05.Properties.Mask.EditMask = "n0";
     this.txt_05.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_05.Size = new System.Drawing.Size(59, 22);
     this.txt_05.TabIndex = 165;
     this.txt_05.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     this.txt_05.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_05_KeyDown);
     this.txt_05.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_05_KeyUp);
     this.txt_05.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_05_MouseDown);
     //
     // txt_04
     //
     this.txt_04.Location = new System.Drawing.Point(209, 78);
     this.txt_04.MenuManager = this.barManager1;
     this.txt_04.Name = "txt_04";
     this.txt_04.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_04.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_04.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_04.Properties.Mask.BeepOnError = true;
     this.txt_04.Properties.Mask.EditMask = "n0";
     this.txt_04.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_04.Size = new System.Drawing.Size(59, 22);
     this.txt_04.TabIndex = 164;
     this.txt_04.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     this.txt_04.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_04_KeyDown);
     this.txt_04.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_04_KeyUp);
     this.txt_04.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_04_MouseDown);
     //
     // txt_03
     //
     this.txt_03.Location = new System.Drawing.Point(144, 78);
     this.txt_03.MenuManager = this.barManager1;
     this.txt_03.Name = "txt_03";
     this.txt_03.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_03.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_03.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_03.Properties.Mask.BeepOnError = true;
     this.txt_03.Properties.Mask.EditMask = "n0";
     this.txt_03.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_03.Size = new System.Drawing.Size(59, 22);
     this.txt_03.TabIndex = 163;
     this.txt_03.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     this.txt_03.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_03_KeyDown);
     this.txt_03.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_03_KeyUp);
     this.txt_03.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_03_MouseDown);
     //
     // txt_02
     //
     this.txt_02.Location = new System.Drawing.Point(79, 78);
     this.txt_02.MenuManager = this.barManager1;
     this.txt_02.Name = "txt_02";
     this.txt_02.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_02.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_02.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_02.Properties.Mask.BeepOnError = true;
     this.txt_02.Properties.Mask.EditMask = "n0";
     this.txt_02.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_02.Size = new System.Drawing.Size(59, 22);
     this.txt_02.TabIndex = 162;
     this.txt_02.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     this.txt_02.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_02_KeyDown);
     this.txt_02.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_02_KeyUp);
     this.txt_02.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_02_MouseDown);
     //
     // txt_01
     //
     this.txt_01.Location = new System.Drawing.Point(14, 78);
     this.txt_01.MenuManager = this.barManager1;
     this.txt_01.Name = "txt_01";
     this.txt_01.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_01.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_01.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.txt_01.Properties.Mask.BeepOnError = true;
     this.txt_01.Properties.Mask.EditMask = "n0";
     this.txt_01.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_01.Size = new System.Drawing.Size(59, 22);
     this.txt_01.TabIndex = 153;
     this.txt_01.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Asterisk;
     this.txt_01.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_01_KeyDown);
     this.txt_01.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_01_KeyUp);
     this.txt_01.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_01_MouseDown);
     //
     // lbl01
     //
     this.lbl01.Location = new System.Drawing.Point(14, 59);
     this.lbl01.Name = "lbl01";
     this.lbl01.Size = new System.Drawing.Size(22, 13);
     this.lbl01.TabIndex = 157;
     this.lbl01.Text = "lbl01";
     //
     // cmb_lineatelaid
     //
     this.cmb_lineatelaid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_lineatelaid.FormattingEnabled = true;
     this.cmb_lineatelaid.Location = new System.Drawing.Point(503, 24);
     this.cmb_lineatelaid.Name = "cmb_lineatelaid";
     this.cmb_lineatelaid.Size = new System.Drawing.Size(134, 21);
     this.cmb_lineatelaid.TabIndex = 156;
     //
     // cmb_generoid
     //
     this.cmb_generoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_generoid.FormattingEnabled = true;
     this.cmb_generoid.Location = new System.Drawing.Point(380, 24);
     this.cmb_generoid.Name = "cmb_generoid";
     this.cmb_generoid.Size = new System.Drawing.Size(117, 21);
     this.cmb_generoid.TabIndex = 155;
     //
     // cmb_entalleid
     //
     this.cmb_entalleid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_entalleid.FormattingEnabled = true;
     this.cmb_entalleid.Location = new System.Drawing.Point(262, 24);
     this.cmb_entalleid.Name = "cmb_entalleid";
     this.cmb_entalleid.Size = new System.Drawing.Size(112, 21);
     this.cmb_entalleid.TabIndex = 154;
     //
     // cmb_lineaid
     //
     this.cmb_lineaid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_lineaid.FormattingEnabled = true;
     this.cmb_lineaid.Location = new System.Drawing.Point(138, 24);
     this.cmb_lineaid.Name = "cmb_lineaid";
     this.cmb_lineaid.Size = new System.Drawing.Size(119, 21);
     this.cmb_lineaid.TabIndex = 153;
     //
     // cmb_marcaid
     //
     this.cmb_marcaid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_marcaid.FormattingEnabled = true;
     this.cmb_marcaid.Location = new System.Drawing.Point(14, 24);
     this.cmb_marcaid.Name = "cmb_marcaid";
     this.cmb_marcaid.Size = new System.Drawing.Size(118, 21);
     this.cmb_marcaid.TabIndex = 152;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(503, 5);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(33, 13);
     this.labelControl7.TabIndex = 149;
     this.labelControl7.Text = "Tejido:";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(380, 5);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(39, 13);
     this.labelControl6.TabIndex = 148;
     this.labelControl6.Text = "Género:";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(262, 5);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(36, 13);
     this.labelControl5.TabIndex = 147;
     this.labelControl5.Text = "Entalle:";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(138, 5);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(29, 13);
     this.labelControl4.TabIndex = 146;
     this.labelControl4.Text = "Linea:";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(14, 5);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(33, 13);
     this.labelControl3.TabIndex = 145;
     this.labelControl3.Text = "Marca:";
     //
     // cmb_canalvta
     //
     this.cmb_canalvta.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_canalvta.FormattingEnabled = true;
     this.cmb_canalvta.Location = new System.Drawing.Point(91, 71);
     this.cmb_canalvta.Name = "cmb_canalvta";
     this.cmb_canalvta.Size = new System.Drawing.Size(154, 21);
     this.cmb_canalvta.TabIndex = 151;
     this.cmb_canalvta.SelectedIndexChanged += new System.EventHandler(this.cmb_canalvta_SelectedIndexChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(26, 74);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(59, 13);
     this.labelControl2.TabIndex = 150;
     this.labelControl2.Text = "CanalVenta:";
     //
     // cmb_temporadaid
     //
     this.cmb_temporadaid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_temporadaid.FormattingEnabled = true;
     this.cmb_temporadaid.Location = new System.Drawing.Point(91, 49);
     this.cmb_temporadaid.Name = "cmb_temporadaid";
     this.cmb_temporadaid.Size = new System.Drawing.Size(154, 21);
     this.cmb_temporadaid.TabIndex = 149;
     this.cmb_temporadaid.SelectedIndexChanged += new System.EventHandler(this.cmb_temporadaid_SelectedIndexChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(27, 52);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(58, 13);
     this.labelControl1.TabIndex = 148;
     this.labelControl1.Text = "Temporada:";
     //
     // btn_new
     //
     this.btn_new.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_new.Image = ((System.Drawing.Image)(resources.GetObject("btn_new.Image")));
     this.btn_new.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_new.Location = new System.Drawing.Point(642, 53);
     this.btn_new.Name = "btn_new";
     this.btn_new.Size = new System.Drawing.Size(48, 23);
     this.btn_new.TabIndex = 178;
     this.btn_new.Text = "NEW";
     this.btn_new.ToolTip = "Limpiar";
     this.btn_new.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_new.Click += new System.EventHandler(this.btn_new_Click);
     //
     // Frm_proyeccion
     //
     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(803, 506);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_proyeccion";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Proyección";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_proyeccion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_proyeccion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rb_status.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_totalprendascab.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_canttotalcab.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod06.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod05.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod04.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod03.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod02.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_cantmod01.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_totprendas.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_profun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_totmodels.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_06.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_05.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_04.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_03.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_02.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_01.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 26
0
 public static void SelectedRadioItemByIndex(DevExpress.XtraEditors.RadioGroup radioGroup, long index)
 {
     radioGroup.SelectedIndex = (int)index;
 }
Exemplo n.º 27
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(frmDeleteEvents));
     this.pbxErrorInfo = new System.Windows.Forms.PictureBox();
     this.label1 = new System.Windows.Forms.Label();
     this.btnOK = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.rdDeleteChoice = new DevExpress.XtraEditors.RadioGroup();
     ((System.ComponentModel.ISupportInitialize)(this.pbxErrorInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rdDeleteChoice.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // pbxErrorInfo
     //
     this.pbxErrorInfo.Image = ((System.Drawing.Image)(resources.GetObject("pbxErrorInfo.Image")));
     this.pbxErrorInfo.Location = new System.Drawing.Point(14, 15);
     this.pbxErrorInfo.Name = "pbxErrorInfo";
     this.pbxErrorInfo.Size = new System.Drawing.Size(32, 32);
     this.pbxErrorInfo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pbxErrorInfo.TabIndex = 6;
     this.pbxErrorInfo.TabStop = false;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(58, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(192, 48);
     this.label1.TabIndex = 7;
     this.label1.Text = "Do you want to delete all occurences of the Recurring Event  or just this one?";
     //
     // btnOK
     //
     this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnOK.Location = new System.Drawing.Point(49, 128);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 10;
     this.btnOK.Text = "OK";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location = new System.Drawing.Point(134, 128);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 11;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // rdDeleteChoice
     //
     this.rdDeleteChoice.EditValue = true;
     this.rdDeleteChoice.Location = new System.Drawing.Point(49, 67);
     this.rdDeleteChoice.Name = "rdDeleteChoice";
     this.rdDeleteChoice.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rdDeleteChoice.Properties.Appearance.Options.UseBackColor = true;
     this.rdDeleteChoice.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rdDeleteChoice.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "Delete this occurence"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(false, "Delete the series")});
     this.rdDeleteChoice.Size = new System.Drawing.Size(225, 55);
     this.rdDeleteChoice.TabIndex = 12;
     //
     // frmDeleteEvents
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(269, 162);
     this.Controls.Add(this.rdDeleteChoice);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pbxErrorInfo);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDeleteEvents";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Confirm Delete";
     this.Load += new System.EventHandler(this.frmDeleteEvents_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pbxErrorInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rdDeleteChoice.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 28
0
 internal static void SelectedRadioGroupByText(DevExpress.XtraEditors.RadioGroup rg_Catalog, string p)
 {
     throw new NotImplementedException();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // radioGroup1
     //
     this.radioGroup1.Enabled = false;
     this.radioGroup1.Location = new System.Drawing.Point(12, 31);
     this.radioGroup1.Name = "radioGroup1";
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Fecha"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Cargo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Todos")});
     this.radioGroup1.Size = new System.Drawing.Size(403, 80);
     this.radioGroup1.TabIndex = 1;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(427, 25);
     this.toolStrip1.TabIndex = 23;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton4
     //
     this.toolStripButton4.Image = global::forms.Properties.Resources.imprimir;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(68, 22);
     this.toolStripButton4.Text = "Generar";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(110, 42);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(30, 13);
     this.labelControl1.TabIndex = 24;
     this.labelControl1.Text = "Desde";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(257, 42);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(28, 13);
     this.labelControl2.TabIndex = 25;
     this.labelControl2.Text = "Hasta";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit1.Enabled = false;
     this.dateEdit1.Location = new System.Drawing.Point(146, 39);
     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.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 26;
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit2.Enabled = false;
     this.dateEdit2.Location = new System.Drawing.Point(302, 39);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit2.Size = new System.Drawing.Size(100, 20);
     this.dateEdit2.TabIndex = 27;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.simpleButton2);
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Controls.Add(this.memoEdit1);
     this.groupControl1.Controls.Add(this.memoEdit2);
     this.groupControl1.Enabled = false;
     this.groupControl1.Location = new System.Drawing.Point(13, 125);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(402, 110);
     this.groupControl1.TabIndex = 28;
     this.groupControl1.Text = "Empleado";
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // simpleButton2
     //
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(181, 65);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(40, 23);
     this.simpleButton2.TabIndex = 5;
     this.simpleButton2.Text = "<<";
     //
     // simpleButton1
     //
     this.simpleButton1.Enabled = false;
     this.simpleButton1.Location = new System.Drawing.Point(181, 36);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(40, 23);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = ">>";
     //
     // memoEdit1
     //
     this.memoEdit1.Enabled = false;
     this.memoEdit1.Location = new System.Drawing.Point(14, 24);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(145, 76);
     this.memoEdit1.TabIndex = 3;
     //
     // memoEdit2
     //
     this.memoEdit2.Enabled = false;
     this.memoEdit2.Location = new System.Drawing.Point(244, 24);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(145, 76);
     this.memoEdit2.TabIndex = 2;
     //
     // frmConsultaReporteEmpleado
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(427, 262);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.dateEdit2);
     this.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.radioGroup1);
     this.Name = "frmConsultaReporteEmpleado";
     this.Text = "Consulta de Empleado";
     this.Load += new System.EventHandler(this.frmConsultaReporteEmpleado_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_vendedor));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_act = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.grpanel01 = new DevExpress.XtraEditors.GroupControl();
     this.lbl_num = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     this.rb_tipo = new DevExpress.XtraEditors.RadioGroup();
     this.txt_busqueda = new System.Windows.Forms.TextBox();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.Mdi_dgv_vendedor = new DevExpress.XtraGrid.GridControl();
     this.dgv_vendedor = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._vendorid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._vendorname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._local = new DevExpress.XtraGrid.Columns.GridColumn();
     this._localname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.label11 = new System.Windows.Forms.Label();
     this.chk_comisiona = new DevExpress.XtraEditors.CheckEdit();
     this.chk_conhijos = new DevExpress.XtraEditors.CheckEdit();
     this.rb_sexo = new DevExpress.XtraEditors.RadioGroup();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.txt_remunebas = new System.Windows.Forms.TextBox();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txt_vendorid = new System.Windows.Forms.TextBox();
     this.txt_vendorname = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechini = new DevExpress.XtraEditors.DateEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechnac = new DevExpress.XtraEditors.DateEdit();
     this.txt_apepat = new System.Windows.Forms.TextBox();
     this.txt_apemat = new System.Windows.Forms.TextBox();
     this.txt_nombre = new System.Windows.Forms.TextBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txt_dni = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txt_direcc = new System.Windows.Forms.TextBox();
     this.txt_telefono = new System.Windows.Forms.TextBox();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txt_cargoname = new System.Windows.Forms.TextBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.txt_local = new System.Windows.Forms.TextBox();
     this.txt_localname = new System.Windows.Forms.TextBox();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechasig = new DevExpress.XtraEditors.DateEdit();
     this.txt_fechcese = new DevExpress.XtraEditors.DateEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.txt_cargoid = new System.Windows.Forms.TextBox();
     this.grpanel03 = new DevExpress.XtraEditors.GroupControl();
     this.txt_observ = new System.Windows.Forms.TextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.MDI_dgb_vendorcargo = new DevExpress.XtraGrid.GridControl();
     this.dgb_vendorcargo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.fechasig = new DevExpress.XtraGrid.Columns.GridColumn();
     this.glocal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.localname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcargoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cargoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.observac = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpanel02 = new DevExpress.XtraEditors.GroupControl();
     this.grpanel04 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel01)).BeginInit();
     this.grpanel01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rb_tipo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_vendedor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_vendedor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_comisiona.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_conhijos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rb_sexo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel03)).BeginInit();
     this.grpanel03.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MDI_dgb_vendorcargo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_vendorcargo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel02)).BeginInit();
     this.grpanel02.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel04)).BeginInit();
     this.grpanel04.SuspendLayout();
     this.SuspendLayout();
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave,
     this.btn_act});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 18;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_act)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem1.Text = "Nuevo";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btn_nuevo.SuperTip = superToolTip1;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem2.Text = "Editar";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btn_editar.SuperTip = superToolTip2;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem3.Text = "Cancelar";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btn_cancelar.SuperTip = superToolTip3;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem4.Text = "Guardar";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.btn_grabar.SuperTip = superToolTip4;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem5.Text = "Elimar Registro";
     superToolTip5.Items.Add(toolTipTitleItem5);
     this.btn_eliminar.SuperTip = superToolTip5;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem6.Text = "Imprimir";
     superToolTip6.Items.Add(toolTipTitleItem6);
     this.btn_imprimir.SuperTip = superToolTip6;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem7.Text = "Log";
     superToolTip7.Items.Add(toolTipTitleItem7);
     this.btn_log.SuperTip = superToolTip7;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem8.Text = "Salir";
     superToolTip8.Items.Add(toolTipTitleItem8);
     this.btn_salir.SuperTip = superToolTip8;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // btn_act
     //
     this.btn_act.Caption = "btn_act";
     this.btn_act.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_act.Glyph")));
     this.btn_act.Id = 17;
     this.btn_act.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_act.LargeGlyph")));
     this.btn_act.Name = "btn_act";
     this.btn_act.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_act_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1087, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 412);
     this.barDockControlBottom.Size = new System.Drawing.Size(1087, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 384);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1087, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 384);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem9.Text = "Actualizar";
     superToolTip9.Items.Add(toolTipTitleItem9);
     this.btnLoad.SuperTip = superToolTip9;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem10.Text = "Primer Registro";
     superToolTip10.Items.Add(toolTipTitleItem10);
     this.btnInicio.SuperTip = superToolTip10;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem11.Text = "Anterior Registro";
     superToolTip11.Items.Add(toolTipTitleItem11);
     this.btnAnterior.SuperTip = superToolTip11;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem12.Text = "Siguiente Registro";
     superToolTip12.Items.Add(toolTipTitleItem12);
     this.btnSiguiente.SuperTip = superToolTip12;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem13.Text = "Ultimo Registro";
     superToolTip13.Items.Add(toolTipTitleItem13);
     this.btnUltimo.SuperTip = superToolTip13;
     //
     // grpanel01
     //
     this.grpanel01.Controls.Add(this.lbl_num);
     this.grpanel01.Controls.Add(this.labelControl1);
     this.grpanel01.Controls.Add(this.btn_busqueda);
     this.grpanel01.Controls.Add(this.rb_tipo);
     this.grpanel01.Controls.Add(this.txt_busqueda);
     this.grpanel01.Controls.Add(this.labelControl10);
     this.grpanel01.Controls.Add(this.Mdi_dgv_vendedor);
     this.grpanel01.Location = new System.Drawing.Point(0, 29);
     this.grpanel01.Name = "grpanel01";
     this.grpanel01.Size = new System.Drawing.Size(360, 380);
     this.grpanel01.TabIndex = 142;
     this.grpanel01.Text = "»» Datos";
     //
     // lbl_num
     //
     this.lbl_num.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.lbl_num.Appearance.ForeColor = System.Drawing.Color.Red;
     this.lbl_num.Location = new System.Drawing.Point(112, 359);
     this.lbl_num.Name = "lbl_num";
     this.lbl_num.Size = new System.Drawing.Size(15, 16);
     this.lbl_num.TabIndex = 171;
     this.lbl_num.Text = "n°";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(6, 360);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(95, 13);
     this.labelControl1.TabIndex = 170;
     this.labelControl1.Text = "Total Trabajadores:";
     //
     // btn_busqueda
     //
     this.btn_busqueda.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_busqueda.Appearance.Options.UseFont = true;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(283, 23);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(73, 22);
     this.btn_busqueda.TabIndex = 169;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // rb_tipo
     //
     this.rb_tipo.EditValue = true;
     this.rb_tipo.Location = new System.Drawing.Point(66, 48);
     this.rb_tipo.MenuManager = this.barManager1;
     this.rb_tipo.Name = "rb_tipo";
     this.rb_tipo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.rb_tipo.Properties.Columns = 2;
     this.rb_tipo.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "Activo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(false, "Cesado")});
     this.rb_tipo.Size = new System.Drawing.Size(128, 22);
     this.rb_tipo.TabIndex = 168;
     //
     // txt_busqueda
     //
     this.txt_busqueda.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_busqueda.Location = new System.Drawing.Point(65, 23);
     this.txt_busqueda.Name = "txt_busqueda";
     this.txt_busqueda.Size = new System.Drawing.Size(217, 21);
     this.txt_busqueda.TabIndex = 167;
     this.txt_busqueda.TextChanged += new System.EventHandler(this.txt_busqueda_TextChanged);
     this.txt_busqueda.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_busqueda_KeyUp);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(9, 26);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(51, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "Busqueda:";
     //
     // Mdi_dgv_vendedor
     //
     this.Mdi_dgv_vendedor.Location = new System.Drawing.Point(5, 76);
     this.Mdi_dgv_vendedor.MainView = this.dgv_vendedor;
     this.Mdi_dgv_vendedor.Name = "Mdi_dgv_vendedor";
     this.Mdi_dgv_vendedor.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_vendedor.Size = new System.Drawing.Size(351, 275);
     this.Mdi_dgv_vendedor.TabIndex = 143;
     this.Mdi_dgv_vendedor.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_vendedor});
     this.Mdi_dgv_vendedor.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_vendedor_KeyUp);
     //
     // dgv_vendedor
     //
     this.dgv_vendedor.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_vendedor.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_vendedor.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_vendedor.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_vendedor.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_vendedor.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_vendedor.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_vendedor.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_vendedor.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_vendedor.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_vendedor.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_vendedor.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_vendedor.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_vendedor.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_vendedor.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_vendedor.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_vendedor.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_vendedor.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_vendedor.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_vendedor.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_vendedor.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_vendedor.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.Row.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.Row.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_vendedor.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_vendedor.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_vendedor.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._vendorid,
     this._vendorname,
     this._local,
     this._localname});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_vendedor.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_vendedor.GridControl = this.Mdi_dgv_vendedor;
     this.dgv_vendedor.Name = "dgv_vendedor";
     this.dgv_vendedor.OptionsSelection.MultiSelect = true;
     this.dgv_vendedor.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_vendedor.OptionsView.ShowGroupPanel = false;
     this.dgv_vendedor.PaintStyleName = "Web";
     this.dgv_vendedor.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_vendedor_RowCellClick);
     //
     // _vendorid
     //
     this._vendorid.Caption = "Cod";
     this._vendorid.FieldName = "vendorid";
     this._vendorid.Name = "_vendorid";
     this._vendorid.OptionsColumn.AllowEdit = false;
     this._vendorid.Visible = true;
     this._vendorid.VisibleIndex = 0;
     this._vendorid.Width = 41;
     //
     // _vendorname
     //
     this._vendorname.Caption = "Nombres";
     this._vendorname.FieldName = "vendorname";
     this._vendorname.Name = "_vendorname";
     this._vendorname.OptionsColumn.AllowEdit = false;
     this._vendorname.Visible = true;
     this._vendorname.VisibleIndex = 1;
     this._vendorname.Width = 199;
     //
     // _local
     //
     this._local.Caption = "local";
     this._local.FieldName = "local";
     this._local.Name = "_local";
     //
     // _localname
     //
     this._localname.Caption = "Tienda";
     this._localname.FieldName = "localname";
     this._localname.Name = "_localname";
     this._localname.OptionsColumn.AllowEdit = false;
     this._localname.Visible = true;
     this._localname.VisibleIndex = 2;
     this._localname.Width = 96;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Teal;
     this.label11.Location = new System.Drawing.Point(103, 29);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(175, 24);
     this.label11.TabIndex = 202;
     this.label11.Text = "Registro de Datos";
     //
     // chk_comisiona
     //
     this.chk_comisiona.Location = new System.Drawing.Point(185, 345);
     this.chk_comisiona.MenuManager = this.barManager1;
     this.chk_comisiona.Name = "chk_comisiona";
     this.chk_comisiona.Properties.Caption = "Comisiona ?";
     this.chk_comisiona.Size = new System.Drawing.Size(78, 19);
     this.chk_comisiona.TabIndex = 201;
     //
     // chk_conhijos
     //
     this.chk_conhijos.Location = new System.Drawing.Point(83, 345);
     this.chk_conhijos.MenuManager = this.barManager1;
     this.chk_conhijos.Name = "chk_conhijos";
     this.chk_conhijos.Properties.Caption = "Con Hijos ?";
     this.chk_conhijos.Size = new System.Drawing.Size(75, 19);
     this.chk_conhijos.TabIndex = 200;
     //
     // rb_sexo
     //
     this.rb_sexo.EditValue = true;
     this.rb_sexo.Location = new System.Drawing.Point(84, 300);
     this.rb_sexo.MenuManager = this.barManager1;
     this.rb_sexo.Name = "rb_sexo";
     this.rb_sexo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rb_sexo.Properties.Columns = 1;
     this.rb_sexo.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("M", "Hombre"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("F", "Mujer")});
     this.rb_sexo.Size = new System.Drawing.Size(74, 37);
     this.rb_sexo.TabIndex = 199;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(50, 303);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(28, 13);
     this.labelControl17.TabIndex = 198;
     this.labelControl17.Text = "Sexo:";
     //
     // txt_remunebas
     //
     this.txt_remunebas.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_remunebas.Location = new System.Drawing.Point(84, 273);
     this.txt_remunebas.Name = "txt_remunebas";
     this.txt_remunebas.Size = new System.Drawing.Size(74, 21);
     this.txt_remunebas.TabIndex = 197;
     this.txt_remunebas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(9, 276);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(71, 13);
     this.labelControl16.TabIndex = 196;
     this.labelControl16.Text = "Remun.Básica:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(43, 70);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(37, 13);
     this.labelControl2.TabIndex = 145;
     this.labelControl2.Text = "Codigo:";
     //
     // txt_vendorid
     //
     this.txt_vendorid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_vendorid.Location = new System.Drawing.Point(84, 67);
     this.txt_vendorid.Name = "txt_vendorid";
     this.txt_vendorid.Size = new System.Drawing.Size(39, 21);
     this.txt_vendorid.TabIndex = 168;
     //
     // txt_vendorname
     //
     this.txt_vendorname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_vendorname.Location = new System.Drawing.Point(123, 67);
     this.txt_vendorname.Name = "txt_vendorname";
     this.txt_vendorname.Size = new System.Drawing.Size(217, 21);
     this.txt_vendorname.TabIndex = 169;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(15, 92);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(65, 13);
     this.labelControl3.TabIndex = 170;
     this.labelControl3.Text = "Ape.Paterno:";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(13, 116);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(67, 13);
     this.labelControl4.TabIndex = 171;
     this.labelControl4.Text = "Ape.Materno:";
     //
     // txt_fechini
     //
     this.txt_fechini.EditValue = null;
     this.txt_fechini.Location = new System.Drawing.Point(243, 246);
     this.txt_fechini.MenuManager = this.barManager1;
     this.txt_fechini.Name = "txt_fechini";
     this.txt_fechini.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechini.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechini.Size = new System.Drawing.Size(100, 20);
     this.txt_fechini.TabIndex = 188;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(34, 140);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(46, 13);
     this.labelControl5.TabIndex = 172;
     this.labelControl5.Text = "Nombres:";
     //
     // txt_fechnac
     //
     this.txt_fechnac.EditValue = null;
     this.txt_fechnac.Location = new System.Drawing.Point(84, 248);
     this.txt_fechnac.MenuManager = this.barManager1;
     this.txt_fechnac.Name = "txt_fechnac";
     this.txt_fechnac.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechnac.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechnac.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechnac.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechnac.Size = new System.Drawing.Size(100, 20);
     this.txt_fechnac.TabIndex = 187;
     //
     // txt_apepat
     //
     this.txt_apepat.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_apepat.Location = new System.Drawing.Point(84, 90);
     this.txt_apepat.Name = "txt_apepat";
     this.txt_apepat.Size = new System.Drawing.Size(217, 21);
     this.txt_apepat.TabIndex = 173;
     this.txt_apepat.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_apepat_KeyUp);
     //
     // txt_apemat
     //
     this.txt_apemat.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_apemat.Location = new System.Drawing.Point(84, 113);
     this.txt_apemat.Name = "txt_apemat";
     this.txt_apemat.Size = new System.Drawing.Size(217, 21);
     this.txt_apemat.TabIndex = 174;
     this.txt_apemat.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_apemat_KeyUp);
     //
     // txt_nombre
     //
     this.txt_nombre.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_nombre.Location = new System.Drawing.Point(84, 136);
     this.txt_nombre.Name = "txt_nombre";
     this.txt_nombre.Size = new System.Drawing.Size(217, 21);
     this.txt_nombre.TabIndex = 175;
     this.txt_nombre.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_nombre_KeyUp);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(187, 251);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(54, 13);
     this.labelControl12.TabIndex = 184;
     this.labelControl12.Text = "F.Registro:";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(61, 163);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(19, 13);
     this.labelControl6.TabIndex = 176;
     this.labelControl6.Text = "Dni:";
     //
     // txt_dni
     //
     this.txt_dni.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_dni.Location = new System.Drawing.Point(84, 159);
     this.txt_dni.MaxLength = 8;
     this.txt_dni.Name = "txt_dni";
     this.txt_dni.Size = new System.Drawing.Size(97, 21);
     this.txt_dni.TabIndex = 177;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(14, 251);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(66, 13);
     this.labelControl9.TabIndex = 182;
     this.labelControl9.Text = "F.Nacimiento:";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(194, 163);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(46, 13);
     this.labelControl7.TabIndex = 178;
     this.labelControl7.Text = "Telefono:";
     //
     // txt_direcc
     //
     this.txt_direcc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_direcc.Location = new System.Drawing.Point(84, 184);
     this.txt_direcc.Multiline = true;
     this.txt_direcc.Name = "txt_direcc";
     this.txt_direcc.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txt_direcc.Size = new System.Drawing.Size(256, 60);
     this.txt_direcc.TabIndex = 181;
     //
     // txt_telefono
     //
     this.txt_telefono.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_telefono.Location = new System.Drawing.Point(243, 159);
     this.txt_telefono.Name = "txt_telefono";
     this.txt_telefono.Size = new System.Drawing.Size(97, 21);
     this.txt_telefono.TabIndex = 179;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(34, 187);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 180;
     this.labelControl8.Text = "Dirección:";
     //
     // txt_cargoname
     //
     this.txt_cargoname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_cargoname.Location = new System.Drawing.Point(122, 69);
     this.txt_cargoname.Name = "txt_cargoname";
     this.txt_cargoname.Size = new System.Drawing.Size(220, 21);
     this.txt_cargoname.TabIndex = 195;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(5, 27);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(75, 13);
     this.labelControl11.TabIndex = 183;
     this.labelControl11.Text = "Local Asignado:";
     //
     // txt_local
     //
     this.txt_local.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_local.Location = new System.Drawing.Point(83, 24);
     this.txt_local.Name = "txt_local";
     this.txt_local.Size = new System.Drawing.Size(39, 21);
     this.txt_local.TabIndex = 185;
     this.txt_local.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_local_KeyDown);
     this.txt_local.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_local_MouseDown);
     //
     // txt_localname
     //
     this.txt_localname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_localname.Location = new System.Drawing.Point(122, 24);
     this.txt_localname.Name = "txt_localname";
     this.txt_localname.Size = new System.Drawing.Size(220, 21);
     this.txt_localname.TabIndex = 186;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(15, 50);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(65, 13);
     this.labelControl14.TabIndex = 189;
     this.labelControl14.Text = "F.Asignación:";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(202, 50);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(38, 13);
     this.labelControl13.TabIndex = 190;
     this.labelControl13.Text = "F.Cese:";
     //
     // txt_fechasig
     //
     this.txt_fechasig.EditValue = null;
     this.txt_fechasig.Location = new System.Drawing.Point(83, 47);
     this.txt_fechasig.MenuManager = this.barManager1;
     this.txt_fechasig.Name = "txt_fechasig";
     this.txt_fechasig.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechasig.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechasig.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechasig.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechasig.Size = new System.Drawing.Size(100, 20);
     this.txt_fechasig.TabIndex = 191;
     //
     // txt_fechcese
     //
     this.txt_fechcese.EditValue = null;
     this.txt_fechcese.Location = new System.Drawing.Point(242, 47);
     this.txt_fechcese.MenuManager = this.barManager1;
     this.txt_fechcese.Name = "txt_fechcese";
     this.txt_fechcese.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechcese.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechcese.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechcese.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechcese.Size = new System.Drawing.Size(100, 20);
     this.txt_fechcese.TabIndex = 192;
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(47, 72);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(33, 13);
     this.labelControl15.TabIndex = 193;
     this.labelControl15.Text = "Cargo:";
     //
     // txt_cargoid
     //
     this.txt_cargoid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_cargoid.Location = new System.Drawing.Point(83, 69);
     this.txt_cargoid.Name = "txt_cargoid";
     this.txt_cargoid.Size = new System.Drawing.Size(39, 21);
     this.txt_cargoid.TabIndex = 194;
     this.txt_cargoid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_cargoid_KeyDown);
     this.txt_cargoid.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_cargoid_MouseDown);
     //
     // grpanel03
     //
     this.grpanel03.Controls.Add(this.txt_observ);
     this.grpanel03.Controls.Add(this.labelControl18);
     this.grpanel03.Controls.Add(this.txt_cargoname);
     this.grpanel03.Controls.Add(this.labelControl11);
     this.grpanel03.Controls.Add(this.txt_local);
     this.grpanel03.Controls.Add(this.txt_cargoid);
     this.grpanel03.Controls.Add(this.txt_localname);
     this.grpanel03.Controls.Add(this.labelControl15);
     this.grpanel03.Controls.Add(this.labelControl14);
     this.grpanel03.Controls.Add(this.txt_fechcese);
     this.grpanel03.Controls.Add(this.labelControl13);
     this.grpanel03.Controls.Add(this.txt_fechasig);
     this.grpanel03.Location = new System.Drawing.Point(715, 29);
     this.grpanel03.Name = "grpanel03";
     this.grpanel03.Size = new System.Drawing.Size(370, 157);
     this.grpanel03.TabIndex = 147;
     this.grpanel03.Text = "»» Asignación";
     //
     // txt_observ
     //
     this.txt_observ.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_observ.Location = new System.Drawing.Point(83, 93);
     this.txt_observ.Multiline = true;
     this.txt_observ.Name = "txt_observ";
     this.txt_observ.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txt_observ.Size = new System.Drawing.Size(259, 60);
     this.txt_observ.TabIndex = 197;
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(30, 96);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(50, 13);
     this.labelControl18.TabIndex = 196;
     this.labelControl18.Text = "Observac:";
     //
     // MDI_dgb_vendorcargo
     //
     this.MDI_dgb_vendorcargo.Location = new System.Drawing.Point(9, 25);
     this.MDI_dgb_vendorcargo.MainView = this.dgb_vendorcargo;
     this.MDI_dgb_vendorcargo.Name = "MDI_dgb_vendorcargo";
     this.MDI_dgb_vendorcargo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit3,
     this.repositoryItemCheckEdit1,
     this.repositoryItemTextEdit4,
     this.repositoryItemCheckEdit4});
     this.MDI_dgb_vendorcargo.Size = new System.Drawing.Size(351, 191);
     this.MDI_dgb_vendorcargo.TabIndex = 198;
     this.MDI_dgb_vendorcargo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgb_vendorcargo});
     this.MDI_dgb_vendorcargo.KeyUp += new System.Windows.Forms.KeyEventHandler(this.MDI_dgb_vendorcargo_KeyUp);
     //
     // dgb_vendorcargo
     //
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.Empty.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgb_vendorcargo.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgb_vendorcargo.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_vendorcargo.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgb_vendorcargo.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_vendorcargo.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgb_vendorcargo.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgb_vendorcargo.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_vendorcargo.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_vendorcargo.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgb_vendorcargo.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_vendorcargo.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupPanel.Options.UseFont = true;
     this.dgb_vendorcargo.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgb_vendorcargo.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgb_vendorcargo.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_vendorcargo.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgb_vendorcargo.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgb_vendorcargo.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgb_vendorcargo.Appearance.Preview.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.Preview.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_vendorcargo.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.Row.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.Row.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgb_vendorcargo.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgb_vendorcargo.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.VertLine.Options.UseBackColor = true;
     this.dgb_vendorcargo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.fechasig,
     this.glocal,
     this.localname,
     this.gcargoid,
     this.cargoname,
     this.observac});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition1.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgb_vendorcargo.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.dgb_vendorcargo.GridControl = this.MDI_dgb_vendorcargo;
     this.dgb_vendorcargo.Name = "dgb_vendorcargo";
     this.dgb_vendorcargo.OptionsSelection.MultiSelect = true;
     this.dgb_vendorcargo.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgb_vendorcargo.OptionsView.ShowGroupPanel = false;
     this.dgb_vendorcargo.PaintStyleName = "Web";
     this.dgb_vendorcargo.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgb_vendorcargo_RowCellClick);
     //
     // fechasig
     //
     this.fechasig.Caption = "F.Asig";
     this.fechasig.FieldName = "fechasig";
     this.fechasig.Name = "fechasig";
     this.fechasig.OptionsColumn.AllowEdit = false;
     this.fechasig.Visible = true;
     this.fechasig.VisibleIndex = 0;
     this.fechasig.Width = 69;
     //
     // glocal
     //
     this.glocal.Caption = "local";
     this.glocal.FieldName = "local";
     this.glocal.Name = "glocal";
     //
     // localname
     //
     this.localname.Caption = "Tienda";
     this.localname.FieldName = "localname";
     this.localname.Name = "localname";
     this.localname.OptionsColumn.AllowEdit = false;
     this.localname.Visible = true;
     this.localname.VisibleIndex = 1;
     this.localname.Width = 164;
     //
     // gcargoid
     //
     this.gcargoid.Caption = "cargoid";
     this.gcargoid.FieldName = "cargoid";
     this.gcargoid.Name = "gcargoid";
     //
     // cargoname
     //
     this.cargoname.Caption = "Cargo";
     this.cargoname.FieldName = "cargoname";
     this.cargoname.Name = "cargoname";
     this.cargoname.Visible = true;
     this.cargoname.VisibleIndex = 2;
     this.cargoname.Width = 103;
     //
     // observac
     //
     this.observac.Caption = "Observ";
     this.observac.FieldName = "observac";
     this.observac.Name = "observac";
     //
     // repositoryItemTextEdit3
     //
     this.repositoryItemTextEdit3.AutoHeight = false;
     this.repositoryItemTextEdit3.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit3.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit3.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit3.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Caption = "Check";
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemTextEdit4
     //
     this.repositoryItemTextEdit4.AutoHeight = false;
     this.repositoryItemTextEdit4.Name = "repositoryItemTextEdit4";
     this.repositoryItemTextEdit4.ReadOnly = true;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Caption = "Check";
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // grpanel02
     //
     this.grpanel02.Controls.Add(this.txt_fechini);
     this.grpanel02.Controls.Add(this.label11);
     this.grpanel02.Controls.Add(this.labelControl4);
     this.grpanel02.Controls.Add(this.labelControl3);
     this.grpanel02.Controls.Add(this.chk_comisiona);
     this.grpanel02.Controls.Add(this.txt_vendorname);
     this.grpanel02.Controls.Add(this.chk_conhijos);
     this.grpanel02.Controls.Add(this.labelControl5);
     this.grpanel02.Controls.Add(this.txt_vendorid);
     this.grpanel02.Controls.Add(this.labelControl8);
     this.grpanel02.Controls.Add(this.txt_fechnac);
     this.grpanel02.Controls.Add(this.rb_sexo);
     this.grpanel02.Controls.Add(this.labelControl2);
     this.grpanel02.Controls.Add(this.txt_telefono);
     this.grpanel02.Controls.Add(this.txt_apepat);
     this.grpanel02.Controls.Add(this.txt_direcc);
     this.grpanel02.Controls.Add(this.txt_apemat);
     this.grpanel02.Controls.Add(this.labelControl17);
     this.grpanel02.Controls.Add(this.txt_nombre);
     this.grpanel02.Controls.Add(this.labelControl7);
     this.grpanel02.Controls.Add(this.labelControl12);
     this.grpanel02.Controls.Add(this.labelControl9);
     this.grpanel02.Controls.Add(this.labelControl16);
     this.grpanel02.Controls.Add(this.txt_remunebas);
     this.grpanel02.Controls.Add(this.labelControl6);
     this.grpanel02.Controls.Add(this.txt_dni);
     this.grpanel02.Location = new System.Drawing.Point(362, 29);
     this.grpanel02.Name = "grpanel02";
     this.grpanel02.Size = new System.Drawing.Size(351, 380);
     this.grpanel02.TabIndex = 203;
     this.grpanel02.Text = "»» Registro";
     //
     // grpanel04
     //
     this.grpanel04.Controls.Add(this.MDI_dgb_vendorcargo);
     this.grpanel04.Location = new System.Drawing.Point(715, 188);
     this.grpanel04.Name = "grpanel04";
     this.grpanel04.Size = new System.Drawing.Size(370, 221);
     this.grpanel04.TabIndex = 204;
     this.grpanel04.Text = "»» Detalle Historico";
     //
     // Frm_vendedor
     //
     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(1087, 412);
     this.Controls.Add(this.grpanel04);
     this.Controls.Add(this.grpanel02);
     this.Controls.Add(this.grpanel03);
     this.Controls.Add(this.grpanel01);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_vendedor";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "» Vendedores";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel01)).EndInit();
     this.grpanel01.ResumeLayout(false);
     this.grpanel01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rb_tipo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_vendedor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_vendedor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_comisiona.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_conhijos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rb_sexo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel03)).EndInit();
     this.grpanel03.ResumeLayout(false);
     this.grpanel03.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MDI_dgb_vendorcargo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_vendorcargo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel02)).EndInit();
     this.grpanel02.ResumeLayout(false);
     this.grpanel02.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel04)).EndInit();
     this.grpanel04.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     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.gcEmpeladi = new DevExpress.XtraEditors.GroupControl();
     this.btnMenos = new DevExpress.XtraEditors.SimpleButton();
     this.btnadd = new DevExpress.XtraEditors.SimpleButton();
     this.meEmpleado = new DevExpress.XtraEditors.MemoEdit();
     this.meEmpleado2 = new DevExpress.XtraEditors.MemoEdit();
     this.rgCriterio = new DevExpress.XtraEditors.RadioGroup();
     this.tsMenu = new System.Windows.Forms.ToolStrip();
     this.tsbGenerar = new System.Windows.Forms.ToolStripButton();
     this.tsbGuardar = new System.Windows.Forms.ToolStripButton();
     this.tsbSalir = new System.Windows.Forms.ToolStripButton();
     this.dropDownButton1 = new DevExpress.XtraEditors.DropDownButton();
     ((System.ComponentModel.ISupportInitialize)(this.gcEmpeladi)).BeginInit();
     this.gcEmpeladi.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.meEmpleado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.meEmpleado2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgCriterio.Properties)).BeginInit();
     this.tsMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // gcEmpeladi
     //
     this.gcEmpeladi.Controls.Add(this.btnMenos);
     this.gcEmpeladi.Controls.Add(this.btnadd);
     this.gcEmpeladi.Controls.Add(this.meEmpleado);
     this.gcEmpeladi.Controls.Add(this.meEmpleado2);
     this.gcEmpeladi.Location = new System.Drawing.Point(13, 106);
     this.gcEmpeladi.Name = "gcEmpeladi";
     this.gcEmpeladi.Size = new System.Drawing.Size(402, 125);
     this.gcEmpeladi.TabIndex = 38;
     this.gcEmpeladi.Text = "Empleados";
     //
     // btnMenos
     //
     this.btnMenos.Location = new System.Drawing.Point(181, 65);
     this.btnMenos.Name = "btnMenos";
     this.btnMenos.Size = new System.Drawing.Size(40, 23);
     this.btnMenos.TabIndex = 5;
     this.btnMenos.Text = "<<";
     this.btnMenos.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // btnadd
     //
     this.btnadd.Location = new System.Drawing.Point(181, 36);
     this.btnadd.Name = "btnadd";
     this.btnadd.Size = new System.Drawing.Size(40, 23);
     this.btnadd.TabIndex = 4;
     this.btnadd.Text = ">>";
     //
     // meEmpleado
     //
     this.meEmpleado.Location = new System.Drawing.Point(14, 24);
     this.meEmpleado.Name = "meEmpleado";
     this.meEmpleado.Size = new System.Drawing.Size(145, 95);
     this.meEmpleado.TabIndex = 3;
     //
     // meEmpleado2
     //
     this.meEmpleado2.Location = new System.Drawing.Point(244, 24);
     this.meEmpleado2.Name = "meEmpleado2";
     this.meEmpleado2.Size = new System.Drawing.Size(145, 95);
     this.meEmpleado2.TabIndex = 2;
     //
     // rgCriterio
     //
     this.rgCriterio.Location = new System.Drawing.Point(12, 34);
     this.rgCriterio.Name = "rgCriterio";
     this.rgCriterio.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Empleado"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Todos")});
     this.rgCriterio.Size = new System.Drawing.Size(403, 59);
     this.rgCriterio.TabIndex = 36;
     this.rgCriterio.SelectedIndexChanged += new System.EventHandler(this.radioGroup1_SelectedIndexChanged);
     //
     // tsMenu
     //
     this.tsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsbGenerar,
     this.tsbGuardar,
     this.tsbSalir});
     this.tsMenu.Location = new System.Drawing.Point(0, 0);
     this.tsMenu.Name = "tsMenu";
     this.tsMenu.Size = new System.Drawing.Size(427, 25);
     this.tsMenu.TabIndex = 37;
     this.tsMenu.Text = "toolStrip1";
     //
     // tsbGenerar
     //
     this.tsbGenerar.Image = global::forms.Properties.Resources.imprimir;
     this.tsbGenerar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbGenerar.Name = "tsbGenerar";
     this.tsbGenerar.Size = new System.Drawing.Size(68, 22);
     this.tsbGenerar.Text = "Generar";
     //
     // tsbGuardar
     //
     this.tsbGuardar.Image = global::forms.Properties.Resources.guardar;
     this.tsbGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbGuardar.Name = "tsbGuardar";
     this.tsbGuardar.Size = new System.Drawing.Size(69, 22);
     this.tsbGuardar.Text = "Guardar";
     //
     // tsbSalir
     //
     this.tsbSalir.Image = global::forms.Properties.Resources._24_cancelar;
     this.tsbSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbSalir.Name = "tsbSalir";
     this.tsbSalir.Size = new System.Drawing.Size(49, 22);
     this.tsbSalir.Text = "Salir";
     //
     // dropDownButton1
     //
     this.dropDownButton1.Location = new System.Drawing.Point(267, 44);
     this.dropDownButton1.Name = "dropDownButton1";
     this.dropDownButton1.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton1.TabIndex = 39;
     //
     // frmConsultaCargaFamiliar
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(427, 248);
     this.Controls.Add(this.dropDownButton1);
     this.Controls.Add(this.gcEmpeladi);
     this.Controls.Add(this.rgCriterio);
     this.Controls.Add(this.tsMenu);
     this.Name = "frmConsultaCargaFamiliar";
     this.Text = "Consulta de Cargas Familiares";
     this.Load += new System.EventHandler(this.frmConsultaCargaFamiliar_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gcEmpeladi)).EndInit();
     this.gcEmpeladi.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.meEmpleado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.meEmpleado2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgCriterio.Properties)).EndInit();
     this.tsMenu.ResumeLayout(false);
     this.tsMenu.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.pnlMain = new DevExpress.XtraEditors.PanelControl();
     this.btnTest = new DevExpress.XtraEditors.SimpleButton();
     this.checkSavePass = new DevExpress.XtraEditors.CheckEdit();
     this.checkBosParola = new DevExpress.XtraEditors.CheckEdit();
     this.btnRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.cbServer = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.radioGroup2 = new DevExpress.XtraEditors.RadioGroup();
     this.tePassword = new DevExpress.XtraEditors.TextEdit();
     this.teLogin = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.cbDatabase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.sbExit = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).BeginInit();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkSavePass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBosParola.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tePassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teLogin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbDatabase.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // pnlMain
     //
     this.pnlMain.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.pnlMain.Appearance.Options.UseBackColor = true;
     this.pnlMain.Controls.Add(this.btnTest);
     this.pnlMain.Controls.Add(this.checkSavePass);
     this.pnlMain.Controls.Add(this.checkBosParola);
     this.pnlMain.Controls.Add(this.btnRefresh);
     this.pnlMain.Controls.Add(this.cbServer);
     this.pnlMain.Controls.Add(this.labelControl6);
     this.pnlMain.Controls.Add(this.radioGroup2);
     this.pnlMain.Controls.Add(this.tePassword);
     this.pnlMain.Controls.Add(this.teLogin);
     this.pnlMain.Controls.Add(this.labelControl5);
     this.pnlMain.Controls.Add(this.labelControl4);
     this.pnlMain.Controls.Add(this.radioGroup1);
     this.pnlMain.Controls.Add(this.labelControl3);
     this.pnlMain.Controls.Add(this.labelControl2);
     this.pnlMain.Controls.Add(this.cbDatabase);
     this.pnlMain.Controls.Add(this.labelControl1);
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlMain.Location = new System.Drawing.Point(8, 8);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(364, 381);
     this.pnlMain.TabIndex = 2;
     //
     // btnTest
     //
     this.btnTest.Location = new System.Drawing.Point(267, 256);
     this.btnTest.Name = "btnTest";
     this.btnTest.Size = new System.Drawing.Size(88, 27);
     this.btnTest.TabIndex = 29;
     this.btnTest.Text = "Baðlantýyý Sýna";
     this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
     //
     // checkSavePass
     //
     this.checkSavePass.Location = new System.Drawing.Point(200, 187);
     this.checkSavePass.Name = "checkSavePass";
     this.checkSavePass.Properties.Caption = "Parola kaydetmeye izin ver";
     this.checkSavePass.Size = new System.Drawing.Size(185, 19);
     this.checkSavePass.TabIndex = 28;
     //
     // checkBosParola
     //
     this.checkBosParola.Location = new System.Drawing.Point(68, 187);
     this.checkBosParola.Name = "checkBosParola";
     this.checkBosParola.Properties.Caption = "Boþ Parola";
     this.checkBosParola.Size = new System.Drawing.Size(75, 19);
     this.checkBosParola.TabIndex = 27;
     //
     // btnRefresh
     //
     this.btnRefresh.Location = new System.Drawing.Point(311, 34);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(44, 21);
     this.btnRefresh.TabIndex = 26;
     this.btnRefresh.Text = "Yenile";
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // cbServer
     //
     this.cbServer.Location = new System.Drawing.Point(37, 35);
     this.cbServer.Name = "cbServer";
     this.cbServer.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServer.Size = new System.Drawing.Size(268, 20);
     this.cbServer.TabIndex = 25;
     this.cbServer.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.cbServer_QueryPopUp);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(12, 288);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(147, 13);
     this.labelControl6.TabIndex = 23;
     this.labelControl6.Text = "4. Baðlantý ayarlarýný kayýt þekli";
     //
     // radioGroup2
     //
     this.radioGroup2.EditValue = 0;
     this.radioGroup2.Location = new System.Drawing.Point(37, 307);
     this.radioGroup2.Name = "radioGroup2";
     this.radioGroup2.Properties.Columns = 1;
     this.radioGroup2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Kayýt Defteri (Registry)"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Dosya Sistemi (.ini Dosyasý)")});
     this.radioGroup2.Size = new System.Drawing.Size(318, 58);
     this.radioGroup2.TabIndex = 22;
     //
     // tePassword
     //
     this.tePassword.Enabled = false;
     this.tePassword.Location = new System.Drawing.Point(133, 161);
     this.tePassword.Name = "tePassword";
     this.tePassword.Properties.PasswordChar = '*';
     this.tePassword.Size = new System.Drawing.Size(222, 20);
     this.tePassword.TabIndex = 4;
     //
     // teLogin
     //
     this.teLogin.EditValue = "sa";
     this.teLogin.Enabled = false;
     this.teLogin.Location = new System.Drawing.Point(133, 135);
     this.teLogin.Name = "teLogin";
     this.teLogin.Size = new System.Drawing.Size(222, 20);
     this.teLogin.TabIndex = 3;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(72, 164);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(22, 13);
     this.labelControl5.TabIndex = 21;
     this.labelControl5.Text = "Þifre";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(72, 138);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(37, 13);
     this.labelControl4.TabIndex = 20;
     this.labelControl4.Text = "Kullanýcý";
     //
     // radioGroup1
     //
     this.radioGroup1.EditValue = 0;
     this.radioGroup1.Location = new System.Drawing.Point(37, 77);
     this.radioGroup1.Name = "radioGroup1";
     this.radioGroup1.Properties.Columns = 1;
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Windows NT tümleþik güvenliðini kullan"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Belirli bir kullanýcý adý ve parolasý kullan")});
     this.radioGroup1.Size = new System.Drawing.Size(318, 52);
     this.radioGroup1.TabIndex = 2;
     this.radioGroup1.SelectedIndexChanged += new System.EventHandler(this.radioGroup1_SelectedIndexChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(12, 60);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(206, 13);
     this.labelControl3.TabIndex = 18;
     this.labelControl3.Text = "2. Sunucuda oturum açmak için bilgileri girin";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(12, 19);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(206, 13);
     this.labelControl2.TabIndex = 16;
     this.labelControl2.Text = "1. SQL Server sunucu adýný seçin veya girin";
     //
     // cbDatabase
     //
     this.cbDatabase.Location = new System.Drawing.Point(37, 231);
     this.cbDatabase.Name = "cbDatabase";
     this.cbDatabase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbDatabase.Properties.ValidateOnEnterKey = true;
     this.cbDatabase.Size = new System.Drawing.Size(318, 20);
     this.cbDatabase.TabIndex = 1;
     this.cbDatabase.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.cbDatabase_QueryPopUp);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(12, 212);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(153, 13);
     this.labelControl1.TabIndex = 14;
     this.labelControl1.Text = "3. Sunucudaki veritabanýný seçin";
     //
     // btnSave
     //
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.Location = new System.Drawing.Point(206, 404);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(80, 25);
     this.btnSave.TabIndex = 24;
     this.btnSave.Text = "Tamam";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // sbExit
     //
     this.sbExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbExit.Location = new System.Drawing.Point(292, 404);
     this.sbExit.Name = "sbExit";
     this.sbExit.Size = new System.Drawing.Size(80, 25);
     this.sbExit.TabIndex = 12;
     this.sbExit.Text = "Ýptal";
     this.sbExit.Click += new System.EventHandler(this.sbExit_Click);
     //
     // frmSQLConnector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(380, 445);
     this.Controls.Add(this.pnlMain);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.sbExit);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "frmSQLConnector";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Sql Server- Configuration Window";
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).EndInit();
     this.pnlMain.ResumeLayout(false);
     this.pnlMain.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkSavePass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBosParola.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tePassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teLogin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbDatabase.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDeleteEvents));
     this.pbxErrorInfo   = new System.Windows.Forms.PictureBox();
     this.label1         = new System.Windows.Forms.Label();
     this.btnOK          = new System.Windows.Forms.Button();
     this.btnCancel      = new System.Windows.Forms.Button();
     this.rdDeleteChoice = new DevExpress.XtraEditors.RadioGroup();
     ((System.ComponentModel.ISupportInitialize)(this.pbxErrorInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rdDeleteChoice.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // pbxErrorInfo
     //
     this.pbxErrorInfo.Image    = ((System.Drawing.Image)(resources.GetObject("pbxErrorInfo.Image")));
     this.pbxErrorInfo.Location = new System.Drawing.Point(14, 15);
     this.pbxErrorInfo.Name     = "pbxErrorInfo";
     this.pbxErrorInfo.Size     = new System.Drawing.Size(32, 32);
     this.pbxErrorInfo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pbxErrorInfo.TabIndex = 6;
     this.pbxErrorInfo.TabStop  = false;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(58, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(192, 48);
     this.label1.TabIndex = 7;
     this.label1.Text     = "Do you want to delete all occurences of the Recurring Event  or just this one?";
     //
     // btnOK
     //
     this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnOK.Location  = new System.Drawing.Point(49, 128);
     this.btnOK.Name      = "btnOK";
     this.btnOK.Size      = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex  = 10;
     this.btnOK.Text      = "OK";
     this.btnOK.Click    += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location  = new System.Drawing.Point(134, 128);
     this.btnCancel.Name      = "btnCancel";
     this.btnCancel.Size      = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex  = 11;
     this.btnCancel.Text      = "Cancel";
     this.btnCancel.Click    += new System.EventHandler(this.btnCancel_Click);
     //
     // rdDeleteChoice
     //
     this.rdDeleteChoice.EditValue = true;
     this.rdDeleteChoice.Location  = new System.Drawing.Point(49, 67);
     this.rdDeleteChoice.Name      = "rdDeleteChoice";
     this.rdDeleteChoice.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.rdDeleteChoice.Properties.Appearance.Options.UseBackColor = true;
     this.rdDeleteChoice.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rdDeleteChoice.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "Delete this occurence"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(false, "Delete the series")
     });
     this.rdDeleteChoice.Size     = new System.Drawing.Size(225, 55);
     this.rdDeleteChoice.TabIndex = 12;
     //
     // frmDeleteEvents
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(269, 162);
     this.Controls.Add(this.rdDeleteChoice);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pbxErrorInfo);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmDeleteEvents";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Confirm Delete";
     this.Load           += new System.EventHandler(this.frmDeleteEvents_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pbxErrorInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rdDeleteChoice.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.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControl_BusinessList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlCompany = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.grid_company_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_company_owner_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_address = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_telephone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_fax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_email = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_website = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_idcard = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_corporate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_company_vision = new DevExpress.XtraGrid.Columns.GridColumn();
     this.company_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControlDocInfo = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.groupControlReceiptFormat = new DevExpress.XtraEditors.GroupControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditPaperReciept = new DevExpress.XtraEditors.LookUpEdit();
     this.bttExampleReciept = new DevExpress.XtraEditors.SimpleButton();
     this.labelHeader2 = new DevExpress.XtraEditors.LabelControl();
     this.groupBoxFormat3 = new System.Windows.Forms.GroupBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.checkEditSaperateReciept = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelPrefix3 = new DevExpress.XtraEditors.LabelControl();
     this.textEditPrefixReceipt = new DevExpress.XtraEditors.TextEdit();
     this.textEditReceiptDateFormat = new DevExpress.XtraEditors.TextEdit();
     this.textEditExampleReceipt = new DevExpress.XtraEditors.TextEdit();
     this.textEditReceiptStart = new DevExpress.XtraEditors.TextEdit();
     this.labelDate3 = new DevExpress.XtraEditors.LabelControl();
     this.labelExample3 = new DevExpress.XtraEditors.LabelControl();
     this.labelStart3 = new DevExpress.XtraEditors.LabelControl();
     this.labelFooter2 = new DevExpress.XtraEditors.LabelControl();
     this.textEditUnderReciept2 = new DevExpress.XtraEditors.TextEdit();
     this.labelUnder21 = new DevExpress.XtraEditors.LabelControl();
     this.textEditUnderReciept1 = new DevExpress.XtraEditors.TextEdit();
     this.labelPaper2 = new DevExpress.XtraEditors.LabelControl();
     this.memoEditRecieptFooter = new DevExpress.XtraEditors.TextEdit();
     this.labelUnder22 = new DevExpress.XtraEditors.LabelControl();
     this.memoEditRecieptHeader = new DevExpress.XtraEditors.TextEdit();
     this.groupControlInvoiceFormat = new DevExpress.XtraEditors.GroupControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditPaperInvoice = new DevExpress.XtraEditors.LookUpEdit();
     this.bttExampleInvoice = new DevExpress.XtraEditors.SimpleButton();
     this.groupBoxFormat2 = new System.Windows.Forms.GroupBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.checkEditSaperateInvoice = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelPrefix2 = new DevExpress.XtraEditors.LabelControl();
     this.textEditPrefixInvoice = new DevExpress.XtraEditors.TextEdit();
     this.textEditInvoiceDateFormat = new DevExpress.XtraEditors.TextEdit();
     this.textEditExampleInvoice = new DevExpress.XtraEditors.TextEdit();
     this.textEditInvoiceStart = new DevExpress.XtraEditors.TextEdit();
     this.labelDate2 = new DevExpress.XtraEditors.LabelControl();
     this.labelExample2 = new DevExpress.XtraEditors.LabelControl();
     this.labelStart2 = new DevExpress.XtraEditors.LabelControl();
     this.textEditUnderInvoice2 = new DevExpress.XtraEditors.TextEdit();
     this.textEditUnderInvoice1 = new DevExpress.XtraEditors.TextEdit();
     this.memoEditInvoiceFooter = new DevExpress.XtraEditors.TextEdit();
     this.memoEditInvoiceHeader = new DevExpress.XtraEditors.TextEdit();
     this.labelUnder12 = new DevExpress.XtraEditors.LabelControl();
     this.labelPaper1 = new DevExpress.XtraEditors.LabelControl();
     this.labelUnder11 = new DevExpress.XtraEditors.LabelControl();
     this.labelFooter1 = new DevExpress.XtraEditors.LabelControl();
     this.labelHeader1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlContractFormat = new DevExpress.XtraEditors.GroupControl();
     this.bttExampleContract = new DevExpress.XtraEditors.SimpleButton();
     this.groupBoxFormat1 = new System.Windows.Forms.GroupBox();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.checkEditSaperateContract = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelPrefix1 = new DevExpress.XtraEditors.LabelControl();
     this.textEditPrefixContract = new DevExpress.XtraEditors.TextEdit();
     this.textEditContractDateFormat = new DevExpress.XtraEditors.TextEdit();
     this.textEditExampleContract = new DevExpress.XtraEditors.TextEdit();
     this.textEditContractStart = new DevExpress.XtraEditors.TextEdit();
     this.labelDate1 = new DevExpress.XtraEditors.LabelControl();
     this.labelExample1 = new DevExpress.XtraEditors.LabelControl();
     this.labelStart1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlDocType = new DevExpress.XtraEditors.GroupControl();
     this.radioGroupLogoPosition = new DevExpress.XtraEditors.RadioGroup();
     this.textEditDocumentID = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditDateFormat = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlTop = new DevExpress.XtraEditors.LabelControl();
     this.labelControlLogo = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDateFormat = new DevExpress.XtraEditors.LabelControl();
     this.groupControlVat = new DevExpress.XtraEditors.GroupControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelVatType = new DevExpress.XtraEditors.LabelControl();
     this.textEditAmountVat = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelVat = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl_BusinessList)).BeginInit();
     this.groupControl_BusinessList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCompany)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDocInfo)).BeginInit();
     this.groupControlDocInfo.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlReceiptFormat)).BeginInit();
     this.groupControlReceiptFormat.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPaperReciept.Properties)).BeginInit();
     this.groupBoxFormat3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditSaperateReciept.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefixReceipt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditReceiptDateFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditExampleReceipt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditReceiptStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderReciept2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderReciept1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditRecieptFooter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditRecieptHeader.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInvoiceFormat)).BeginInit();
     this.groupControlInvoiceFormat.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPaperInvoice.Properties)).BeginInit();
     this.groupBoxFormat2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditSaperateInvoice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefixInvoice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInvoiceDateFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditExampleInvoice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInvoiceStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderInvoice2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderInvoice1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditInvoiceFooter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditInvoiceHeader.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlContractFormat)).BeginInit();
     this.groupControlContractFormat.SuspendLayout();
     this.groupBoxFormat1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditSaperateContract.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefixContract.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractDateFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditExampleContract.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDocType)).BeginInit();
     this.groupControlDocType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupLogoPosition.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditDocumentID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditDateFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlVat)).BeginInit();
     this.groupControlVat.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAmountVat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_BusinessList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.groupControlDocInfo);
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1080, 666);
     this.splitContainerControl2.SplitterPosition = 256;
     this.splitContainerControl2.TabIndex = 18;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControl_BusinessList
     //
     this.groupControl_BusinessList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl_BusinessList.AppearanceCaption.Options.UseFont = true;
     this.groupControl_BusinessList.Controls.Add(this.gridControlCompany);
     this.groupControl_BusinessList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl_BusinessList.Location = new System.Drawing.Point(0, 0);
     this.groupControl_BusinessList.Name = "groupControl_BusinessList";
     this.groupControl_BusinessList.Size = new System.Drawing.Size(256, 666);
     this.groupControl_BusinessList.TabIndex = 0;
     this.groupControl_BusinessList.Text = "รายการกิจการ";
     //
     // gridControlCompany
     //
     this.gridControlCompany.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlCompany.Location = new System.Drawing.Point(2, 22);
     this.gridControlCompany.MainView = this.gridView1;
     this.gridControlCompany.Name = "gridControlCompany";
     this.gridControlCompany.Size = new System.Drawing.Size(252, 642);
     this.gridControlCompany.TabIndex = 1;
     this.gridControlCompany.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.grid_company_name,
     this.grid_company_owner_name,
     this.company_company_address,
     this.company_company_telephone,
     this.company_company_fax,
     this.company_company_email,
     this.company_company_website,
     this.company_company_idcard,
     this.company_company_corporate,
     this.company_company_vision,
     this.company_id});
     this.gridView1.GridControl = this.gridControlCompany;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsFind.AlwaysVisible = true;
     this.gridView1.OptionsFind.ShowCloseButton = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // grid_company_name
     //
     this.grid_company_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_company_name.AppearanceHeader.Options.UseFont = true;
     this.grid_company_name.Caption = "ชื่อกิจการ";
     this.grid_company_name.FieldName = "company_name";
     this.grid_company_name.Name = "grid_company_name";
     this.grid_company_name.OptionsColumn.AllowEdit = false;
     this.grid_company_name.OptionsColumn.AllowFocus = false;
     this.grid_company_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_company_name.OptionsColumn.AllowMove = false;
     this.grid_company_name.Visible = true;
     this.grid_company_name.VisibleIndex = 0;
     //
     // grid_company_owner_name
     //
     this.grid_company_owner_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_company_owner_name.AppearanceHeader.Options.UseFont = true;
     this.grid_company_owner_name.Caption = "ชื่อเจ้าของกิจการ";
     this.grid_company_owner_name.FieldName = "company_owner_name";
     this.grid_company_owner_name.Name = "grid_company_owner_name";
     this.grid_company_owner_name.OptionsColumn.AllowEdit = false;
     this.grid_company_owner_name.OptionsColumn.AllowFocus = false;
     this.grid_company_owner_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_company_owner_name.OptionsColumn.AllowMove = false;
     this.grid_company_owner_name.Visible = true;
     this.grid_company_owner_name.VisibleIndex = 1;
     //
     // company_company_address
     //
     this.company_company_address.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.company_company_address.AppearanceHeader.Options.UseFont = true;
     this.company_company_address.Caption = "ที่อยู่";
     this.company_company_address.FieldName = "company_address";
     this.company_company_address.Name = "company_company_address";
     this.company_company_address.OptionsColumn.AllowEdit = false;
     this.company_company_address.OptionsColumn.AllowFocus = false;
     this.company_company_address.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_address.OptionsColumn.AllowMove = false;
     //
     // company_company_telephone
     //
     this.company_company_telephone.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.company_company_telephone.AppearanceHeader.Options.UseFont = true;
     this.company_company_telephone.Caption = "โทรศัพท์";
     this.company_company_telephone.FieldName = "company_telephone";
     this.company_company_telephone.Name = "company_company_telephone";
     this.company_company_telephone.OptionsColumn.AllowEdit = false;
     this.company_company_telephone.OptionsColumn.AllowFocus = false;
     this.company_company_telephone.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_telephone.OptionsColumn.AllowMove = false;
     //
     // company_company_fax
     //
     this.company_company_fax.Caption = "แฟกซ์";
     this.company_company_fax.FieldName = "company_fax";
     this.company_company_fax.Name = "company_company_fax";
     this.company_company_fax.OptionsColumn.AllowEdit = false;
     this.company_company_fax.OptionsColumn.AllowFocus = false;
     this.company_company_fax.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_fax.OptionsColumn.AllowMove = false;
     //
     // company_company_email
     //
     this.company_company_email.Caption = "อีเมล์";
     this.company_company_email.FieldName = "company_email";
     this.company_company_email.Name = "company_company_email";
     this.company_company_email.OptionsColumn.AllowEdit = false;
     this.company_company_email.OptionsColumn.AllowFocus = false;
     this.company_company_email.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_email.OptionsColumn.AllowMove = false;
     //
     // company_company_website
     //
     this.company_company_website.Caption = "เว็บไซต์";
     this.company_company_website.FieldName = "company_website";
     this.company_company_website.Name = "company_company_website";
     this.company_company_website.OptionsColumn.AllowEdit = false;
     this.company_company_website.OptionsColumn.AllowFocus = false;
     this.company_company_website.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_website.OptionsColumn.AllowMove = false;
     //
     // company_company_idcard
     //
     this.company_company_idcard.Caption = "เลขประจำตัวผู้เสียภาษี";
     this.company_company_idcard.FieldName = "company_id_card";
     this.company_company_idcard.Name = "company_company_idcard";
     this.company_company_idcard.OptionsColumn.AllowEdit = false;
     this.company_company_idcard.OptionsColumn.AllowFocus = false;
     this.company_company_idcard.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_idcard.OptionsColumn.AllowMove = false;
     //
     // company_company_corporate
     //
     this.company_company_corporate.Caption = "เลขทะเบียนนิติบุคคล";
     this.company_company_corporate.FieldName = "company_corporate";
     this.company_company_corporate.Name = "company_company_corporate";
     this.company_company_corporate.OptionsColumn.AllowEdit = false;
     this.company_company_corporate.OptionsColumn.AllowFocus = false;
     this.company_company_corporate.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_corporate.OptionsColumn.AllowMove = false;
     //
     // company_company_vision
     //
     this.company_company_vision.Caption = "นโยบายอพาร์ทเม้นท์";
     this.company_company_vision.FieldName = "company_vision";
     this.company_company_vision.Name = "company_company_vision";
     this.company_company_vision.OptionsColumn.AllowEdit = false;
     this.company_company_vision.OptionsColumn.AllowFocus = false;
     this.company_company_vision.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.company_company_vision.OptionsColumn.AllowMove = false;
     //
     // company_id
     //
     this.company_id.Caption = "company_id";
     this.company_id.FieldName = "company_id";
     this.company_id.Name = "company_id";
     //
     // groupControlDocInfo
     //
     this.groupControlDocInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlDocInfo.AppearanceCaption.Options.UseFont = true;
     this.groupControlDocInfo.Controls.Add(this.xtraScrollableControl1);
     this.groupControlDocInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlDocInfo.Location = new System.Drawing.Point(0, 0);
     this.groupControlDocInfo.Name = "groupControlDocInfo";
     this.groupControlDocInfo.Size = new System.Drawing.Size(819, 600);
     this.groupControlDocInfo.TabIndex = 20;
     this.groupControlDocInfo.Text = "ข้อมูลเอกสาร";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupControlReceiptFormat);
     this.xtraScrollableControl1.Controls.Add(this.groupControlInvoiceFormat);
     this.xtraScrollableControl1.Controls.Add(this.groupControlContractFormat);
     this.xtraScrollableControl1.Controls.Add(this.groupControlDocType);
     this.xtraScrollableControl1.Controls.Add(this.groupControlVat);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(815, 576);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // groupControlReceiptFormat
     //
     this.groupControlReceiptFormat.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlReceiptFormat.AppearanceCaption.Options.UseFont = true;
     this.groupControlReceiptFormat.Controls.Add(this.labelControl23);
     this.groupControlReceiptFormat.Controls.Add(this.labelControl22);
     this.groupControlReceiptFormat.Controls.Add(this.labelControl21);
     this.groupControlReceiptFormat.Controls.Add(this.labelControl20);
     this.groupControlReceiptFormat.Controls.Add(this.labelControl14);
     this.groupControlReceiptFormat.Controls.Add(this.lookUpEditPaperReciept);
     this.groupControlReceiptFormat.Controls.Add(this.bttExampleReciept);
     this.groupControlReceiptFormat.Controls.Add(this.labelHeader2);
     this.groupControlReceiptFormat.Controls.Add(this.groupBoxFormat3);
     this.groupControlReceiptFormat.Controls.Add(this.labelFooter2);
     this.groupControlReceiptFormat.Controls.Add(this.textEditUnderReciept2);
     this.groupControlReceiptFormat.Controls.Add(this.labelUnder21);
     this.groupControlReceiptFormat.Controls.Add(this.textEditUnderReciept1);
     this.groupControlReceiptFormat.Controls.Add(this.labelPaper2);
     this.groupControlReceiptFormat.Controls.Add(this.memoEditRecieptFooter);
     this.groupControlReceiptFormat.Controls.Add(this.labelUnder22);
     this.groupControlReceiptFormat.Controls.Add(this.memoEditRecieptHeader);
     this.groupControlReceiptFormat.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlReceiptFormat.Location = new System.Drawing.Point(0, 494);
     this.groupControlReceiptFormat.Margin = new System.Windows.Forms.Padding(20);
     this.groupControlReceiptFormat.Name = "groupControlReceiptFormat";
     this.groupControlReceiptFormat.Size = new System.Drawing.Size(799, 265);
     this.groupControlReceiptFormat.TabIndex = 16;
     this.groupControlReceiptFormat.Text = "รูปแบบเลขที่ใบเสร็จรับเงิน";
     //
     // labelControl23
     //
     this.labelControl23.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl23.Location = new System.Drawing.Point(16, 155);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(6, 13);
     this.labelControl23.TabIndex = 352;
     this.labelControl23.Text = "*";
     //
     // labelControl22
     //
     this.labelControl22.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl22.Location = new System.Drawing.Point(16, 129);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(6, 13);
     this.labelControl22.TabIndex = 351;
     this.labelControl22.Text = "*";
     //
     // labelControl21
     //
     this.labelControl21.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl21.Location = new System.Drawing.Point(16, 103);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(6, 13);
     this.labelControl21.TabIndex = 350;
     this.labelControl21.Text = "*";
     //
     // labelControl20
     //
     this.labelControl20.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl20.Location = new System.Drawing.Point(343, 155);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(6, 13);
     this.labelControl20.TabIndex = 349;
     this.labelControl20.Text = "*";
     //
     // labelControl14
     //
     this.labelControl14.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl14.Location = new System.Drawing.Point(386, 181);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(6, 13);
     this.labelControl14.TabIndex = 346;
     this.labelControl14.Text = "*";
     //
     // lookUpEditPaperReciept
     //
     this.lookUpEditPaperReciept.Location = new System.Drawing.Point(475, 178);
     this.lookUpEditPaperReciept.Name = "lookUpEditPaperReciept";
     this.lookUpEditPaperReciept.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditPaperReciept.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("papersize_label", " "),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("papersize_id", " ", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditPaperReciept.Size = new System.Drawing.Size(119, 20);
     this.lookUpEditPaperReciept.TabIndex = 319;
     //
     // bttExampleReciept
     //
     this.bttExampleReciept.Image = global::DXWindowsApplication2.Properties.Resources.preview;
     this.bttExampleReciept.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttExampleReciept.Location = new System.Drawing.Point(600, 174);
     this.bttExampleReciept.Name = "bttExampleReciept";
     this.bttExampleReciept.Size = new System.Drawing.Size(87, 60);
     this.bttExampleReciept.TabIndex = 322;
     this.bttExampleReciept.Text = "ตัวอย่างเอกสาร";
     this.bttExampleReciept.Click += new System.EventHandler(this.bttExampleReciept_Click);
     //
     // labelHeader2
     //
     this.labelHeader2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelHeader2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelHeader2.Location = new System.Drawing.Point(26, 103);
     this.labelHeader2.Name = "labelHeader2";
     this.labelHeader2.Size = new System.Drawing.Size(117, 13);
     this.labelHeader2.TabIndex = 336;
     this.labelHeader2.Text = "ข้อความหัวใบแจ้งหนี้ :";
     //
     // groupBoxFormat3
     //
     this.groupBoxFormat3.Controls.Add(this.labelControl13);
     this.groupBoxFormat3.Controls.Add(this.labelControl11);
     this.groupBoxFormat3.Controls.Add(this.checkEditSaperateReciept);
     this.groupBoxFormat3.Controls.Add(this.labelControl18);
     this.groupBoxFormat3.Controls.Add(this.labelPrefix3);
     this.groupBoxFormat3.Controls.Add(this.textEditPrefixReceipt);
     this.groupBoxFormat3.Controls.Add(this.textEditReceiptDateFormat);
     this.groupBoxFormat3.Controls.Add(this.textEditExampleReceipt);
     this.groupBoxFormat3.Controls.Add(this.textEditReceiptStart);
     this.groupBoxFormat3.Controls.Add(this.labelDate3);
     this.groupBoxFormat3.Controls.Add(this.labelExample3);
     this.groupBoxFormat3.Controls.Add(this.labelStart3);
     this.groupBoxFormat3.Location = new System.Drawing.Point(5, 23);
     this.groupBoxFormat3.Name = "groupBoxFormat3";
     this.groupBoxFormat3.Size = new System.Drawing.Size(589, 67);
     this.groupBoxFormat3.TabIndex = 344;
     this.groupBoxFormat3.TabStop = false;
     this.groupBoxFormat3.Text = "รูปแบบเลขที่สัญญา";
     //
     // labelControl13
     //
     this.labelControl13.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl13.Location = new System.Drawing.Point(339, 19);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(6, 13);
     this.labelControl13.TabIndex = 323;
     this.labelControl13.Text = "*";
     //
     // labelControl11
     //
     this.labelControl11.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl11.Location = new System.Drawing.Point(11, 20);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(6, 13);
     this.labelControl11.TabIndex = 322;
     this.labelControl11.Text = "*";
     //
     // checkEditSaperateReciept
     //
     this.checkEditSaperateReciept.Location = new System.Drawing.Point(96, 39);
     this.checkEditSaperateReciept.Name = "checkEditSaperateReciept";
     this.checkEditSaperateReciept.Properties.Caption = "แยกรายวัน(D)/รายเดือน(M)";
     this.checkEditSaperateReciept.Size = new System.Drawing.Size(152, 19);
     this.checkEditSaperateReciept.TabIndex = 315;
     this.checkEditSaperateReciept.CheckedChanged += new System.EventHandler(this.checkEditSaperateReciept_CheckedChanged);
     //
     // labelControl18
     //
     this.labelControl18.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.Location = new System.Drawing.Point(439, 41);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(16, 16);
     this.labelControl18.TabIndex = 312;
     this.labelControl18.Text = "=";
     //
     // labelPrefix3
     //
     this.labelPrefix3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelPrefix3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelPrefix3.Location = new System.Drawing.Point(11, 20);
     this.labelPrefix3.Name = "labelPrefix3";
     this.labelPrefix3.Size = new System.Drawing.Size(78, 13);
     this.labelPrefix3.TabIndex = 307;
     this.labelPrefix3.Text = "อักษรนำหน้า";
     //
     // textEditPrefixReceipt
     //
     this.textEditPrefixReceipt.EditValue = "REC";
     this.textEditPrefixReceipt.Location = new System.Drawing.Point(11, 39);
     this.textEditPrefixReceipt.Name = "textEditPrefixReceipt";
     this.textEditPrefixReceipt.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditPrefixReceipt.Properties.Appearance.Options.UseBackColor = true;
     this.textEditPrefixReceipt.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditPrefixReceipt.Properties.Mask.EditMask = "([a-zA-Z0-9]{1,3})";
     this.textEditPrefixReceipt.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditPrefixReceipt.ShowToolTips = false;
     this.textEditPrefixReceipt.Size = new System.Drawing.Size(78, 20);
     this.textEditPrefixReceipt.TabIndex = 308;
     this.textEditPrefixReceipt.Tag = "";
     this.textEditPrefixReceipt.EditValueChanged += new System.EventHandler(this.textEditPrefixReceipt_EditValueChanged);
     //
     // textEditReceiptDateFormat
     //
     this.textEditReceiptDateFormat.EditValue = "";
     this.textEditReceiptDateFormat.Enabled = false;
     this.textEditReceiptDateFormat.Location = new System.Drawing.Point(254, 39);
     this.textEditReceiptDateFormat.Name = "textEditReceiptDateFormat";
     this.textEditReceiptDateFormat.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditReceiptDateFormat.Properties.Appearance.Options.UseBackColor = true;
     this.textEditReceiptDateFormat.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditReceiptDateFormat.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditReceiptDateFormat.ShowToolTips = false;
     this.textEditReceiptDateFormat.Size = new System.Drawing.Size(75, 20);
     this.textEditReceiptDateFormat.TabIndex = 311;
     this.textEditReceiptDateFormat.Tag = "";
     //
     // textEditExampleReceipt
     //
     this.textEditExampleReceipt.EditValue = "";
     this.textEditExampleReceipt.Location = new System.Drawing.Point(461, 39);
     this.textEditExampleReceipt.Name = "textEditExampleReceipt";
     this.textEditExampleReceipt.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditExampleReceipt.Properties.Appearance.Options.UseBackColor = true;
     this.textEditExampleReceipt.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditExampleReceipt.ShowToolTips = false;
     this.textEditExampleReceipt.Size = new System.Drawing.Size(122, 20);
     this.textEditExampleReceipt.TabIndex = 311;
     this.textEditExampleReceipt.Tag = "";
     //
     // textEditReceiptStart
     //
     this.textEditReceiptStart.EditValue = "000000";
     this.textEditReceiptStart.Location = new System.Drawing.Point(358, 38);
     this.textEditReceiptStart.Name = "textEditReceiptStart";
     this.textEditReceiptStart.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditReceiptStart.Properties.Appearance.Options.UseBackColor = true;
     this.textEditReceiptStart.Properties.Mask.EditMask = "([0-9]{1,6})";
     this.textEditReceiptStart.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditReceiptStart.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditReceiptStart.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditReceiptStart.ShowToolTips = false;
     this.textEditReceiptStart.Size = new System.Drawing.Size(75, 20);
     this.textEditReceiptStart.TabIndex = 311;
     this.textEditReceiptStart.Tag = "";
     //
     // labelDate3
     //
     this.labelDate3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelDate3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelDate3.Location = new System.Drawing.Point(242, 20);
     this.labelDate3.Name = "labelDate3";
     this.labelDate3.Size = new System.Drawing.Size(98, 13);
     this.labelDate3.TabIndex = 310;
     this.labelDate3.Text = "วันที่ YYYYMMDD";
     //
     // labelExample3
     //
     this.labelExample3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelExample3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelExample3.Location = new System.Drawing.Point(461, 20);
     this.labelExample3.Name = "labelExample3";
     this.labelExample3.Size = new System.Drawing.Size(98, 13);
     this.labelExample3.TabIndex = 310;
     this.labelExample3.Text = "ตัวอย่าง";
     //
     // labelStart3
     //
     this.labelStart3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelStart3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelStart3.Location = new System.Drawing.Point(358, 19);
     this.labelStart3.Name = "labelStart3";
     this.labelStart3.Size = new System.Drawing.Size(98, 13);
     this.labelStart3.TabIndex = 310;
     this.labelStart3.Text = "เลขที่เอกสารเริ่มต้น";
     //
     // labelFooter2
     //
     this.labelFooter2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelFooter2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelFooter2.Location = new System.Drawing.Point(26, 129);
     this.labelFooter2.Name = "labelFooter2";
     this.labelFooter2.Size = new System.Drawing.Size(117, 13);
     this.labelFooter2.TabIndex = 338;
     this.labelFooter2.Text = "ข้อความใต้ใบแจ้งหนี้ :";
     //
     // textEditUnderReciept2
     //
     this.textEditUnderReciept2.EditValue = "";
     this.textEditUnderReciept2.Location = new System.Drawing.Point(475, 148);
     this.textEditUnderReciept2.Name = "textEditUnderReciept2";
     this.textEditUnderReciept2.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditUnderReciept2.Properties.Appearance.Options.UseBackColor = true;
     this.textEditUnderReciept2.Properties.DisplayFormat.FormatString = "#.##";
     this.textEditUnderReciept2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditUnderReciept2.Properties.EditFormat.FormatString = "#.##";
     this.textEditUnderReciept2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditUnderReciept2.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,100}";
     this.textEditUnderReciept2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditUnderReciept2.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditUnderReciept2.ShowToolTips = false;
     this.textEditUnderReciept2.Size = new System.Drawing.Size(212, 20);
     this.textEditUnderReciept2.TabIndex = 343;
     this.textEditUnderReciept2.Tag = "";
     //
     // labelUnder21
     //
     this.labelUnder21.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelUnder21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelUnder21.Location = new System.Drawing.Point(24, 155);
     this.labelUnder21.Name = "labelUnder21";
     this.labelUnder21.Size = new System.Drawing.Size(119, 13);
     this.labelUnder21.TabIndex = 339;
     this.labelUnder21.Text = "ข้อความใต้ลายเซ็น 1 :";
     //
     // textEditUnderReciept1
     //
     this.textEditUnderReciept1.EditValue = "";
     this.textEditUnderReciept1.Location = new System.Drawing.Point(149, 152);
     this.textEditUnderReciept1.Name = "textEditUnderReciept1";
     this.textEditUnderReciept1.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditUnderReciept1.Properties.Appearance.Options.UseBackColor = true;
     this.textEditUnderReciept1.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,100}";
     this.textEditUnderReciept1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditUnderReciept1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditUnderReciept1.ShowToolTips = false;
     this.textEditUnderReciept1.Size = new System.Drawing.Size(185, 20);
     this.textEditUnderReciept1.TabIndex = 311;
     this.textEditUnderReciept1.Tag = "";
     //
     // labelPaper2
     //
     this.labelPaper2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelPaper2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelPaper2.Location = new System.Drawing.Point(352, 181);
     this.labelPaper2.Name = "labelPaper2";
     this.labelPaper2.Size = new System.Drawing.Size(119, 13);
     this.labelPaper2.TabIndex = 339;
     this.labelPaper2.Text = "ขนาดกระดาษ :";
     //
     // memoEditRecieptFooter
     //
     this.memoEditRecieptFooter.EditValue = "";
     this.memoEditRecieptFooter.Location = new System.Drawing.Point(149, 122);
     this.memoEditRecieptFooter.Name = "memoEditRecieptFooter";
     this.memoEditRecieptFooter.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.memoEditRecieptFooter.Properties.Appearance.Options.UseBackColor = true;
     this.memoEditRecieptFooter.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,200}";
     this.memoEditRecieptFooter.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.memoEditRecieptFooter.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.memoEditRecieptFooter.ShowToolTips = false;
     this.memoEditRecieptFooter.Size = new System.Drawing.Size(538, 20);
     this.memoEditRecieptFooter.TabIndex = 311;
     this.memoEditRecieptFooter.Tag = "";
     //
     // labelUnder22
     //
     this.labelUnder22.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelUnder22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelUnder22.Location = new System.Drawing.Point(350, 155);
     this.labelUnder22.Name = "labelUnder22";
     this.labelUnder22.Size = new System.Drawing.Size(119, 13);
     this.labelUnder22.TabIndex = 339;
     this.labelUnder22.Text = "ข้อความใต้ลายเซ็น 2 :";
     //
     // memoEditRecieptHeader
     //
     this.memoEditRecieptHeader.EditValue = "";
     this.memoEditRecieptHeader.Location = new System.Drawing.Point(149, 96);
     this.memoEditRecieptHeader.Name = "memoEditRecieptHeader";
     this.memoEditRecieptHeader.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.memoEditRecieptHeader.Properties.Appearance.Options.UseBackColor = true;
     this.memoEditRecieptHeader.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,200}";
     this.memoEditRecieptHeader.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.memoEditRecieptHeader.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.memoEditRecieptHeader.ShowToolTips = false;
     this.memoEditRecieptHeader.Size = new System.Drawing.Size(538, 20);
     this.memoEditRecieptHeader.TabIndex = 311;
     this.memoEditRecieptHeader.Tag = "";
     //
     // groupControlInvoiceFormat
     //
     this.groupControlInvoiceFormat.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlInvoiceFormat.AppearanceCaption.Options.UseFont = true;
     this.groupControlInvoiceFormat.Controls.Add(this.labelControl19);
     this.groupControlInvoiceFormat.Controls.Add(this.labelControl17);
     this.groupControlInvoiceFormat.Controls.Add(this.labelControl16);
     this.groupControlInvoiceFormat.Controls.Add(this.labelControl15);
     this.groupControlInvoiceFormat.Controls.Add(this.labelControl10);
     this.groupControlInvoiceFormat.Controls.Add(this.lookUpEditPaperInvoice);
     this.groupControlInvoiceFormat.Controls.Add(this.bttExampleInvoice);
     this.groupControlInvoiceFormat.Controls.Add(this.groupBoxFormat2);
     this.groupControlInvoiceFormat.Controls.Add(this.textEditUnderInvoice2);
     this.groupControlInvoiceFormat.Controls.Add(this.textEditUnderInvoice1);
     this.groupControlInvoiceFormat.Controls.Add(this.memoEditInvoiceFooter);
     this.groupControlInvoiceFormat.Controls.Add(this.memoEditInvoiceHeader);
     this.groupControlInvoiceFormat.Controls.Add(this.labelUnder12);
     this.groupControlInvoiceFormat.Controls.Add(this.labelPaper1);
     this.groupControlInvoiceFormat.Controls.Add(this.labelUnder11);
     this.groupControlInvoiceFormat.Controls.Add(this.labelFooter1);
     this.groupControlInvoiceFormat.Controls.Add(this.labelHeader1);
     this.groupControlInvoiceFormat.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlInvoiceFormat.Location = new System.Drawing.Point(0, 243);
     this.groupControlInvoiceFormat.Margin = new System.Windows.Forms.Padding(20);
     this.groupControlInvoiceFormat.Name = "groupControlInvoiceFormat";
     this.groupControlInvoiceFormat.Size = new System.Drawing.Size(799, 251);
     this.groupControlInvoiceFormat.TabIndex = 14;
     this.groupControlInvoiceFormat.Text = "รูปแบบใบแจ้งหนี้";
     //
     // labelControl19
     //
     this.labelControl19.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl19.Location = new System.Drawing.Point(343, 153);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(6, 13);
     this.labelControl19.TabIndex = 349;
     this.labelControl19.Text = "*";
     //
     // labelControl17
     //
     this.labelControl17.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl17.Location = new System.Drawing.Point(16, 157);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(6, 13);
     this.labelControl17.TabIndex = 348;
     this.labelControl17.Text = "*";
     //
     // labelControl16
     //
     this.labelControl16.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl16.Location = new System.Drawing.Point(16, 131);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(6, 13);
     this.labelControl16.TabIndex = 347;
     this.labelControl16.Text = "*";
     //
     // labelControl15
     //
     this.labelControl15.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl15.Location = new System.Drawing.Point(16, 105);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(6, 13);
     this.labelControl15.TabIndex = 346;
     this.labelControl15.Text = "*";
     //
     // labelControl10
     //
     this.labelControl10.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl10.Location = new System.Drawing.Point(386, 183);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(6, 13);
     this.labelControl10.TabIndex = 345;
     this.labelControl10.Text = "*";
     //
     // lookUpEditPaperInvoice
     //
     this.lookUpEditPaperInvoice.Location = new System.Drawing.Point(475, 180);
     this.lookUpEditPaperInvoice.Name = "lookUpEditPaperInvoice";
     this.lookUpEditPaperInvoice.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditPaperInvoice.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("papersize_label", " "),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("papersize_id", " ", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditPaperInvoice.Size = new System.Drawing.Size(119, 20);
     this.lookUpEditPaperInvoice.TabIndex = 319;
     //
     // bttExampleInvoice
     //
     this.bttExampleInvoice.Image = global::DXWindowsApplication2.Properties.Resources.preview;
     this.bttExampleInvoice.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttExampleInvoice.Location = new System.Drawing.Point(600, 176);
     this.bttExampleInvoice.Name = "bttExampleInvoice";
     this.bttExampleInvoice.Size = new System.Drawing.Size(87, 60);
     this.bttExampleInvoice.TabIndex = 322;
     this.bttExampleInvoice.Text = "ตัวอย่างเอกสาร";
     this.bttExampleInvoice.Click += new System.EventHandler(this.bttExampleInvoice_Click);
     //
     // groupBoxFormat2
     //
     this.groupBoxFormat2.Controls.Add(this.labelControl9);
     this.groupBoxFormat2.Controls.Add(this.labelControl6);
     this.groupBoxFormat2.Controls.Add(this.checkEditSaperateInvoice);
     this.groupBoxFormat2.Controls.Add(this.labelControl3);
     this.groupBoxFormat2.Controls.Add(this.labelPrefix2);
     this.groupBoxFormat2.Controls.Add(this.textEditPrefixInvoice);
     this.groupBoxFormat2.Controls.Add(this.textEditInvoiceDateFormat);
     this.groupBoxFormat2.Controls.Add(this.textEditExampleInvoice);
     this.groupBoxFormat2.Controls.Add(this.textEditInvoiceStart);
     this.groupBoxFormat2.Controls.Add(this.labelDate2);
     this.groupBoxFormat2.Controls.Add(this.labelExample2);
     this.groupBoxFormat2.Controls.Add(this.labelStart2);
     this.groupBoxFormat2.Location = new System.Drawing.Point(5, 25);
     this.groupBoxFormat2.Name = "groupBoxFormat2";
     this.groupBoxFormat2.Size = new System.Drawing.Size(589, 67);
     this.groupBoxFormat2.TabIndex = 344;
     this.groupBoxFormat2.TabStop = false;
     this.groupBoxFormat2.Text = "รูปแบบเลขที่สัญญา";
     //
     // labelControl9
     //
     this.labelControl9.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl9.Location = new System.Drawing.Point(338, 20);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(6, 13);
     this.labelControl9.TabIndex = 321;
     this.labelControl9.Text = "*";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl6.Location = new System.Drawing.Point(11, 20);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(6, 13);
     this.labelControl6.TabIndex = 320;
     this.labelControl6.Text = "*";
     //
     // checkEditSaperateInvoice
     //
     this.checkEditSaperateInvoice.Location = new System.Drawing.Point(96, 38);
     this.checkEditSaperateInvoice.Name = "checkEditSaperateInvoice";
     this.checkEditSaperateInvoice.Properties.Caption = "แยกรายวัน(D)/รายเดือน(M)";
     this.checkEditSaperateInvoice.Size = new System.Drawing.Size(152, 19);
     this.checkEditSaperateInvoice.TabIndex = 314;
     this.checkEditSaperateInvoice.CheckedChanged += new System.EventHandler(this.checkEditSaperateInvoice_CheckedChanged);
     //
     // labelControl3
     //
     this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl3.Location = new System.Drawing.Point(439, 41);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(16, 16);
     this.labelControl3.TabIndex = 312;
     this.labelControl3.Text = "=";
     //
     // labelPrefix2
     //
     this.labelPrefix2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelPrefix2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelPrefix2.Location = new System.Drawing.Point(23, 20);
     this.labelPrefix2.Name = "labelPrefix2";
     this.labelPrefix2.Size = new System.Drawing.Size(78, 13);
     this.labelPrefix2.TabIndex = 307;
     this.labelPrefix2.Text = "อักษรนำหน้า";
     //
     // textEditPrefixInvoice
     //
     this.textEditPrefixInvoice.EditValue = "INV";
     this.textEditPrefixInvoice.Location = new System.Drawing.Point(11, 39);
     this.textEditPrefixInvoice.Name = "textEditPrefixInvoice";
     this.textEditPrefixInvoice.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditPrefixInvoice.Properties.Appearance.Options.UseBackColor = true;
     this.textEditPrefixInvoice.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditPrefixInvoice.Properties.Mask.EditMask = "([a-zA-Z0-9]{1,3})";
     this.textEditPrefixInvoice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditPrefixInvoice.ShowToolTips = false;
     this.textEditPrefixInvoice.Size = new System.Drawing.Size(78, 20);
     this.textEditPrefixInvoice.TabIndex = 308;
     this.textEditPrefixInvoice.Tag = "";
     this.textEditPrefixInvoice.EditValueChanged += new System.EventHandler(this.textEditPrefixInvoice_EditValueChanged);
     //
     // textEditInvoiceDateFormat
     //
     this.textEditInvoiceDateFormat.EditValue = "";
     this.textEditInvoiceDateFormat.Enabled = false;
     this.textEditInvoiceDateFormat.Location = new System.Drawing.Point(254, 39);
     this.textEditInvoiceDateFormat.Name = "textEditInvoiceDateFormat";
     this.textEditInvoiceDateFormat.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditInvoiceDateFormat.Properties.Appearance.Options.UseBackColor = true;
     this.textEditInvoiceDateFormat.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditInvoiceDateFormat.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditInvoiceDateFormat.ShowToolTips = false;
     this.textEditInvoiceDateFormat.Size = new System.Drawing.Size(75, 20);
     this.textEditInvoiceDateFormat.TabIndex = 311;
     this.textEditInvoiceDateFormat.Tag = "";
     //
     // textEditExampleInvoice
     //
     this.textEditExampleInvoice.EditValue = "";
     this.textEditExampleInvoice.Location = new System.Drawing.Point(461, 39);
     this.textEditExampleInvoice.Name = "textEditExampleInvoice";
     this.textEditExampleInvoice.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditExampleInvoice.Properties.Appearance.Options.UseBackColor = true;
     this.textEditExampleInvoice.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditExampleInvoice.Properties.ReadOnly = true;
     this.textEditExampleInvoice.ShowToolTips = false;
     this.textEditExampleInvoice.Size = new System.Drawing.Size(122, 20);
     this.textEditExampleInvoice.TabIndex = 311;
     this.textEditExampleInvoice.Tag = "";
     //
     // textEditInvoiceStart
     //
     this.textEditInvoiceStart.CausesValidation = false;
     this.textEditInvoiceStart.EditValue = "000000";
     this.textEditInvoiceStart.Location = new System.Drawing.Point(358, 39);
     this.textEditInvoiceStart.Name = "textEditInvoiceStart";
     this.textEditInvoiceStart.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditInvoiceStart.Properties.Appearance.Options.UseBackColor = true;
     this.textEditInvoiceStart.Properties.Mask.EditMask = "\\d{6}";
     this.textEditInvoiceStart.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditInvoiceStart.Properties.Mask.ShowPlaceHolders = false;
     this.textEditInvoiceStart.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditInvoiceStart.Properties.NullText = "000000";
     this.textEditInvoiceStart.Properties.NullValuePrompt = "000000";
     this.textEditInvoiceStart.Properties.NullValuePromptShowForEmptyValue = true;
     this.textEditInvoiceStart.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditInvoiceStart.ShowToolTips = false;
     this.textEditInvoiceStart.Size = new System.Drawing.Size(75, 20);
     this.textEditInvoiceStart.TabIndex = 311;
     this.textEditInvoiceStart.Tag = "";
     //
     // labelDate2
     //
     this.labelDate2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelDate2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelDate2.Location = new System.Drawing.Point(242, 20);
     this.labelDate2.Name = "labelDate2";
     this.labelDate2.Size = new System.Drawing.Size(98, 13);
     this.labelDate2.TabIndex = 310;
     this.labelDate2.Text = "วันที่ YYYYMMDD";
     //
     // labelExample2
     //
     this.labelExample2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelExample2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelExample2.Location = new System.Drawing.Point(461, 20);
     this.labelExample2.Name = "labelExample2";
     this.labelExample2.Size = new System.Drawing.Size(98, 13);
     this.labelExample2.TabIndex = 310;
     this.labelExample2.Text = "ตัวอย่าง";
     //
     // labelStart2
     //
     this.labelStart2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelStart2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelStart2.Location = new System.Drawing.Point(358, 20);
     this.labelStart2.Name = "labelStart2";
     this.labelStart2.Size = new System.Drawing.Size(98, 13);
     this.labelStart2.TabIndex = 310;
     this.labelStart2.Text = "เลขที่เอกสารเริ่มต้น";
     //
     // textEditUnderInvoice2
     //
     this.textEditUnderInvoice2.EditValue = "";
     this.textEditUnderInvoice2.Location = new System.Drawing.Point(475, 150);
     this.textEditUnderInvoice2.Name = "textEditUnderInvoice2";
     this.textEditUnderInvoice2.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditUnderInvoice2.Properties.Appearance.Options.UseBackColor = true;
     this.textEditUnderInvoice2.Properties.DisplayFormat.FormatString = "#.##";
     this.textEditUnderInvoice2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditUnderInvoice2.Properties.EditFormat.FormatString = "#.##";
     this.textEditUnderInvoice2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditUnderInvoice2.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,100}";
     this.textEditUnderInvoice2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditUnderInvoice2.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditUnderInvoice2.ShowToolTips = false;
     this.textEditUnderInvoice2.Size = new System.Drawing.Size(212, 20);
     this.textEditUnderInvoice2.TabIndex = 343;
     this.textEditUnderInvoice2.Tag = "";
     //
     // textEditUnderInvoice1
     //
     this.textEditUnderInvoice1.EditValue = "";
     this.textEditUnderInvoice1.Location = new System.Drawing.Point(149, 150);
     this.textEditUnderInvoice1.Name = "textEditUnderInvoice1";
     this.textEditUnderInvoice1.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditUnderInvoice1.Properties.Appearance.Options.UseBackColor = true;
     this.textEditUnderInvoice1.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,100}";
     this.textEditUnderInvoice1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditUnderInvoice1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditUnderInvoice1.ShowToolTips = false;
     this.textEditUnderInvoice1.Size = new System.Drawing.Size(185, 20);
     this.textEditUnderInvoice1.TabIndex = 311;
     this.textEditUnderInvoice1.Tag = "";
     //
     // memoEditInvoiceFooter
     //
     this.memoEditInvoiceFooter.EditValue = "safsdfdsfdsfsdfddsfdsfdsfdsffffffffffffffffffffffffffffffffffffffffffffffffffffff" +
         "fffffffffffffffffffffsdee";
     this.memoEditInvoiceFooter.Location = new System.Drawing.Point(149, 124);
     this.memoEditInvoiceFooter.Name = "memoEditInvoiceFooter";
     this.memoEditInvoiceFooter.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.memoEditInvoiceFooter.Properties.Appearance.Options.UseBackColor = true;
     this.memoEditInvoiceFooter.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,200}";
     this.memoEditInvoiceFooter.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.memoEditInvoiceFooter.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.memoEditInvoiceFooter.ShowToolTips = false;
     this.memoEditInvoiceFooter.Size = new System.Drawing.Size(538, 20);
     this.memoEditInvoiceFooter.TabIndex = 311;
     this.memoEditInvoiceFooter.Tag = "";
     //
     // memoEditInvoiceHeader
     //
     this.memoEditInvoiceHeader.EditValue = "ใบแจ้งหนี้ / Invoice -";
     this.memoEditInvoiceHeader.Location = new System.Drawing.Point(149, 98);
     this.memoEditInvoiceHeader.Name = "memoEditInvoiceHeader";
     this.memoEditInvoiceHeader.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.memoEditInvoiceHeader.Properties.Appearance.Options.UseBackColor = true;
     this.memoEditInvoiceHeader.Properties.Mask.BeepOnError = true;
     this.memoEditInvoiceHeader.Properties.Mask.EditMask = "([a-zA-Z0-9ก-๙\\ \\/\\-]){1,200}";
     this.memoEditInvoiceHeader.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.memoEditInvoiceHeader.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.memoEditInvoiceHeader.Properties.MaxLength = 20;
     this.memoEditInvoiceHeader.ShowToolTips = false;
     this.memoEditInvoiceHeader.Size = new System.Drawing.Size(538, 20);
     this.memoEditInvoiceHeader.TabIndex = 311;
     this.memoEditInvoiceHeader.Tag = "";
     //
     // labelUnder12
     //
     this.labelUnder12.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelUnder12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelUnder12.Location = new System.Drawing.Point(352, 153);
     this.labelUnder12.Name = "labelUnder12";
     this.labelUnder12.Size = new System.Drawing.Size(119, 13);
     this.labelUnder12.TabIndex = 339;
     this.labelUnder12.Text = "ข้อความใต้ลายเซ็น 2 :";
     //
     // labelPaper1
     //
     this.labelPaper1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelPaper1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelPaper1.Location = new System.Drawing.Point(352, 183);
     this.labelPaper1.Name = "labelPaper1";
     this.labelPaper1.Size = new System.Drawing.Size(119, 13);
     this.labelPaper1.TabIndex = 339;
     this.labelPaper1.Text = "ขนาดกระดาษ :";
     //
     // labelUnder11
     //
     this.labelUnder11.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelUnder11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelUnder11.Location = new System.Drawing.Point(24, 157);
     this.labelUnder11.Name = "labelUnder11";
     this.labelUnder11.Size = new System.Drawing.Size(119, 13);
     this.labelUnder11.TabIndex = 339;
     this.labelUnder11.Text = "ข้อความใต้ลายเซ็น 1 :";
     //
     // labelFooter1
     //
     this.labelFooter1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelFooter1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelFooter1.Location = new System.Drawing.Point(26, 131);
     this.labelFooter1.Name = "labelFooter1";
     this.labelFooter1.Size = new System.Drawing.Size(117, 13);
     this.labelFooter1.TabIndex = 338;
     this.labelFooter1.Text = "ข้อความใต้ใบแจ้งหนี้ :";
     //
     // labelHeader1
     //
     this.labelHeader1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelHeader1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelHeader1.Location = new System.Drawing.Point(26, 105);
     this.labelHeader1.Name = "labelHeader1";
     this.labelHeader1.Size = new System.Drawing.Size(117, 13);
     this.labelHeader1.TabIndex = 336;
     this.labelHeader1.Text = "ข้อความหัวใบแจ้งหนี้ :";
     //
     // groupControlContractFormat
     //
     this.groupControlContractFormat.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlContractFormat.AppearanceCaption.Options.UseFont = true;
     this.groupControlContractFormat.Controls.Add(this.bttExampleContract);
     this.groupControlContractFormat.Controls.Add(this.groupBoxFormat1);
     this.groupControlContractFormat.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlContractFormat.Location = new System.Drawing.Point(0, 143);
     this.groupControlContractFormat.Margin = new System.Windows.Forms.Padding(20);
     this.groupControlContractFormat.Name = "groupControlContractFormat";
     this.groupControlContractFormat.Size = new System.Drawing.Size(799, 100);
     this.groupControlContractFormat.TabIndex = 12;
     this.groupControlContractFormat.Text = "รูปแบบสัญญา";
     //
     // bttExampleContract
     //
     this.bttExampleContract.Image = global::DXWindowsApplication2.Properties.Resources.preview;
     this.bttExampleContract.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttExampleContract.Location = new System.Drawing.Point(600, 32);
     this.bttExampleContract.Name = "bttExampleContract";
     this.bttExampleContract.Size = new System.Drawing.Size(87, 60);
     this.bttExampleContract.TabIndex = 322;
     this.bttExampleContract.Text = "ตัวอย่างเอกสาร";
     this.bttExampleContract.Click += new System.EventHandler(this.bttExampleContract_Click);
     //
     // groupBoxFormat1
     //
     this.groupBoxFormat1.Controls.Add(this.labelControl7);
     this.groupBoxFormat1.Controls.Add(this.labelControl5);
     this.groupBoxFormat1.Controls.Add(this.checkEditSaperateContract);
     this.groupBoxFormat1.Controls.Add(this.labelControl4);
     this.groupBoxFormat1.Controls.Add(this.labelPrefix1);
     this.groupBoxFormat1.Controls.Add(this.textEditPrefixContract);
     this.groupBoxFormat1.Controls.Add(this.textEditContractDateFormat);
     this.groupBoxFormat1.Controls.Add(this.textEditExampleContract);
     this.groupBoxFormat1.Controls.Add(this.textEditContractStart);
     this.groupBoxFormat1.Controls.Add(this.labelDate1);
     this.groupBoxFormat1.Controls.Add(this.labelExample1);
     this.groupBoxFormat1.Controls.Add(this.labelStart1);
     this.groupBoxFormat1.Location = new System.Drawing.Point(5, 25);
     this.groupBoxFormat1.Name = "groupBoxFormat1";
     this.groupBoxFormat1.Size = new System.Drawing.Size(589, 67);
     this.groupBoxFormat1.TabIndex = 320;
     this.groupBoxFormat1.TabStop = false;
     this.groupBoxFormat1.Text = "รูปแบบเลขที่สัญญา";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl7.Location = new System.Drawing.Point(339, 20);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(6, 13);
     this.labelControl7.TabIndex = 321;
     this.labelControl7.Text = "*";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl5.Location = new System.Drawing.Point(11, 20);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(6, 13);
     this.labelControl5.TabIndex = 320;
     this.labelControl5.Text = "*";
     //
     // checkEditSaperateContract
     //
     this.checkEditSaperateContract.Location = new System.Drawing.Point(96, 39);
     this.checkEditSaperateContract.Name = "checkEditSaperateContract";
     this.checkEditSaperateContract.Properties.Caption = "แยกรายวัน(D)/รายเดือน(M)";
     this.checkEditSaperateContract.Size = new System.Drawing.Size(152, 19);
     this.checkEditSaperateContract.TabIndex = 313;
     this.checkEditSaperateContract.CheckedChanged += new System.EventHandler(this.checkEditSaperateContract_CheckedChanged);
     //
     // labelControl4
     //
     this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.Location = new System.Drawing.Point(435, 42);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(16, 16);
     this.labelControl4.TabIndex = 312;
     this.labelControl4.Text = "=";
     //
     // labelPrefix1
     //
     this.labelPrefix1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelPrefix1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelPrefix1.Location = new System.Drawing.Point(23, 20);
     this.labelPrefix1.Name = "labelPrefix1";
     this.labelPrefix1.Size = new System.Drawing.Size(78, 13);
     this.labelPrefix1.TabIndex = 307;
     this.labelPrefix1.Text = "อักษรนำหน้า";
     //
     // textEditPrefixContract
     //
     this.textEditPrefixContract.EditValue = "CT";
     this.textEditPrefixContract.Location = new System.Drawing.Point(11, 39);
     this.textEditPrefixContract.Name = "textEditPrefixContract";
     this.textEditPrefixContract.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditPrefixContract.Properties.Appearance.Options.UseBackColor = true;
     this.textEditPrefixContract.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditPrefixContract.Properties.Mask.EditMask = "([a-zA-Z0-9]{1,3})";
     this.textEditPrefixContract.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditPrefixContract.ShowToolTips = false;
     this.textEditPrefixContract.Size = new System.Drawing.Size(78, 20);
     this.textEditPrefixContract.TabIndex = 308;
     this.textEditPrefixContract.Tag = "";
     this.textEditPrefixContract.EditValueChanged += new System.EventHandler(this.textEditPrefixContract_EditValueChanged);
     //
     // textEditContractDateFormat
     //
     this.textEditContractDateFormat.EditValue = "";
     this.textEditContractDateFormat.Enabled = false;
     this.textEditContractDateFormat.Location = new System.Drawing.Point(254, 39);
     this.textEditContractDateFormat.Name = "textEditContractDateFormat";
     this.textEditContractDateFormat.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditContractDateFormat.Properties.Appearance.Options.UseBackColor = true;
     this.textEditContractDateFormat.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditContractDateFormat.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditContractDateFormat.ShowToolTips = false;
     this.textEditContractDateFormat.Size = new System.Drawing.Size(75, 20);
     this.textEditContractDateFormat.TabIndex = 311;
     this.textEditContractDateFormat.Tag = "";
     //
     // textEditExampleContract
     //
     this.textEditExampleContract.EditValue = "";
     this.textEditExampleContract.Location = new System.Drawing.Point(461, 39);
     this.textEditExampleContract.Name = "textEditExampleContract";
     this.textEditExampleContract.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditExampleContract.Properties.Appearance.Options.UseBackColor = true;
     this.textEditExampleContract.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textEditExampleContract.Properties.ReadOnly = true;
     this.textEditExampleContract.ShowToolTips = false;
     this.textEditExampleContract.Size = new System.Drawing.Size(122, 20);
     this.textEditExampleContract.TabIndex = 311;
     this.textEditExampleContract.Tag = "";
     //
     // textEditContractStart
     //
     this.textEditContractStart.CausesValidation = false;
     this.textEditContractStart.EditValue = "000000";
     this.textEditContractStart.Location = new System.Drawing.Point(358, 38);
     this.textEditContractStart.Name = "textEditContractStart";
     this.textEditContractStart.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditContractStart.Properties.Appearance.Options.UseBackColor = true;
     this.textEditContractStart.Properties.Mask.EditMask = "\\d{6}";
     this.textEditContractStart.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditContractStart.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditContractStart.Properties.Mask.ShowPlaceHolders = false;
     this.textEditContractStart.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditContractStart.Properties.NullText = "000000";
     this.textEditContractStart.Properties.NullValuePrompt = "000000";
     this.textEditContractStart.Properties.NullValuePromptShowForEmptyValue = true;
     this.textEditContractStart.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditContractStart.ShowToolTips = false;
     this.textEditContractStart.Size = new System.Drawing.Size(75, 20);
     this.textEditContractStart.TabIndex = 311;
     this.textEditContractStart.Tag = "";
     //
     // labelDate1
     //
     this.labelDate1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelDate1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelDate1.Location = new System.Drawing.Point(242, 19);
     this.labelDate1.Name = "labelDate1";
     this.labelDate1.Size = new System.Drawing.Size(98, 13);
     this.labelDate1.TabIndex = 310;
     this.labelDate1.Text = "วันที่ YYYYMMDD";
     //
     // labelExample1
     //
     this.labelExample1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelExample1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelExample1.Location = new System.Drawing.Point(461, 20);
     this.labelExample1.Name = "labelExample1";
     this.labelExample1.Size = new System.Drawing.Size(98, 13);
     this.labelExample1.TabIndex = 310;
     this.labelExample1.Text = "ตัวอย่าง";
     //
     // labelStart1
     //
     this.labelStart1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelStart1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelStart1.Location = new System.Drawing.Point(357, 19);
     this.labelStart1.Name = "labelStart1";
     this.labelStart1.Size = new System.Drawing.Size(98, 13);
     this.labelStart1.TabIndex = 310;
     this.labelStart1.Text = "เลขที่เอกสารเริ่มต้น";
     //
     // groupControlDocType
     //
     this.groupControlDocType.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlDocType.AppearanceCaption.Options.UseFont = true;
     this.groupControlDocType.Controls.Add(this.radioGroupLogoPosition);
     this.groupControlDocType.Controls.Add(this.textEditDocumentID);
     this.groupControlDocType.Controls.Add(this.labelControl2);
     this.groupControlDocType.Controls.Add(this.lookUpEditDateFormat);
     this.groupControlDocType.Controls.Add(this.labelControlTop);
     this.groupControlDocType.Controls.Add(this.labelControlLogo);
     this.groupControlDocType.Controls.Add(this.labelControlDateFormat);
     this.groupControlDocType.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlDocType.Location = new System.Drawing.Point(0, 54);
     this.groupControlDocType.Margin = new System.Windows.Forms.Padding(20);
     this.groupControlDocType.Name = "groupControlDocType";
     this.groupControlDocType.Size = new System.Drawing.Size(799, 89);
     this.groupControlDocType.TabIndex = 19;
     this.groupControlDocType.Text = "รูปแบบเอกสาร";
     //
     // radioGroupLogoPosition
     //
     this.radioGroupLogoPosition.EditValue = 0F;
     this.radioGroupLogoPosition.Location = new System.Drawing.Point(200, 60);
     this.radioGroupLogoPosition.Name = "radioGroupLogoPosition";
     this.radioGroupLogoPosition.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.radioGroupLogoPosition.Properties.Appearance.Options.UseBackColor = true;
     this.radioGroupLogoPosition.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.radioGroupLogoPosition.Size = new System.Drawing.Size(238, 24);
     this.radioGroupLogoPosition.TabIndex = 308;
     //
     // textEditDocumentID
     //
     this.textEditDocumentID.Location = new System.Drawing.Point(371, 29);
     this.textEditDocumentID.Name = "textEditDocumentID";
     this.textEditDocumentID.Size = new System.Drawing.Size(100, 20);
     this.textEditDocumentID.TabIndex = 319;
     this.textEditDocumentID.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl2.Location = new System.Drawing.Point(6, 33);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(6, 13);
     this.labelControl2.TabIndex = 318;
     this.labelControl2.Text = "*";
     //
     // lookUpEditDateFormat
     //
     this.lookUpEditDateFormat.Location = new System.Drawing.Point(200, 29);
     this.lookUpEditDateFormat.Name = "lookUpEditDateFormat";
     this.lookUpEditDateFormat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditDateFormat.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("datetype_label", " "),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("datetype_id", " ", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditDateFormat.Size = new System.Drawing.Size(150, 20);
     this.lookUpEditDateFormat.TabIndex = 310;
     //
     // labelControlTop
     //
     this.labelControlTop.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlTop.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTop.Location = new System.Drawing.Point(592, 67);
     this.labelControlTop.Name = "labelControlTop";
     this.labelControlTop.Size = new System.Drawing.Size(95, 13);
     this.labelControlTop.TabIndex = 309;
     this.labelControlTop.Text = "[ส่วนบนของเอกสาร]";
     //
     // labelControlLogo
     //
     this.labelControlLogo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlLogo.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlLogo.Location = new System.Drawing.Point(58, 67);
     this.labelControlLogo.Name = "labelControlLogo";
     this.labelControlLogo.Size = new System.Drawing.Size(125, 13);
     this.labelControlLogo.TabIndex = 309;
     this.labelControlLogo.Text = "ตำแหน่ง Apartment Logo :";
     //
     // labelControlDateFormat
     //
     this.labelControlDateFormat.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDateFormat.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDateFormat.Location = new System.Drawing.Point(23, 32);
     this.labelControlDateFormat.Name = "labelControlDateFormat";
     this.labelControlDateFormat.Size = new System.Drawing.Size(160, 13);
     this.labelControlDateFormat.TabIndex = 266;
     this.labelControlDateFormat.Text = "รูปแบบการแสดงผลของวันที่ :";
     //
     // groupControlVat
     //
     this.groupControlVat.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlVat.AppearanceCaption.Options.UseFont = true;
     this.groupControlVat.Controls.Add(this.labelControl1);
     this.groupControlVat.Controls.Add(this.lookUpEditVatType);
     this.groupControlVat.Controls.Add(this.labelControl12);
     this.groupControlVat.Controls.Add(this.labelVatType);
     this.groupControlVat.Controls.Add(this.textEditAmountVat);
     this.groupControlVat.Controls.Add(this.labelControl8);
     this.groupControlVat.Controls.Add(this.labelVat);
     this.groupControlVat.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlVat.Location = new System.Drawing.Point(0, 0);
     this.groupControlVat.Margin = new System.Windows.Forms.Padding(20);
     this.groupControlVat.Name = "groupControlVat";
     this.groupControlVat.Size = new System.Drawing.Size(799, 54);
     this.groupControlVat.TabIndex = 10;
     this.groupControlVat.Text = "การคิดภาษี";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl1.Location = new System.Drawing.Point(289, 32);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(6, 13);
     this.labelControl1.TabIndex = 319;
     this.labelControl1.Text = "*";
     //
     // lookUpEditVatType
     //
     this.lookUpEditVatType.Location = new System.Drawing.Point(398, 29);
     this.lookUpEditVatType.Name = "lookUpEditVatType";
     this.lookUpEditVatType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditVatType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vattype_label", " ")});
     this.lookUpEditVatType.Size = new System.Drawing.Size(166, 20);
     this.lookUpEditVatType.TabIndex = 318;
     //
     // labelControl12
     //
     this.labelControl12.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl12.Location = new System.Drawing.Point(6, 32);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(6, 13);
     this.labelControl12.TabIndex = 317;
     this.labelControl12.Text = "*";
     //
     // labelVatType
     //
     this.labelVatType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelVatType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelVatType.Location = new System.Drawing.Point(301, 32);
     this.labelVatType.Name = "labelVatType";
     this.labelVatType.Size = new System.Drawing.Size(91, 13);
     this.labelVatType.TabIndex = 307;
     this.labelVatType.Text = "รูปแบบการคิดภาษี :";
     //
     // textEditAmountVat
     //
     this.textEditAmountVat.EditValue = "0000000000000000";
     this.textEditAmountVat.Location = new System.Drawing.Point(200, 29);
     this.textEditAmountVat.Name = "textEditAmountVat";
     this.textEditAmountVat.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditAmountVat.Properties.Appearance.Options.UseBackColor = true;
     this.textEditAmountVat.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditAmountVat.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditAmountVat.Properties.DisplayFormat.FormatString = "n2";
     this.textEditAmountVat.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditAmountVat.Properties.EditFormat.FormatString = "n2";
     this.textEditAmountVat.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditAmountVat.Properties.Mask.EditMask = "(\\d){1,3}|(\\d){1,3}\\.([0-9]){2}";
     this.textEditAmountVat.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditAmountVat.Properties.Mask.ShowPlaceHolders = false;
     this.textEditAmountVat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditAmountVat.Properties.MaxLength = 2;
     this.textEditAmountVat.Properties.NullText = "0.00";
     this.textEditAmountVat.Properties.NullValuePrompt = "0.00";
     this.textEditAmountVat.Properties.NullValuePromptShowForEmptyValue = true;
     this.textEditAmountVat.ShowToolTips = false;
     this.textEditAmountVat.Size = new System.Drawing.Size(53, 20);
     this.textEditAmountVat.TabIndex = 306;
     this.textEditAmountVat.Tag = "";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(259, 32);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(11, 13);
     this.labelControl8.TabIndex = 305;
     this.labelControl8.Text = "%";
     //
     // labelVat
     //
     this.labelVat.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelVat.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelVat.Location = new System.Drawing.Point(37, 32);
     this.labelVat.Name = "labelVat";
     this.labelVat.Size = new System.Drawing.Size(146, 13);
     this.labelVat.TabIndex = 266;
     this.labelVat.Text = "อัตราภาษีมูลค่าเพิ่ม :";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.labelControlRequired);
     this.panelControl1.Controls.Add(this.bttEdit);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 600);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(819, 66);
     this.panelControl1.TabIndex = 21;
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(7, 5);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 347;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(592, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(744, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.save;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(668, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // BasicInfoDocument
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Name = "BasicInfoDocument";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1094, 680);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl_BusinessList)).EndInit();
     this.groupControl_BusinessList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCompany)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDocInfo)).EndInit();
     this.groupControlDocInfo.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlReceiptFormat)).EndInit();
     this.groupControlReceiptFormat.ResumeLayout(false);
     this.groupControlReceiptFormat.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPaperReciept.Properties)).EndInit();
     this.groupBoxFormat3.ResumeLayout(false);
     this.groupBoxFormat3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditSaperateReciept.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefixReceipt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditReceiptDateFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditExampleReceipt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditReceiptStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderReciept2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderReciept1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditRecieptFooter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditRecieptHeader.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInvoiceFormat)).EndInit();
     this.groupControlInvoiceFormat.ResumeLayout(false);
     this.groupControlInvoiceFormat.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPaperInvoice.Properties)).EndInit();
     this.groupBoxFormat2.ResumeLayout(false);
     this.groupBoxFormat2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditSaperateInvoice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefixInvoice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInvoiceDateFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditExampleInvoice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInvoiceStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderInvoice2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUnderInvoice1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditInvoiceFooter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditInvoiceHeader.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlContractFormat)).EndInit();
     this.groupControlContractFormat.ResumeLayout(false);
     this.groupBoxFormat1.ResumeLayout(false);
     this.groupBoxFormat1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditSaperateContract.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefixContract.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractDateFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditExampleContract.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDocType)).EndInit();
     this.groupControlDocType.ResumeLayout(false);
     this.groupControlDocType.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupLogoPosition.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditDocumentID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditDateFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlVat)).EndInit();
     this.groupControlVat.ResumeLayout(false);
     this.groupControlVat.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAmountVat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmServiceReimbursement));
     this.gcMon = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.strBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fee1a = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fee1b = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Transfer1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.Transfer2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ClassID1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.radioGroupType = new DevExpress.XtraEditors.RadioGroup();
     this.btn_Save = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Cancel = new DevExpress.XtraEditors.SimpleButton();
     this.grid_ExtraFees = new DevExpress.XtraGrid.GridControl();
     this.gridView_ExtraFees = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Branch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Branch = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.dtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Bottom_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Bottom_Add = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gcMon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid_ExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_ExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Branch)).BeginInit();
     this.SuspendLayout();
     //
     // gcMon
     //
     //
     // gcMon.EmbeddedNavigator
     //
     this.gcMon.EmbeddedNavigator.Name = "";
     this.gcMon.Location = new System.Drawing.Point(16, 56);
     this.gcMon.MainView = this.gridView1;
     this.gcMon.Name = "gcMon";
     this.gcMon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                    this.lk_Employee});
     this.gcMon.Size = new System.Drawing.Size(616, 320);
     this.gcMon.TabIndex = 0;
     this.gcMon.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                          this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.strBranchCode,
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.fee1a,
                                                                                      this.fee1b,
                                                                                      this.Transfer1,
                                                                                      this.Transfer2,
                                                                                      this.ClassID1});
     this.gridView1.GridControl = this.gcMon;
     this.gridView1.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
                                                                                        new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CUSTOM", this.fee1a, "f2"),
                                                                                        new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Total", this.fee1b, "f2")});
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // strBranchCode
     //
     this.strBranchCode.Caption = "Branch";
     this.strBranchCode.FieldName = "strBranchcode";
     this.strBranchCode.Name = "strBranchCode";
     this.strBranchCode.OptionsColumn.AllowEdit = false;
     this.strBranchCode.Visible = true;
     this.strBranchCode.VisibleIndex = 0;
     this.strBranchCode.Width = 59;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Date";
     this.gridColumn1.FieldName = "dtDate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Time";
     this.gridColumn2.DisplayFormat.FormatString = "hh:mm";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "dtStartTime";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Class";
     this.gridColumn3.FieldName = "strClassCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     this.gridColumn3.Width = 72;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Attendees";
     this.gridColumn4.FieldName = "nAttendees";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     //
     // fee1a
     //
     this.fee1a.AppearanceCell.BackColor = System.Drawing.SystemColors.Control;
     this.fee1a.AppearanceCell.Options.UseBackColor = true;
     this.fee1a.AppearanceHeader.BackColor = System.Drawing.SystemColors.Control;
     this.fee1a.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.fee1a.AppearanceHeader.Options.UseBackColor = true;
     this.fee1a.AppearanceHeader.Options.UseFont = true;
     this.fee1a.Caption = "Fees";
     this.fee1a.DisplayFormat.FormatString = "f2";
     this.fee1a.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.fee1a.FieldName = "mInstructorFees";
     this.fee1a.Name = "fee1a";
     this.fee1a.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.fee1a.Visible = true;
     this.fee1a.VisibleIndex = 5;
     this.fee1a.Width = 90;
     //
     // fee1b
     //
     this.fee1b.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.fee1b.AppearanceHeader.Options.UseFont = true;
     this.fee1b.Caption = "Fees";
     this.fee1b.FieldName = "mStandinInstructorFees";
     this.fee1b.Name = "fee1b";
     this.fee1b.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.fee1b.Width = 90;
     //
     // Transfer1
     //
     this.Transfer1.Caption = "Transfer To ";
     this.Transfer1.ColumnEdit = this.lk_Employee;
     this.Transfer1.FieldName = "nActualInstructorID";
     this.Transfer1.Name = "Transfer1";
     this.Transfer1.Visible = true;
     this.Transfer1.VisibleIndex = 6;
     this.Transfer1.Width = 150;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // Transfer2
     //
     this.Transfer2.Caption = "Transfer To";
     this.Transfer2.ColumnEdit = this.lk_Employee;
     this.Transfer2.FieldName = "nStandinInstructorID";
     this.Transfer2.Name = "Transfer2";
     this.Transfer2.Width = 150;
     //
     // ClassID1
     //
     this.ClassID1.Caption = "Class Id";
     this.ClassID1.FieldName = "nClassInstanceID";
     this.ClassID1.Name = "ClassID1";
     //
     // radioGroupType
     //
     this.radioGroupType.EditValue = "A";
     this.radioGroupType.Location = new System.Drawing.Point(24, 8);
     this.radioGroupType.Name = "radioGroupType";
     //
     // radioGroupType.Properties
     //
     this.radioGroupType.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.radioGroupType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.radioGroupType.Properties.Appearance.Options.UseBackColor = true;
     this.radioGroupType.Properties.Appearance.Options.UseFont = true;
     this.radioGroupType.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.radioGroupType.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                            new DevExpress.XtraEditors.Controls.RadioGroupItem("A", "Actual Fees"),
                                                                                                            new DevExpress.XtraEditors.Controls.RadioGroupItem("S", "Standing Fees")});
     this.radioGroupType.Size = new System.Drawing.Size(312, 32);
     this.radioGroupType.TabIndex = 7;
     this.radioGroupType.SelectedIndexChanged += new System.EventHandler(this.radioGroupType_SelectedIndexChanged);
     //
     // btn_Save
     //
     this.btn_Save.ImageIndex = 0;
     this.btn_Save.Location = new System.Drawing.Point(480, 16);
     this.btn_Save.Name = "btn_Save";
     this.btn_Save.Size = new System.Drawing.Size(112, 23);
     this.btn_Save.TabIndex = 14;
     this.btn_Save.Text = "Save Changes";
     this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click);
     //
     // btn_Cancel
     //
     this.btn_Cancel.Location = new System.Drawing.Point(528, 504);
     this.btn_Cancel.Name = "btn_Cancel";
     this.btn_Cancel.Size = new System.Drawing.Size(104, 23);
     this.btn_Cancel.TabIndex = 17;
     this.btn_Cancel.Text = "Close";
     this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
     //
     // grid_ExtraFees
     //
     //
     // grid_ExtraFees.EmbeddedNavigator
     //
     this.grid_ExtraFees.EmbeddedNavigator.Name = "";
     this.grid_ExtraFees.Location = new System.Drawing.Point(16, 400);
     this.grid_ExtraFees.MainView = this.gridView_ExtraFees;
     this.grid_ExtraFees.Name = "grid_ExtraFees";
     this.grid_ExtraFees.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                             this.lk_Branch});
     this.grid_ExtraFees.Size = new System.Drawing.Size(616, 96);
     this.grid_ExtraFees.TabIndex = 18;
     this.grid_ExtraFees.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView_ExtraFees});
     //
     // gridView_ExtraFees
     //
     this.gridView_ExtraFees.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.Branch,
                                                                                               this.dtDate,
                                                                                               this.strDescription,
                                                                                               this.gridColumn10,
                                                                                               this.gridColumn5,
                                                                                               this.gridColumn6});
     this.gridView_ExtraFees.GridControl = this.grid_ExtraFees;
     this.gridView_ExtraFees.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridView_ExtraFees.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
                                                                                                 new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CUSTOM", this.gridColumn10, "f2")});
     this.gridView_ExtraFees.Name = "gridView_ExtraFees";
     this.gridView_ExtraFees.OptionsCustomization.AllowFilter = false;
     this.gridView_ExtraFees.OptionsNavigation.AutoFocusNewRow = true;
     this.gridView_ExtraFees.OptionsView.ColumnAutoWidth = false;
     this.gridView_ExtraFees.OptionsView.ShowFooter = true;
     this.gridView_ExtraFees.OptionsView.ShowGroupPanel = false;
     this.gridView_ExtraFees.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.grid_ExtraFees_Changed);
     //
     // Branch
     //
     this.Branch.Caption = "Branch";
     this.Branch.ColumnEdit = this.lk_Branch;
     this.Branch.FieldName = "strBranchCode";
     this.Branch.Name = "Branch";
     this.Branch.OptionsColumn.AllowEdit = false;
     this.Branch.Visible = true;
     this.Branch.VisibleIndex = 0;
     this.Branch.Width = 59;
     //
     // lk_Branch
     //
     this.lk_Branch.AutoHeight = false;
     this.lk_Branch.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Branch.Name = "lk_Branch";
     //
     // dtDate
     //
     this.dtDate.Caption = "Date";
     this.dtDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtDate.FieldName = "dtDate";
     this.dtDate.Name = "dtDate";
     this.dtDate.OptionsColumn.AllowEdit = false;
     this.dtDate.Visible = true;
     this.dtDate.VisibleIndex = 1;
     //
     // strDescription
     //
     this.strDescription.Caption = "Description";
     this.strDescription.FieldName = "strDescription";
     this.strDescription.Name = "strDescription";
     this.strDescription.Visible = true;
     this.strDescription.VisibleIndex = 2;
     this.strDescription.Width = 374;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.BackColor = System.Drawing.SystemColors.Control;
     this.gridColumn10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn10.AppearanceHeader.BackColor = System.Drawing.SystemColors.Control;
     this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gridColumn10.AppearanceHeader.Options.UseBackColor = true;
     this.gridColumn10.AppearanceHeader.Options.UseFont = true;
     this.gridColumn10.Caption = "Fees";
     this.gridColumn10.DisplayFormat.FormatString = "f2";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn10.FieldName = "mExtraFees";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 3;
     this.gridColumn10.Width = 90;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "EmployeeNo";
     this.gridColumn5.FieldName = "nEmployeeNo";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "PayRollId";
     this.gridColumn6.FieldName = "nPayRollId";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Bottom_Del
     //
     this.btn_Bottom_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Bottom_Del.Appearance.Options.UseFont = true;
     this.btn_Bottom_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Bottom_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Bottom_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Bottom_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Bottom_Del.ImageIndex = 1;
     this.btn_Bottom_Del.ImageList = this.imageList1;
     this.btn_Bottom_Del.Location = new System.Drawing.Point(56, 384);
     this.btn_Bottom_Del.Name = "btn_Bottom_Del";
     this.btn_Bottom_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Bottom_Del.TabIndex = 124;
     this.btn_Bottom_Del.Click += new System.EventHandler(this.btn_Bottom_Del_Click);
     //
     // btn_Bottom_Add
     //
     this.btn_Bottom_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Bottom_Add.Appearance.Options.UseFont = true;
     this.btn_Bottom_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Bottom_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Bottom_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Bottom_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Bottom_Add.ImageIndex = 0;
     this.btn_Bottom_Add.ImageList = this.imageList1;
     this.btn_Bottom_Add.Location = new System.Drawing.Point(16, 384);
     this.btn_Bottom_Add.Name = "btn_Bottom_Add";
     this.btn_Bottom_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Bottom_Add.TabIndex = 125;
     this.btn_Bottom_Add.Click += new System.EventHandler(this.btn_Bottom_Add_Click);
     //
     // frmServiceReimbursement
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(650, 528);
     this.Controls.Add(this.btn_Bottom_Del);
     this.Controls.Add(this.btn_Bottom_Add);
     this.Controls.Add(this.grid_ExtraFees);
     this.Controls.Add(this.btn_Cancel);
     this.Controls.Add(this.btn_Save);
     this.Controls.Add(this.radioGroupType);
     this.Controls.Add(this.gcMon);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "frmServiceReimbursement";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Service Reimbursement";
     this.TopMost = true;
     this.Load += new System.EventHandler(this.frmServiceReimbursement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gcMon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid_ExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_ExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Branch)).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.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.rgFiltro = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtApellido = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.txtNombre = new DevExpress.XtraEditors.TextEdit();
     this.txtCedula = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rgFiltro.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCedula.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(456, 25);
     this.toolStrip1.TabIndex = 37;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton4
     //
     this.toolStripButton4.Image = global::forms.Properties.Resources.imprimir;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(57, 22);
     this.toolStripButton4.Text = "Generar";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.rgFiltro);
     this.groupControl2.Location = new System.Drawing.Point(27, 184);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(402, 54);
     this.groupControl2.TabIndex = 39;
     //
     // rgFiltro
     //
     this.rgFiltro.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rgFiltro.Location = new System.Drawing.Point(2, 21);
     this.rgFiltro.Name = "rgFiltro";
     this.rgFiltro.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Especifico"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "General")});
     this.rgFiltro.Size = new System.Drawing.Size(398, 31);
     this.rgFiltro.TabIndex = 0;
     this.rgFiltro.SelectedIndexChanged += new System.EventHandler(this.rgFiltro_SelectedIndexChanged);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtApellido);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Controls.Add(this.txtNombre);
     this.groupControl1.Controls.Add(this.txtCedula);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(27, 55);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(402, 123);
     this.groupControl1.TabIndex = 38;
     this.groupControl1.Text = "Empleado";
     //
     // txtApellido
     //
     this.txtApellido.Location = new System.Drawing.Point(72, 87);
     this.txtApellido.Name = "txtApellido";
     this.txtApellido.Size = new System.Drawing.Size(241, 20);
     this.txtApellido.TabIndex = 6;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(15, 89);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(41, 13);
     this.labelControl9.TabIndex = 5;
     this.labelControl9.Text = "Apellido:";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(178, 32);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(30, 23);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = "...";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click_1);
     //
     // txtNombre
     //
     this.txtNombre.Location = new System.Drawing.Point(72, 61);
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Size = new System.Drawing.Size(241, 20);
     this.txtNombre.TabIndex = 3;
     //
     // txtCedula
     //
     this.txtCedula.Location = new System.Drawing.Point(72, 35);
     this.txtCedula.Name = "txtCedula";
     this.txtCedula.Size = new System.Drawing.Size(100, 20);
     this.txtCedula.TabIndex = 2;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(15, 63);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(41, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "Nombre:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(15, 35);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(50, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Empleado:";
     //
     // frmConsultaReporteRol
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(456, 292);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.toolStrip1);
     this.Name = "frmConsultaReporteRol";
     this.Text = "Reporte del Rol";
     this.Load += new System.EventHandler(this.frmConsultaReporteRol_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rgFiltro.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCedula.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.RGCrossSalesPackage   = new DevExpress.XtraEditors.RadioGroup();
     this.gridCrossSalesPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView2             = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Rank            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee     = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesTotal      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label79         = new System.Windows.Forms.Label();
     this.label80         = new System.Windows.Forms.Label();
     this.Month           = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year            = new DevExpress.XtraEditors.ComboBoxEdit();
     this.button1         = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.RGCrossSalesPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCrossSalesPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Gray;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(0, 40);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(952, 24);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "Ranking of Cross Selling Sales";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGCrossSalesPackage
     //
     this.RGCrossSalesPackage.EditValue = 0;
     this.RGCrossSalesPackage.Location  = new System.Drawing.Point(0, 64);
     this.RGCrossSalesPackage.Name      = "RGCrossSalesPackage";
     this.RGCrossSalesPackage.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.RGCrossSalesPackage.Properties.Appearance.Font                 = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RGCrossSalesPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGCrossSalesPackage.Properties.Appearance.Options.UseFont      = true;
     this.RGCrossSalesPackage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGCrossSalesPackage.Properties.Columns     = 2;
     this.RGCrossSalesPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Cross Selling Sales By %"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Cross Selling Sales")
     });
     this.RGCrossSalesPackage.Size              = new System.Drawing.Size(496, 32);
     this.RGCrossSalesPackage.TabIndex          = 10;
     this.RGCrossSalesPackage.EditValueChanged += new System.EventHandler(this.RGCrossSalesPackage_EditValueChanged);
     this.RGCrossSalesPackage.Click            += new System.EventHandler(this.RGCrossSalesPackage_Click);
     //
     // gridCrossSalesPackage
     //
     this.gridCrossSalesPackage.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.gridCrossSalesPackage.Location = new System.Drawing.Point(0, 96);
     this.gridCrossSalesPackage.MainView = this.gridView2;
     this.gridCrossSalesPackage.Name     = "gridCrossSalesPackage";
     this.gridCrossSalesPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.lk_Employee
     });
     this.gridCrossSalesPackage.Size     = new System.Drawing.Size(960, 384);
     this.gridCrossSalesPackage.TabIndex = 9;
     this.gridCrossSalesPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.Rank,
         this.gridColumn2,
         this.gridColumn5,
         this.SalesPercentage,
         this.SalesTotal
     });
     this.gridView2.GridControl = this.gridCrossSalesPackage;
     this.gridView2.Name        = "gridView2";
     this.gridView2.OptionsBehavior.Editable         = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowGroup  = false;
     this.gridView2.OptionsView.ShowGroupPanel       = false;
     this.gridView2.CustomUnboundColumnData         += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView2_CustomUnboundColumnData);
     //
     // Rank
     //
     this.Rank.Caption      = "Rank";
     this.Rank.FieldName    = "Rank";
     this.Rank.Name         = "Rank";
     this.Rank.UnboundType  = DevExpress.Data.UnboundColumnType.Integer;
     this.Rank.Visible      = true;
     this.Rank.VisibleIndex = 0;
     this.Rank.Width        = 33;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Employee Name";
     this.gridColumn2.ColumnEdit   = this.lk_Employee;
     this.gridColumn2.FieldName    = "nSalesPersonID";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 85;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption      = "Branch Code";
     this.gridColumn5.FieldName    = "strBranchCode";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width        = 70;
     //
     // SalesPercentage
     //
     this.SalesPercentage.Caption      = "Sales Percentage";
     this.SalesPercentage.FieldName    = "SalesPercentage";
     this.SalesPercentage.Name         = "SalesPercentage";
     this.SalesPercentage.Visible      = true;
     this.SalesPercentage.VisibleIndex = 2;
     this.SalesPercentage.Width        = 92;
     //
     // SalesTotal
     //
     this.SalesTotal.Caption      = "Total Sales";
     this.SalesTotal.FieldName    = "TotalSales";
     this.SalesTotal.Name         = "SalesTotal";
     this.SalesTotal.Visible      = true;
     this.SalesTotal.VisibleIndex = 3;
     this.SalesTotal.Width        = 61;
     //
     // label79
     //
     this.label79.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name     = "label79";
     this.label79.Size     = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 23;
     this.label79.Text     = "Year";
     //
     // label80
     //
     this.label80.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name     = "label80";
     this.label80.Size     = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 22;
     this.label80.Text     = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location  = new System.Drawing.Point(64, 8);
     this.Month.Name      = "Month";
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.Month.Properties.Items.AddRange(new object[] {
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12"
     });
     this.Month.Size                  = new System.Drawing.Size(72, 20);
     this.Month.TabIndex              = 21;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location  = new System.Drawing.Point(192, 8);
     this.Year.Name      = "Year";
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.Year.Size                  = new System.Drawing.Size(96, 20);
     this.Year.TabIndex              = 20;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(491, 67);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 24;
     this.button1.Text     = "Print";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmSRCrossSalesPackage
     //
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.RGCrossSalesPackage);
     this.Controls.Add(this.gridCrossSalesPackage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmSRCrossSalesPackage";
     this.Text            = "frmSRCrossSalesPackage";
     this.Load           += new System.EventHandler(this.frmSRCrossSalesPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.RGCrossSalesPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCrossSalesPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridFitnessProduct = new DevExpress.XtraGrid.GridControl();
     this.gvFitnessProduct = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvFitnessProductRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label4 = new System.Windows.Forms.Label();
     this.RGFitnessProduct = new DevExpress.XtraEditors.RadioGroup();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 27;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 26;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     //
     // Month.Properties
     //
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
                                                           "1",
                                                           "2",
                                                           "3",
                                                           "4",
                                                           "5",
                                                           "6",
                                                           "7",
                                                           "8",
                                                           "9",
                                                           "10",
                                                           "11",
                                                           "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 25;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 24;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // gridFitnessProduct
     //
     this.gridFitnessProduct.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridFitnessProduct.EmbeddedNavigator
     //
     this.gridFitnessProduct.EmbeddedNavigator.Name = "";
     this.gridFitnessProduct.Location = new System.Drawing.Point(0, 96);
     this.gridFitnessProduct.MainView = this.gvFitnessProduct;
     this.gridFitnessProduct.Name = "gridFitnessProduct";
     this.gridFitnessProduct.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                 this.lk_Employee});
     this.gridFitnessProduct.Size = new System.Drawing.Size(960, 384);
     this.gridFitnessProduct.TabIndex = 28;
     this.gridFitnessProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                       this.gvFitnessProduct,
                                                                                                       this.gridView4});
     //
     // gvFitnessProduct
     //
     this.gvFitnessProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gvFitnessProductRank,
                                                                                             this.gridColumn3,
                                                                                             this.gridColumn4,
                                                                                             this.gvFitnessProductSalesPercentage,
                                                                                             this.gvFitnessProductTotalSales});
     this.gvFitnessProduct.GridControl = this.gridFitnessProduct;
     this.gvFitnessProduct.Name = "gvFitnessProduct";
     this.gvFitnessProduct.OptionsBehavior.Editable = false;
     this.gvFitnessProduct.OptionsCustomization.AllowFilter = false;
     this.gvFitnessProduct.OptionsCustomization.AllowGroup = false;
     this.gvFitnessProduct.OptionsCustomization.AllowSort = false;
     this.gvFitnessProduct.OptionsView.ShowGroupPanel = false;
     this.gvFitnessProduct.FocusedColumnChanged += new DevExpress.XtraGrid.Views.Base.FocusedColumnChangedEventHandler(this.gvFitnessProduct_FocusedColumnChanged);
     this.gvFitnessProduct.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvFitnessProduct_CustomUnboundColumnData);
     //
     // gvFitnessProductRank
     //
     this.gvFitnessProductRank.Caption = "Rank";
     this.gvFitnessProductRank.FieldName = "gridColumn1";
     this.gvFitnessProductRank.Name = "gvFitnessProductRank";
     this.gvFitnessProductRank.SummaryItem.DisplayFormat = "{0}";
     this.gvFitnessProductRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvFitnessProductRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvFitnessProductRank.Visible = true;
     this.gvFitnessProductRank.VisibleIndex = 0;
     this.gvFitnessProductRank.Width = 33;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Employee Name";
     this.gridColumn3.ColumnEdit = this.lk_Employee;
     this.gridColumn3.FieldName = "nSalesPersonID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 85;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Branch Code";
     this.gridColumn4.FieldName = "strBranchCode";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     this.gridColumn4.Width = 70;
     //
     // gvFitnessProductSalesPercentage
     //
     this.gvFitnessProductSalesPercentage.Caption = "Sales Percentage";
     this.gvFitnessProductSalesPercentage.FieldName = "SalesPercentage";
     this.gvFitnessProductSalesPercentage.Name = "gvFitnessProductSalesPercentage";
     this.gvFitnessProductSalesPercentage.Visible = true;
     this.gvFitnessProductSalesPercentage.VisibleIndex = 2;
     this.gvFitnessProductSalesPercentage.Width = 92;
     //
     // gvFitnessProductTotalSales
     //
     this.gvFitnessProductTotalSales.Caption = "Total Sales";
     this.gvFitnessProductTotalSales.FieldName = "TotalSales";
     this.gvFitnessProductTotalSales.Name = "gvFitnessProductTotalSales";
     this.gvFitnessProductTotalSales.Visible = true;
     this.gvFitnessProductTotalSales.VisibleIndex = 3;
     this.gvFitnessProductTotalSales.Width = 61;
     //
     // gridView4
     //
     this.gridView4.GridControl = this.gridFitnessProduct;
     this.gridView4.Name = "gridView4";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(0, 40);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(944, 24);
     this.label4.TabIndex = 30;
     this.label4.Text = "Ranking of Fitness Product Sales";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGFitnessProduct
     //
     this.RGFitnessProduct.EditValue = 0;
     this.RGFitnessProduct.Location = new System.Drawing.Point(0, 64);
     this.RGFitnessProduct.Name = "RGFitnessProduct";
     //
     // RGFitnessProduct.Properties
     //
     this.RGFitnessProduct.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessProduct.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.RGFitnessProduct.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessProduct.Properties.Appearance.Options.UseFont = true;
     this.RGFitnessProduct.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGFitnessProduct.Properties.Columns = 2;
     this.RGFitnessProduct.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Product Sales By %"),
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Product Sales")});
     this.RGFitnessProduct.Size = new System.Drawing.Size(496, 32);
     this.RGFitnessProduct.TabIndex = 29;
     this.RGFitnessProduct.Click += new System.EventHandler(this.RGFitnessProduct_Click);
     this.RGFitnessProduct.EditValueChanged += new System.EventHandler(this.RGFitnessProduct_EditValueChanged);
     //
     // frmSRFitnessProduct
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.gridFitnessProduct);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.RGFitnessProduct);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRFitnessProduct";
     this.Text = "frmSRFitnessProduct";
     this.Load += new System.EventHandler(this.frmSRFitnessProduct_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.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.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.dateEdit3 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit4 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.radioGroup2 = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.dropDownButton3 = new DevExpress.XtraEditors.DropDownButton();
     this.dropDownButton2 = new DevExpress.XtraEditors.DropDownButton();
     this.dropDownButton1 = new DevExpress.XtraEditors.DropDownButton();
     this.radioGroup3 = new DevExpress.XtraEditors.RadioGroup();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup3.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4,
     this.toolStripButton1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(455, 25);
     this.toolStrip1.TabIndex = 33;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton4
     //
     this.toolStripButton4.Image = global::forms.Properties.Resources.imprimir;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(68, 22);
     this.toolStripButton4.Text = "Generar";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = global::forms.Properties.Resources.guardar;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(69, 22);
     this.toolStripButton1.Text = "Guardar";
     //
     // toolStripButton3
     //
     this.toolStripButton3.Image = global::forms.Properties.Resources._24_cancelar;
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(49, 22);
     this.toolStripButton3.Text = "Salir";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(12, 35);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(436, 316);
     this.xtraTabControl1.TabIndex = 32;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage3});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.groupControl3);
     this.xtraTabPage1.Controls.Add(this.groupControl2);
     this.xtraTabPage1.Controls.Add(this.groupControl1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(430, 288);
     this.xtraTabPage1.Text = "Individual";
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl5);
     this.groupControl3.Controls.Add(this.dateEdit2);
     this.groupControl3.Controls.Add(this.dateEdit1);
     this.groupControl3.Controls.Add(this.labelControl4);
     this.groupControl3.Controls.Add(this.labelControl3);
     this.groupControl3.Location = new System.Drawing.Point(200, 147);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(215, 110);
     this.groupControl3.TabIndex = 38;
     this.groupControl3.Text = "Fecha";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(41, 48);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(30, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Desde";
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit2.Location = new System.Drawing.Point(86, 71);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit2.Size = new System.Drawing.Size(100, 20);
     this.dateEdit2.TabIndex = 38;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit1.Location = new System.Drawing.Point(86, 45);
     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.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 37;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(-77, 44);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(30, 13);
     this.labelControl4.TabIndex = 35;
     this.labelControl4.Text = "Desde";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(41, 74);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(28, 13);
     this.labelControl3.TabIndex = 36;
     this.labelControl3.Text = "Hasta";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.radioGroup1);
     this.groupControl2.Location = new System.Drawing.Point(13, 147);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(181, 110);
     this.groupControl2.TabIndex = 37;
     //
     // radioGroup1
     //
     this.radioGroup1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup1.Location = new System.Drawing.Point(2, 21);
     this.radioGroup1.Name = "radioGroup1";
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Suma"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Detalle")});
     this.radioGroup1.Size = new System.Drawing.Size(177, 87);
     this.radioGroup1.TabIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Controls.Add(this.textEdit2);
     this.groupControl1.Controls.Add(this.textEdit1);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(13, 18);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(402, 110);
     this.groupControl1.TabIndex = 36;
     this.groupControl1.Text = "Empleado";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(178, 32);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(30, 23);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = "...";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(72, 61);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(241, 20);
     this.textEdit2.TabIndex = 3;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(72, 35);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 2;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(15, 63);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(41, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "Nombre:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(15, 35);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(50, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Empleado:";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.groupControl4);
     this.xtraTabPage3.Controls.Add(this.groupControl5);
     this.xtraTabPage3.Controls.Add(this.groupControl6);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(430, 288);
     this.xtraTabPage3.Text = "General";
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.labelControl6);
     this.groupControl4.Controls.Add(this.dateEdit3);
     this.groupControl4.Controls.Add(this.dateEdit4);
     this.groupControl4.Controls.Add(this.labelControl7);
     this.groupControl4.Controls.Add(this.labelControl8);
     this.groupControl4.Location = new System.Drawing.Point(200, 166);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(215, 91);
     this.groupControl4.TabIndex = 38;
     this.groupControl4.Text = "Fecha";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(41, 39);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(30, 13);
     this.labelControl6.TabIndex = 39;
     this.labelControl6.Text = "Desde";
     //
     // dateEdit3
     //
     this.dateEdit3.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit3.Location = new System.Drawing.Point(86, 62);
     this.dateEdit3.Name = "dateEdit3";
     this.dateEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit3.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit3.Size = new System.Drawing.Size(100, 20);
     this.dateEdit3.TabIndex = 38;
     //
     // dateEdit4
     //
     this.dateEdit4.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit4.Location = new System.Drawing.Point(86, 36);
     this.dateEdit4.Name = "dateEdit4";
     this.dateEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit4.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit4.Size = new System.Drawing.Size(100, 20);
     this.dateEdit4.TabIndex = 37;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(-77, 44);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(30, 13);
     this.labelControl7.TabIndex = 35;
     this.labelControl7.Text = "Desde";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 65);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(28, 13);
     this.labelControl8.TabIndex = 36;
     this.labelControl8.Text = "Hasta";
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.radioGroup2);
     this.groupControl5.Location = new System.Drawing.Point(13, 166);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(181, 91);
     this.groupControl5.TabIndex = 37;
     //
     // radioGroup2
     //
     this.radioGroup2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup2.Location = new System.Drawing.Point(2, 21);
     this.radioGroup2.Name = "radioGroup2";
     this.radioGroup2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Suma"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Detalle")});
     this.radioGroup2.Size = new System.Drawing.Size(177, 68);
     this.radioGroup2.TabIndex = 0;
     //
     // groupControl6
     //
     this.groupControl6.Controls.Add(this.dropDownButton3);
     this.groupControl6.Controls.Add(this.dropDownButton2);
     this.groupControl6.Controls.Add(this.dropDownButton1);
     this.groupControl6.Controls.Add(this.radioGroup3);
     this.groupControl6.Location = new System.Drawing.Point(13, 18);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(402, 142);
     this.groupControl6.TabIndex = 36;
     //
     // dropDownButton3
     //
     this.dropDownButton3.Location = new System.Drawing.Point(109, 87);
     this.dropDownButton3.Name = "dropDownButton3";
     this.dropDownButton3.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton3.TabIndex = 4;
     //
     // dropDownButton2
     //
     this.dropDownButton2.Location = new System.Drawing.Point(109, 58);
     this.dropDownButton2.Name = "dropDownButton2";
     this.dropDownButton2.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton2.TabIndex = 3;
     //
     // dropDownButton1
     //
     this.dropDownButton1.Location = new System.Drawing.Point(109, 29);
     this.dropDownButton1.Name = "dropDownButton1";
     this.dropDownButton1.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton1.TabIndex = 2;
     //
     // radioGroup3
     //
     this.radioGroup3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup3.Location = new System.Drawing.Point(2, 21);
     this.radioGroup3.Name = "radioGroup3";
     this.radioGroup3.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Departamento"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Empleado"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Cargo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Todos")});
     this.radioGroup3.Size = new System.Drawing.Size(398, 119);
     this.radioGroup3.TabIndex = 1;
     //
     // frmConsultaReporteAtrasosFaltas
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(455, 363);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.xtraTabControl1);
     this.Name = "frmConsultaReporteAtrasosFaltas";
     this.Text = "Consulta/Reporte de Atrasos y Faltas";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup3.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.RGFitnessPackage = new DevExpress.XtraEditors.RadioGroup();
     this.gridFitnessPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Rank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Gray;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(0, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(952, 24);
     this.label1.TabIndex = 11;
     this.label1.Text = "Ranking of Fitness Package Sales";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGFitnessPackage
     //
     this.RGFitnessPackage.EditValue = 0;
     this.RGFitnessPackage.Location = new System.Drawing.Point(0, 64);
     this.RGFitnessPackage.Name = "RGFitnessPackage";
     this.RGFitnessPackage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessPackage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RGFitnessPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessPackage.Properties.Appearance.Options.UseFont = true;
     this.RGFitnessPackage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGFitnessPackage.Properties.Columns = 2;
     this.RGFitnessPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGFitnessPackage.Size = new System.Drawing.Size(496, 32);
     this.RGFitnessPackage.TabIndex = 10;
     this.RGFitnessPackage.EditValueChanged += new System.EventHandler(this.RGFitnessPackage_EditValueChanged);
     this.RGFitnessPackage.Click += new System.EventHandler(this.RGFitnessPackage_Click);
     //
     // gridFitnessPackage
     //
     this.gridFitnessPackage.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridFitnessPackage.Location = new System.Drawing.Point(0, 96);
     this.gridFitnessPackage.MainView = this.gridView2;
     this.gridFitnessPackage.Name = "gridFitnessPackage";
     this.gridFitnessPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_Employee});
     this.gridFitnessPackage.Size = new System.Drawing.Size(960, 384);
     this.gridFitnessPackage.TabIndex = 9;
     this.gridFitnessPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Rank,
     this.gridColumn2,
     this.gridColumn5,
     this.SalesPercentage,
     this.SalesTotal});
     this.gridView2.GridControl = this.gridFitnessPackage;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowGroup = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridView2.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView2_CustomUnboundColumnData);
     //
     // Rank
     //
     this.Rank.Caption = "Rank";
     this.Rank.FieldName = "Rank";
     this.Rank.Name = "Rank";
     this.Rank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.Rank.Visible = true;
     this.Rank.VisibleIndex = 0;
     this.Rank.Width = 33;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Employee Name";
     this.gridColumn2.ColumnEdit = this.lk_Employee;
     this.gridColumn2.FieldName = "nSalesPersonID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 85;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch Code";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 70;
     //
     // SalesPercentage
     //
     this.SalesPercentage.Caption = "Sales Percentage";
     this.SalesPercentage.FieldName = "SalesPercentage";
     this.SalesPercentage.Name = "SalesPercentage";
     this.SalesPercentage.Visible = true;
     this.SalesPercentage.VisibleIndex = 2;
     this.SalesPercentage.Width = 92;
     //
     // SalesTotal
     //
     this.SalesTotal.Caption = "Total Sales";
     this.SalesTotal.FieldName = "TotalSales";
     this.SalesTotal.Name = "SalesTotal";
     this.SalesTotal.Visible = true;
     this.SalesTotal.VisibleIndex = 3;
     this.SalesTotal.Width = 61;
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 23;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 22;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 21;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 20;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(491, 67);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 24;
     this.button1.Text = "Print";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmSRFitnessPackage
     //
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.RGFitnessPackage);
     this.Controls.Add(this.gridFitnessPackage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRFitnessPackage";
     this.Text = "frmSRFitnessPackage";
     this.Load += new System.EventHandler(this.frmSRFitnessPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmServiceReimbursement));
     this.gcMon              = new DevExpress.XtraGrid.GridControl();
     this.gridView1          = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.strBranchCode      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fee1a              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fee1b              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Transfer1          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee        = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.Transfer2          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ClassID1           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.radioGroupType     = new DevExpress.XtraEditors.RadioGroup();
     this.btn_Save           = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Cancel         = new DevExpress.XtraEditors.SimpleButton();
     this.grid_ExtraFees     = new DevExpress.XtraGrid.GridControl();
     this.gridView_ExtraFees = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Branch             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Branch          = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.dtDate             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strDescription     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.btn_Bottom_Del     = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Bottom_Add     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gcMon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid_ExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_ExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Branch)).BeginInit();
     this.SuspendLayout();
     //
     // gcMon
     //
     //
     // gcMon.EmbeddedNavigator
     //
     this.gcMon.EmbeddedNavigator.Name = "";
     this.gcMon.Location = new System.Drawing.Point(16, 56);
     this.gcMon.MainView = this.gridView1;
     this.gcMon.Name     = "gcMon";
     this.gcMon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.lk_Employee
     });
     this.gcMon.Size     = new System.Drawing.Size(616, 320);
     this.gcMon.TabIndex = 0;
     this.gcMon.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.strBranchCode,
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.fee1a,
         this.fee1b,
         this.Transfer1,
         this.Transfer2,
         this.ClassID1
     });
     this.gridView1.GridControl         = this.gcMon;
     this.gridView1.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
         new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CUSTOM", this.fee1a, "f2"),
         new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Total", this.fee1b, "f2")
     });
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsView.ColumnAutoWidth      = false;
     this.gridView1.OptionsView.ShowFooter           = true;
     this.gridView1.OptionsView.ShowGroupPanel       = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // strBranchCode
     //
     this.strBranchCode.Caption   = "Branch";
     this.strBranchCode.FieldName = "strBranchcode";
     this.strBranchCode.Name      = "strBranchCode";
     this.strBranchCode.OptionsColumn.AllowEdit = false;
     this.strBranchCode.Visible      = true;
     this.strBranchCode.VisibleIndex = 0;
     this.strBranchCode.Width        = 59;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Date";
     this.gridColumn1.FieldName = "dtDate";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Time";
     this.gridColumn2.DisplayFormat.FormatString = "hh:mm";
     this.gridColumn2.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "dtStartTime";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Class";
     this.gridColumn3.FieldName = "strClassCode";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 3;
     this.gridColumn3.Width        = 72;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Attendees";
     this.gridColumn4.FieldName = "nAttendees";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 4;
     //
     // fee1a
     //
     this.fee1a.AppearanceCell.BackColor            = System.Drawing.SystemColors.Control;
     this.fee1a.AppearanceCell.Options.UseBackColor = true;
     this.fee1a.AppearanceHeader.BackColor          = System.Drawing.SystemColors.Control;
     this.fee1a.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.fee1a.AppearanceHeader.Options.UseBackColor = true;
     this.fee1a.AppearanceHeader.Options.UseFont      = true;
     this.fee1a.Caption = "Fees";
     this.fee1a.DisplayFormat.FormatString = "f2";
     this.fee1a.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.fee1a.FieldName = "mInstructorFees";
     this.fee1a.Name      = "fee1a";
     this.fee1a.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.fee1a.Visible      = true;
     this.fee1a.VisibleIndex = 5;
     this.fee1a.Width        = 90;
     //
     // fee1b
     //
     this.fee1b.AppearanceHeader.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.fee1b.AppearanceHeader.Options.UseFont = true;
     this.fee1b.Caption   = "Fees";
     this.fee1b.FieldName = "mStandinInstructorFees";
     this.fee1b.Name      = "fee1b";
     this.fee1b.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.fee1b.Width = 90;
     //
     // Transfer1
     //
     this.Transfer1.Caption      = "Transfer To ";
     this.Transfer1.ColumnEdit   = this.lk_Employee;
     this.Transfer1.FieldName    = "nActualInstructorID";
     this.Transfer1.Name         = "Transfer1";
     this.Transfer1.Visible      = true;
     this.Transfer1.VisibleIndex = 6;
     this.Transfer1.Width        = 150;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_Employee.Name = "lk_Employee";
     //
     // Transfer2
     //
     this.Transfer2.Caption    = "Transfer To";
     this.Transfer2.ColumnEdit = this.lk_Employee;
     this.Transfer2.FieldName  = "nStandinInstructorID";
     this.Transfer2.Name       = "Transfer2";
     this.Transfer2.Width      = 150;
     //
     // ClassID1
     //
     this.ClassID1.Caption   = "Class Id";
     this.ClassID1.FieldName = "nClassInstanceID";
     this.ClassID1.Name      = "ClassID1";
     //
     // radioGroupType
     //
     this.radioGroupType.EditValue = "A";
     this.radioGroupType.Location  = new System.Drawing.Point(24, 8);
     this.radioGroupType.Name      = "radioGroupType";
     //
     // radioGroupType.Properties
     //
     this.radioGroupType.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.radioGroupType.Properties.Appearance.Font                 = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.radioGroupType.Properties.Appearance.Options.UseBackColor = true;
     this.radioGroupType.Properties.Appearance.Options.UseFont      = true;
     this.radioGroupType.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.radioGroupType.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("A", "Actual Fees"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("S", "Standing Fees")
     });
     this.radioGroupType.Size                  = new System.Drawing.Size(312, 32);
     this.radioGroupType.TabIndex              = 7;
     this.radioGroupType.SelectedIndexChanged += new System.EventHandler(this.radioGroupType_SelectedIndexChanged);
     //
     // btn_Save
     //
     this.btn_Save.ImageIndex = 0;
     this.btn_Save.Location   = new System.Drawing.Point(480, 16);
     this.btn_Save.Name       = "btn_Save";
     this.btn_Save.Size       = new System.Drawing.Size(112, 23);
     this.btn_Save.TabIndex   = 14;
     this.btn_Save.Text       = "Save Changes";
     this.btn_Save.Click     += new System.EventHandler(this.btn_Save_Click);
     //
     // btn_Cancel
     //
     this.btn_Cancel.Location = new System.Drawing.Point(528, 504);
     this.btn_Cancel.Name     = "btn_Cancel";
     this.btn_Cancel.Size     = new System.Drawing.Size(104, 23);
     this.btn_Cancel.TabIndex = 17;
     this.btn_Cancel.Text     = "Close";
     this.btn_Cancel.Click   += new System.EventHandler(this.btn_Cancel_Click);
     //
     // grid_ExtraFees
     //
     //
     // grid_ExtraFees.EmbeddedNavigator
     //
     this.grid_ExtraFees.EmbeddedNavigator.Name = "";
     this.grid_ExtraFees.Location = new System.Drawing.Point(16, 400);
     this.grid_ExtraFees.MainView = this.gridView_ExtraFees;
     this.grid_ExtraFees.Name     = "grid_ExtraFees";
     this.grid_ExtraFees.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.lk_Branch
     });
     this.grid_ExtraFees.Size     = new System.Drawing.Size(616, 96);
     this.grid_ExtraFees.TabIndex = 18;
     this.grid_ExtraFees.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView_ExtraFees
     });
     //
     // gridView_ExtraFees
     //
     this.gridView_ExtraFees.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.Branch,
         this.dtDate,
         this.strDescription,
         this.gridColumn10,
         this.gridColumn5,
         this.gridColumn6
     });
     this.gridView_ExtraFees.GridControl         = this.grid_ExtraFees;
     this.gridView_ExtraFees.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridView_ExtraFees.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
         new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CUSTOM", this.gridColumn10, "f2")
     });
     this.gridView_ExtraFees.Name = "gridView_ExtraFees";
     this.gridView_ExtraFees.OptionsCustomization.AllowFilter  = false;
     this.gridView_ExtraFees.OptionsNavigation.AutoFocusNewRow = true;
     this.gridView_ExtraFees.OptionsView.ColumnAutoWidth       = false;
     this.gridView_ExtraFees.OptionsView.ShowFooter            = true;
     this.gridView_ExtraFees.OptionsView.ShowGroupPanel        = false;
     this.gridView_ExtraFees.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.grid_ExtraFees_Changed);
     //
     // Branch
     //
     this.Branch.Caption    = "Branch";
     this.Branch.ColumnEdit = this.lk_Branch;
     this.Branch.FieldName  = "strBranchCode";
     this.Branch.Name       = "Branch";
     this.Branch.OptionsColumn.AllowEdit = false;
     this.Branch.Visible      = true;
     this.Branch.VisibleIndex = 0;
     this.Branch.Width        = 59;
     //
     // lk_Branch
     //
     this.lk_Branch.AutoHeight = false;
     this.lk_Branch.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_Branch.Name = "lk_Branch";
     //
     // dtDate
     //
     this.dtDate.Caption = "Date";
     this.dtDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtDate.FieldName = "dtDate";
     this.dtDate.Name      = "dtDate";
     this.dtDate.OptionsColumn.AllowEdit = false;
     this.dtDate.Visible      = true;
     this.dtDate.VisibleIndex = 1;
     //
     // strDescription
     //
     this.strDescription.Caption      = "Description";
     this.strDescription.FieldName    = "strDescription";
     this.strDescription.Name         = "strDescription";
     this.strDescription.Visible      = true;
     this.strDescription.VisibleIndex = 2;
     this.strDescription.Width        = 374;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.BackColor            = System.Drawing.SystemColors.Control;
     this.gridColumn10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn10.AppearanceHeader.BackColor          = System.Drawing.SystemColors.Control;
     this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gridColumn10.AppearanceHeader.Options.UseBackColor = true;
     this.gridColumn10.AppearanceHeader.Options.UseFont      = true;
     this.gridColumn10.Caption = "Fees";
     this.gridColumn10.DisplayFormat.FormatString = "f2";
     this.gridColumn10.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn10.FieldName = "mExtraFees";
     this.gridColumn10.Name      = "gridColumn10";
     this.gridColumn10.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gridColumn10.Visible      = true;
     this.gridColumn10.VisibleIndex = 3;
     this.gridColumn10.Width        = 90;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "EmployeeNo";
     this.gridColumn5.FieldName = "nEmployeeNo";
     this.gridColumn5.Name      = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption   = "PayRollId";
     this.gridColumn6.FieldName = "nPayRollId";
     this.gridColumn6.Name      = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Bottom_Del
     //
     this.btn_Bottom_Del.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Bottom_Del.Appearance.Options.UseFont        = true;
     this.btn_Bottom_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Bottom_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Bottom_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Bottom_Del.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Bottom_Del.ImageIndex = 1;
     this.btn_Bottom_Del.ImageList  = this.imageList1;
     this.btn_Bottom_Del.Location   = new System.Drawing.Point(56, 384);
     this.btn_Bottom_Del.Name       = "btn_Bottom_Del";
     this.btn_Bottom_Del.Size       = new System.Drawing.Size(38, 16);
     this.btn_Bottom_Del.TabIndex   = 124;
     this.btn_Bottom_Del.Click     += new System.EventHandler(this.btn_Bottom_Del_Click);
     //
     // btn_Bottom_Add
     //
     this.btn_Bottom_Add.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Bottom_Add.Appearance.Options.UseFont        = true;
     this.btn_Bottom_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Bottom_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Bottom_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Bottom_Add.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Bottom_Add.ImageIndex = 0;
     this.btn_Bottom_Add.ImageList  = this.imageList1;
     this.btn_Bottom_Add.Location   = new System.Drawing.Point(16, 384);
     this.btn_Bottom_Add.Name       = "btn_Bottom_Add";
     this.btn_Bottom_Add.Size       = new System.Drawing.Size(38, 16);
     this.btn_Bottom_Add.TabIndex   = 125;
     this.btn_Bottom_Add.Click     += new System.EventHandler(this.btn_Bottom_Add_Click);
     //
     // frmServiceReimbursement
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(650, 528);
     this.Controls.Add(this.btn_Bottom_Del);
     this.Controls.Add(this.btn_Bottom_Add);
     this.Controls.Add(this.grid_ExtraFees);
     this.Controls.Add(this.btn_Cancel);
     this.Controls.Add(this.btn_Save);
     this.Controls.Add(this.radioGroupType);
     this.Controls.Add(this.gcMon);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "frmServiceReimbursement";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Service Reimbursement";
     this.TopMost         = true;
     this.Load           += new System.EventHandler(this.frmServiceReimbursement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gcMon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroupType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid_ExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_ExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Branch)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SalesOpportunity));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbPersonal = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks = new System.Windows.Forms.TextBox();
     this.txtRelationShip = new DevExpress.XtraEditors.TextEdit();
     this.txtPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.txtChannelName = new DevExpress.XtraEditors.TextEdit();
     this.txtPotientialGP = new DevExpress.XtraEditors.TextEdit();
     this.txtPotientialAmount = new DevExpress.XtraEditors.TextEdit();
     this.cmbTimeType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtPredictedTime = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtPredictedDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.txtReason = new System.Windows.Forms.TextBox();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.rgOLW = new DevExpress.XtraEditors.RadioGroup();
     this.txtPurValue = new DevExpress.XtraEditors.TextEdit();
     this.txtTechnicalDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtBidValue = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txtSubmitDate = new System.Windows.Forms.MaskedTextBox();
     this.txtTenderNo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtDueDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.tbtbProducts = new DevExpress.XtraTab.XtraTabPage();
     this.grdProductDetail = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbDocumnts = new DevExpress.XtraTab.XtraTabPage();
     this.grdDocumentList = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbStages = new DevExpress.XtraTab.XtraTabPage();
     this.grdStages = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Attachments = new DevExpress.XtraTab.XtraTabPage();
     this.grdAttachment = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.grdCompetitor = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnPost = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtopportunityName = new DevExpress.XtraEditors.TextEdit();
     this.txtStartDate = new System.Windows.Forms.MaskedTextBox();
     this.btnSaleEmployeePickList = new DevExpress.XtraEditors.SimpleButton();
     this.txtSalePersonId = new DevExpress.XtraEditors.TextEdit();
     this.txtClosingPer = new DevExpress.XtraEditors.TextEdit();
     this.txtContactPersonName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.btnContactPersonPickList = new DevExpress.XtraEditors.SimpleButton();
     this.txtSaleEmployee = new DevExpress.XtraEditors.TextEdit();
     this.txtopenActivities = new DevExpress.XtraEditors.TextEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.txtEndDate = new System.Windows.Forms.MaskedTextBox();
     this.txtContactPersonId = new DevExpress.XtraEditors.TextEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerName = new DevExpress.XtraEditors.TextEdit();
     this.txtVenderName = new DevExpress.XtraEditors.TextEdit();
     this.txtStatus = new DevExpress.XtraEditors.TextEdit();
     this.txtVendorId = new System.Windows.Forms.TextBox();
     this.btnVendorPickList = new DevExpress.XtraEditors.SimpleButton();
     this.cmbBusinessType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnCustomerPiclist = new DevExpress.XtraEditors.SimpleButton();
     this.txtopportunityid = new System.Windows.Forms.TextBox();
     this.txtCustomerId = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.btnOpportunityId = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tbPersonal.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRelationShip.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChannelName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialGP.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTimeType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPredictedTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgOLW.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBidValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenderNo.Properties)).BeginInit();
     this.tbtbProducts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdProductDetail)).BeginInit();
     this.tbDocumnts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDocumentList)).BeginInit();
     this.tbStages.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdStages)).BeginInit();
     this.Attachments.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAttachment)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCompetitor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtopportunityName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalePersonId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClosingPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtopenActivities.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVenderName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBusinessType.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.xtraTabControl1.Location = new System.Drawing.Point(5, 121);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tbPersonal;
     this.xtraTabControl1.Size = new System.Drawing.Size(810, 287);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbPersonal,
     this.tbtbProducts,
     this.tbDocumnts,
     this.tbStages,
     this.Attachments,
     this.xtraTabPage2});
     //
     // tbPersonal
     //
     this.tbPersonal.Controls.Add(this.groupControl4);
     this.tbPersonal.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbPersonal.Name = "tbPersonal";
     this.tbPersonal.Size = new System.Drawing.Size(804, 255);
     this.tbPersonal.Text = "General";
     this.tbPersonal.Tooltip = "Personal Information of Customer";
     //
     // groupControl4
     //
     this.groupControl4.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl4.Appearance.Options.UseBackColor = true;
     this.groupControl4.Controls.Add(this.txtRemarks);
     this.groupControl4.Controls.Add(this.txtRelationShip);
     this.groupControl4.Controls.Add(this.txtPartnerName);
     this.groupControl4.Controls.Add(this.txtChannelName);
     this.groupControl4.Controls.Add(this.txtPotientialGP);
     this.groupControl4.Controls.Add(this.txtPotientialAmount);
     this.groupControl4.Controls.Add(this.cmbTimeType);
     this.groupControl4.Controls.Add(this.txtPredictedTime);
     this.groupControl4.Controls.Add(this.labelControl8);
     this.groupControl4.Controls.Add(this.labelControl12);
     this.groupControl4.Controls.Add(this.labelControl2);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Controls.Add(this.txtPredictedDate);
     this.groupControl4.Controls.Add(this.labelControl10);
     this.groupControl4.Controls.Add(this.labelControl22);
     this.groupControl4.Controls.Add(this.labelControl11);
     this.groupControl4.Controls.Add(this.labelControl18);
     this.groupControl4.Controls.Add(this.labelControl29);
     this.groupControl4.Controls.Add(this.txtReason);
     this.groupControl4.Controls.Add(this.labelControl28);
     this.groupControl4.Controls.Add(this.rgOLW);
     this.groupControl4.Controls.Add(this.txtPurValue);
     this.groupControl4.Controls.Add(this.txtTechnicalDate);
     this.groupControl4.Controls.Add(this.labelControl7);
     this.groupControl4.Controls.Add(this.txtBidValue);
     this.groupControl4.Controls.Add(this.labelControl5);
     this.groupControl4.Controls.Add(this.txtSubmitDate);
     this.groupControl4.Controls.Add(this.txtTenderNo);
     this.groupControl4.Controls.Add(this.labelControl3);
     this.groupControl4.Controls.Add(this.txtDueDate);
     this.groupControl4.Controls.Add(this.labelControl9);
     this.groupControl4.Controls.Add(this.labelControl25);
     this.groupControl4.Controls.Add(this.labelControl6);
     this.groupControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl4.Location = new System.Drawing.Point(0, 0);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(804, 255);
     this.groupControl4.TabIndex = 19;
     this.groupControl4.Text = "Tender Details";
     //
     // txtRemarks
     //
     this.txtRemarks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRemarks.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRemarks.Enabled = false;
     this.txtRemarks.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRemarks.Location = new System.Drawing.Point(542, 134);
     this.txtRemarks.MaxLength = 50;
     this.txtRemarks.Multiline = true;
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(246, 73);
     this.txtRemarks.TabIndex = 101;
     //
     // txtRelationShip
     //
     this.txtRelationShip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRelationShip.Location = new System.Drawing.Point(542, 113);
     this.txtRelationShip.Name = "txtRelationShip";
     this.txtRelationShip.Properties.MaxLength = 50;
     this.txtRelationShip.Size = new System.Drawing.Size(246, 20);
     this.txtRelationShip.TabIndex = 109;
     this.txtRelationShip.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRelationShip_PreviewKeyDown);
     //
     // txtPartnerName
     //
     this.txtPartnerName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPartnerName.Location = new System.Drawing.Point(542, 93);
     this.txtPartnerName.Name = "txtPartnerName";
     this.txtPartnerName.Properties.MaxLength = 50;
     this.txtPartnerName.Size = new System.Drawing.Size(246, 20);
     this.txtPartnerName.TabIndex = 108;
     this.txtPartnerName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPartnerName_PreviewKeyDown);
     //
     // txtChannelName
     //
     this.txtChannelName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtChannelName.Location = new System.Drawing.Point(542, 73);
     this.txtChannelName.Name = "txtChannelName";
     this.txtChannelName.Properties.MaxLength = 50;
     this.txtChannelName.Size = new System.Drawing.Size(246, 20);
     this.txtChannelName.TabIndex = 107;
     this.txtChannelName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtChannelName_PreviewKeyDown);
     //
     // txtPotientialGP
     //
     this.txtPotientialGP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPotientialGP.Location = new System.Drawing.Point(542, 53);
     this.txtPotientialGP.Name = "txtPotientialGP";
     this.txtPotientialGP.Properties.MaxLength = 15;
     this.txtPotientialGP.Size = new System.Drawing.Size(70, 20);
     this.txtPotientialGP.TabIndex = 106;
     this.txtPotientialGP.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPotientialGP_PreviewKeyDown);
     //
     // txtPotientialAmount
     //
     this.txtPotientialAmount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPotientialAmount.Location = new System.Drawing.Point(542, 33);
     this.txtPotientialAmount.Name = "txtPotientialAmount";
     this.txtPotientialAmount.Properties.MaxLength = 15;
     this.txtPotientialAmount.Size = new System.Drawing.Size(70, 20);
     this.txtPotientialAmount.TabIndex = 105;
     this.txtPotientialAmount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPotientialAmount_PreviewKeyDown);
     //
     // cmbTimeType
     //
     this.cmbTimeType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbTimeType.Location = new System.Drawing.Point(686, 13);
     this.cmbTimeType.Name = "cmbTimeType";
     this.cmbTimeType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbTimeType.Properties.Items.AddRange(new object[] {
     "Days",
     "Weeks",
     "Month"});
     this.cmbTimeType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbTimeType.Size = new System.Drawing.Size(102, 20);
     this.cmbTimeType.TabIndex = 103;
     this.cmbTimeType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbTimeType_PreviewKeyDown);
     //
     // txtPredictedTime
     //
     this.txtPredictedTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPredictedTime.Location = new System.Drawing.Point(542, 13);
     this.txtPredictedTime.Name = "txtPredictedTime";
     this.txtPredictedTime.Properties.MaxLength = 15;
     this.txtPredictedTime.Size = new System.Drawing.Size(70, 20);
     this.txtPredictedTime.TabIndex = 102;
     this.txtPredictedTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPredictedTime_PreviewKeyDown);
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(454, 113);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(108, 20);
     this.labelControl8.TabIndex = 100;
     this.labelControl8.Text = "Relationship";
     //
     // labelControl12
     //
     this.labelControl12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(454, 53);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(108, 20);
     this.labelControl12.TabIndex = 97;
     this.labelControl12.Text = "Potential GP";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(454, 92);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(108, 20);
     this.labelControl2.TabIndex = 99;
     this.labelControl2.Text = "Partner Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(454, 73);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(108, 20);
     this.labelControl1.TabIndex = 98;
     this.labelControl1.Text = "Channel Name";
     //
     // txtPredictedDate
     //
     this.txtPredictedDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPredictedDate.Location = new System.Drawing.Point(686, 33);
     this.txtPredictedDate.Mask = "00/00/0000";
     this.txtPredictedDate.Name = "txtPredictedDate";
     this.txtPredictedDate.Size = new System.Drawing.Size(102, 22);
     this.txtPredictedDate.TabIndex = 94;
     this.txtPredictedDate.ValidatingType = typeof(System.DateTime);
     this.txtPredictedDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPredictedDate_PreviewKeyDown);
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(613, 35);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(91, 20);
     this.labelControl10.TabIndex = 95;
     this.labelControl10.Text = "Predicted Date";
     //
     // labelControl22
     //
     this.labelControl22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.Location = new System.Drawing.Point(454, 131);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(108, 25);
     this.labelControl22.TabIndex = 92;
     this.labelControl22.Text = "Remarks";
     //
     // labelControl11
     //
     this.labelControl11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(454, 32);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(108, 22);
     this.labelControl11.TabIndex = 96;
     this.labelControl11.Text = "Potential Amount";
     //
     // labelControl18
     //
     this.labelControl18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(454, 13);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(108, 20);
     this.labelControl18.TabIndex = 93;
     this.labelControl18.Text = "Predicted Time";
     //
     // labelControl29
     //
     this.labelControl29.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(613, 14);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(75, 20);
     this.labelControl29.TabIndex = 104;
     this.labelControl29.Text = "Time Type";
     //
     // txtReason
     //
     this.txtReason.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtReason.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtReason.Location = new System.Drawing.Point(177, 102);
     this.txtReason.MaxLength = 50;
     this.txtReason.Multiline = true;
     this.txtReason.Name = "txtReason";
     this.txtReason.Size = new System.Drawing.Size(137, 73);
     this.txtReason.TabIndex = 69;
     this.txtReason.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReason_PreviewKeyDown);
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(179, 77);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(135, 20);
     this.labelControl28.TabIndex = 56;
     this.labelControl28.Text = "                Reason";
     //
     // rgOLW
     //
     this.rgOLW.Location = new System.Drawing.Point(93, 102);
     this.rgOLW.Name = "rgOLW";
     this.rgOLW.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Open"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Lost"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Won")});
     this.rgOLW.Size = new System.Drawing.Size(80, 73);
     this.rgOLW.TabIndex = 55;
     this.rgOLW.SelectedIndexChanged += new System.EventHandler(this.rgOLW_SelectedIndexChanged);
     this.rgOLW.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.rgOLW_PreviewKeyDown);
     //
     // txtPurValue
     //
     this.txtPurValue.Location = new System.Drawing.Point(235, 56);
     this.txtPurValue.Name = "txtPurValue";
     this.txtPurValue.Properties.MaxLength = 15;
     this.txtPurValue.Size = new System.Drawing.Size(79, 20);
     this.txtPurValue.TabIndex = 53;
     this.txtPurValue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurValue_PreviewKeyDown);
     //
     // txtTechnicalDate
     //
     this.txtTechnicalDate.Location = new System.Drawing.Point(94, 76);
     this.txtTechnicalDate.Mask = "00/00/0000";
     this.txtTechnicalDate.Name = "txtTechnicalDate";
     this.txtTechnicalDate.Size = new System.Drawing.Size(79, 22);
     this.txtTechnicalDate.TabIndex = 51;
     this.txtTechnicalDate.ValidatingType = typeof(System.DateTime);
     this.txtTechnicalDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTechnicalDate_PreviewKeyDown);
     //
     // labelControl7
     //
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(11, 78);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(93, 20);
     this.labelControl7.TabIndex = 52;
     this.labelControl7.Text = "Techinical Date";
     //
     // txtBidValue
     //
     this.txtBidValue.Location = new System.Drawing.Point(94, 56);
     this.txtBidValue.Name = "txtBidValue";
     this.txtBidValue.Properties.MaxLength = 15;
     this.txtBidValue.Size = new System.Drawing.Size(79, 20);
     this.txtBidValue.TabIndex = 47;
     this.txtBidValue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBidValue_PreviewKeyDown);
     //
     // labelControl5
     //
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(11, 56);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(93, 20);
     this.labelControl5.TabIndex = 48;
     this.labelControl5.Text = "Bid Value";
     //
     // txtSubmitDate
     //
     this.txtSubmitDate.Location = new System.Drawing.Point(235, 34);
     this.txtSubmitDate.Mask = "00/00/0000";
     this.txtSubmitDate.Name = "txtSubmitDate";
     this.txtSubmitDate.Size = new System.Drawing.Size(79, 22);
     this.txtSubmitDate.TabIndex = 45;
     this.txtSubmitDate.ValidatingType = typeof(System.DateTime);
     this.txtSubmitDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSubmitDate_PreviewKeyDown);
     //
     // txtTenderNo
     //
     this.txtTenderNo.Location = new System.Drawing.Point(94, 14);
     this.txtTenderNo.Name = "txtTenderNo";
     this.txtTenderNo.Properties.MaxLength = 50;
     this.txtTenderNo.Size = new System.Drawing.Size(220, 20);
     this.txtTenderNo.TabIndex = 37;
     this.txtTenderNo.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTenderNo_PreviewKeyDown);
     //
     // labelControl3
     //
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl3.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl3.LineVisible = true;
     this.labelControl3.Location = new System.Drawing.Point(11, 14);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(93, 20);
     this.labelControl3.TabIndex = 38;
     this.labelControl3.Text = "Tender No.";
     //
     // txtDueDate
     //
     this.txtDueDate.Location = new System.Drawing.Point(94, 34);
     this.txtDueDate.Mask = "00/00/0000";
     this.txtDueDate.Name = "txtDueDate";
     this.txtDueDate.Size = new System.Drawing.Size(79, 22);
     this.txtDueDate.TabIndex = 8;
     this.txtDueDate.ValidatingType = typeof(System.DateTime);
     this.txtDueDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtDueDate_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(11, 36);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(93, 20);
     this.labelControl9.TabIndex = 15;
     this.labelControl9.Text = "Due Date";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(175, 36);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(73, 20);
     this.labelControl25.TabIndex = 46;
     this.labelControl25.Text = "Submit Date";
     //
     // labelControl6
     //
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(175, 56);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(68, 20);
     this.labelControl6.TabIndex = 54;
     this.labelControl6.Text = "Pur Value";
     //
     // tbtbProducts
     //
     this.tbtbProducts.Controls.Add(this.grdProductDetail);
     this.tbtbProducts.Name = "tbtbProducts";
     this.tbtbProducts.Size = new System.Drawing.Size(804, 255);
     this.tbtbProducts.Text = "Products Details";
     this.tbtbProducts.Tooltip = "Contact Person";
     //
     // grdProductDetail
     //
     this.grdProductDetail.AllowAddNew = true;
     this.grdProductDetail.CaptionHeight = 17;
     this.grdProductDetail.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdProductDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdProductDetail.ExtendRightColumn = true;
     this.grdProductDetail.FetchRowStyles = true;
     this.grdProductDetail.Images.Add(((System.Drawing.Image)(resources.GetObject("grdProductDetail.Images"))));
     this.grdProductDetail.LinesPerRow = 1;
     this.grdProductDetail.Location = new System.Drawing.Point(0, 0);
     this.grdProductDetail.Name = "grdProductDetail";
     this.grdProductDetail.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdProductDetail.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdProductDetail.PreviewInfo.ZoomFactor = 75D;
     this.grdProductDetail.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdProductDetail.PrintInfo.PageSettings")));
     this.grdProductDetail.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductDetail.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdProductDetail.RowHeight = 15;
     this.grdProductDetail.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductDetail.Size = new System.Drawing.Size(804, 255);
     this.grdProductDetail.TabIndex = 3;
     this.grdProductDetail.Text = "c1TrueDBGrid1";
     this.grdProductDetail.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdProductDetail.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdProductDetail_AfterColUpdate);
     this.grdProductDetail.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdProductDetail_PreviewKeyDown);
     this.grdProductDetail.PropBag = resources.GetString("grdProductDetail.PropBag");
     //
     // tbDocumnts
     //
     this.tbDocumnts.Controls.Add(this.grdDocumentList);
     this.tbDocumnts.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.tbDocumnts.Name = "tbDocumnts";
     this.tbDocumnts.Size = new System.Drawing.Size(804, 255);
     this.tbDocumnts.Text = "Documents List";
     this.tbDocumnts.Tooltip = "Business Information of Customer";
     //
     // grdDocumentList
     //
     this.grdDocumentList.AllowAddNew = true;
     this.grdDocumentList.CaptionHeight = 17;
     this.grdDocumentList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdDocumentList.ExtendRightColumn = true;
     this.grdDocumentList.Images.Add(((System.Drawing.Image)(resources.GetObject("grdDocumentList.Images"))));
     this.grdDocumentList.Location = new System.Drawing.Point(0, 0);
     this.grdDocumentList.Name = "grdDocumentList";
     this.grdDocumentList.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdDocumentList.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdDocumentList.PreviewInfo.ZoomFactor = 75D;
     this.grdDocumentList.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdDocumentList.PrintInfo.PageSettings")));
     this.grdDocumentList.RecordSelectors = false;
     this.grdDocumentList.RowHeight = 15;
     this.grdDocumentList.Size = new System.Drawing.Size(804, 255);
     this.grdDocumentList.TabIndex = 0;
     this.grdDocumentList.Text = "c1TrueDBGrid2";
     this.grdDocumentList.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdDocumentList.PropBag = resources.GetString("grdDocumentList.PropBag");
     //
     // tbStages
     //
     this.tbStages.Controls.Add(this.grdStages);
     this.tbStages.Name = "tbStages";
     this.tbStages.Size = new System.Drawing.Size(804, 255);
     this.tbStages.Text = "Stages";
     this.tbStages.Tooltip = "Stages";
     //
     // grdStages
     //
     this.grdStages.AllowAddNew = true;
     this.grdStages.CaptionHeight = 17;
     this.grdStages.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdStages.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdStages.ExtendRightColumn = true;
     this.grdStages.Images.Add(((System.Drawing.Image)(resources.GetObject("grdStages.Images"))));
     this.grdStages.Location = new System.Drawing.Point(0, 0);
     this.grdStages.Name = "grdStages";
     this.grdStages.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdStages.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdStages.PreviewInfo.ZoomFactor = 75D;
     this.grdStages.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdStages.PrintInfo.PageSettings")));
     this.grdStages.RecordSelectors = false;
     this.grdStages.RowHeight = 15;
     this.grdStages.Size = new System.Drawing.Size(804, 255);
     this.grdStages.TabIndex = 0;
     this.grdStages.Text = "c1TrueDBGrid3";
     this.grdStages.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdStages.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdStages_AfterColUpdate);
     this.grdStages.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdStages_PreviewKeyDown);
     this.grdStages.PropBag = resources.GetString("grdStages.PropBag");
     //
     // Attachments
     //
     this.Attachments.Controls.Add(this.grdAttachment);
     this.Attachments.Name = "Attachments";
     this.Attachments.Size = new System.Drawing.Size(804, 255);
     this.Attachments.Text = "Attachment and Remarks";
     //
     // grdAttachment
     //
     this.grdAttachment.AllowAddNew = true;
     this.grdAttachment.CaptionHeight = 17;
     this.grdAttachment.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAttachment.ExtendRightColumn = true;
     this.grdAttachment.Images.Add(((System.Drawing.Image)(resources.GetObject("grdAttachment.Images"))));
     this.grdAttachment.Location = new System.Drawing.Point(0, 0);
     this.grdAttachment.Name = "grdAttachment";
     this.grdAttachment.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdAttachment.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdAttachment.PreviewInfo.ZoomFactor = 75D;
     this.grdAttachment.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdAttachment.PrintInfo.PageSettings")));
     this.grdAttachment.RowHeight = 15;
     this.grdAttachment.Size = new System.Drawing.Size(804, 255);
     this.grdAttachment.TabIndex = 0;
     this.grdAttachment.Text = "c1TrueDBGrid1";
     this.grdAttachment.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdAttachment.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdAttachment_ButtonClick);
     this.grdAttachment.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdAttachment_PreviewKeyDown);
     this.grdAttachment.PropBag = resources.GetString("grdAttachment.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.grdCompetitor);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(804, 255);
     this.xtraTabPage2.Text = "Competitor";
     //
     // grdCompetitor
     //
     this.grdCompetitor.AllowAddNew = true;
     this.grdCompetitor.CaptionHeight = 17;
     this.grdCompetitor.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdCompetitor.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCompetitor.ExtendRightColumn = true;
     this.grdCompetitor.Images.Add(((System.Drawing.Image)(resources.GetObject("grdCompetitor.Images"))));
     this.grdCompetitor.Location = new System.Drawing.Point(0, 0);
     this.grdCompetitor.Name = "grdCompetitor";
     this.grdCompetitor.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdCompetitor.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdCompetitor.PreviewInfo.ZoomFactor = 75D;
     this.grdCompetitor.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdCompetitor.PrintInfo.PageSettings")));
     this.grdCompetitor.RowHeight = 15;
     this.grdCompetitor.Size = new System.Drawing.Size(804, 255);
     this.grdCompetitor.TabIndex = 0;
     this.grdCompetitor.Text = "c1TrueDBGrid4";
     this.grdCompetitor.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdCompetitor.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdCompetitor_AfterColUpdate);
     this.grdCompetitor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdCompetitor_PreviewKeyDown);
     this.grdCompetitor.PropBag = resources.GetString("grdCompetitor.PropBag");
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnPost);
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Location = new System.Drawing.Point(0, 412);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(822, 49);
     this.groupControl2.TabIndex = 72;
     //
     // btnPost
     //
     this.btnPost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPost.Image = ((System.Drawing.Image)(resources.GetObject("btnPost.Image")));
     this.btnPost.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPost.Location = new System.Drawing.Point(74, 8);
     this.btnPost.Name = "btnPost";
     this.btnPost.Size = new System.Drawing.Size(67, 29);
     toolTipItem1.Text = "Remove Module";
     superToolTip1.Items.Add(toolTipItem1);
     this.btnPost.SuperTip = superToolTip1;
     this.btnPost.TabIndex = 20;
     this.btnPost.Text = "&Post";
     this.btnPost.Click += new System.EventHandler(this.btnPost_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(5, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(67, 29);
     toolTipItem2.Text = "Add New Module";
     superToolTip2.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip2;
     this.btnAdd.TabIndex = 15;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(143, 8);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(67, 29);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip3.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip3;
     this.btnCancel.TabIndex = 18;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // 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.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.txtopportunityName);
     this.groupControl1.Controls.Add(this.txtStartDate);
     this.groupControl1.Controls.Add(this.btnSaleEmployeePickList);
     this.groupControl1.Controls.Add(this.txtSalePersonId);
     this.groupControl1.Controls.Add(this.xtraTabControl1);
     this.groupControl1.Controls.Add(this.txtClosingPer);
     this.groupControl1.Controls.Add(this.txtContactPersonName);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.btnContactPersonPickList);
     this.groupControl1.Controls.Add(this.txtSaleEmployee);
     this.groupControl1.Controls.Add(this.txtopenActivities);
     this.groupControl1.Controls.Add(this.labelControl16);
     this.groupControl1.Controls.Add(this.txtEndDate);
     this.groupControl1.Controls.Add(this.txtContactPersonId);
     this.groupControl1.Controls.Add(this.labelControl15);
     this.groupControl1.Controls.Add(this.labelControl24);
     this.groupControl1.Controls.Add(this.txtCustomerName);
     this.groupControl1.Controls.Add(this.txtVenderName);
     this.groupControl1.Controls.Add(this.txtStatus);
     this.groupControl1.Controls.Add(this.txtVendorId);
     this.groupControl1.Controls.Add(this.btnVendorPickList);
     this.groupControl1.Controls.Add(this.cmbBusinessType);
     this.groupControl1.Controls.Add(this.btnCustomerPiclist);
     this.groupControl1.Controls.Add(this.txtopportunityid);
     this.groupControl1.Controls.Add(this.txtCustomerId);
     this.groupControl1.Controls.Add(this.labelControl13);
     this.groupControl1.Controls.Add(this.btnOpportunityId);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl20);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl21);
     this.groupControl1.Controls.Add(this.labelControl23);
     this.groupControl1.Location = new System.Drawing.Point(1, 1);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(820, 413);
     this.groupControl1.TabIndex = 56;
     this.groupControl1.Text = "Tender Details";
     //
     // txtopportunityName
     //
     this.txtopportunityName.Location = new System.Drawing.Point(178, 12);
     this.txtopportunityName.Name = "txtopportunityName";
     this.txtopportunityName.Properties.MaxLength = 50;
     this.txtopportunityName.Size = new System.Drawing.Size(185, 20);
     this.txtopportunityName.TabIndex = 111;
     this.txtopportunityName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtopportunityName_PreviewKeyDown);
     //
     // txtStartDate
     //
     this.txtStartDate.Location = new System.Drawing.Point(99, 53);
     this.txtStartDate.Mask = "00/00/0000";
     this.txtStartDate.Name = "txtStartDate";
     this.txtStartDate.Size = new System.Drawing.Size(88, 21);
     this.txtStartDate.TabIndex = 98;
     this.txtStartDate.TabStop = false;
     this.txtStartDate.ValidatingType = typeof(System.DateTime);
     this.txtStartDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtStartDate_PreviewKeyDown);
     //
     // btnSaleEmployeePickList
     //
     this.btnSaleEmployeePickList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSaleEmployeePickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnSaleEmployeePickList.Appearance.Options.UseFont = true;
     this.btnSaleEmployeePickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnSaleEmployeePickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSaleEmployeePickList.Location = new System.Drawing.Point(601, 91);
     this.btnSaleEmployeePickList.Name = "btnSaleEmployeePickList";
     this.btnSaleEmployeePickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnSaleEmployeePickList.Size = new System.Drawing.Size(23, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem1);
     this.btnSaleEmployeePickList.SuperTip = superToolTip4;
     this.btnSaleEmployeePickList.TabIndex = 110;
     this.btnSaleEmployeePickList.Click += new System.EventHandler(this.btnSaleEmployeePickList_Click);
     //
     // txtSalePersonId
     //
     this.txtSalePersonId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSalePersonId.Location = new System.Drawing.Point(546, 90);
     this.txtSalePersonId.Name = "txtSalePersonId";
     this.txtSalePersonId.Properties.MaxLength = 9;
     this.txtSalePersonId.Size = new System.Drawing.Size(54, 20);
     this.txtSalePersonId.TabIndex = 109;
     this.txtSalePersonId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSalePersonId_PreviewKeyDown);
     //
     // txtClosingPer
     //
     this.txtClosingPer.Location = new System.Drawing.Point(275, 73);
     this.txtClosingPer.Name = "txtClosingPer";
     this.txtClosingPer.Properties.MaxLength = 9;
     this.txtClosingPer.Size = new System.Drawing.Size(88, 20);
     this.txtClosingPer.TabIndex = 107;
     this.txtClosingPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClosingPer_PreviewKeyDown);
     //
     // txtContactPersonName
     //
     this.txtContactPersonName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtContactPersonName.Location = new System.Drawing.Point(626, 70);
     this.txtContactPersonName.Name = "txtContactPersonName";
     this.txtContactPersonName.Properties.MaxLength = 50;
     this.txtContactPersonName.Size = new System.Drawing.Size(184, 20);
     this.txtContactPersonName.TabIndex = 86;
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(189, 74);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(101, 20);
     this.labelControl27.TabIndex = 108;
     this.labelControl27.Text = "Closing %";
     //
     // btnContactPersonPickList
     //
     this.btnContactPersonPickList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnContactPersonPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnContactPersonPickList.Appearance.Options.UseFont = true;
     this.btnContactPersonPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnContactPersonPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnContactPersonPickList.Location = new System.Drawing.Point(601, 70);
     this.btnContactPersonPickList.Name = "btnContactPersonPickList";
     this.btnContactPersonPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnContactPersonPickList.Size = new System.Drawing.Size(23, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem2);
     this.btnContactPersonPickList.SuperTip = superToolTip5;
     this.btnContactPersonPickList.TabIndex = 85;
     this.btnContactPersonPickList.Click += new System.EventHandler(this.btnContactPersonPickList_Click);
     //
     // txtSaleEmployee
     //
     this.txtSaleEmployee.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleEmployee.Location = new System.Drawing.Point(626, 90);
     this.txtSaleEmployee.Name = "txtSaleEmployee";
     this.txtSaleEmployee.Properties.MaxLength = 50;
     this.txtSaleEmployee.Size = new System.Drawing.Size(184, 20);
     this.txtSaleEmployee.TabIndex = 84;
     //
     // txtopenActivities
     //
     this.txtopenActivities.Location = new System.Drawing.Point(99, 75);
     this.txtopenActivities.Name = "txtopenActivities";
     this.txtopenActivities.Properties.MaxLength = 50;
     this.txtopenActivities.Size = new System.Drawing.Size(88, 20);
     this.txtopenActivities.TabIndex = 105;
     this.txtopenActivities.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtopenActivities_PreviewKeyDown);
     //
     // labelControl16
     //
     this.labelControl16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(460, 91);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(101, 20);
     this.labelControl16.TabIndex = 83;
     this.labelControl16.Text = "Sale Employee";
     //
     // txtEndDate
     //
     this.txtEndDate.Location = new System.Drawing.Point(275, 52);
     this.txtEndDate.Mask = "00/00/0000";
     this.txtEndDate.Name = "txtEndDate";
     this.txtEndDate.Size = new System.Drawing.Size(88, 21);
     this.txtEndDate.TabIndex = 103;
     this.txtEndDate.TabStop = false;
     this.txtEndDate.ValidatingType = typeof(System.DateTime);
     this.txtEndDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtEndDate_PreviewKeyDown);
     //
     // txtContactPersonId
     //
     this.txtContactPersonId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtContactPersonId.Location = new System.Drawing.Point(546, 70);
     this.txtContactPersonId.Name = "txtContactPersonId";
     this.txtContactPersonId.Properties.MaxLength = 9;
     this.txtContactPersonId.Size = new System.Drawing.Size(54, 20);
     this.txtContactPersonId.TabIndex = 82;
     this.txtContactPersonId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtContactPersonId_PreviewKeyDown);
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(460, 71);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(101, 20);
     this.labelControl15.TabIndex = 81;
     this.labelControl15.Text = "Contact Person";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(189, 54);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(101, 20);
     this.labelControl24.TabIndex = 104;
     this.labelControl24.Text = "End Date";
     //
     // txtCustomerName
     //
     this.txtCustomerName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCustomerName.Location = new System.Drawing.Point(626, 50);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Properties.MaxLength = 50;
     this.txtCustomerName.Size = new System.Drawing.Size(184, 20);
     this.txtCustomerName.TabIndex = 80;
     //
     // txtVenderName
     //
     this.txtVenderName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtVenderName.Location = new System.Drawing.Point(626, 10);
     this.txtVenderName.Name = "txtVenderName";
     this.txtVenderName.Properties.MaxLength = 50;
     this.txtVenderName.Size = new System.Drawing.Size(184, 20);
     this.txtVenderName.TabIndex = 79;
     //
     // txtStatus
     //
     this.txtStatus.Location = new System.Drawing.Point(99, 32);
     this.txtStatus.Name = "txtStatus";
     this.txtStatus.Properties.MaxLength = 50;
     this.txtStatus.Size = new System.Drawing.Size(264, 20);
     this.txtStatus.TabIndex = 102;
     this.txtStatus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtStatus_PreviewKeyDown);
     //
     // txtVendorId
     //
     this.txtVendorId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtVendorId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtVendorId.Location = new System.Drawing.Point(546, 9);
     this.txtVendorId.MaxLength = 2;
     this.txtVendorId.Name = "txtVendorId";
     this.txtVendorId.Size = new System.Drawing.Size(54, 21);
     this.txtVendorId.TabIndex = 62;
     this.txtVendorId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtVendorId_PreviewKeyDown);
     //
     // btnVendorPickList
     //
     this.btnVendorPickList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnVendorPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnVendorPickList.Appearance.Options.UseFont = true;
     this.btnVendorPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnVendorPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnVendorPickList.Location = new System.Drawing.Point(601, 10);
     this.btnVendorPickList.Name = "btnVendorPickList";
     this.btnVendorPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnVendorPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip6.Items.Add(toolTipTitleItem3);
     this.btnVendorPickList.SuperTip = superToolTip6;
     this.btnVendorPickList.TabIndex = 61;
     this.btnVendorPickList.Click += new System.EventHandler(this.btnVendorPickList_Click);
     //
     // cmbBusinessType
     //
     this.cmbBusinessType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbBusinessType.Location = new System.Drawing.Point(546, 30);
     this.cmbBusinessType.Name = "cmbBusinessType";
     this.cmbBusinessType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBusinessType.Properties.Items.AddRange(new object[] {
     "Customers",
     "Leads",
     "Vendors"});
     this.cmbBusinessType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbBusinessType.Size = new System.Drawing.Size(264, 20);
     this.cmbBusinessType.TabIndex = 30;
     this.cmbBusinessType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbBusinessType_PreviewKeyDown);
     //
     // btnCustomerPiclist
     //
     this.btnCustomerPiclist.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCustomerPiclist.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnCustomerPiclist.Appearance.Options.UseFont = true;
     this.btnCustomerPiclist.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnCustomerPiclist.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCustomerPiclist.Location = new System.Drawing.Point(601, 50);
     this.btnCustomerPiclist.Name = "btnCustomerPiclist";
     this.btnCustomerPiclist.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnCustomerPiclist.Size = new System.Drawing.Size(23, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip7.Items.Add(toolTipTitleItem4);
     this.btnCustomerPiclist.SuperTip = superToolTip7;
     this.btnCustomerPiclist.TabIndex = 73;
     this.btnCustomerPiclist.Click += new System.EventHandler(this.btnCustomerPiclist_Click);
     //
     // txtopportunityid
     //
     this.txtopportunityid.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtopportunityid.Location = new System.Drawing.Point(99, 11);
     this.txtopportunityid.MaxLength = 2;
     this.txtopportunityid.Name = "txtopportunityid";
     this.txtopportunityid.Size = new System.Drawing.Size(54, 21);
     this.txtopportunityid.TabIndex = 97;
     this.txtopportunityid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtopportunityid_PreviewKeyDown);
     //
     // txtCustomerId
     //
     this.txtCustomerId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCustomerId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCustomerId.Location = new System.Drawing.Point(546, 50);
     this.txtCustomerId.MaxLength = 2;
     this.txtCustomerId.Name = "txtCustomerId";
     this.txtCustomerId.Size = new System.Drawing.Size(54, 21);
     this.txtCustomerId.TabIndex = 74;
     this.txtCustomerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCustomerId_PreviewKeyDown);
     //
     // labelControl13
     //
     this.labelControl13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(460, 10);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(101, 20);
     this.labelControl13.TabIndex = 77;
     this.labelControl13.Text = "Vendor Id";
     //
     // btnOpportunityId
     //
     this.btnOpportunityId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnOpportunityId.Appearance.Options.UseFont = true;
     this.btnOpportunityId.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnOpportunityId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnOpportunityId.Location = new System.Drawing.Point(153, 12);
     this.btnOpportunityId.Name = "btnOpportunityId";
     this.btnOpportunityId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnOpportunityId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip8.Items.Add(toolTipTitleItem5);
     this.btnOpportunityId.SuperTip = superToolTip8;
     this.btnOpportunityId.TabIndex = 96;
     this.btnOpportunityId.Click += new System.EventHandler(this.btnOpportunityId_Click);
     //
     // labelControl4
     //
     this.labelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(460, 31);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(101, 20);
     this.labelControl4.TabIndex = 36;
     this.labelControl4.Text = "Business Type";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(460, 52);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(101, 20);
     this.labelControl14.TabIndex = 78;
     this.labelControl14.Text = "Customer Id";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(13, 12);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(101, 20);
     this.labelControl20.TabIndex = 99;
     this.labelControl20.Text = "Apportunity Id";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(13, 73);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(101, 20);
     this.labelControl26.TabIndex = 106;
     this.labelControl26.Text = "Open Activities";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(13, 33);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(101, 20);
     this.labelControl21.TabIndex = 95;
     this.labelControl21.Text = "Status";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(13, 54);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(101, 20);
     this.labelControl23.TabIndex = 100;
     this.labelControl23.Text = "Start Date";
     //
     // SalesOpportunity
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(822, 461);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Name = "SalesOpportunity";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "SalesOpportunity";
     this.Load += new System.EventHandler(this.SalesOpportunity_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tbPersonal.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRelationShip.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChannelName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialGP.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTimeType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPredictedTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgOLW.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBidValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenderNo.Properties)).EndInit();
     this.tbtbProducts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdProductDetail)).EndInit();
     this.tbDocumnts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdDocumentList)).EndInit();
     this.tbStages.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdStages)).EndInit();
     this.Attachments.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdAttachment)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCompetitor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtopportunityName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalePersonId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClosingPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtopenActivities.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVenderName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBusinessType.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 44
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Logon));
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.tbPass          = new System.Windows.Forms.TextBox();
     this.cmbzhanhao      = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label1          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.chkRemember     = new DevExpress.XtraEditors.CheckEdit();
     this.btExit          = new DevExpress.XtraEditors.SimpleButton();
     this.btLogin         = new DevExpress.XtraEditors.SimpleButton();
     this.lblTitle        = new System.Windows.Forms.Label();
     this.linkHelp        = new System.Windows.Forms.LinkLabel();
     this.lblCalendar     = new System.Windows.Forms.Label();
     this.lnkSecurity     = new System.Windows.Forms.LinkLabel();
     this.lnkRegister     = new DevExpress.XtraEditors.LabelControl();
     this.lblNetType      = new System.Windows.Forms.Label();
     this.radNetType      = new DevExpress.XtraEditors.RadioGroup();
     this.chkLocalVersion = new DevExpress.XtraEditors.CheckEdit();
     this.lblSetting      = new DevExpress.XtraEditors.LabelControl();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbzhanhao.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkRemember.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radNetType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkLocalVersion.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.tbPass);
     this.groupBox1.Controls.Add(this.cmbzhanhao);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.chkRemember);
     this.groupBox1.Location = new System.Drawing.Point(72, 86);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(352, 122);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "登录信息";
     //
     // tbPass
     //
     this.tbPass.Location     = new System.Drawing.Point(106, 74);
     this.tbPass.Name         = "tbPass";
     this.tbPass.PasswordChar = '*';
     this.tbPass.Size         = new System.Drawing.Size(184, 22);
     this.tbPass.TabIndex     = 1;
     this.tbPass.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.tbPass_KeyDown);
     //
     // cmbzhanhao
     //
     this.cmbzhanhao.Location = new System.Drawing.Point(106, 31);
     this.cmbzhanhao.Name     = "cmbzhanhao";
     this.cmbzhanhao.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbzhanhao.Size     = new System.Drawing.Size(184, 20);
     this.cmbzhanhao.TabIndex = 0;
     this.cmbzhanhao.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cmbzhanhao_KeyDown);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(42, 31);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 24);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "登录账号";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(42, 74);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(56, 24);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "登录密码";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chkRemember
     //
     this.chkRemember.EditValue = null;
     this.chkRemember.Location  = new System.Drawing.Point(292, 78);
     this.chkRemember.Name      = "chkRemember";
     this.chkRemember.Properties.Appearance.ForeColor            = System.Drawing.Color.Black;
     this.chkRemember.Properties.Appearance.Options.UseForeColor = true;
     this.chkRemember.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.chkRemember.Properties.Caption     = "记住";
     this.chkRemember.Size            = new System.Drawing.Size(50, 19);
     this.chkRemember.TabIndex        = 9;
     this.chkRemember.CheckedChanged += new System.EventHandler(this.chkLocalVersion_CheckedChanged);
     //
     // btExit
     //
     this.btExit.Location = new System.Drawing.Point(349, 268);
     this.btExit.Name     = "btExit";
     this.btExit.Size     = new System.Drawing.Size(75, 25);
     this.btExit.TabIndex = 1;
     this.btExit.Text     = "退出";
     this.btExit.Click   += new System.EventHandler(this.btExit_Click);
     //
     // btLogin
     //
     this.btLogin.Location = new System.Drawing.Point(248, 268);
     this.btLogin.Name     = "btLogin";
     this.btLogin.Size     = new System.Drawing.Size(75, 25);
     this.btLogin.TabIndex = 0;
     this.btLogin.Text     = "登录";
     this.btLogin.Click   += new System.EventHandler(this.btLogin_Click);
     //
     // lblTitle
     //
     this.lblTitle.BackColor = System.Drawing.Color.Transparent;
     this.lblTitle.Font      = new System.Drawing.Font("华文行楷", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblTitle.ForeColor = System.Drawing.Color.DodgerBlue;
     this.lblTitle.Location  = new System.Drawing.Point(32, 17);
     this.lblTitle.Name      = "lblTitle";
     this.lblTitle.Size      = new System.Drawing.Size(370, 25);
     this.lblTitle.TabIndex  = 3;
     this.lblTitle.Text      = "仓库管理系统登录界面";
     this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // linkHelp
     //
     this.linkHelp.BackColor    = System.Drawing.Color.Transparent;
     this.linkHelp.Location     = new System.Drawing.Point(440, 34);
     this.linkHelp.Name         = "linkHelp";
     this.linkHelp.Size         = new System.Drawing.Size(56, 25);
     this.linkHelp.TabIndex     = 2;
     this.linkHelp.TabStop      = true;
     this.linkHelp.Text         = "寻求帮助";
     this.linkHelp.TextAlign    = System.Drawing.ContentAlignment.MiddleCenter;
     this.linkHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkHelp_LinkClicked);
     //
     // lblCalendar
     //
     this.lblCalendar.BackColor = System.Drawing.Color.Transparent;
     this.lblCalendar.Location  = new System.Drawing.Point(88, 322);
     this.lblCalendar.Name      = "lblCalendar";
     this.lblCalendar.Size      = new System.Drawing.Size(300, 25);
     this.lblCalendar.TabIndex  = 6;
     this.lblCalendar.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // lnkSecurity
     //
     this.lnkSecurity.AutoSize     = true;
     this.lnkSecurity.BackColor    = System.Drawing.Color.Transparent;
     this.lnkSecurity.Location     = new System.Drawing.Point(395, 324);
     this.lnkSecurity.Name         = "lnkSecurity";
     this.lnkSecurity.Size         = new System.Drawing.Size(102, 14);
     this.lnkSecurity.TabIndex     = 7;
     this.lnkSecurity.TabStop      = true;
     this.lnkSecurity.Text         = "权限管理系统(F2)";
     this.lnkSecurity.Visible      = false;
     this.lnkSecurity.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSecurity_LinkClicked);
     //
     // lnkRegister
     //
     this.lnkRegister.Appearance.Font      = new System.Drawing.Font("新宋体", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lnkRegister.Appearance.ForeColor = System.Drawing.Color.Red;
     this.lnkRegister.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.lnkRegister.Location = new System.Drawing.Point(195, 61);
     this.lnkRegister.Name     = "lnkRegister";
     this.lnkRegister.Size     = new System.Drawing.Size(84, 19);
     this.lnkRegister.TabIndex = 8;
     this.lnkRegister.Text     = "软件注册";
     this.lnkRegister.Visible  = false;
     this.lnkRegister.Click   += new System.EventHandler(this.lnkRegister_Click);
     //
     // lblNetType
     //
     this.lblNetType.BackColor = System.Drawing.Color.Transparent;
     this.lblNetType.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.lblNetType.Location  = new System.Drawing.Point(69, 221);
     this.lblNetType.Name      = "lblNetType";
     this.lblNetType.Size      = new System.Drawing.Size(64, 24);
     this.lblNetType.TabIndex  = 0;
     this.lblNetType.Text      = "网络方式";
     this.lblNetType.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // radNetType
     //
     this.radNetType.EditValue = "内网";
     this.radNetType.Location  = new System.Drawing.Point(139, 223);
     this.radNetType.Name      = "radNetType";
     this.radNetType.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.radNetType.Properties.Appearance.Options.UseBackColor = true;
     this.radNetType.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("内网", "内网"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("外网", "外网")
     });
     this.radNetType.Size                  = new System.Drawing.Size(186, 23);
     this.radNetType.TabIndex              = 0;
     this.radNetType.SelectedIndexChanged += new System.EventHandler(this.radNetType_SelectedIndexChanged);
     this.radNetType.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.cmbzhanhao_KeyDown);
     //
     // chkLocalVersion
     //
     this.chkLocalVersion.EditValue = null;
     this.chkLocalVersion.Location  = new System.Drawing.Point(331, 227);
     this.chkLocalVersion.Name      = "chkLocalVersion";
     this.chkLocalVersion.Properties.Appearance.Font                 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.chkLocalVersion.Properties.Appearance.ForeColor            = System.Drawing.Color.Red;
     this.chkLocalVersion.Properties.Appearance.Options.UseFont      = true;
     this.chkLocalVersion.Properties.Appearance.Options.UseForeColor = true;
     this.chkLocalVersion.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.chkLocalVersion.Properties.Caption     = "单机版模式";
     this.chkLocalVersion.Size            = new System.Drawing.Size(93, 19);
     this.chkLocalVersion.TabIndex        = 9;
     this.chkLocalVersion.ToolTip         = "使用此模式,将使用本地数据库资源。";
     this.chkLocalVersion.CheckedChanged += new System.EventHandler(this.chkLocalVersion_CheckedChanged);
     //
     // lblSetting
     //
     this.lblSetting.Appearance.Font       = new System.Drawing.Font("宋体", 9F);
     this.lblSetting.Appearance.ForeColor  = System.Drawing.Color.Black;
     this.lblSetting.Appearance.Image      = ((System.Drawing.Image)(resources.GetObject("lblSetting.Appearance.Image")));
     this.lblSetting.Appearance.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
     this.lblSetting.Cursor           = System.Windows.Forms.Cursors.Hand;
     this.lblSetting.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftTop;
     this.lblSetting.Location         = new System.Drawing.Point(12, 321);
     this.lblSetting.Name             = "lblSetting";
     this.lblSetting.Size             = new System.Drawing.Size(69, 20);
     this.lblSetting.TabIndex         = 10;
     this.lblSetting.Text             = "参数设置";
     this.lblSetting.Click           += new System.EventHandler(this.lblSetting_Click);
     //
     // Logon
     //
     this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Tile;
     this.BackgroundImageStore       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImageStore")));
     this.ClientSize = new System.Drawing.Size(500, 350);
     this.Controls.Add(this.lblSetting);
     this.Controls.Add(this.lnkRegister);
     this.Controls.Add(this.lnkSecurity);
     this.Controls.Add(this.lblNetType);
     this.Controls.Add(this.lblCalendar);
     this.Controls.Add(this.linkHelp);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.btLogin);
     this.Controls.Add(this.btExit);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.radNetType);
     this.Controls.Add(this.chkLocalVersion);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "Logon";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "仓库管理系统登录界面";
     this.Load         += new System.EventHandler(this.Logon_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.Logon_KeyDown);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbzhanhao.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkRemember.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radNetType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkLocalVersion.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_linea));
     this.gridlinea = new System.Windows.Forms.DataGridView();
     this.glineaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glineaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gestructuraid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctaalmacen = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctaconsumo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctavarexist = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctacargaimput = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.moduloid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.nostock = new DevExpress.XtraEditors.RadioGroup();
     this.estructuraid = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.lineaid = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.lineaname = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.fechadoc = new System.Windows.Forms.DateTimePicker();
     this.label16 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = 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.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_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btn_busqueda = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.txt_criterio = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.gridlinea)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nostock.Properties)).BeginInit();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridlinea
     //
     this.gridlinea.AllowUserToAddRows = false;
     this.gridlinea.AllowUserToDeleteRows = false;
     this.gridlinea.AllowUserToResizeColumns = false;
     this.gridlinea.AllowUserToResizeRows = false;
     this.gridlinea.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.gridlinea.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridlinea.ColumnHeadersHeight = 20;
     this.gridlinea.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.glineaid,
     this.glineaname,
     this.gestructuraid,
     this.usuar,
     this.feact,
     this.fecre,
     this.ctaalmacen,
     this.ctaconsumo,
     this.ctavarexist,
     this.ctacargaimput,
     this.moduloid,
     this._nostock});
     this.gridlinea.Location = new System.Drawing.Point(4, 238);
     this.gridlinea.MultiSelect = false;
     this.gridlinea.Name = "gridlinea";
     this.gridlinea.RowHeadersVisible = false;
     this.gridlinea.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridlinea.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.gridlinea.RowTemplate.Height = 20;
     this.gridlinea.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridlinea.Size = new System.Drawing.Size(422, 295);
     this.gridlinea.TabIndex = 19;
     this.gridlinea.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridlinea_CellClick);
     this.gridlinea.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridlinea_CellEnter);
     this.gridlinea.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridlinea_CellLeave);
     this.gridlinea.KeyUp += new System.Windows.Forms.KeyEventHandler(this.gridlinea_KeyUp);
     //
     // glineaid
     //
     this.glineaid.DataPropertyName = "lineaid";
     this.glineaid.HeaderText = "Código";
     this.glineaid.Name = "glineaid";
     this.glineaid.Width = 50;
     //
     // glineaname
     //
     this.glineaname.DataPropertyName = "lineaname";
     this.glineaname.HeaderText = "Línea";
     this.glineaname.Name = "glineaname";
     this.glineaname.Width = 300;
     //
     // gestructuraid
     //
     this.gestructuraid.DataPropertyName = "estructuraid";
     this.gestructuraid.HeaderText = "estructura";
     this.gestructuraid.Name = "gestructuraid";
     this.gestructuraid.Visible = false;
     this.gestructuraid.Width = 70;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // ctaalmacen
     //
     this.ctaalmacen.DataPropertyName = "ctaalmacen";
     this.ctaalmacen.HeaderText = "ctaalmacen";
     this.ctaalmacen.Name = "ctaalmacen";
     this.ctaalmacen.Visible = false;
     //
     // ctaconsumo
     //
     this.ctaconsumo.DataPropertyName = "ctaconsumo";
     this.ctaconsumo.HeaderText = "ctaconsumo";
     this.ctaconsumo.Name = "ctaconsumo";
     this.ctaconsumo.Visible = false;
     //
     // ctavarexist
     //
     this.ctavarexist.DataPropertyName = "ctavarexist";
     this.ctavarexist.HeaderText = "ctavarexist";
     this.ctavarexist.Name = "ctavarexist";
     this.ctavarexist.Visible = false;
     //
     // ctacargaimput
     //
     this.ctacargaimput.DataPropertyName = "ctacargaimput";
     this.ctacargaimput.HeaderText = "ctacargaimput";
     this.ctacargaimput.Name = "ctacargaimput";
     this.ctacargaimput.Visible = false;
     //
     // moduloid
     //
     this.moduloid.DataPropertyName = "moduloid";
     this.moduloid.HeaderText = "Modulo";
     this.moduloid.Name = "moduloid";
     this.moduloid.Visible = false;
     //
     // _nostock
     //
     this._nostock.DataPropertyName = "nostock";
     this._nostock.HeaderText = "NoStock";
     this._nostock.Name = "_nostock";
     this._nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._nostock.Width = 50;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.nostock);
     this.groupBox1.Controls.Add(this.estructuraid);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.lineaid);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.lineaname);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(4, 69);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(422, 114);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // nostock
     //
     this.nostock.EditValue = true;
     this.nostock.Location = new System.Drawing.Point(91, 84);
     this.nostock.Name = "nostock";
     this.nostock.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "Controla Stock"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "No Controla Stock")});
     this.nostock.Size = new System.Drawing.Size(243, 24);
     this.nostock.TabIndex = 15;
     //
     // estructuraid
     //
     this.estructuraid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.estructuraid.FormattingEnabled = true;
     this.estructuraid.Location = new System.Drawing.Point(91, 60);
     this.estructuraid.Name = "estructuraid";
     this.estructuraid.Size = new System.Drawing.Size(225, 21);
     this.estructuraid.TabIndex = 14;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(8, 63);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(69, 13);
     this.label3.TabIndex = 13;
     this.label3.Text = "Estructura:";
     //
     // lineaid
     //
     this.lineaid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lineaid.Location = new System.Drawing.Point(91, 16);
     this.lineaid.MaxLength = 3;
     this.lineaid.Name = "lineaid";
     this.lineaid.Size = new System.Drawing.Size(48, 20);
     this.lineaid.TabIndex = 11;
     this.lineaid.Text = "ventas al exterior";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(44, 13);
     this.label1.TabIndex = 10;
     this.label1.Text = "Línea:";
     //
     // lineaname
     //
     this.lineaname.Location = new System.Drawing.Point(91, 37);
     this.lineaname.Name = "lineaname";
     this.lineaname.Size = new System.Drawing.Size(225, 21);
     this.lineaname.TabIndex = 12;
     this.lineaname.Text = "ventas al exterior";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 19);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(50, 13);
     this.label2.TabIndex = 9;
     this.label2.Text = "Código:";
     //
     // fechadoc
     //
     this.fechadoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechadoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechadoc.Location = new System.Drawing.Point(339, 5);
     this.fechadoc.Name = "fechadoc";
     this.fechadoc.Size = new System.Drawing.Size(80, 20);
     this.fechadoc.TabIndex = 4;
     this.fechadoc.Value = new System.DateTime(2012, 12, 19, 0, 0, 0, 0);
     //
     // 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(291, 11);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 3;
     this.label16.Text = "Fecha";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.fechadoc);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(426, 34);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(163, 5);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(82, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "LINEAS";
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(430, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.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_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // 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 = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     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 = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // 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_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 = "toolStripButton1";
     this.btn_clave.ToolTipText = "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 = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_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);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btn_busqueda);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.txt_criterio);
     this.groupBox2.Location = new System.Drawing.Point(4, 185);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(420, 49);
     this.groupBox2.TabIndex = 21;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Buscar";
     //
     // btn_busqueda
     //
     this.btn_busqueda.BackColor = System.Drawing.Color.Transparent;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_busqueda.Image = global::BapFormulariosNet.Properties.Resources.go_search3;
     this.btn_busqueda.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_busqueda.Location = new System.Drawing.Point(324, 12);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(79, 33);
     this.btn_busqueda.TabIndex = 18;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_busqueda.UseVisualStyleBackColor = false;
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // 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.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(8, 22);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Descripción:";
     //
     // txt_criterio
     //
     this.txt_criterio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_criterio.Location = new System.Drawing.Point(75, 19);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(242, 21);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.TextChanged += new System.EventHandler(this.txt_criterio_TextChanged);
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // Frm_linea
     //
     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(430, 534);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.gridlinea);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_linea";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Lineas";
     this.Load += new System.EventHandler(this.Frm_linea_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_linea_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.gridlinea)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nostock.Properties)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridSpaProduct              = new DevExpress.XtraGrid.GridControl();
     this.gvSpaProduct                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvSpaProductRank            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee                 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn7                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvSpaProductSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvSpaProductTotalSales      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView5    = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label5       = new System.Windows.Forms.Label();
     this.RGSpaProduct = new DevExpress.XtraEditors.RadioGroup();
     this.label79      = new System.Windows.Forms.Label();
     this.label80      = new System.Windows.Forms.Label();
     this.Month        = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year         = new DevExpress.XtraEditors.ComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSpaProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGSpaProduct.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridSpaProduct
     //
     this.gridSpaProduct.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridSpaProduct.EmbeddedNavigator
     //
     this.gridSpaProduct.EmbeddedNavigator.Name = "";
     this.gridSpaProduct.Location = new System.Drawing.Point(0, 88);
     this.gridSpaProduct.MainView = this.gvSpaProduct;
     this.gridSpaProduct.Name     = "gridSpaProduct";
     this.gridSpaProduct.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.lk_Employee
     });
     this.gridSpaProduct.Size     = new System.Drawing.Size(960, 392);
     this.gridSpaProduct.TabIndex = 13;
     this.gridSpaProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvSpaProduct,
         this.gridView5
     });
     //
     // gvSpaProduct
     //
     this.gvSpaProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gvSpaProductRank,
         this.gridColumn6,
         this.gridColumn7,
         this.gvSpaProductSalesPercentage,
         this.gvSpaProductTotalSales
     });
     this.gvSpaProduct.GridControl = this.gridSpaProduct;
     this.gvSpaProduct.Name        = "gvSpaProduct";
     this.gvSpaProduct.OptionsBehavior.Editable         = false;
     this.gvSpaProduct.OptionsCustomization.AllowFilter = false;
     this.gvSpaProduct.OptionsCustomization.AllowSort   = false;
     this.gvSpaProduct.OptionsView.ShowGroupPanel       = false;
     this.gvSpaProduct.CustomUnboundColumnData         += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvSpaProduct_CustomUnboundColumnData);
     //
     // gvSpaProductRank
     //
     this.gvSpaProductRank.Caption   = "Rank";
     this.gvSpaProductRank.FieldName = "gridColumn1";
     this.gvSpaProductRank.Name      = "gvSpaProductRank";
     this.gvSpaProductRank.SummaryItem.DisplayFormat = "{0}";
     this.gvSpaProductRank.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
     this.gvSpaProductRank.UnboundType  = DevExpress.Data.UnboundColumnType.Integer;
     this.gvSpaProductRank.Visible      = true;
     this.gvSpaProductRank.VisibleIndex = 0;
     this.gvSpaProductRank.Width        = 50;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "Employee Name";
     this.gridColumn6.ColumnEdit   = this.lk_Employee;
     this.gridColumn6.FieldName    = "nSalesPersonID";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 1;
     this.gridColumn6.Width        = 54;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "Branch Code";
     this.gridColumn7.FieldName    = "strBranchCode";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 4;
     this.gridColumn7.Width        = 72;
     //
     // gvSpaProductSalesPercentage
     //
     this.gvSpaProductSalesPercentage.Caption      = "Sales Percentage";
     this.gvSpaProductSalesPercentage.FieldName    = "SalesPercentage";
     this.gvSpaProductSalesPercentage.Name         = "gvSpaProductSalesPercentage";
     this.gvSpaProductSalesPercentage.Visible      = true;
     this.gvSpaProductSalesPercentage.VisibleIndex = 2;
     this.gvSpaProductSalesPercentage.Width        = 54;
     //
     // gvSpaProductTotalSales
     //
     this.gvSpaProductTotalSales.Caption      = "Total Sales";
     this.gvSpaProductTotalSales.FieldName    = "TotalSales";
     this.gvSpaProductTotalSales.Name         = "gvSpaProductTotalSales";
     this.gvSpaProductTotalSales.Visible      = true;
     this.gvSpaProductTotalSales.VisibleIndex = 3;
     this.gvSpaProductTotalSales.Width        = 54;
     //
     // gridView5
     //
     this.gridView5.GridControl = this.gridSpaProduct;
     this.gridView5.Name        = "gridView5";
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Gray;
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location  = new System.Drawing.Point(0, 40);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(960, 24);
     this.label5.TabIndex  = 15;
     this.label5.Text      = "Ranking of Spa Product Sales";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGSpaProduct
     //
     this.RGSpaProduct.EditValue = 0;
     this.RGSpaProduct.Location  = new System.Drawing.Point(0, 64);
     this.RGSpaProduct.Name      = "RGSpaProduct";
     //
     // RGSpaProduct.Properties
     //
     this.RGSpaProduct.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.RGSpaProduct.Properties.Appearance.Font                 = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.RGSpaProduct.Properties.Appearance.Options.UseBackColor = true;
     this.RGSpaProduct.Properties.Appearance.Options.UseFont      = true;
     this.RGSpaProduct.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGSpaProduct.Properties.Columns     = 2;
     this.RGSpaProduct.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Spa Product Sales By %"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Spa Product Sales")
     });
     this.RGSpaProduct.Size                  = new System.Drawing.Size(440, 24);
     this.RGSpaProduct.TabIndex              = 14;
     this.RGSpaProduct.Click                += new System.EventHandler(this.RGSpaProduct_Click);
     this.RGSpaProduct.SelectedIndexChanged += new System.EventHandler(this.RGSpaProduct_SelectedIndexChanged);
     //
     // label79
     //
     this.label79.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name     = "label79";
     this.label79.Size     = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 39;
     this.label79.Text     = "Year";
     //
     // label80
     //
     this.label80.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name     = "label80";
     this.label80.Size     = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 38;
     this.label80.Text     = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location  = new System.Drawing.Point(64, 8);
     this.Month.Name      = "Month";
     //
     // Month.Properties
     //
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.Month.Properties.Items.AddRange(new object[] {
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12"
     });
     this.Month.Size                  = new System.Drawing.Size(72, 20);
     this.Month.TabIndex              = 37;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location  = new System.Drawing.Point(192, 8);
     this.Year.Name      = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.Year.Size                  = new System.Drawing.Size(96, 20);
     this.Year.TabIndex              = 36;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // frmSRSPAProduct
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.gridSpaProduct);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.RGSpaProduct);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmSRSPAProduct";
     this.Text            = "frmSRSPAProduct";
     this.Load           += new System.EventHandler(this.frmSRSPAProduct_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSpaProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGSpaProduct.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label79                     = new System.Windows.Forms.Label();
     this.label80                     = new System.Windows.Forms.Label();
     this.Month                       = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year                        = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridIPLService              = new DevExpress.XtraGrid.GridControl();
     this.gvIPLService                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvIPLServiceRank            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee                 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn9                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvIPLServiceSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvIPLServiceTotalSales      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView6                   = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label7                      = new System.Windows.Forms.Label();
     this.RGIPLService                = new DevExpress.XtraEditors.RadioGroup();
     this.button1                     = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridIPLService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvIPLService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGIPLService.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label79
     //
     this.label79.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name     = "label79";
     this.label79.Size     = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 31;
     this.label79.Text     = "Year";
     //
     // label80
     //
     this.label80.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name     = "label80";
     this.label80.Size     = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 30;
     this.label80.Text     = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location  = new System.Drawing.Point(64, 8);
     this.Month.Name      = "Month";
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.Month.Properties.Items.AddRange(new object[] {
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12"
     });
     this.Month.Size                  = new System.Drawing.Size(72, 20);
     this.Month.TabIndex              = 29;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location  = new System.Drawing.Point(192, 8);
     this.Year.Name      = "Year";
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.Year.Size                  = new System.Drawing.Size(96, 20);
     this.Year.TabIndex              = 28;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // gridIPLService
     //
     this.gridIPLService.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.gridIPLService.Location = new System.Drawing.Point(0, 96);
     this.gridIPLService.MainView = this.gvIPLService;
     this.gridIPLService.Name     = "gridIPLService";
     this.gridIPLService.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.lk_Employee
     });
     this.gridIPLService.Size     = new System.Drawing.Size(960, 384);
     this.gridIPLService.TabIndex = 32;
     this.gridIPLService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvIPLService,
         this.gridView6
     });
     //
     // gvIPLService
     //
     this.gvIPLService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gvIPLServiceRank,
         this.gridColumn8,
         this.gridColumn9,
         this.gvIPLServiceSalesPercentage,
         this.gvIPLServiceTotalSales
     });
     this.gvIPLService.GridControl = this.gridIPLService;
     this.gvIPLService.Name        = "gvIPLService";
     this.gvIPLService.OptionsBehavior.Editable         = false;
     this.gvIPLService.OptionsCustomization.AllowFilter = false;
     this.gvIPLService.OptionsCustomization.AllowGroup  = false;
     this.gvIPLService.OptionsCustomization.AllowSort   = false;
     this.gvIPLService.OptionsView.ShowGroupPanel       = false;
     this.gvIPLService.CustomUnboundColumnData         += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvIPLService_CustomUnboundColumnData);
     //
     // gvIPLServiceRank
     //
     this.gvIPLServiceRank.Caption   = "Rank";
     this.gvIPLServiceRank.FieldName = "gridColumn1";
     this.gvIPLServiceRank.Name      = "gvIPLServiceRank";
     this.gvIPLServiceRank.SummaryItem.DisplayFormat = "{0}";
     this.gvIPLServiceRank.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
     this.gvIPLServiceRank.UnboundType  = DevExpress.Data.UnboundColumnType.Integer;
     this.gvIPLServiceRank.Visible      = true;
     this.gvIPLServiceRank.VisibleIndex = 0;
     this.gvIPLServiceRank.Width        = 50;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption      = "Employee Name";
     this.gridColumn8.ColumnEdit   = this.lk_Employee;
     this.gridColumn8.FieldName    = "nSalesPersonID";
     this.gridColumn8.Name         = "gridColumn8";
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 1;
     this.gridColumn8.Width        = 54;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn9
     //
     this.gridColumn9.Caption      = "Branch Code";
     this.gridColumn9.FieldName    = "strBranchCode";
     this.gridColumn9.Name         = "gridColumn9";
     this.gridColumn9.Visible      = true;
     this.gridColumn9.VisibleIndex = 4;
     this.gridColumn9.Width        = 72;
     //
     // gvIPLServiceSalesPercentage
     //
     this.gvIPLServiceSalesPercentage.Caption      = "Sales Percentage";
     this.gvIPLServiceSalesPercentage.FieldName    = "SalesPercentage";
     this.gvIPLServiceSalesPercentage.Name         = "gvIPLServiceSalesPercentage";
     this.gvIPLServiceSalesPercentage.Visible      = true;
     this.gvIPLServiceSalesPercentage.VisibleIndex = 2;
     this.gvIPLServiceSalesPercentage.Width        = 54;
     //
     // gvIPLServiceTotalSales
     //
     this.gvIPLServiceTotalSales.Caption      = "Total Sales";
     this.gvIPLServiceTotalSales.FieldName    = "TotalSales";
     this.gvIPLServiceTotalSales.Name         = "gvIPLServiceTotalSales";
     this.gvIPLServiceTotalSales.Visible      = true;
     this.gvIPLServiceTotalSales.VisibleIndex = 3;
     this.gvIPLServiceTotalSales.Width        = 54;
     //
     // gridView6
     //
     this.gridView6.GridControl = this.gridIPLService;
     this.gridView6.Name        = "gridView6";
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label7.Font      = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location  = new System.Drawing.Point(0, 40);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(936, 24);
     this.label7.TabIndex  = 34;
     this.label7.Text      = "Ranking of IPL Service Sales";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGIPLService
     //
     this.RGIPLService.EditValue = 0;
     this.RGIPLService.Location  = new System.Drawing.Point(0, 64);
     this.RGIPLService.Name      = "RGIPLService";
     this.RGIPLService.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.RGIPLService.Properties.Appearance.Font                 = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RGIPLService.Properties.Appearance.Options.UseBackColor = true;
     this.RGIPLService.Properties.Appearance.Options.UseFont      = true;
     this.RGIPLService.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGIPLService.Properties.Columns     = 2;
     this.RGIPLService.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "IPL Sales By %"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual IPL Sales")
     });
     this.RGIPLService.Size                  = new System.Drawing.Size(496, 32);
     this.RGIPLService.TabIndex              = 33;
     this.RGIPLService.SelectedIndexChanged += new System.EventHandler(this.RGIPLService_SelectedIndexChanged);
     this.RGIPLService.Click                += new System.EventHandler(this.RGIPLService_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(468, 67);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 35;
     this.button1.Text     = "Print";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmSRIPLService
     //
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.gridIPLService);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.RGIPLService);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmSRIPLService";
     this.Text            = "frmSRIPLService";
     this.Load           += new System.EventHandler(this.frmSRIPLService_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridIPLService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvIPLService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGIPLService.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 private void repositoryItemRadioGroup1_SelectedIndexChanged(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.RadioGroup editor = (sender as DevExpress.XtraEditors.RadioGroup);
     MS = editor.Properties.GetDisplayText(editor.EditValue);
 }