Example #1
0
        private void setImage()
        {
            foreach (DevExpress.XtraGrid.Columns.GridColumn col in gvMain.Columns)
            {
                if (col.FieldName.ToUpper() == "TASKID")
                {
                    DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox repTask = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
                    this.gcMain.RepositoryItems.Add(repTask);

                    repTask.AutoHeight     = false;
                    repTask.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
                    if (_data.tbTask != null)
                    {
                        for (int i = 0; i < _data.tbTask.Rows.Count; i++)
                        {
                            DataRow drTask = _data.tbTask.Rows[i];
                            if (drTask["Icon"] != DBNull.Value)
                            {
                                this.ImgList.Images.Add(GetImage(drTask["Icon"] as byte[]));
                                repTask.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem(drTask["TaskLabel"].ToString(), drTask["ID"], repTask.Items.Count)
                                });
                            }
                        }
                    }
                    repTask.SmallImages = this.ImgList;

                    col.ColumnEdit = repTask;
                    col.Caption    = "";
                }
            }
        }
Example #2
0
 public static void PopulateMarkerImageComboBox(DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox imageBox)
 {
     RetrieveMarkerImages();
     imageBox.Items.Clear();
     imageBox.SmallImages = markerImageList;
     imageBox.LargeImages = markerImageList;
     //Add null item
     imageBox.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem("N/A", null, -1));
     foreach (var dr in markerImagesTable)
     {
         DevExpress.XtraEditors.Controls.ImageComboBoxItem item =
             new DevExpress.XtraEditors.Controls.ImageComboBoxItem(dr.SymbolTitle, dr.SymbolValue, dr.SymbolValue - 1);
         imageBox.Items.Add(item);
     }
 }
Example #3
0
 //
 public static void InitializaImage(
     ref System.Windows.Forms.ImageList imageListBrxb,
     ref DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox repItemImageComboBoxBrxb)
 {
     try
     {
         imageListBrxb = ImageHelper.GetImageListBrxb();
         repItemImageComboBoxBrxb.SmallImages = imageListBrxb;
         DevExpress.XtraEditors.Controls.ImageComboBoxItem ImageComboItemMale   = new DevExpress.XtraEditors.Controls.ImageComboBoxItem("男", "1", 1);
         DevExpress.XtraEditors.Controls.ImageComboBoxItem ImageComboItemFemale = new DevExpress.XtraEditors.Controls.ImageComboBoxItem("女", "2", 0);
         repItemImageComboBoxBrxb.Items.Add(ImageComboItemMale);
         repItemImageComboBoxBrxb.Items.Add(ImageComboItemFemale);
     }
     catch (Exception)
     {
         throw;
     }
 }
        public static void PopulateMarkerImageComboBox(DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox imageBox)
        {
            RetrieveMarkerImages();
            imageBox.Items.Clear();
            imageBox.SmallImages = markerImageList;
            imageBox.LargeImages = markerImageList;
            int indx     = 0;
            int imgIndex = -1;

            //Add null item
            imageBox.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem("N/A", null, -1));
            foreach (var img in markerImageList.Images)
            {
                indx     += 10;
                imgIndex += 1;
                DevExpress.XtraEditors.Controls.ImageComboBoxItem item =
                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem($"Icon{indx}", indx, imgIndex);
                imageBox.Items.Add(item);
            }
        }
Example #5
0
        private void BindIPPStatus()
        {
            DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox properties = cmbIPPStatus.Properties;
            properties.Items.BeginUpdate();
            properties.Items.Clear();

            try
            {
                foreach (int s in Enum.GetValues(typeof(IPPStatusEnum)))
                {
                    //Initialize each item with the display text, value and image index
                    properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(Enum.GetName(typeof(IPPStatusEnum), s), s.ToString()));
                }
            }
            finally
            {
                properties.Items.EndUpdate();
            }
            //Select the first item
            this.cmbIPPStatus.SelectedIndex = 0;
        }
Example #6
0
        private void comboBind(DevExpress.XtraEditors.ImageComboBoxEdit control, string strSQL, string display, string strValue, bool fNum)
        {
            DataSet _ds = new DataSet();

            SqlHelper.FillDataset(connection, CommandType.StoredProcedure, "UP_GETDATA", _ds, new string[] { "Table" }, new SqlParameter("@strSQL", strSQL));
            DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox properties = control.Properties;
            properties.Items.BeginUpdate();
            properties.Items.Clear();

            try
            {
                foreach (DataRow dr in _ds.Tables["Table"].Rows)
                {
                    //Initialize each item with the display text, value and image index
                    properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(dr[display].ToString(), dr[strValue], -1));
                }
            }
            finally
            {
                properties.Items.EndUpdate();
            }
            //Select the first item
            control.SelectedIndex = 0;
        }
Example #7
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmItemQuery));
     this.treeListColumnName     = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnCode     = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnID       = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnParentID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.groupControlDataList   = new DevExpress.XtraEditors.GroupControl();
     this.gridControlDetail      = new DevExpress.XtraGrid.GridControl();
     this.gridView1              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemTypeID   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemAttnCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnRemark       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.drpGridYesOrNo         = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.groupControl1          = new DevExpress.XtraEditors.GroupControl();
     this.treeList1              = new DevExpress.XtraTreeList.TreeList();
     this.groupControl2          = new DevExpress.XtraEditors.GroupControl();
     this.txtQItemModel          = new DevExpress.XtraEditors.TextEdit();
     this.label15            = new System.Windows.Forms.Label();
     this.txtQItemAttnCode   = new DevExpress.XtraEditors.TextEdit();
     this.label4             = new System.Windows.Forms.Label();
     this.btnToExcel         = new DevExpress.XtraEditors.SimpleButton();
     this.txtQItemCode       = new DevExpress.XtraEditors.TextEdit();
     this.label2             = new System.Windows.Forms.Label();
     this.txtQItemStd        = new DevExpress.XtraEditors.TextEdit();
     this.label9             = new System.Windows.Forms.Label();
     this.txtQItemName       = new DevExpress.XtraEditors.TextEdit();
     this.label1             = new System.Windows.Forms.Label();
     this.gridColumnItemCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemStd  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).BeginInit();
     this.groupControlDataList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemModel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemAttnCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemStd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // BaseIlYesOrNo
     //
     this.BaseIlYesOrNo.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlYesOrNo.ImageStream")));
     this.BaseIlYesOrNo.Images.SetKeyName(0, "");
     this.BaseIlYesOrNo.Images.SetKeyName(1, "");
     //
     // BaseIlAll
     //
     this.BaseIlAll.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlAll.ImageStream")));
     this.BaseIlAll.Images.SetKeyName(0, "");
     this.BaseIlAll.Images.SetKeyName(1, "");
     this.BaseIlAll.Images.SetKeyName(2, "");
     this.BaseIlAll.Images.SetKeyName(3, "");
     this.BaseIlAll.Images.SetKeyName(4, "");
     this.BaseIlAll.Images.SetKeyName(5, "");
     this.BaseIlAll.Images.SetKeyName(6, "");
     this.BaseIlAll.Images.SetKeyName(7, "");
     this.BaseIlAll.Images.SetKeyName(8, "");
     this.BaseIlAll.Images.SetKeyName(9, "");
     this.BaseIlAll.Images.SetKeyName(10, "");
     this.BaseIlAll.Images.SetKeyName(11, "");
     this.BaseIlAll.Images.SetKeyName(12, "");
     this.BaseIlAll.Images.SetKeyName(13, "");
     this.BaseIlAll.Images.SetKeyName(14, "");
     this.BaseIlAll.Images.SetKeyName(15, "");
     this.BaseIlAll.Images.SetKeyName(16, "");
     this.BaseIlAll.Images.SetKeyName(17, "");
     this.BaseIlAll.Images.SetKeyName(18, "");
     this.BaseIlAll.Images.SetKeyName(19, "");
     this.BaseIlAll.Images.SetKeyName(20, "");
     this.BaseIlAll.Images.SetKeyName(21, "");
     this.BaseIlAll.Images.SetKeyName(22, "");
     this.BaseIlAll.Images.SetKeyName(23, "");
     this.BaseIlAll.Images.SetKeyName(24, "");
     this.BaseIlAll.Images.SetKeyName(25, "");
     this.BaseIlAll.Images.SetKeyName(26, "");
     this.BaseIlAll.Images.SetKeyName(27, "");
     this.BaseIlAll.Images.SetKeyName(28, "");
     this.BaseIlAll.Images.SetKeyName(29, "");
     this.BaseIlAll.Images.SetKeyName(30, "");
     this.BaseIlAll.Images.SetKeyName(31, "");
     this.BaseIlAll.Images.SetKeyName(32, "");
     this.BaseIlAll.Images.SetKeyName(33, "");
     this.BaseIlAll.Images.SetKeyName(34, "");
     //
     // treeListColumnName
     //
     this.treeListColumnName.Caption   = "名称";
     this.treeListColumnName.FieldName = "Name";
     this.treeListColumnName.MinWidth  = 151;
     this.treeListColumnName.Name      = "treeListColumnName";
     this.treeListColumnName.OptionsColumn.AllowEdit = false;
     this.treeListColumnName.OptionsColumn.ReadOnly  = true;
     this.treeListColumnName.VisibleIndex            = 0;
     this.treeListColumnName.Width = 151;
     //
     // treeListColumnCode
     //
     this.treeListColumnCode.Caption             = "编码";
     this.treeListColumnCode.FieldName           = "Code";
     this.treeListColumnCode.Format.FormatString = "d";
     this.treeListColumnCode.Format.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.treeListColumnCode.MinWidth            = 45;
     this.treeListColumnCode.Name = "treeListColumnCode";
     this.treeListColumnCode.OptionsColumn.AllowEdit = false;
     this.treeListColumnCode.OptionsColumn.ReadOnly  = true;
     this.treeListColumnCode.Width = 81;
     //
     // treeListColumnID
     //
     this.treeListColumnID.Caption   = "ID";
     this.treeListColumnID.FieldName = "ID";
     this.treeListColumnID.MinWidth  = 45;
     this.treeListColumnID.Name      = "treeListColumnID";
     this.treeListColumnID.OptionsColumn.AllowEdit = false;
     this.treeListColumnID.OptionsColumn.ReadOnly  = true;
     this.treeListColumnID.Width = 109;
     //
     // treeListColumnParentID
     //
     this.treeListColumnParentID.Caption   = "父节点";
     this.treeListColumnParentID.FieldName = "ParentID";
     this.treeListColumnParentID.Name      = "treeListColumnParentID";
     this.treeListColumnParentID.OptionsColumn.AllowEdit = false;
     this.treeListColumnParentID.OptionsColumn.ReadOnly  = true;
     this.treeListColumnParentID.Width = 49;
     //
     // groupControlDataList
     //
     this.groupControlDataList.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControlDataList.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlDataList.Controls.Add(this.gridControlDetail);
     this.groupControlDataList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlDataList.Location = new System.Drawing.Point(197, 56);
     this.groupControlDataList.Name     = "groupControlDataList";
     this.groupControlDataList.Size     = new System.Drawing.Size(727, 478);
     this.groupControlDataList.TabIndex = 275;
     this.groupControlDataList.Text     = "数据列表";
     //
     // gridControlDetail
     //
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.EmbeddedNavigator.Name = "";
     this.gridControlDetail.Location          = new System.Drawing.Point(4, 19);
     this.gridControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlDetail.MainView          = this.gridView1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.drpGridYesOrNo
     });
     this.gridControlDetail.Size     = new System.Drawing.Size(719, 455);
     this.gridControlDetail.TabIndex = 34;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumnItemTypeID,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumnItemAttnCode,
         this.gridColumnRemark,
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6,
         this.gridColumn7
     });
     this.gridView1.GridControl = this.gridControlDetail;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow  = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel  = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "物品编码";
     this.gridColumn1.FieldName    = "ItemCode";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumnItemTypeID
     //
     this.gridColumnItemTypeID.Caption      = "物品类型";
     this.gridColumnItemTypeID.FieldName    = "ItemTypeID";
     this.gridColumnItemTypeID.Name         = "gridColumnItemTypeID";
     this.gridColumnItemTypeID.Visible      = true;
     this.gridColumnItemTypeID.VisibleIndex = 1;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "物品名称";
     this.gridColumn2.FieldName    = "ItemName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "物品规格";
     this.gridColumn3.FieldName    = "ItemStd";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumnItemAttnCode
     //
     this.gridColumnItemAttnCode.Caption      = "辅助编码";
     this.gridColumnItemAttnCode.FieldName    = "ItemAttnCode";
     this.gridColumnItemAttnCode.Name         = "gridColumnItemAttnCode";
     this.gridColumnItemAttnCode.Visible      = true;
     this.gridColumnItemAttnCode.VisibleIndex = 5;
     //
     // gridColumnRemark
     //
     this.gridColumnRemark.Caption      = "备注";
     this.gridColumnRemark.FieldName    = "Remark";
     this.gridColumnRemark.Name         = "gridColumnRemark";
     this.gridColumnRemark.Visible      = true;
     this.gridColumnRemark.VisibleIndex = 6;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "单位";
     this.gridColumn4.FieldName    = "ItemUnit";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 7;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption      = "季节";
     this.gridColumn5.FieldName    = "ItemrSeason";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width        = 66;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "类别";
     this.gridColumn6.FieldName    = "ItemClassName";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 8;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "品名";
     this.gridColumn7.FieldName    = "ItemModel";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 9;
     //
     // drpGridYesOrNo
     //
     this.drpGridYesOrNo.AutoHeight = false;
     this.drpGridYesOrNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.drpGridYesOrNo.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.drpGridYesOrNo.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("是", 1, 1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("否", 0, 0)
     });
     this.drpGridYesOrNo.Name        = "drpGridYesOrNo";
     this.drpGridYesOrNo.SmallImages = this.BaseIlYesOrNo;
     //
     // groupControl1
     //
     this.groupControl1.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl1.Controls.Add(this.treeList1);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.groupControl1.Location = new System.Drawing.Point(0, 56);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(197, 478);
     this.groupControl1.TabIndex = 274;
     this.groupControl1.Text     = "数据列表";
     //
     // treeList1
     //
     this.treeList1.AllowDrop = true;
     this.treeList1.Appearance.EvenRow.BackColor                  = System.Drawing.Color.White;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor       = true;
     this.treeList1.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.treeList1.Appearance.HeaderPanel.TextOptions.Trimming   = DevExpress.Utils.Trimming.None;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumnID,
         this.treeListColumnCode,
         this.treeListColumnName,
         this.treeListColumnParentID
     });
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(4, 19);
     this.treeList1.Name     = "treeList1";
     this.treeList1.BeginUnboundLoad();
     this.treeList1.AppendNode(new object[] {
         null,
         null,
         null,
         0
     }, -1, 0, 0, 7);
     this.treeList1.EndUnboundLoad();
     this.treeList1.OptionsBehavior.AutoChangeParent       = false;
     this.treeList1.OptionsBehavior.AutoNodeHeight         = false;
     this.treeList1.OptionsBehavior.CanCloneNodesOnDrop    = true;
     this.treeList1.OptionsBehavior.CloseEditorOnLostFocus = false;
     this.treeList1.OptionsBehavior.DragNodes           = true;
     this.treeList1.OptionsBehavior.KeepSelectedOnClick = false;
     this.treeList1.OptionsBehavior.ShowEditorOnMouseUp = true;
     this.treeList1.OptionsBehavior.SmartMouseHover     = false;
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.ShowFocusedFrame        = false;
     this.treeList1.Size                = new System.Drawing.Size(189, 455);
     this.treeList1.TabIndex            = 33;
     this.treeList1.TreeLineStyle       = DevExpress.XtraTreeList.LineStyle.Solid;
     this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.txtQItemModel);
     this.groupControl2.Controls.Add(this.label15);
     this.groupControl2.Controls.Add(this.txtQItemAttnCode);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Controls.Add(this.btnToExcel);
     this.groupControl2.Controls.Add(this.txtQItemCode);
     this.groupControl2.Controls.Add(this.label2);
     this.groupControl2.Controls.Add(this.txtQItemStd);
     this.groupControl2.Controls.Add(this.label9);
     this.groupControl2.Controls.Add(this.txtQItemName);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(924, 56);
     this.groupControl2.TabIndex = 277;
     this.groupControl2.Text     = "数据列表";
     //
     // txtQItemModel
     //
     this.txtQItemModel.EditValue = "";
     this.txtQItemModel.Location  = new System.Drawing.Point(692, 21);
     this.txtQItemModel.Name      = "txtQItemModel";
     this.txtQItemModel.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemModel.Properties.MaxLength   = 50;
     this.txtQItemModel.Size              = new System.Drawing.Size(70, 23);
     this.txtQItemModel.TabIndex          = 5;
     this.txtQItemModel.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(658, 26);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(29, 12);
     this.label15.TabIndex = 301;
     this.label15.Text     = "品名";
     //
     // txtQItemAttnCode
     //
     this.txtQItemAttnCode.Location          = new System.Drawing.Point(573, 22);
     this.txtQItemAttnCode.Name              = "txtQItemAttnCode";
     this.txtQItemAttnCode.Size              = new System.Drawing.Size(70, 21);
     this.txtQItemAttnCode.TabIndex          = 4;
     this.txtQItemAttnCode.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(517, 26);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(53, 12);
     this.label4.TabIndex = 298;
     this.label4.Text     = "辅助编码";
     //
     // btnToExcel
     //
     this.btnToExcel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnToExcel.Location    = new System.Drawing.Point(788, 21);
     this.btnToExcel.Name        = "btnToExcel";
     this.btnToExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnToExcel.TabIndex    = 293;
     this.btnToExcel.Text        = "转Excel";
     this.btnToExcel.Click      += new System.EventHandler(this.btnToExcel_Click);
     //
     // txtQItemCode
     //
     this.txtQItemCode.EditValue = "";
     this.txtQItemCode.Location  = new System.Drawing.Point(55, 21);
     this.txtQItemCode.Name      = "txtQItemCode";
     this.txtQItemCode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemCode.Size              = new System.Drawing.Size(88, 23);
     this.txtQItemCode.TabIndex          = 1;
     this.txtQItemCode.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(21, 26);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 291;
     this.label2.Text     = "编码";
     //
     // txtQItemStd
     //
     this.txtQItemStd.EditValue = "";
     this.txtQItemStd.Location  = new System.Drawing.Point(423, 21);
     this.txtQItemStd.Name      = "txtQItemStd";
     this.txtQItemStd.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemStd.Size              = new System.Drawing.Size(88, 23);
     this.txtQItemStd.TabIndex          = 3;
     this.txtQItemStd.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(391, 26);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(29, 12);
     this.label9.TabIndex = 289;
     this.label9.Text     = "规格";
     //
     // txtQItemName
     //
     this.txtQItemName.EditValue = "";
     this.txtQItemName.Location  = new System.Drawing.Point(191, 21);
     this.txtQItemName.Name      = "txtQItemName";
     this.txtQItemName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemName.Size              = new System.Drawing.Size(184, 23);
     this.txtQItemName.TabIndex          = 2;
     this.txtQItemName.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(157, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(29, 12);
     this.label1.TabIndex = 287;
     this.label1.Text     = "名称";
     //
     // gridColumnItemCode
     //
     this.gridColumnItemCode.Caption   = "纱线编码";
     this.gridColumnItemCode.FieldName = "ItemCode";
     this.gridColumnItemCode.Name      = "gridColumnItemCode";
     this.gridColumnItemCode.OptionsColumn.AllowEdit = false;
     this.gridColumnItemCode.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemCode.Visible      = true;
     this.gridColumnItemCode.VisibleIndex = 0;
     this.gridColumnItemCode.Width        = 90;
     //
     // gridColumnItemUnit
     //
     this.gridColumnItemUnit.Caption   = "单位";
     this.gridColumnItemUnit.FieldName = "ItemUnit";
     this.gridColumnItemUnit.Name      = "gridColumnItemUnit";
     this.gridColumnItemUnit.OptionsColumn.AllowEdit = false;
     this.gridColumnItemUnit.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemUnit.Visible      = true;
     this.gridColumnItemUnit.VisibleIndex = 3;
     this.gridColumnItemUnit.Width        = 61;
     //
     // gridColumnItemStd
     //
     this.gridColumnItemStd.Caption   = "纱线支数";
     this.gridColumnItemStd.FieldName = "ItemStd";
     this.gridColumnItemStd.Name      = "gridColumnItemStd";
     this.gridColumnItemStd.OptionsColumn.AllowEdit = false;
     this.gridColumnItemStd.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemStd.Visible      = true;
     this.gridColumnItemStd.VisibleIndex = 2;
     this.gridColumnItemStd.Width        = 90;
     //
     // gridColumnItemName
     //
     this.gridColumnItemName.Caption   = "纱线成份";
     this.gridColumnItemName.FieldName = "ItemName";
     this.gridColumnItemName.Name      = "gridColumnItemName";
     this.gridColumnItemName.OptionsColumn.AllowEdit = false;
     this.gridColumnItemName.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemName.Visible      = true;
     this.gridColumnItemName.VisibleIndex = 1;
     this.gridColumnItemName.Width        = 263;
     //
     // frmItemQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(924, 534);
     this.Controls.Add(this.groupControlDataList);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Name  = "frmItemQuery";
     this.Text  = "纱种查询";
     this.Load += new System.EventHandler(this.frmItemQuery_Load);
     this.Controls.SetChildIndex(this.groupControl2, 0);
     this.Controls.SetChildIndex(this.groupControl1, 0);
     this.Controls.SetChildIndex(this.groupControlDataList, 0);
     this.Controls.SetChildIndex(this.BaseFocusLabelTemp, 0);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).EndInit();
     this.groupControlDataList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemModel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemAttnCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemStd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemName.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraScheduler.TimeRuler timeRuler1 = new DevExpress.XtraScheduler.TimeRuler();
     DevExpress.XtraScheduler.TimeRuler timeRuler2 = new DevExpress.XtraScheduler.TimeRuler();
     this.schedulerControl1          = new DevExpress.XtraScheduler.SchedulerControl();
     this.schedulerDataStorage1      = new DevExpress.XtraScheduler.SchedulerDataStorage(this.components);
     this.carSchedulingBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.carsDBDataSet                = new SchedulerGridSync.CarsDBDataSet();
     this.carSchedulingTableAdapter    = new SchedulerGridSync.CarsDBDataSetTableAdapters.CarSchedulingTableAdapter();
     this.repImgPriority               = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repSpinDuration              = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repImgSeverity               = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.splitterControl2             = new DevExpress.XtraEditors.SplitterControl();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemSpinEdit1      = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemSpinEdit2      = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemImageComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridControl1   = new DevExpress.XtraGrid.GridControl();
     this.gridView1      = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colStatus      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubject     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLabel       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStartTime   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEndTime     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLocation    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAllDay      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panel1         = new System.Windows.Forms.Panel();
     this.label1         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerDataStorage1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.carSchedulingBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.carsDBDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repImgPriority)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSpinDuration)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repImgSeverity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // schedulerControl1
     //
     this.schedulerControl1.ActiveViewType = DevExpress.XtraScheduler.SchedulerViewType.Month;
     this.schedulerControl1.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.schedulerControl1.Location       = new System.Drawing.Point(0, 24);
     this.schedulerControl1.Name           = "schedulerControl1";
     this.schedulerControl1.Size           = new System.Drawing.Size(808, 298);
     this.schedulerControl1.Start          = new System.DateTime(2010, 7, 11, 0, 0, 0, 0);
     this.schedulerControl1.DataStorage    = this.schedulerDataStorage1;
     this.schedulerControl1.TabIndex       = 0;
     this.schedulerControl1.Text           = "schedulerControl1";
     this.schedulerControl1.Views.DayView.NavigationButtonVisibility = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl1.Views.DayView.TimeRulers.Add(timeRuler1);
     this.schedulerControl1.Views.MonthView.NavigationButtonVisibility = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl1.Views.MonthView.WeekCount = 3;
     this.schedulerControl1.Views.TimelineView.NavigationButtonVisibility = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl1.Views.WeekView.NavigationButtonVisibility     = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl1.Views.WorkWeekView.NavigationButtonVisibility = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl1.Views.WorkWeekView.TimeRulers.Add(timeRuler2);
     //
     // schedulerDataStorage1
     //
     this.schedulerDataStorage1.Appointments.DataSource           = this.carSchedulingBindingSource;
     this.schedulerDataStorage1.Appointments.Mappings.AllDay      = "AllDay";
     this.schedulerDataStorage1.Appointments.Mappings.Description = "Description";
     this.schedulerDataStorage1.Appointments.Mappings.End         = "EndTime";
     this.schedulerDataStorage1.Appointments.Mappings.Label       = "Label";
     this.schedulerDataStorage1.Appointments.Mappings.Location    = "Location";
     this.schedulerDataStorage1.Appointments.Mappings.Start       = "StartTime";
     this.schedulerDataStorage1.Appointments.Mappings.Status      = "Status";
     this.schedulerDataStorage1.Appointments.Mappings.Subject     = "Subject";
     this.schedulerDataStorage1.FilterAppointment                  += new DevExpress.XtraScheduler.PersistentObjectCancelEventHandler(this.schedulerDataStorage1_FilterAppointment);
     this.schedulerDataStorage1.AppointmentCollectionCleared       += new System.EventHandler(this.schedulerDataStorage1_AppointmentCollectionCleared);
     this.schedulerDataStorage1.AppointmentCollectionAutoReloading += new DevExpress.XtraScheduler.CancelListChangedEventHandler(this.schedulerDataStorage1_AppointmentCollectionAutoReloading);
     //
     // carSchedulingBindingSource
     //
     this.carSchedulingBindingSource.DataMember = "CarScheduling";
     this.carSchedulingBindingSource.DataSource = this.carsDBDataSet;
     //
     // carsDBDataSet
     //
     this.carsDBDataSet.DataSetName             = "CarsDBDataSet";
     this.carsDBDataSet.Locale                  = new System.Globalization.CultureInfo("");
     this.carsDBDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // carSchedulingTableAdapter
     //
     this.carSchedulingTableAdapter.ClearBeforeFill = true;
     //
     // repImgPriority
     //
     this.repImgPriority.AutoHeight = false;
     this.repImgPriority.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repImgPriority.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Low", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Normal", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("High", 2, -1)
     });
     this.repImgPriority.Name = "repImgPriority";
     //
     // repSpinDuration
     //
     this.repSpinDuration.AutoHeight = false;
     this.repSpinDuration.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.repSpinDuration.IsFloatValue  = false;
     this.repSpinDuration.Mask.EditMask = "N00";
     this.repSpinDuration.MaxValue      = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     this.repSpinDuration.MinValue = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.repSpinDuration.Name = "repSpinDuration";
     //
     // repImgSeverity
     //
     this.repImgSeverity.AutoHeight = false;
     this.repImgSeverity.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repImgSeverity.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Minor", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Moderate", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Severe", 2, -1)
     });
     this.repImgSeverity.Name = "repImgSeverity";
     //
     // splitterControl2
     //
     this.splitterControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.splitterControl2.Location = new System.Drawing.Point(0, 322);
     this.splitterControl2.Name     = "splitterControl2";
     this.splitterControl2.Size     = new System.Drawing.Size(808, 6);
     this.splitterControl2.TabIndex = 8;
     this.splitterControl2.TabStop  = false;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Low", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Normal", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("High", 2, -1)
     });
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.repositoryItemSpinEdit1.IsFloatValue  = false;
     this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
     this.repositoryItemSpinEdit1.MaxValue      = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox2.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Minor", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Moderate", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Severe", 2, -1)
     });
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // repositoryItemImageComboBox3
     //
     this.repositoryItemImageComboBox3.AutoHeight = false;
     this.repositoryItemImageComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox3.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Low", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Normal", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("High", 2, -1)
     });
     this.repositoryItemImageComboBox3.Name = "repositoryItemImageComboBox3";
     //
     // repositoryItemSpinEdit2
     //
     this.repositoryItemSpinEdit2.AutoHeight = false;
     this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.repositoryItemSpinEdit2.IsFloatValue  = false;
     this.repositoryItemSpinEdit2.Mask.EditMask = "N00";
     this.repositoryItemSpinEdit2.MaxValue      = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     this.repositoryItemSpinEdit2.MinValue = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
     //
     // repositoryItemImageComboBox4
     //
     this.repositoryItemImageComboBox4.AutoHeight = false;
     this.repositoryItemImageComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox4.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Minor", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Moderate", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Severe", 2, -1)
     });
     this.repositoryItemImageComboBox4.Name = "repositoryItemImageComboBox4";
     //
     // gridControl1
     //
     this.gridControl1.DataSource             = this.carSchedulingBindingSource;
     this.gridControl1.Dock                   = System.Windows.Forms.DockStyle.Bottom;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location               = new System.Drawing.Point(0, 328);
     this.gridControl1.MainView               = this.gridView1;
     this.gridControl1.Name                   = "gridControl1";
     this.gridControl1.Size                   = new System.Drawing.Size(808, 233);
     this.gridControl1.TabIndex               = 9;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colStatus,
         this.colSubject,
         this.colDescription,
         this.colLabel,
         this.colStartTime,
         this.colEndTime,
         this.colLocation,
         this.colAllDay
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsSelection.MultiSelect = true;
     //
     // colStatus
     //
     this.colStatus.Caption      = "Status";
     this.colStatus.FieldName    = "Status";
     this.colStatus.Name         = "colStatus";
     this.colStatus.Visible      = true;
     this.colStatus.VisibleIndex = 0;
     //
     // colSubject
     //
     this.colSubject.Caption      = "Subject";
     this.colSubject.FieldName    = "Subject";
     this.colSubject.Name         = "colSubject";
     this.colSubject.Visible      = true;
     this.colSubject.VisibleIndex = 1;
     //
     // colDescription
     //
     this.colDescription.Caption      = "Description";
     this.colDescription.FieldName    = "Description";
     this.colDescription.Name         = "colDescription";
     this.colDescription.Visible      = true;
     this.colDescription.VisibleIndex = 2;
     //
     // colLabel
     //
     this.colLabel.Caption      = "Label";
     this.colLabel.FieldName    = "Label";
     this.colLabel.Name         = "colLabel";
     this.colLabel.Visible      = true;
     this.colLabel.VisibleIndex = 3;
     //
     // colStartTime
     //
     this.colStartTime.Caption      = "StartTime";
     this.colStartTime.FieldName    = "StartTime";
     this.colStartTime.Name         = "colStartTime";
     this.colStartTime.Visible      = true;
     this.colStartTime.VisibleIndex = 4;
     //
     // colEndTime
     //
     this.colEndTime.Caption      = "EndTime";
     this.colEndTime.FieldName    = "EndTime";
     this.colEndTime.Name         = "colEndTime";
     this.colEndTime.Visible      = true;
     this.colEndTime.VisibleIndex = 5;
     //
     // colLocation
     //
     this.colLocation.Caption      = "Location";
     this.colLocation.FieldName    = "Location";
     this.colLocation.Name         = "colLocation";
     this.colLocation.Visible      = true;
     this.colLocation.VisibleIndex = 6;
     //
     // colAllDay
     //
     this.colAllDay.Caption      = "AllDay";
     this.colAllDay.FieldName    = "AllDay";
     this.colAllDay.Name         = "colAllDay";
     this.colAllDay.Visible      = true;
     this.colAllDay.VisibleIndex = 7;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(808, 24);
     this.panel1.TabIndex = 10;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(4, 4);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(642, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Click to select grid rows and scheduler appointments. Use CTRL key to perform mul" +
                            "ti-select. Use TAB to switch between appointments.";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(808, 561);
     this.Controls.Add(this.schedulerControl1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.splitterControl2);
     this.Controls.Add(this.gridControl1);
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "How to get XtraScheduler synchronized with XtraGrid";
     this.Load         += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerDataStorage1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.carSchedulingBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.carsDBDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repImgPriority)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSpinDuration)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repImgSeverity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #9
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(frmPromotionItem));
     this.gridViewMd_ItemPromotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GroupID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMd_ItemPromotion = new DevExpress.XtraGrid.GridControl();
     this.lk_PromotionCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.lk_CategoryIDs = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.lk_Code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.grpMDClass = new DevExpress.XtraEditors.GroupControl();
     this.grpMDItemPromotion = new DevExpress.XtraEditors.GroupControl();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).BeginInit();
     this.grpMDItemPromotion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewMd_ItemPromotion
     //
     this.gridViewMd_ItemPromotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                     this.gridColumn3,
                                                                                                     this.gridColumn4,
                                                                                                     this.gridColumn1,
                                                                                                     this.gridColumn2});
     this.gridViewMd_ItemPromotion.GridControl = this.gridControlMd_ItemPromotion;
     this.gridViewMd_ItemPromotion.Name = "gridViewMd_ItemPromotion";
     this.gridViewMd_ItemPromotion.OptionsBehavior.Editable = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowSort = false;
     this.gridViewMd_ItemPromotion.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_ItemPromotion.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewMd_ItemPromotion_CellValueChanged);
     this.gridViewMd_ItemPromotion.DoubleClick += new System.EventHandler(this.gridViewMd_ItemPromotion_DoubleClick);
     this.gridViewMd_ItemPromotion.LostFocus += new System.EventHandler(this.gridViewMd_ItemPromotion_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Promotion Code";
     this.gridColumn3.FieldName = "strPromotionCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Category Type";
     this.gridColumn4.ColumnEdit = this.lk_CategoryID;
     this.gridColumn4.FieldName = "nCategoryTypeID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // lk_CategoryID
     //
     this.lk_CategoryID.AutoHeight = false;
     this.lk_CategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CategoryID.Items.AddRange(new object[] {
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item or Product", 1, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package", 2, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package Group", 3, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Credit Package", 4, -1)});
     this.lk_CategoryID.Name = "lk_CategoryID";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Group";
     this.gridColumn1.ColumnEdit = this.lk_GroupID;
     this.gridColumn1.FieldName = "nGroupID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // lk_GroupID
     //
     this.lk_GroupID.AutoHeight = false;
     this.lk_GroupID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_GroupID.Items.AddRange(new object[] {
                                                     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item", 0, -1),
                                                     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Group", 1, -1)});
     this.lk_GroupID.Name = "lk_GroupID";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Code";
     this.gridColumn2.FieldName = "strCode";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // gridControlMd_ItemPromotion
     //
     this.gridControlMd_ItemPromotion.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ItemPromotion.EmbeddedNavigator
     //
     this.gridControlMd_ItemPromotion.EmbeddedNavigator.Name = "";
     this.gridControlMd_ItemPromotion.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_ItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ItemPromotion.MainView = this.gridViewMd_ItemPromotion;
     this.gridControlMd_ItemPromotion.Name = "gridControlMd_ItemPromotion";
     this.gridControlMd_ItemPromotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                          this.lk_PromotionCode,
                                                                                                                          this.lk_CategoryIDs,
                                                                                                                          this.lk_CategoryID,
                                                                                                                          this.lk_GroupID,
                                                                                                                          this.lk_Code});
     this.gridControlMd_ItemPromotion.Size = new System.Drawing.Size(976, 444);
     this.gridControlMd_ItemPromotion.TabIndex = 126;
     this.gridControlMd_ItemPromotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                this.gridViewMd_ItemPromotion});
     //
     // lk_PromotionCode
     //
     this.lk_PromotionCode.AutoHeight = false;
     this.lk_PromotionCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_PromotionCode.Name = "lk_PromotionCode";
     //
     // lk_CategoryIDs
     //
     this.lk_CategoryIDs.AutoHeight = false;
     this.lk_CategoryIDs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CategoryIDs.Name = "lk_CategoryIDs";
     //
     // lk_Code
     //
     this.lk_Code.AutoHeight = false;
     this.lk_Code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Code.Name = "lk_Code";
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.Controls.Add(this.grpMDItemPromotion);
     this.grpMDClass.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location = new System.Drawing.Point(-5, -26);
     this.grpMDClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDClass.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDClass.Name = "grpMDClass";
     this.grpMDClass.Size = new System.Drawing.Size(1021, 560);
     this.grpMDClass.TabIndex = 34;
     this.grpMDClass.Text = "Class";
     //
     // grpMDItemPromotion
     //
     this.grpMDItemPromotion.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDItemPromotion.Appearance.Options.UseBackColor = true;
     this.grpMDItemPromotion.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDItemPromotion.AppearanceCaption.Options.UseFont = true;
     this.grpMDItemPromotion.Controls.Add(this.btn_Del);
     this.grpMDItemPromotion.Controls.Add(this.btn_Add);
     this.grpMDItemPromotion.Controls.Add(this.groupControl2);
     this.grpMDItemPromotion.Controls.Add(this.btn_Search);
     this.grpMDItemPromotion.Controls.Add(this.txtSearch);
     this.grpMDItemPromotion.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDItemPromotion.Location = new System.Drawing.Point(8, 24);
     this.grpMDItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDItemPromotion.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDItemPromotion.Name = "grpMDItemPromotion";
     this.grpMDItemPromotion.Size = new System.Drawing.Size(1000, 504);
     this.grpMDItemPromotion.TabIndex = 138;
     this.grpMDItemPromotion.Text = "Item Promotion";
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 131;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // 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_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 132;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_ItemPromotion);
     this.groupControl2.Location = new System.Drawing.Point(8, 48);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(976, 448);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Promotion Item";
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(912, 24);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(720, 24);
     this.txtSearch.Name = "txtSearch";
     //
     // txtSearch.Properties
     //
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(176, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // frmPromotionItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(1000, 509);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPromotionItem";
     this.Text = "Promotion Item";
     this.Load += new System.EventHandler(this.frmPromotionItem_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).EndInit();
     this.grpMDItemPromotion.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.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.pbSelect = new System.Windows.Forms.PictureBox();
            this.txtFilePath = new DevExpress.XtraEditors.TextEdit();
            this.label9 = new System.Windows.Forms.Label();
            this.btnCashVoucherImport = new DevExpress.XtraEditors.SimpleButton();
            this.groupCashVoucher = new DevExpress.XtraEditors.GroupControl();
            this.cmbStatus = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.lk_BranchCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCashVoucher));
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.grpMDCashVoucherTop = new DevExpress.XtraEditors.GroupControl();
            this.Searchpanel = new System.Windows.Forms.Panel();
            this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
            this.txtSearch = new DevExpress.XtraEditors.TextEdit();
            this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
            this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
            this.gridControlMd_CashVoucher = new DevExpress.XtraGrid.GridControl();
            this.gridViewMdCashVoucher = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumnSV1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV9 = new DevExpress.XtraGrid.Columns.GridColumn();            
            this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.gridColumnSV10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnSV11 = new DevExpress.XtraGrid.Columns.GridColumn();
            ((System.ComponentModel.ISupportInitialize)(this.grpMDCashVoucherTop)).BeginInit();
            this.grpMDCashVoucherTop.SuspendLayout();
            this.Searchpanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CashVoucher)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMdCashVoucher)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucher)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbSelect)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtFilePath.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
            this.imageList1.Images.SetKeyName(0, "");
            this.imageList1.Images.SetKeyName(1, ""); 
            this.imageList1.Images.SetKeyName(2, "");
            this.imageList1.Images.SetKeyName(3, "");
            this.imageList1.Images.SetKeyName(4, "");
            this.imageList1.Images.SetKeyName(5, "");
            this.imageList1.Images.SetKeyName(6, "");
            // 
            // grpMDCashVoucherTop
            // 
            this.grpMDCashVoucherTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.grpMDCashVoucherTop.Appearance.Options.UseBackColor = true;
            this.grpMDCashVoucherTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grpMDCashVoucherTop.AppearanceCaption.Options.UseFont = true;
            this.grpMDCashVoucherTop.Controls.Add(this.Searchpanel);            
            this.grpMDCashVoucherTop.Controls.Add(this.gridControlMd_CashVoucher);
            this.grpMDCashVoucherTop.Controls.Add(this.groupCashVoucher);
            this.grpMDCashVoucherTop.ImeMode = System.Windows.Forms.ImeMode.On;
            this.grpMDCashVoucherTop.Location = new System.Drawing.Point(10, 0);
            this.grpMDCashVoucherTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
            this.grpMDCashVoucherTop.LookAndFeel.UseDefaultLookAndFeel = false;
            this.grpMDCashVoucherTop.Name = "grpMDCashVoucherTop";
            this.grpMDCashVoucherTop.Size = new System.Drawing.Size(980, 592);
            this.grpMDCashVoucherTop.TabIndex = 91;
            this.grpMDCashVoucherTop.Text = "Cash Voucher";
            // 
            // Searchpanel
            // 
            this.Searchpanel.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.Searchpanel.Controls.Add(btn_Add);
            this.Searchpanel.Controls.Add(btn_Del);
            this.Searchpanel.Controls.Add(this.btn_Search);
            this.Searchpanel.Controls.Add(this.txtSearch);
            this.Searchpanel.Location = new System.Drawing.Point(614, 48);
            this.Searchpanel.Name = "Searchpanel";
            this.Searchpanel.Size = new System.Drawing.Size(557, 27);
            this.Searchpanel.TabIndex = 152;
            // 
            // btn_Search
            // 
            this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.btn_Search.Appearance.Options.UseFont = true;
            this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.btn_Search.Location = new System.Drawing.Point(470, 0);
            this.btn_Search.Name = "btn_Search";
            this.btn_Search.Size = new System.Drawing.Size(68, 23);
            this.btn_Search.TabIndex = 137;
            this.btn_Search.Text = "Search";
            this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
            // 
            // txtSearch
            // 
            this.txtSearch.EditValue = "";
            this.txtSearch.ImeMode = System.Windows.Forms.ImeMode.On;
            this.txtSearch.Location = new System.Drawing.Point(278, 0);
            this.txtSearch.Name = "txtSearch";
            this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSearch.Properties.Appearance.Options.UseFont = true;
            this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
            this.txtSearch.Size = new System.Drawing.Size(183, 23);
            this.txtSearch.TabIndex = 136;
            this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
            // 
            // btn_Add
            //             
            this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btn_Add.Appearance.Options.UseFont = true;
            this.btn_Add.Appearance.Options.UseTextOptions = true;
            this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
            this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btn_Add.ImageIndex = 0;
            this.btn_Add.ImageList = this.imageList1;
            this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
            this.btn_Add.Location = new System.Drawing.Point(10, 0);
            this.btn_Add.Name = "btn_Add";
            this.btn_Add.Size = new System.Drawing.Size(45, 18);
            this.btn_Add.TabIndex = 132;
            this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
            // 
            // btn_Del
            // 
            this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btn_Del.Appearance.Options.UseFont = true;
            this.btn_Del.Appearance.Options.UseTextOptions = true;
            this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
            this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btn_Del.ImageIndex = 1;
            this.btn_Del.ImageList = this.imageList1;
            this.btn_Del.Location = new System.Drawing.Point(58, 0);
            this.btn_Del.Name = "btn_Del";
            this.btn_Del.Size = new System.Drawing.Size(45, 18);
            this.btn_Del.TabIndex = 131;
            this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
            // 
            // gridControlMd_CashVoucher
            // 
            this.gridControlMd_CashVoucher.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.gridControlMd_CashVoucher.Location = new System.Drawing.Point(2, 342);
            this.gridControlMd_CashVoucher.LookAndFeel.UseDefaultLookAndFeel = false;
            this.gridControlMd_CashVoucher.MainView = this.gridViewMdCashVoucher;
            this.gridControlMd_CashVoucher.Name = "gridControlMd_CashVoucher";
            this.gridControlMd_CashVoucher.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemLookUpEdit1,this.lk_BranchCode});
            this.gridControlMd_CashVoucher.Size = new System.Drawing.Size(998, 420);
            this.gridControlMd_CashVoucher.TabIndex = 19;
            this.gridControlMd_CashVoucher.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMdCashVoucher});
            // 
            // lk_BranchCode
            // 
            this.lk_BranchCode.AutoHeight = false;
            this.lk_BranchCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lk_BranchCode.Name = "lk_BranchCode";
            // 
            // gridViewMdCashVoucher
            // 
            this.gridViewMdCashVoucher.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumnSV1,
            this.gridColumnSV2,
            this.gridColumnSV3,
            this.gridColumnSV4,
            this.gridColumnSV5,
            this.gridColumnSV6,
            this.gridColumnSV7,
            this.gridColumnSV8,
            this.gridColumnSV9,
            this.gridColumnSV10,
            this.gridColumnSV11
            });
            this.gridViewMdCashVoucher.GridControl = this.gridControlMd_CashVoucher;
            this.gridViewMdCashVoucher.Name = "gridViewMdCashVoucher";
            this.gridViewMdCashVoucher.OptionsCustomization.AllowFilter = false;
            this.gridViewMdCashVoucher.OptionsCustomization.AllowSort = false;
            this.gridViewMdCashVoucher.OptionsView.ShowGroupPanel = false;
            this.gridViewMdCashVoucher.LostFocus += new System.EventHandler(this.gridViewMdCashVoucher_LostFocus);
            // 
            // gridColumnSV1
            // 
            this.gridColumnSV1.Caption = "SN";
            this.gridColumnSV1.FieldName = "strSN";
            this.gridColumnSV1.Name = "gridColumnSV1";
            this.gridColumnSV1.Visible = true;
            this.gridColumnSV1.VisibleIndex = 0;
            this.gridColumnSV1.Width = 93;
            // 
            // gridColumnSV2
            // 
            this.gridColumnSV2.Caption = "Description";
            this.gridColumnSV2.FieldName = "strDescription";
            this.gridColumnSV2.Name = "gridColumnSV2";
            this.gridColumnSV2.Visible = true;
            this.gridColumnSV2.VisibleIndex = 1;
            this.gridColumnSV2.Width = 93;
            // 
            // gridColumnSV3
            // 
            this.gridColumnSV3.Caption = "Description 2";
            this.gridColumnSV3.FieldName = "strDescription2";
            this.gridColumnSV3.Name = "gridColumnSV3";
            this.gridColumnSV3.Visible = true;
            this.gridColumnSV3.VisibleIndex = 2;
            this.gridColumnSV3.Width = 93;
            // 
            // gridColumnSV4
            // 
            this.gridColumnSV4.Caption = "Status";
            this.gridColumnSV4.FieldName = "nStatusID";
            this.gridColumnSV4.Name = "gridColumnSV4";
            this.gridColumnSV4.Visible = true;
            this.gridColumnSV4.VisibleIndex = 3;
            this.gridColumnSV4.Width = 93;
            // 
            // gridColumnSV5
            // 
            this.gridColumnSV5.Caption = "Start Date";
            this.gridColumnSV5.FieldName = "dtStartDate";
            this.gridColumnSV5.Name = "gridColumnSV5";
            this.gridColumnSV5.Visible = true;
            this.gridColumnSV5.VisibleIndex = 4;
            this.gridColumnSV5.Width = 93;
            // 
            // gridColumnSV6
            // 
            this.gridColumnSV6.Caption = "Expiry Date";
            this.gridColumnSV6.FieldName = "dtExpiryDate";
            this.gridColumnSV6.Name = "gridColumnSV6";
            this.gridColumnSV6.Visible = true;
            this.gridColumnSV6.VisibleIndex = 5;
            this.gridColumnSV6.Width = 93;
            // 
            // gridColumnSV7
            // 
            this.gridColumnSV7.Caption = "Cash Value";
            this.gridColumnSV7.FieldName = "mValue";
            this.gridColumnSV7.Name = "gridColumnSV7";
            this.gridColumnSV7.Visible = true;
            this.gridColumnSV7.VisibleIndex = 6;
            this.gridColumnSV7.Width = 93;
            // 
            // gridColumnSV8
            // 
            this.gridColumnSV8.Caption = "Branch Code";
            this.gridColumnSV8.ColumnEdit = this.lk_BranchCode;
            this.gridColumnSV8.FieldName = "strBranchCode";
            this.gridColumnSV8.Name = "gridColumnSV8";
            this.gridColumnSV8.Visible = true;
            this.gridColumnSV8.VisibleIndex = 7;
            this.gridColumnSV8.Width = 102;
            // 
            // gridColumnSV11
            // 
            this.gridColumnSV11.Caption = "Terminal ID";
            this.gridColumnSV11.FieldName = "nTerminalID";
            this.gridColumnSV11.Name = "gridColumnSV11";
            this.gridColumnSV11.Visible = true;
            this.gridColumnSV11.VisibleIndex = 8;
            this.gridColumnSV11.Width = 93;
            // 
            // gridColumnSV9
            // 
            this.gridColumnSV9.Caption = "Cash Voucher Type";
            this.gridColumnSV9.ColumnEdit = this.repositoryItemLookUpEdit1;
            this.gridColumnSV9.FieldName = "nCashVoucherTypeID";
            this.gridColumnSV9.Name = "gridColumnSV9";
            this.gridColumnSV9.Visible = true;
            this.gridColumnSV9.VisibleIndex = 8;
            this.gridColumnSV9.Width = 94;
            // 
            // cmbStatus
            // 
            this.cmbStatus.AutoHeight = false;
            this.cmbStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cmbStatus.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 0, -1),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 1, -1)});
            this.cmbStatus.Name = "cmbStatus";
            // 
            // groupCashVoucher
            // 
            this.groupCashVoucher.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupCashVoucher.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.groupCashVoucher.Appearance.Options.UseBackColor = true;
            this.groupCashVoucher.Controls.Add(this.pbSelect);
            this.groupCashVoucher.Controls.Add(this.txtFilePath);
            this.groupCashVoucher.Controls.Add(this.label9);
            this.groupCashVoucher.Controls.Add(this.btnCashVoucherImport);
            this.groupCashVoucher.ImeMode = System.Windows.Forms.ImeMode.On;
            this.groupCashVoucher.Location = new System.Drawing.Point(10, 647);
            this.groupCashVoucher.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
            this.groupCashVoucher.LookAndFeel.UseDefaultLookAndFeel = false;
            this.groupCashVoucher.Name = "groupCashVoucher";
            this.groupCashVoucher.Size = new System.Drawing.Size(980, 110);
            this.groupCashVoucher.TabIndex = 19;
            this.groupCashVoucher.Text = "Cash Voucher Import";
            // 
            // pbSelect
            // 
            this.pbSelect.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pbSelect.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
            this.pbSelect.Image = global::ACMS.Properties.Resources.open_file_icon;
            this.pbSelect.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
            this.pbSelect.Location = new System.Drawing.Point(573, 42);
            this.pbSelect.Name = "pbSelect";
            this.pbSelect.Size = new System.Drawing.Size(20, 20);
            this.pbSelect.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pbSelect.TabIndex = 36;
            this.pbSelect.TabStop = false;
            this.pbSelect.Click += new System.EventHandler(this.pbSelect_Click);
            // 
            // txtFilePath
            // 
            this.txtFilePath.EditValue = "";
            this.txtFilePath.Location = new System.Drawing.Point(266, 43);
            this.txtFilePath.Name = "txtFilePath";
            this.txtFilePath.Properties.MaxLength = 255;
            this.txtFilePath.Properties.ReadOnly = true;
            this.txtFilePath.Size = new System.Drawing.Size(301, 20);
            this.txtFilePath.TabIndex = 35;
            // 
            // label9
            // 
            this.label9.BackColor = System.Drawing.Color.Transparent;
            this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location = new System.Drawing.Point(125, 47);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(140, 16);
            this.label9.TabIndex = 34;
            this.label9.Text = "Select file to upload";
            // 
            // btnCashVoucherImport
            // 
            this.btnCashVoucherImport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.btnCashVoucherImport.Appearance.Options.UseFont = true;
            this.btnCashVoucherImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.btnCashVoucherImport.Location = new System.Drawing.Point(521, 69);
            this.btnCashVoucherImport.Name = "btnCashVoucherImport";
            this.btnCashVoucherImport.Size = new System.Drawing.Size(72, 18);
            this.btnCashVoucherImport.TabIndex = 12;
            this.btnCashVoucherImport.Text = "Import";
            this.btnCashVoucherImport.Click += new System.EventHandler(this.btnCashVoucherImport_Click);
            // 
            // repositoryItemLookUpEdit1
            // 
            this.repositoryItemLookUpEdit1.AutoHeight = false;
            this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
            // 
            // gridColumnSV10
            // 
            this.gridColumnSV10.Caption = "Sell?";
            this.gridColumnSV10.FieldName = "fSell";
            this.gridColumnSV10.Name = "gridColumnSV10";
            this.gridColumnSV10.Visible = true;
            this.gridColumnSV10.VisibleIndex = 9;
            this.gridColumnSV10.Width = 88;
            // 
            // frmCashVoucher
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.ClientSize = new System.Drawing.Size(1000, 560);
            this.Controls.Add(this.grpMDCashVoucherTop);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "frmCashVoucher";
            this.Text = "frmCashVoucher";
            this.Load += new System.EventHandler(this.frmCashVoucher_Load);
            ((System.ComponentModel.ISupportInitialize)(this.grpMDCashVoucherTop)).EndInit();
            this.grpMDCashVoucherTop.ResumeLayout(false);
            this.Searchpanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CashVoucher)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMdCashVoucher)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucher)).EndInit();
            this.groupCashVoucher.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pbSelect)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtFilePath.Properties)).EndInit();
            this.ResumeLayout(false);

        }
Example #11
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.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPromotion));
     this.grpMDPromotionTop = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Promotion = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Promotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPM1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPM2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_DiscountCategory = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmPromotionType = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbItemDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbApprovedStatus = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.grpMDPromotionBelow = new DevExpress.XtraEditors.GroupControl();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.TabControlPromotion = new DevExpress.XtraTab.XtraTabControl();
     this.tabPromo_Brnch = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.gridBranch = new DevExpress.XtraGrid.GridControl();
     this.gvBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPromo_Freebies = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnFreebies_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gdFreebies2 = new DevExpress.XtraGrid.GridControl();
     this.gvFreebies2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gdFreebies = new DevExpress.XtraGrid.GridControl();
     this.gvFreebies = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtItemStyle = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.txtItemCode = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.txtItemDesc = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.tabPromo_Package = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btnPackage_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gdPackage2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackage2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gdPackage = new DevExpress.XtraGrid.GridControl();
     this.gvPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPcReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnPcSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtPcItemCode = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.txtPcItemDesc = new DevExpress.XtraEditors.TextEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.tabPromo_ReceiptSalesCategory = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.btnSales_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridSales2 = new DevExpress.XtraGrid.GridControl();
     this.gvSales2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridSales = new DevExpress.XtraGrid.GridControl();
     this.gvSales = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionTop)).BeginInit();
     this.grpMDPromotionTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Promotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Promotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_DiscountCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmPromotionType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbItemDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbApprovedStatus)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow)).BeginInit();
     this.grpMDPromotionBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabControlPromotion)).BeginInit();
     this.TabControlPromotion.SuspendLayout();
     this.tabPromo_Brnch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).BeginInit();
     this.tabPromo_Freebies.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemStyle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit();
     this.tabPromo_Package.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemDesc.Properties)).BeginInit();
     this.tabPromo_ReceiptSalesCategory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDPromotionTop
     //
     this.grpMDPromotionTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDPromotionTop.Appearance.Options.UseBackColor = true;
     this.grpMDPromotionTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDPromotionTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDPromotionTop.Controls.Add(this.gridControlMd_Promotion);
     this.grpMDPromotionTop.Controls.Add(this.Searchpanel);
     this.grpMDPromotionTop.Controls.Add(this.btn_Add);
     this.grpMDPromotionTop.Controls.Add(this.btn_Del);
     this.grpMDPromotionTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDPromotionTop.Location = new System.Drawing.Point(10, 0);
     this.grpMDPromotionTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPromotionTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionTop.Name = "grpMDPromotionTop";
     this.grpMDPromotionTop.Size = new System.Drawing.Size(980, 258);
     this.grpMDPromotionTop.TabIndex = 92;
     this.grpMDPromotionTop.Text = "Promotion";
     //
     // gridControlMd_Promotion
     //
     this.gridControlMd_Promotion.Dock = System.Windows.Forms.DockStyle.Bottom;
     gridLevelNode1.RelationName = "Level1";
     this.gridControlMd_Promotion.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMd_Promotion.Location = new System.Drawing.Point(2, 53);
     this.gridControlMd_Promotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Promotion.MainView = this.gridViewMd_Promotion;
     this.gridControlMd_Promotion.Name = "gridControlMd_Promotion";
     this.gridControlMd_Promotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_DiscountCategory,
     this.cmPromotionType,
     this.dtStartDate,
     this.dtEndDate,
     this.cmbApprovedStatus,
     this.cmbItemDiscount});
     this.gridControlMd_Promotion.Size = new System.Drawing.Size(976, 203);
     this.gridControlMd_Promotion.TabIndex = 20;
     this.gridControlMd_Promotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Promotion});
     //
     // gridViewMd_Promotion
     //
     this.gridViewMd_Promotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPM1,
     this.gridColumnPM2,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9});
     this.gridViewMd_Promotion.CustomizationFormBounds = new System.Drawing.Rectangle(465, 203, 208, 156);
     this.gridViewMd_Promotion.GridControl = this.gridControlMd_Promotion;
     this.gridViewMd_Promotion.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Promotion.Name = "gridViewMd_Promotion";
     this.gridViewMd_Promotion.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Promotion.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Promotion.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Promotion.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Promotion.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Promotion_FocusedRowChanged);
     this.gridViewMd_Promotion.LostFocus += new System.EventHandler(this.gridViewMd_Promotion_LostFocus);
     //
     // gridColumnPM1
     //
     this.gridColumnPM1.Caption = "Promotion Code";
     this.gridColumnPM1.FieldName = "strPromotionCode";
     this.gridColumnPM1.MinWidth = 10;
     this.gridColumnPM1.Name = "gridColumnPM1";
     this.gridColumnPM1.Visible = true;
     this.gridColumnPM1.VisibleIndex = 0;
     this.gridColumnPM1.Width = 90;
     //
     // gridColumnPM2
     //
     this.gridColumnPM2.Caption = "Description";
     this.gridColumnPM2.FieldName = "strDescription";
     this.gridColumnPM2.Name = "gridColumnPM2";
     this.gridColumnPM2.Visible = true;
     this.gridColumnPM2.VisibleIndex = 1;
     this.gridColumnPM2.Width = 173;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Discount Category";
     this.gridColumn1.ColumnEdit = this.lk_DiscountCategory;
     this.gridColumn1.FieldName = "nDiscountCategoryID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 155;
     //
     // lk_DiscountCategory
     //
     this.lk_DiscountCategory.AutoHeight = false;
     this.lk_DiscountCategory.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_DiscountCategory.Name = "lk_DiscountCategory";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Promotion Type";
     this.gridColumn2.ColumnEdit = this.cmPromotionType;
     this.gridColumn2.FieldName = "nPromotionTypeID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     this.gridColumn2.Width = 116;
     //
     // cmPromotionType
     //
     this.cmPromotionType.AutoHeight = false;
     this.cmPromotionType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmPromotionType.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Discount Promotion", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Free Product", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Free Package", 2, -1)});
     this.cmPromotionType.Name = "cmPromotionType";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Item Discount?";
     this.gridColumn3.ColumnEdit = this.cmbItemDiscount;
     this.gridColumn3.FieldName = "fItemDiscount";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 101;
     //
     // cmbItemDiscount
     //
     this.cmbItemDiscount.AutoHeight = false;
     this.cmbItemDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbItemDiscount.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item Discount", true, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Bill Discount", false, -1)});
     this.cmbItemDiscount.Name = "cmbItemDiscount";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Minimum Amount";
     this.gridColumn4.DisplayFormat.FormatString = "#.##";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "mMinimumAmount";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 5;
     this.gridColumn4.Width = 101;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Start Date";
     this.gridColumn5.ColumnEdit = this.dtStartDate;
     this.gridColumn5.DisplayFormat.FormatString = "d";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "dtValidStart";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 6;
     this.gridColumn5.Width = 95;
     //
     // dtStartDate
     //
     this.dtStartDate.AutoHeight = false;
     this.dtStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtStartDate.Name = "dtStartDate";
     this.dtStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "End Date";
     this.gridColumn6.ColumnEdit = this.dtEndDate;
     this.gridColumn6.DisplayFormat.FormatString = "d";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "dtValidEnd";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 7;
     this.gridColumn6.Width = 90;
     //
     // dtEndDate
     //
     this.dtEndDate.AutoHeight = false;
     this.dtEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEndDate.Name = "dtEndDate";
     this.dtEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Approved Status";
     this.gridColumn7.ColumnEdit = this.cmbApprovedStatus;
     this.gridColumn7.FieldName = "nApprovedStatusID";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 8;
     this.gridColumn7.Width = 89;
     //
     // cmbApprovedStatus
     //
     this.cmbApprovedStatus.AutoHeight = false;
     this.cmbApprovedStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbApprovedStatus.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.cmbApprovedStatus.Name = "cmbApprovedStatus";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Discount %";
     this.gridColumn8.DisplayFormat.FormatString = "P";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "dDiscountPercent";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 9;
     this.gridColumn8.Width = 71;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Discount Value";
     this.gridColumn9.DisplayFormat.FormatString = "#.##";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "dDiscountValue";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 10;
     this.gridColumn9.Width = 111;
     //
     // Searchpanel
     //
     this.Searchpanel.BackColor = System.Drawing.Color.Transparent;
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(551, 12);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(410, 37);
     this.Searchpanel.TabIndex = 149;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(330, 9);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(67, 23);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(120, 9);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(202, 23);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(10, 28);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(45, 18);
     this.btn_Add.TabIndex = 134;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(58, 28);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(45, 18);
     this.btn_Del.TabIndex = 133;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // grpMDPromotionBelow
     //
     this.grpMDPromotionBelow.Controls.Add(this.grpMDPromotionBelow2);
     this.grpMDPromotionBelow.Location = new System.Drawing.Point(10, 277);
     this.grpMDPromotionBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPromotionBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow.Name = "grpMDPromotionBelow";
     this.grpMDPromotionBelow.Size = new System.Drawing.Size(980, 332);
     this.grpMDPromotionBelow.TabIndex = 93;
     this.grpMDPromotionBelow.Text = "Branch Promotion ";
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.TabControlPromotion);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(10, 28);
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(970, 304);
     this.grpMDPromotionBelow2.TabIndex = 6;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // TabControlPromotion
     //
     this.TabControlPromotion.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TabControlPromotion.AppearancePage.Header.Options.UseFont = true;
     this.TabControlPromotion.Location = new System.Drawing.Point(10, 9);
     this.TabControlPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TabControlPromotion.Name = "TabControlPromotion";
     this.TabControlPromotion.SelectedTabPage = this.tabPromo_Brnch;
     this.TabControlPromotion.Size = new System.Drawing.Size(960, 286);
     this.TabControlPromotion.TabIndex = 132;
     this.TabControlPromotion.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPromo_Brnch,
     this.tabPromo_Freebies,
     this.tabPromo_Package,
     this.tabPromo_ReceiptSalesCategory});
     //
     // tabPromo_Brnch
     //
     this.tabPromo_Brnch.Controls.Add(this.groupControl1);
     this.tabPromo_Brnch.Name = "tabPromo_Brnch";
     this.tabPromo_Brnch.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Brnch.Text = "Branch";
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.btnBranch_Del);
     this.groupControl1.Controls.Add(this.btnBranch_DelAll);
     this.groupControl1.Controls.Add(this.btnBranch_AddAll);
     this.groupControl1.Controls.Add(this.btnBranch_Add);
     this.groupControl1.Controls.Add(this.gridBranch2);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.gridBranch);
     this.groupControl1.Location = new System.Drawing.Point(0, 9);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(1094, 277);
     this.groupControl1.TabIndex = 88;
     this.groupControl1.Text = "groupControl1";
     //
     // btnBranch_Del
     //
     this.btnBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Del.Location = new System.Drawing.Point(528, 138);
     this.btnBranch_Del.Name = "btnBranch_Del";
     this.btnBranch_Del.Size = new System.Drawing.Size(36, 24);
     this.btnBranch_Del.TabIndex = 28;
     this.btnBranch_Del.Text = "<";
     this.btnBranch_Del.Click += new System.EventHandler(this.btnBranch_Del_Click);
     //
     // btnBranch_DelAll
     //
     this.btnBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_DelAll.Location = new System.Drawing.Point(528, 83);
     this.btnBranch_DelAll.Name = "btnBranch_DelAll";
     this.btnBranch_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_DelAll.TabIndex = 27;
     this.btnBranch_DelAll.Text = "<<";
     this.btnBranch_DelAll.Click += new System.EventHandler(this.btnBranch_DelAll_Click);
     //
     // btnBranch_AddAll
     //
     this.btnBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_AddAll.Location = new System.Drawing.Point(528, 111);
     this.btnBranch_AddAll.Name = "btnBranch_AddAll";
     this.btnBranch_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_AddAll.TabIndex = 26;
     this.btnBranch_AddAll.Text = ">>";
     this.btnBranch_AddAll.Click += new System.EventHandler(this.btnBranch_AddAll_Click);
     //
     // btnBranch_Add
     //
     this.btnBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Add.Location = new System.Drawing.Point(528, 55);
     this.btnBranch_Add.Name = "btnBranch_Add";
     this.btnBranch_Add.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_Add.TabIndex = 25;
     this.btnBranch_Add.Text = ">";
     this.btnBranch_Add.Click += new System.EventHandler(this.btnBranch_Add_Click);
     //
     // gridBranch2
     //
     this.gridBranch2.Location = new System.Drawing.Point(576, 9);
     this.gridBranch2.MainView = this.gvBranch2;
     this.gridBranch2.Name = "gridBranch2";
     this.gridBranch2.Size = new System.Drawing.Size(370, 222);
     this.gridBranch2.TabIndex = 29;
     this.gridBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranch2});
     //
     // gvBranch2
     //
     this.gvBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvBranch2.GridControl = this.gridBranch2;
     this.gvBranch2.Name = "gvBranch2";
     this.gvBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch2.OptionsBehavior.Editable = false;
     this.gvBranch2.OptionsCustomization.AllowFilter = false;
     this.gvBranch2.OptionsSelection.MultiSelect = true;
     this.gvBranch2.OptionsView.ShowGroupPanel = false;
     this.gvBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 104;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 282;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(-139, -28);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(110, 40);
     this.label4.TabIndex = 30;
     this.label4.Text = "Package Branch";
     //
     // gridBranch
     //
     this.gridBranch.Location = new System.Drawing.Point(10, 9);
     this.gridBranch.MainView = this.gvBranch;
     this.gridBranch.Name = "gridBranch";
     this.gridBranch.Size = new System.Drawing.Size(508, 231);
     this.gridBranch.TabIndex = 24;
     this.gridBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranch});
     //
     // gvBranch
     //
     this.gvBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvBranch.GridControl = this.gridBranch;
     this.gvBranch.Name = "gvBranch";
     this.gvBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch.OptionsBehavior.Editable = false;
     this.gvBranch.OptionsCustomization.AllowFilter = false;
     this.gvBranch.OptionsSelection.MultiSelect = true;
     this.gvBranch.OptionsView.ShowGroupPanel = false;
     this.gvBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 107;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 279;
     //
     // tabPromo_Freebies
     //
     this.tabPromo_Freebies.Controls.Add(this.groupControl2);
     this.tabPromo_Freebies.Controls.Add(this.btnReset);
     this.tabPromo_Freebies.Controls.Add(this.btnSearch);
     this.tabPromo_Freebies.Controls.Add(this.txtItemStyle);
     this.tabPromo_Freebies.Controls.Add(this.label3);
     this.tabPromo_Freebies.Controls.Add(this.txtItemCode);
     this.tabPromo_Freebies.Controls.Add(this.label2);
     this.tabPromo_Freebies.Controls.Add(this.txtItemDesc);
     this.tabPromo_Freebies.Controls.Add(this.label1);
     this.tabPromo_Freebies.Name = "tabPromo_Freebies";
     this.tabPromo_Freebies.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Freebies.Text = "Freebies";
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.btnFreebies_Del);
     this.groupControl2.Controls.Add(this.btnFreebies_DelAll);
     this.groupControl2.Controls.Add(this.btnFreebies_AddAll);
     this.groupControl2.Controls.Add(this.btnFreebies_Add);
     this.groupControl2.Controls.Add(this.gdFreebies2);
     this.groupControl2.Controls.Add(this.gdFreebies);
     this.groupControl2.Location = new System.Drawing.Point(0, 37);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(1094, 212);
     this.groupControl2.TabIndex = 115;
     this.groupControl2.Text = "groupControl2";
     //
     // btnFreebies_Del
     //
     this.btnFreebies_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_Del.Location = new System.Drawing.Point(528, 102);
     this.btnFreebies_Del.Name = "btnFreebies_Del";
     this.btnFreebies_Del.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_Del.TabIndex = 94;
     this.btnFreebies_Del.Text = "<";
     this.btnFreebies_Del.Click += new System.EventHandler(this.btnFreebies_Del_Click);
     //
     // btnFreebies_DelAll
     //
     this.btnFreebies_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnFreebies_DelAll.Name = "btnFreebies_DelAll";
     this.btnFreebies_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_DelAll.TabIndex = 93;
     this.btnFreebies_DelAll.Text = "<<";
     this.btnFreebies_DelAll.Click += new System.EventHandler(this.btnFreebies_DelAll_Click);
     //
     // btnFreebies_AddAll
     //
     this.btnFreebies_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnFreebies_AddAll.Name = "btnFreebies_AddAll";
     this.btnFreebies_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_AddAll.TabIndex = 92;
     this.btnFreebies_AddAll.Text = ">>";
     this.btnFreebies_AddAll.Click += new System.EventHandler(this.btnFreebies_AddAll_Click);
     //
     // btnFreebies_Add
     //
     this.btnFreebies_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_Add.Location = new System.Drawing.Point(528, 18);
     this.btnFreebies_Add.Name = "btnFreebies_Add";
     this.btnFreebies_Add.Size = new System.Drawing.Size(36, 24);
     this.btnFreebies_Add.TabIndex = 91;
     this.btnFreebies_Add.Text = ">";
     this.btnFreebies_Add.Click += new System.EventHandler(this.btnFreebies_Add_Click);
     //
     // gdFreebies2
     //
     this.gdFreebies2.Location = new System.Drawing.Point(581, 14);
     this.gdFreebies2.MainView = this.gvFreebies2;
     this.gdFreebies2.Name = "gdFreebies2";
     this.gdFreebies2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.gdFreebies2.Size = new System.Drawing.Size(509, 184);
     this.gdFreebies2.TabIndex = 95;
     this.gdFreebies2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvFreebies2});
     //
     // gvFreebies2
     //
     this.gvFreebies2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn14,
     this.gridColumn25});
     this.gvFreebies2.GridControl = this.gdFreebies2;
     this.gvFreebies2.Name = "gvFreebies2";
     this.gvFreebies2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvFreebies2.OptionsCustomization.AllowFilter = false;
     this.gvFreebies2.OptionsSelection.MultiSelect = true;
     this.gvFreebies2.OptionsView.ShowGroupPanel = false;
     this.gvFreebies2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn10, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvFreebies2.LostFocus += new System.EventHandler(this.gvFreebies2_LostFocus);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Product Code";
     this.gridColumn10.FieldName = "strItemCode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     this.gridColumn10.Width = 104;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Description";
     this.gridColumn11.FieldName = "strDescription";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 1;
     this.gridColumn11.Width = 282;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Promotion Code";
     this.gridColumn14.FieldName = "strPromotionCode";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Max Quantity";
     this.gridColumn25.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn25.FieldName = "nMaxQty";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsFilter.AllowFilter = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 2;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gdFreebies
     //
     this.gdFreebies.Location = new System.Drawing.Point(5, 14);
     this.gdFreebies.MainView = this.gvFreebies;
     this.gdFreebies.Name = "gdFreebies";
     this.gdFreebies.Size = new System.Drawing.Size(509, 189);
     this.gdFreebies.TabIndex = 90;
     this.gdFreebies.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvFreebies});
     //
     // gvFreebies
     //
     this.gvFreebies.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn12,
     this.gridColumn13});
     this.gvFreebies.GridControl = this.gdFreebies;
     this.gvFreebies.Name = "gvFreebies";
     this.gvFreebies.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvFreebies.OptionsBehavior.Editable = false;
     this.gvFreebies.OptionsCustomization.AllowFilter = false;
     this.gvFreebies.OptionsSelection.MultiSelect = true;
     this.gvFreebies.OptionsView.ShowGroupPanel = false;
     this.gvFreebies.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn12, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Product Code";
     this.gridColumn12.FieldName = "strProductCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 0;
     this.gridColumn12.Width = 107;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Description";
     this.gridColumn13.FieldName = "strDescription";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 279;
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(826, 9);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(86, 23);
     this.btnReset.TabIndex = 114;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(720, 9);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(86, 23);
     this.btnSearch.TabIndex = 113;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtItemStyle
     //
     this.txtItemStyle.EditValue = "";
     this.txtItemStyle.Location = new System.Drawing.Point(566, 9);
     this.txtItemStyle.Name = "txtItemStyle";
     this.txtItemStyle.Size = new System.Drawing.Size(120, 22);
     this.txtItemStyle.TabIndex = 112;
     //
     // label3
     //
     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(470, 9);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(120, 19);
     this.label3.TabIndex = 111;
     this.label3.Text = "Item Style :";
     //
     // txtItemCode
     //
     this.txtItemCode.EditValue = "";
     this.txtItemCode.Location = new System.Drawing.Point(336, 9);
     this.txtItemCode.Name = "txtItemCode";
     this.txtItemCode.Size = new System.Drawing.Size(120, 22);
     this.txtItemCode.TabIndex = 110;
     //
     // label2
     //
     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(230, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 19);
     this.label2.TabIndex = 109;
     this.label2.Text = "Item Code :";
     //
     // txtItemDesc
     //
     this.txtItemDesc.EditValue = "";
     this.txtItemDesc.Location = new System.Drawing.Point(96, 9);
     this.txtItemDesc.Name = "txtItemDesc";
     this.txtItemDesc.Size = new System.Drawing.Size(120, 22);
     this.txtItemDesc.TabIndex = 108;
     //
     // label1
     //
     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(10, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 19);
     this.label1.TabIndex = 107;
     this.label1.Text = "Item Desc :";
     //
     // tabPromo_Package
     //
     this.tabPromo_Package.Controls.Add(this.groupControl3);
     this.tabPromo_Package.Controls.Add(this.btnPcReset);
     this.tabPromo_Package.Controls.Add(this.btnPcSearch);
     this.tabPromo_Package.Controls.Add(this.txtPcItemCode);
     this.tabPromo_Package.Controls.Add(this.label5);
     this.tabPromo_Package.Controls.Add(this.txtPcItemDesc);
     this.tabPromo_Package.Controls.Add(this.label6);
     this.tabPromo_Package.Name = "tabPromo_Package";
     this.tabPromo_Package.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Package.Text = "Package";
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.btnPackage_Del);
     this.groupControl3.Controls.Add(this.btnPackage_DelAll);
     this.groupControl3.Controls.Add(this.btnPackage_AddAll);
     this.groupControl3.Controls.Add(this.btnPackage_Add);
     this.groupControl3.Controls.Add(this.gdPackage2);
     this.groupControl3.Controls.Add(this.gdPackage);
     this.groupControl3.Location = new System.Drawing.Point(0, 37);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(1094, 212);
     this.groupControl3.TabIndex = 123;
     this.groupControl3.Text = "groupControl3";
     //
     // btnPackage_Del
     //
     this.btnPackage_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_Del.Location = new System.Drawing.Point(528, 102);
     this.btnPackage_Del.Name = "btnPackage_Del";
     this.btnPackage_Del.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_Del.TabIndex = 94;
     this.btnPackage_Del.Text = "<";
     this.btnPackage_Del.Click += new System.EventHandler(this.btnPackage_Del_Click);
     //
     // btnPackage_DelAll
     //
     this.btnPackage_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnPackage_DelAll.Name = "btnPackage_DelAll";
     this.btnPackage_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_DelAll.TabIndex = 93;
     this.btnPackage_DelAll.Text = "<<";
     this.btnPackage_DelAll.Click += new System.EventHandler(this.btnPackage_DelAll_Click);
     //
     // btnPackage_AddAll
     //
     this.btnPackage_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnPackage_AddAll.Name = "btnPackage_AddAll";
     this.btnPackage_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_AddAll.TabIndex = 92;
     this.btnPackage_AddAll.Text = ">>";
     this.btnPackage_AddAll.Click += new System.EventHandler(this.btnPackage_AddAll_Click);
     //
     // btnPackage_Add
     //
     this.btnPackage_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_Add.Location = new System.Drawing.Point(528, 18);
     this.btnPackage_Add.Name = "btnPackage_Add";
     this.btnPackage_Add.Size = new System.Drawing.Size(36, 24);
     this.btnPackage_Add.TabIndex = 91;
     this.btnPackage_Add.Text = ">";
     this.btnPackage_Add.Click += new System.EventHandler(this.btnPackage_Add_Click);
     //
     // gdPackage2
     //
     this.gdPackage2.Location = new System.Drawing.Point(581, 14);
     this.gdPackage2.MainView = this.gvPackage2;
     this.gdPackage2.Name = "gdPackage2";
     this.gdPackage2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit2});
     this.gdPackage2.Size = new System.Drawing.Size(509, 184);
     this.gdPackage2.TabIndex = 95;
     this.gdPackage2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackage2});
     //
     // gvPackage2
     //
     this.gvPackage2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn26});
     this.gvPackage2.GridControl = this.gdPackage2;
     this.gvPackage2.Name = "gvPackage2";
     this.gvPackage2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackage2.OptionsCustomization.AllowFilter = false;
     this.gvPackage2.OptionsSelection.MultiSelect = true;
     this.gvPackage2.OptionsView.ShowGroupPanel = false;
     this.gvPackage2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn15, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvPackage2.LostFocus += new System.EventHandler(this.gvPackage2_LostFocus);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Product Code";
     this.gridColumn15.FieldName = "strPackageCode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 104;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "strDescription";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 282;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Promotion Code";
     this.gridColumn17.FieldName = "strPromotionCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Max Quantity";
     this.gridColumn26.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn26.FieldName = "nMaxQty";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsFilter.AllowFilter = false;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 2;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // gdPackage
     //
     this.gdPackage.Location = new System.Drawing.Point(5, 14);
     this.gdPackage.MainView = this.gvPackage;
     this.gdPackage.Name = "gdPackage";
     this.gdPackage.Size = new System.Drawing.Size(509, 189);
     this.gdPackage.TabIndex = 90;
     this.gdPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackage});
     //
     // gvPackage
     //
     this.gvPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumn19});
     this.gvPackage.GridControl = this.gdPackage;
     this.gvPackage.Name = "gvPackage";
     this.gvPackage.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackage.OptionsBehavior.Editable = false;
     this.gvPackage.OptionsCustomization.AllowFilter = false;
     this.gvPackage.OptionsSelection.MultiSelect = true;
     this.gvPackage.OptionsView.ShowGroupPanel = false;
     this.gvPackage.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Product Code";
     this.gridColumn18.FieldName = "strPackageCode";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 107;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "strDescription";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 279;
     //
     // btnPcReset
     //
     this.btnPcReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcReset.Appearance.Options.UseFont = true;
     this.btnPcReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcReset.Location = new System.Drawing.Point(557, 9);
     this.btnPcReset.Name = "btnPcReset";
     this.btnPcReset.Size = new System.Drawing.Size(86, 23);
     this.btnPcReset.TabIndex = 122;
     this.btnPcReset.Text = "Reset";
     this.btnPcReset.Click += new System.EventHandler(this.btnPcReset_Click);
     //
     // btnPcSearch
     //
     this.btnPcSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcSearch.Appearance.Options.UseFont = true;
     this.btnPcSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcSearch.Location = new System.Drawing.Point(451, 9);
     this.btnPcSearch.Name = "btnPcSearch";
     this.btnPcSearch.Size = new System.Drawing.Size(87, 23);
     this.btnPcSearch.TabIndex = 121;
     this.btnPcSearch.Text = "Search";
     this.btnPcSearch.Click += new System.EventHandler(this.btnPcSearch_Click);
     //
     // txtPcItemCode
     //
     this.txtPcItemCode.EditValue = "";
     this.txtPcItemCode.Location = new System.Drawing.Point(96, 9);
     this.txtPcItemCode.Name = "txtPcItemCode";
     this.txtPcItemCode.Size = new System.Drawing.Size(115, 22);
     this.txtPcItemCode.TabIndex = 118;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(230, 9);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(77, 19);
     this.label5.TabIndex = 117;
     this.label5.Text = "Item Desc :";
     //
     // txtPcItemDesc
     //
     this.txtPcItemDesc.EditValue = "";
     this.txtPcItemDesc.Location = new System.Drawing.Point(317, 9);
     this.txtPcItemDesc.Name = "txtPcItemDesc";
     this.txtPcItemDesc.Size = new System.Drawing.Size(115, 22);
     this.txtPcItemDesc.TabIndex = 116;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(115, 19);
     this.label6.TabIndex = 115;
     this.label6.Text = "Item Code :";
     //
     // tabPromo_ReceiptSalesCategory
     //
     this.tabPromo_ReceiptSalesCategory.Controls.Add(this.groupControl4);
     this.tabPromo_ReceiptSalesCategory.Name = "tabPromo_ReceiptSalesCategory";
     this.tabPromo_ReceiptSalesCategory.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_ReceiptSalesCategory.Text = "Receipt Sales Category";
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.btnSales_Del);
     this.groupControl4.Controls.Add(this.btnSales_DelAll);
     this.groupControl4.Controls.Add(this.btnSales_AddAll);
     this.groupControl4.Controls.Add(this.btnSales_Add);
     this.groupControl4.Controls.Add(this.gridSales2);
     this.groupControl4.Controls.Add(this.gridSales);
     this.groupControl4.Location = new System.Drawing.Point(4, 18);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(1094, 213);
     this.groupControl4.TabIndex = 124;
     this.groupControl4.Text = "groupControl4";
     //
     // btnSales_Del
     //
     this.btnSales_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_Del.Location = new System.Drawing.Point(528, 102);
     this.btnSales_Del.Name = "btnSales_Del";
     this.btnSales_Del.Size = new System.Drawing.Size(36, 23);
     this.btnSales_Del.TabIndex = 94;
     this.btnSales_Del.Text = "<";
     this.btnSales_Del.Click += new System.EventHandler(this.btnSales_Del_Click);
     //
     // btnSales_DelAll
     //
     this.btnSales_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnSales_DelAll.Name = "btnSales_DelAll";
     this.btnSales_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnSales_DelAll.TabIndex = 93;
     this.btnSales_DelAll.Text = "<<";
     this.btnSales_DelAll.Click += new System.EventHandler(this.btnSales_DelAll_Click);
     //
     // btnSales_AddAll
     //
     this.btnSales_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnSales_AddAll.Name = "btnSales_AddAll";
     this.btnSales_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnSales_AddAll.TabIndex = 92;
     this.btnSales_AddAll.Text = ">>";
     this.btnSales_AddAll.Click += new System.EventHandler(this.btnSales_AddAll_Click);
     //
     // btnSales_Add
     //
     this.btnSales_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_Add.Location = new System.Drawing.Point(528, 18);
     this.btnSales_Add.Name = "btnSales_Add";
     this.btnSales_Add.Size = new System.Drawing.Size(36, 24);
     this.btnSales_Add.TabIndex = 91;
     this.btnSales_Add.Text = ">";
     this.btnSales_Add.Click += new System.EventHandler(this.btnSales_Add_Click);
     //
     // gridSales2
     //
     this.gridSales2.Location = new System.Drawing.Point(581, 14);
     this.gridSales2.MainView = this.gvSales2;
     this.gridSales2.Name = "gridSales2";
     this.gridSales2.Size = new System.Drawing.Size(509, 184);
     this.gridSales2.TabIndex = 95;
     this.gridSales2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales2});
     //
     // gvSales2
     //
     this.gvSales2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22});
     this.gvSales2.GridControl = this.gridSales2;
     this.gvSales2.Name = "gvSales2";
     this.gvSales2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales2.OptionsBehavior.Editable = false;
     this.gvSales2.OptionsCustomization.AllowFilter = false;
     this.gvSales2.OptionsSelection.MultiSelect = true;
     this.gvSales2.OptionsView.ShowGroupPanel = false;
     this.gvSales2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn20, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Sales Category Id";
     this.gridColumn20.FieldName = "nSalesCategoryID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 0;
     this.gridColumn20.Width = 104;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Description";
     this.gridColumn21.FieldName = "strDescription";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 1;
     this.gridColumn21.Width = 282;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Promotion Code";
     this.gridColumn22.FieldName = "strPromotionCode";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridSales
     //
     this.gridSales.Location = new System.Drawing.Point(5, 14);
     this.gridSales.MainView = this.gvSales;
     this.gridSales.Name = "gridSales";
     this.gridSales.Size = new System.Drawing.Size(509, 189);
     this.gridSales.TabIndex = 90;
     this.gridSales.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales});
     //
     // gvSales
     //
     this.gvSales.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn23,
     this.gridColumn24});
     this.gvSales.GridControl = this.gridSales;
     this.gvSales.Name = "gvSales";
     this.gvSales.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales.OptionsBehavior.Editable = false;
     this.gvSales.OptionsCustomization.AllowFilter = false;
     this.gvSales.OptionsSelection.MultiSelect = true;
     this.gvSales.OptionsView.ShowGroupPanel = false;
     this.gvSales.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Sales Category Id";
     this.gridColumn23.FieldName = "nSalesCategoryID";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 107;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Description";
     this.gridColumn24.FieldName = "strDescription";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 279;
     //
     // frmPromotion
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 533);
     this.Controls.Add(this.grpMDPromotionBelow);
     this.Controls.Add(this.grpMDPromotionTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPromotion";
     this.Text = "frmPromotion";
     this.Load += new System.EventHandler(this.frmPromotion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionTop)).EndInit();
     this.grpMDPromotionTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Promotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Promotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_DiscountCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmPromotionType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbItemDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbApprovedStatus)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow)).EndInit();
     this.grpMDPromotionBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabControlPromotion)).EndInit();
     this.TabControlPromotion.ResumeLayout(false);
     this.tabPromo_Brnch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).EndInit();
     this.tabPromo_Freebies.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemStyle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit();
     this.tabPromo_Package.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemDesc.Properties)).EndInit();
     this.tabPromo_ReceiptSalesCategory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSales2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).EndInit();
     this.ResumeLayout(false);
 }
Example #12
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmVendorQuery));
     this.groupControlDataList   = new DevExpress.XtraEditors.GroupControl();
     this.gridControlDetail      = new DevExpress.XtraGrid.GridControl();
     this.gridView1              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnVendorID     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVendorAttn   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVendorName   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVendorTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.drpGridYesOrNo         = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.groupControlQuery      = new DevExpress.XtraEditors.GroupControl();
     this.txtQVendorNM           = new DevExpress.XtraEditors.TextEdit();
     this.label1   = new System.Windows.Forms.Label();
     this.btnLoad  = new DevExpress.XtraEditors.SimpleButton();
     this.btnQuery = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.HTBaseUIDBRead)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).BeginInit();
     this.groupControlDataList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlQuery)).BeginInit();
     this.groupControlQuery.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQVendorNM.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // BaseIlYesOrNo
     //
     this.BaseIlYesOrNo.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlYesOrNo.ImageStream")));
     this.BaseIlYesOrNo.Images.SetKeyName(0, "");
     this.BaseIlYesOrNo.Images.SetKeyName(1, "");
     //
     // BaseIlAll
     //
     this.BaseIlAll.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlAll.ImageStream")));
     this.BaseIlAll.Images.SetKeyName(0, "");
     this.BaseIlAll.Images.SetKeyName(1, "");
     this.BaseIlAll.Images.SetKeyName(2, "");
     this.BaseIlAll.Images.SetKeyName(3, "");
     this.BaseIlAll.Images.SetKeyName(4, "");
     this.BaseIlAll.Images.SetKeyName(5, "");
     this.BaseIlAll.Images.SetKeyName(6, "");
     this.BaseIlAll.Images.SetKeyName(7, "");
     this.BaseIlAll.Images.SetKeyName(8, "");
     this.BaseIlAll.Images.SetKeyName(9, "");
     this.BaseIlAll.Images.SetKeyName(10, "");
     this.BaseIlAll.Images.SetKeyName(11, "");
     this.BaseIlAll.Images.SetKeyName(12, "");
     this.BaseIlAll.Images.SetKeyName(13, "");
     this.BaseIlAll.Images.SetKeyName(14, "");
     this.BaseIlAll.Images.SetKeyName(15, "");
     this.BaseIlAll.Images.SetKeyName(16, "");
     this.BaseIlAll.Images.SetKeyName(17, "");
     this.BaseIlAll.Images.SetKeyName(18, "");
     this.BaseIlAll.Images.SetKeyName(19, "");
     this.BaseIlAll.Images.SetKeyName(20, "");
     this.BaseIlAll.Images.SetKeyName(21, "");
     this.BaseIlAll.Images.SetKeyName(22, "");
     this.BaseIlAll.Images.SetKeyName(23, "");
     this.BaseIlAll.Images.SetKeyName(24, "");
     this.BaseIlAll.Images.SetKeyName(25, "");
     this.BaseIlAll.Images.SetKeyName(26, "");
     this.BaseIlAll.Images.SetKeyName(27, "");
     this.BaseIlAll.Images.SetKeyName(28, "");
     this.BaseIlAll.Images.SetKeyName(29, "");
     this.BaseIlAll.Images.SetKeyName(30, "");
     this.BaseIlAll.Images.SetKeyName(31, "");
     this.BaseIlAll.Images.SetKeyName(32, "");
     this.BaseIlAll.Images.SetKeyName(33, "");
     this.BaseIlAll.Images.SetKeyName(34, "");
     //
     // groupControlDataList
     //
     this.groupControlDataList.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControlDataList.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlDataList.Controls.Add(this.gridControlDetail);
     this.groupControlDataList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlDataList.Location = new System.Drawing.Point(0, 59);
     this.groupControlDataList.Name     = "groupControlDataList";
     this.groupControlDataList.Size     = new System.Drawing.Size(520, 387);
     this.groupControlDataList.TabIndex = 15;
     this.groupControlDataList.Text     = "数据列表";
     //
     // gridControlDetail
     //
     this.gridControlDetail.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location          = new System.Drawing.Point(2, 22);
     this.gridControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlDetail.MainView          = this.gridView1;
     this.gridControlDetail.Name              = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.drpGridYesOrNo
     });
     this.gridControlDetail.Size     = new System.Drawing.Size(516, 363);
     this.gridControlDetail.TabIndex = 33;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     this.gridControlDetail.DoubleClick += new System.EventHandler(this.btnLoad_Click);
     //
     // gridView1
     //
     this.gridView1.BorderStyle          = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridView1.ColumnPanelRowHeight = 22;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumnVendorID,
         this.gridColumnVendorAttn,
         this.gridColumnVendorName,
         this.gridColumnVendorTypeID
     });
     this.gridView1.GridControl = this.gridControlDetail;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow  = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel  = false;
     this.gridView1.RowHeight     = 22;
     this.gridView1.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView1_RowCellStyle);
     this.gridView1.DoubleClick  += new System.EventHandler(this.btnLoad_Click);
     //
     // gridColumnVendorID
     //
     this.gridColumnVendorID.Caption      = "编号";
     this.gridColumnVendorID.FieldName    = "VendorID";
     this.gridColumnVendorID.Name         = "gridColumnVendorID";
     this.gridColumnVendorID.Visible      = true;
     this.gridColumnVendorID.VisibleIndex = 0;
     this.gridColumnVendorID.Width        = 84;
     //
     // gridColumnVendorAttn
     //
     this.gridColumnVendorAttn.Caption      = "简称";
     this.gridColumnVendorAttn.FieldName    = "VendorAttn";
     this.gridColumnVendorAttn.Name         = "gridColumnVendorAttn";
     this.gridColumnVendorAttn.Visible      = true;
     this.gridColumnVendorAttn.VisibleIndex = 1;
     this.gridColumnVendorAttn.Width        = 123;
     //
     // gridColumnVendorName
     //
     this.gridColumnVendorName.Caption      = "名称";
     this.gridColumnVendorName.FieldName    = "VendorName";
     this.gridColumnVendorName.Name         = "gridColumnVendorName";
     this.gridColumnVendorName.Visible      = true;
     this.gridColumnVendorName.VisibleIndex = 2;
     this.gridColumnVendorName.Width        = 279;
     //
     // gridColumnVendorTypeID
     //
     this.gridColumnVendorTypeID.Caption   = "单位类型";
     this.gridColumnVendorTypeID.FieldName = "VendorTypeID";
     this.gridColumnVendorTypeID.Name      = "gridColumnVendorTypeID";
     //
     // drpGridYesOrNo
     //
     this.drpGridYesOrNo.AutoHeight = false;
     this.drpGridYesOrNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.drpGridYesOrNo.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.drpGridYesOrNo.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("是", 1, 1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("否", 0, 0)
     });
     this.drpGridYesOrNo.Name        = "drpGridYesOrNo";
     this.drpGridYesOrNo.SmallImages = this.BaseIlYesOrNo;
     //
     // groupControlQuery
     //
     this.groupControlQuery.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControlQuery.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlQuery.Controls.Add(this.txtQVendorNM);
     this.groupControlQuery.Controls.Add(this.label1);
     this.groupControlQuery.Controls.Add(this.btnLoad);
     this.groupControlQuery.Controls.Add(this.btnQuery);
     this.groupControlQuery.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupControlQuery.Location = new System.Drawing.Point(0, 0);
     this.groupControlQuery.Name     = "groupControlQuery";
     this.groupControlQuery.Size     = new System.Drawing.Size(520, 59);
     this.groupControlQuery.TabIndex = 14;
     this.groupControlQuery.Text     = "查询";
     //
     // txtQVendorNM
     //
     this.txtQVendorNM.EditValue = "";
     this.txtQVendorNM.Location  = new System.Drawing.Point(74, 28);
     this.txtQVendorNM.Name      = "txtQVendorNM";
     this.txtQVendorNM.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQVendorNM.Size              = new System.Drawing.Size(240, 22);
     this.txtQVendorNM.TabIndex          = 3;
     this.txtQVendorNM.EditValueChanged += new System.EventHandler(this.txtQVendorNM_EditValueChanged);
     this.txtQVendorNM.KeyDown          += new System.Windows.Forms.KeyEventHandler(this.txtQVendorNM_KeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(11, 33);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 40;
     this.label1.Text     = "单位名称";
     this.label1.Click   += new System.EventHandler(this.label1_Click);
     //
     // btnLoad
     //
     this.btnLoad.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnLoad.Location    = new System.Drawing.Point(424, 28);
     this.btnLoad.Name        = "btnLoad";
     this.btnLoad.Size        = new System.Drawing.Size(75, 23);
     this.btnLoad.TabIndex    = 5;
     this.btnLoad.Text        = "加载";
     this.btnLoad.Click      += new System.EventHandler(this.btnLoad_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnQuery.Location    = new System.Drawing.Point(320, 28);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 4;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // frmVendorQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(520, 446);
     this.Controls.Add(this.groupControlDataList);
     this.Controls.Add(this.groupControlQuery);
     this.ImeMode        = System.Windows.Forms.ImeMode.On;
     this.MDISubShowFlag = true;
     this.Name           = "frmVendorQuery";
     this.Text           = "查询";
     this.Load          += new System.EventHandler(this.frmVendorQuery_Load);
     this.Controls.SetChildIndex(this.groupControlQuery, 0);
     this.Controls.SetChildIndex(this.groupControlDataList, 0);
     this.Controls.SetChildIndex(this.BaseFocusLabelTemp, 0);
     ((System.ComponentModel.ISupportInitialize)(this.HTBaseUIDBRead)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).EndInit();
     this.groupControlDataList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlQuery)).EndInit();
     this.groupControlQuery.ResumeLayout(false);
     this.groupControlQuery.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQVendorNM.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #13
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(frmDepartment));
     this.grpMDServiceTop           = new DevExpress.XtraEditors.GroupControl();
     this.btn_Add                   = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1                = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del                   = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl1              = new DevExpress.XtraGrid.GridControl();
     this.gridView1                 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LK_nDepartHead            = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).BeginInit();
     this.grpMDServiceTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LK_nDepartHead)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDServiceTop
     //
     this.grpMDServiceTop.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.grpMDServiceTop.Appearance.Options.UseBackColor   = true;
     this.grpMDServiceTop.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDServiceTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDServiceTop.Controls.Add(this.btn_Add);
     this.grpMDServiceTop.Controls.Add(this.btn_Del);
     this.grpMDServiceTop.Controls.Add(this.gridControl1);
     this.grpMDServiceTop.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDServiceTop.Location          = new System.Drawing.Point(0, 0);
     this.grpMDServiceTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDServiceTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDServiceTop.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMDServiceTop.Name     = "grpMDServiceTop";
     this.grpMDServiceTop.Size     = new System.Drawing.Size(984, 560);
     this.grpMDServiceTop.TabIndex = 91;
     this.grpMDServiceTop.Text     = "Department";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont        = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList  = this.imageList1;
     this.btn_Add.ImeMode    = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location   = new System.Drawing.Point(8, 24);
     this.btn_Add.Name       = "btn_Add";
     this.btn_Add.Size       = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex   = 130;
     this.btn_Add.Click     += new System.EventHandler(this.btn_Add_Click);
     //
     // 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_Del
     //
     this.btn_Del.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont        = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList  = this.imageList1;
     this.btn_Del.Location   = new System.Drawing.Point(48, 24);
     this.btn_Del.Name       = "btn_Del";
     this.btn_Del.Size       = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex   = 129;
     this.btn_Del.Click     += new System.EventHandler(this.btn_Del_Click);
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location          = new System.Drawing.Point(2, 46);
     this.gridControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.LK_nDepartHead,
         this.repositoryItemLookUpEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(980, 512);
     this.gridControl1.TabIndex = 19;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort   = false;
     this.gridView1.OptionsView.ShowGroupPanel       = false;
     this.gridView1.LostFocus += new System.EventHandler(this.gridView1_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Department ID";
     this.gridColumn1.FieldName    = "nDepartmentID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 152;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Description";
     this.gridColumn2.FieldName    = "strDescription";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 556;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Department Head";
     this.gridColumn3.ColumnEdit   = this.repositoryItemLookUpEdit1;
     this.gridColumn3.FieldName    = "nDepartHead";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width        = 227;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // LK_nDepartHead
     //
     this.LK_nDepartHead.AutoHeight = false;
     this.LK_nDepartHead.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.LK_nDepartHead.Name = "LK_nDepartHead";
     //
     // frmDepartment
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDServiceTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmDepartment";
     this.Text            = "frmDepartment";
     this.Load           += new System.EventHandler(this.frmDepartment_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).EndInit();
     this.grpMDServiceTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LK_nDepartHead)).EndInit();
     this.ResumeLayout(false);
 }
Example #14
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(frmBranch));
     this.grpMdBranchBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.tabCtrlMd_Branch = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.btnBranchTarget_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btnBranchTarget_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_BranchTarget = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_BranchTarget = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdBT_cbNYearID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdBT_cbNMonthID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.mdBT_txtMFitnessPackageTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdBT_txtMFitnessProductTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdBT_txtMSpaPackageTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdBT_txtMSpaProductTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdBT_txtMPTPackageTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.btnReceipt_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnReceipt_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_BranchReceipt = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_BranchReceipt = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpMdBranchTop = new DevExpress.XtraEditors.GroupControl();
     this.sBtnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sBtnSubtract = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_Branch = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Branch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.strBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ReceiptHeader1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ReceiptHeader2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ReceiptHeader3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ReceiptHeader4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ReceiptHeader5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ReceiptFooter = new DevExpress.XtraGrid.Columns.GridColumn();
     this.LockerRental1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.LockerRental2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.LockerDepositRate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.LockerGracePeriod = new DevExpress.XtraGrid.Columns.GridColumn();
     this.NonMembershipNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ManagerID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_ManagerID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Status = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMdBranchBelow2)).BeginInit();
     this.grpMdBranchBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabCtrlMd_Branch)).BeginInit();
     this.tabCtrlMd_Branch.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_BranchTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BranchTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdBT_cbNYearID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdBT_cbNMonthID)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_BranchReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BranchReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMdBranchTop)).BeginInit();
     this.grpMdBranchTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Branch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Branch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ManagerID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Status)).BeginInit();
     this.SuspendLayout();
     //
     // grpMdBranchBelow2
     //
     this.grpMdBranchBelow2.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMdBranchBelow2.Appearance.Options.UseBackColor = true;
     this.grpMdBranchBelow2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMdBranchBelow2.AppearanceCaption.Options.UseFont = true;
     this.grpMdBranchBelow2.Controls.Add(this.tabCtrlMd_Branch);
     this.grpMdBranchBelow2.Location = new System.Drawing.Point(8, 272);
     this.grpMdBranchBelow2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMdBranchBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMdBranchBelow2.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMdBranchBelow2.Name = "grpMdBranchBelow2";
     this.grpMdBranchBelow2.Size = new System.Drawing.Size(976, 280);
     this.grpMdBranchBelow2.TabIndex = 15;
     this.grpMdBranchBelow2.Text = "Company Branch";
     //
     // tabCtrlMd_Branch
     //
     this.tabCtrlMd_Branch.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabCtrlMd_Branch.Appearance.Options.UseFont = true;
     this.tabCtrlMd_Branch.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabCtrlMd_Branch.AppearancePage.Header.Options.UseFont = true;
     this.tabCtrlMd_Branch.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabCtrlMd_Branch.Location = new System.Drawing.Point(2, 22);
     this.tabCtrlMd_Branch.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabCtrlMd_Branch.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabCtrlMd_Branch.LookAndFeel.UseWindowsXPTheme = false;
     this.tabCtrlMd_Branch.Name = "tabCtrlMd_Branch";
     this.tabCtrlMd_Branch.SelectedTabPage = this.xtraTabPage1;
     this.tabCtrlMd_Branch.Size = new System.Drawing.Size(972, 256);
     this.tabCtrlMd_Branch.TabIndex = 83;
     this.tabCtrlMd_Branch.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                      this.xtraTabPage1,
                                                                                      this.xtraTabPage2});
     this.tabCtrlMd_Branch.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.btnBranchTarget_Add);
     this.xtraTabPage1.Controls.Add(this.btnBranchTarget_Del);
     this.xtraTabPage1.Controls.Add(this.gridControlMd_BranchTarget);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(963, 223);
     this.xtraTabPage1.Text = "Branch Target";
     //
     // btnBranchTarget_Add
     //
     this.btnBranchTarget_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnBranchTarget_Add.Appearance.Options.UseFont = true;
     this.btnBranchTarget_Add.Appearance.Options.UseTextOptions = true;
     this.btnBranchTarget_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnBranchTarget_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnBranchTarget_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnBranchTarget_Add.ImageIndex = 0;
     this.btnBranchTarget_Add.ImageList = this.imageList1;
     this.btnBranchTarget_Add.Location = new System.Drawing.Point(8, 0);
     this.btnBranchTarget_Add.Name = "btnBranchTarget_Add";
     this.btnBranchTarget_Add.Size = new System.Drawing.Size(38, 16);
     this.btnBranchTarget_Add.TabIndex = 123;
     this.btnBranchTarget_Add.Click += new System.EventHandler(this.btnBranchTarget_Add_Click);
     //
     // 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;
     //
     // btnBranchTarget_Del
     //
     this.btnBranchTarget_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnBranchTarget_Del.Appearance.Options.UseFont = true;
     this.btnBranchTarget_Del.Appearance.Options.UseTextOptions = true;
     this.btnBranchTarget_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnBranchTarget_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnBranchTarget_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnBranchTarget_Del.ImageIndex = 1;
     this.btnBranchTarget_Del.ImageList = this.imageList1;
     this.btnBranchTarget_Del.Location = new System.Drawing.Point(48, 0);
     this.btnBranchTarget_Del.Name = "btnBranchTarget_Del";
     this.btnBranchTarget_Del.Size = new System.Drawing.Size(38, 16);
     this.btnBranchTarget_Del.TabIndex = 122;
     this.btnBranchTarget_Del.Click += new System.EventHandler(this.btnBranchTarget_Del_Click);
     //
     // gridControlMd_BranchTarget
     //
     //
     // gridControlMd_BranchTarget.EmbeddedNavigator
     //
     this.gridControlMd_BranchTarget.EmbeddedNavigator.Name = "";
     this.gridControlMd_BranchTarget.Location = new System.Drawing.Point(0, 24);
     this.gridControlMd_BranchTarget.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_BranchTarget.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_BranchTarget.MainView = this.gridViewMd_BranchTarget;
     this.gridControlMd_BranchTarget.Name = "gridControlMd_BranchTarget";
     this.gridControlMd_BranchTarget.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                         this.mdBT_cbNYearID,
                                                                                                                         this.mdBT_cbNMonthID});
     this.gridControlMd_BranchTarget.Size = new System.Drawing.Size(952, 184);
     this.gridControlMd_BranchTarget.TabIndex = 103;
     this.gridControlMd_BranchTarget.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                               this.gridViewMd_BranchTarget});
     //
     // gridViewMd_BranchTarget
     //
     this.gridViewMd_BranchTarget.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                    this.gridColumn1,
                                                                                                    this.gridColumn13,
                                                                                                    this.mdBT_txtMFitnessPackageTarget,
                                                                                                    this.mdBT_txtMFitnessProductTarget,
                                                                                                    this.mdBT_txtMSpaPackageTarget,
                                                                                                    this.mdBT_txtMSpaProductTarget,
                                                                                                    this.mdBT_txtMPTPackageTarget});
     this.gridViewMd_BranchTarget.GridControl = this.gridControlMd_BranchTarget;
     this.gridViewMd_BranchTarget.Name = "gridViewMd_BranchTarget";
     this.gridViewMd_BranchTarget.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_BranchTarget.OptionsCustomization.AllowSort = false;
     this.gridViewMd_BranchTarget.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_BranchTarget.LostFocus += new System.EventHandler(this.gridViewMd_BranchTarget_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Given Year";
     this.gridColumn1.ColumnEdit = this.mdBT_cbNYearID;
     this.gridColumn1.FieldName = "nYearID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // mdBT_cbNYearID
     //
     this.mdBT_cbNYearID.AutoHeight = false;
     this.mdBT_cbNYearID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdBT_cbNYearID.Items.AddRange(new object[] {
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2000", 2000, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2001", 2001, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2002", 2002, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2003", 2003, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2004", 2004, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2005", 2005, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2006", 2006, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2007", 2007, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2008", 2008, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2009", 2009, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2010", 2010, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2011", 2011, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2012", 2012, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2013", 2013, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2014", 2014, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2015", 2015, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2016", 2016, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2017", 2017, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2018", 2018, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2019", 2019, -1),
                                                         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2020", 2020, -1)});
     this.mdBT_cbNYearID.Name = "mdBT_cbNYearID";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Given Month";
     this.gridColumn13.ColumnEdit = this.mdBT_cbNMonthID;
     this.gridColumn13.DisplayFormat.FormatString = "F0";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn13.FieldName = "nMonthID";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 90;
     //
     // mdBT_cbNMonthID
     //
     this.mdBT_cbNMonthID.AutoHeight = false;
     this.mdBT_cbNMonthID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdBT_cbNMonthID.Items.AddRange(new object[] {
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                          new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.mdBT_cbNMonthID.Name = "mdBT_cbNMonthID";
     //
     // mdBT_txtMFitnessPackageTarget
     //
     this.mdBT_txtMFitnessPackageTarget.Caption = "Fitness Package Target";
     this.mdBT_txtMFitnessPackageTarget.DisplayFormat.FormatString = "c";
     this.mdBT_txtMFitnessPackageTarget.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.mdBT_txtMFitnessPackageTarget.FieldName = "mFitnessPackageTarget";
     this.mdBT_txtMFitnessPackageTarget.Name = "mdBT_txtMFitnessPackageTarget";
     this.mdBT_txtMFitnessPackageTarget.Visible = true;
     this.mdBT_txtMFitnessPackageTarget.VisibleIndex = 2;
     this.mdBT_txtMFitnessPackageTarget.Width = 152;
     //
     // mdBT_txtMFitnessProductTarget
     //
     this.mdBT_txtMFitnessProductTarget.Caption = "Fitness Product Target";
     this.mdBT_txtMFitnessProductTarget.DisplayFormat.FormatString = "c";
     this.mdBT_txtMFitnessProductTarget.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.mdBT_txtMFitnessProductTarget.FieldName = "mFitnessProductTarget";
     this.mdBT_txtMFitnessProductTarget.Name = "mdBT_txtMFitnessProductTarget";
     this.mdBT_txtMFitnessProductTarget.Visible = true;
     this.mdBT_txtMFitnessProductTarget.VisibleIndex = 3;
     this.mdBT_txtMFitnessProductTarget.Width = 152;
     //
     // mdBT_txtMSpaPackageTarget
     //
     this.mdBT_txtMSpaPackageTarget.Caption = "Spa Package Target";
     this.mdBT_txtMSpaPackageTarget.DisplayFormat.FormatString = "c";
     this.mdBT_txtMSpaPackageTarget.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.mdBT_txtMSpaPackageTarget.FieldName = "mSpaPackageTarget";
     this.mdBT_txtMSpaPackageTarget.Name = "mdBT_txtMSpaPackageTarget";
     this.mdBT_txtMSpaPackageTarget.Visible = true;
     this.mdBT_txtMSpaPackageTarget.VisibleIndex = 4;
     this.mdBT_txtMSpaPackageTarget.Width = 152;
     //
     // mdBT_txtMSpaProductTarget
     //
     this.mdBT_txtMSpaProductTarget.Caption = "Spa Product Target";
     this.mdBT_txtMSpaProductTarget.DisplayFormat.FormatString = "c";
     this.mdBT_txtMSpaProductTarget.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.mdBT_txtMSpaProductTarget.FieldName = "mSpaProductTarget";
     this.mdBT_txtMSpaProductTarget.Name = "mdBT_txtMSpaProductTarget";
     this.mdBT_txtMSpaProductTarget.Visible = true;
     this.mdBT_txtMSpaProductTarget.VisibleIndex = 5;
     this.mdBT_txtMSpaProductTarget.Width = 152;
     //
     // mdBT_txtMPTPackageTarget
     //
     this.mdBT_txtMPTPackageTarget.Caption = "PT Package Target";
     this.mdBT_txtMPTPackageTarget.DisplayFormat.FormatString = "c";
     this.mdBT_txtMPTPackageTarget.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.mdBT_txtMPTPackageTarget.FieldName = "mPTPackageTarget";
     this.mdBT_txtMPTPackageTarget.Name = "mdBT_txtMPTPackageTarget";
     this.mdBT_txtMPTPackageTarget.Visible = true;
     this.mdBT_txtMPTPackageTarget.VisibleIndex = 6;
     this.mdBT_txtMPTPackageTarget.Width = 155;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.btnReceipt_Add);
     this.xtraTabPage2.Controls.Add(this.btnReceipt_Del);
     this.xtraTabPage2.Controls.Add(this.gridControlMd_BranchReceipt);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(963, 223);
     this.xtraTabPage2.Text = "Receipt No";
     //
     // btnReceipt_Add
     //
     this.btnReceipt_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReceipt_Add.Appearance.Options.UseFont = true;
     this.btnReceipt_Add.Appearance.Options.UseTextOptions = true;
     this.btnReceipt_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnReceipt_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnReceipt_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnReceipt_Add.ImageIndex = 0;
     this.btnReceipt_Add.ImageList = this.imageList1;
     this.btnReceipt_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnReceipt_Add.Location = new System.Drawing.Point(8, 0);
     this.btnReceipt_Add.Name = "btnReceipt_Add";
     this.btnReceipt_Add.Size = new System.Drawing.Size(32, 24);
     this.btnReceipt_Add.TabIndex = 128;
     this.btnReceipt_Add.Click += new System.EventHandler(this.btnReceipt_Add_Click);
     //
     // btnReceipt_Del
     //
     this.btnReceipt_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReceipt_Del.Appearance.Options.UseFont = true;
     this.btnReceipt_Del.Appearance.Options.UseTextOptions = true;
     this.btnReceipt_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnReceipt_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnReceipt_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnReceipt_Del.ImageIndex = 1;
     this.btnReceipt_Del.ImageList = this.imageList1;
     this.btnReceipt_Del.Location = new System.Drawing.Point(40, 0);
     this.btnReceipt_Del.Name = "btnReceipt_Del";
     this.btnReceipt_Del.Size = new System.Drawing.Size(32, 24);
     this.btnReceipt_Del.TabIndex = 127;
     this.btnReceipt_Del.Click += new System.EventHandler(this.btnReceipt_Del_Click);
     //
     // gridControlMd_BranchReceipt
     //
     //
     // gridControlMd_BranchReceipt.EmbeddedNavigator
     //
     this.gridControlMd_BranchReceipt.EmbeddedNavigator.Name = "";
     this.gridControlMd_BranchReceipt.Location = new System.Drawing.Point(0, 24);
     this.gridControlMd_BranchReceipt.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_BranchReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_BranchReceipt.MainView = this.gridViewMd_BranchReceipt;
     this.gridControlMd_BranchReceipt.Name = "gridControlMd_BranchReceipt";
     this.gridControlMd_BranchReceipt.Size = new System.Drawing.Size(960, 184);
     this.gridControlMd_BranchReceipt.TabIndex = 104;
     this.gridControlMd_BranchReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                this.gridViewMd_BranchReceipt});
     //
     // gridViewMd_BranchReceipt
     //
     this.gridViewMd_BranchReceipt.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                     this.gridColumn19,
                                                                                                     this.gridColumn20});
     this.gridViewMd_BranchReceipt.GridControl = this.gridControlMd_BranchReceipt;
     this.gridViewMd_BranchReceipt.Name = "gridViewMd_BranchReceipt";
     this.gridViewMd_BranchReceipt.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_BranchReceipt.OptionsCustomization.AllowSort = false;
     this.gridViewMd_BranchReceipt.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_BranchReceipt.LostFocus += new System.EventHandler(this.gridViewMd_BranchReceipt_LostFocus);
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Terminal ID";
     this.gridColumn19.DisplayFormat.FormatString = "F0";
     this.gridColumn19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn19.FieldName = "nTerminalID";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 143;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Receipt Number";
     this.gridColumn20.DisplayFormat.FormatString = "F0";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn20.FieldName = "nReceiptNo";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 1;
     this.gridColumn20.Width = 796;
     //
     // grpMdBranchTop
     //
     this.grpMdBranchTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMdBranchTop.Appearance.Options.UseBackColor = true;
     this.grpMdBranchTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMdBranchTop.AppearanceCaption.Options.UseFont = true;
     this.grpMdBranchTop.Controls.Add(this.sBtnAdd);
     this.grpMdBranchTop.Controls.Add(this.sBtnSubtract);
     this.grpMdBranchTop.Controls.Add(this.gridControlMd_Branch);
     this.grpMdBranchTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMdBranchTop.Location = new System.Drawing.Point(8, 0);
     this.grpMdBranchTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMdBranchTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMdBranchTop.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMdBranchTop.Name = "grpMdBranchTop";
     this.grpMdBranchTop.Size = new System.Drawing.Size(976, 264);
     this.grpMdBranchTop.TabIndex = 87;
     this.grpMdBranchTop.Text = "Branch";
     //
     // sBtnAdd
     //
     this.sBtnAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sBtnAdd.Appearance.Options.UseFont = true;
     this.sBtnAdd.Appearance.Options.UseTextOptions = true;
     this.sBtnAdd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.sBtnAdd.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.sBtnAdd.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.sBtnAdd.ImageIndex = 0;
     this.sBtnAdd.ImageList = this.imageList1;
     this.sBtnAdd.ImeMode = System.Windows.Forms.ImeMode.On;
     this.sBtnAdd.Location = new System.Drawing.Point(8, 24);
     this.sBtnAdd.Name = "sBtnAdd";
     this.sBtnAdd.Size = new System.Drawing.Size(38, 16);
     this.sBtnAdd.TabIndex = 56;
     this.sBtnAdd.Click += new System.EventHandler(this.sBtnAdd_Click);
     //
     // sBtnSubtract
     //
     this.sBtnSubtract.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sBtnSubtract.Appearance.Options.UseFont = true;
     this.sBtnSubtract.Appearance.Options.UseTextOptions = true;
     this.sBtnSubtract.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.sBtnSubtract.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.sBtnSubtract.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.sBtnSubtract.ImageIndex = 1;
     this.sBtnSubtract.ImageList = this.imageList1;
     this.sBtnSubtract.Location = new System.Drawing.Point(48, 24);
     this.sBtnSubtract.Name = "sBtnSubtract";
     this.sBtnSubtract.Size = new System.Drawing.Size(38, 16);
     this.sBtnSubtract.TabIndex = 55;
     this.sBtnSubtract.Click += new System.EventHandler(this.sBtnSubtract_Click);
     //
     // gridControlMd_Branch
     //
     this.gridControlMd_Branch.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControlMd_Branch.EmbeddedNavigator
     //
     this.gridControlMd_Branch.EmbeddedNavigator.Name = "";
     this.gridControlMd_Branch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridControlMd_Branch.Location = new System.Drawing.Point(2, 46);
     this.gridControlMd_Branch.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_Branch.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Branch.MainView = this.gridViewMd_Branch;
     this.gridControlMd_Branch.Name = "gridControlMd_Branch";
     this.gridControlMd_Branch.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                   this.lk_ManagerID,
                                                                                                                   this.chk_Status});
     this.gridControlMd_Branch.Size = new System.Drawing.Size(972, 216);
     this.gridControlMd_Branch.TabIndex = 17;
     this.gridControlMd_Branch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                         this.gridViewMd_Branch});
     //
     // gridViewMd_Branch
     //
     this.gridViewMd_Branch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.strBranchCode,
                                                                                              this.strBranchName,
                                                                                              this.ReceiptHeader1,
                                                                                              this.ReceiptHeader2,
                                                                                              this.ReceiptHeader3,
                                                                                              this.ReceiptHeader4,
                                                                                              this.ReceiptHeader5,
                                                                                              this.ReceiptFooter,
                                                                                              this.LockerRental1,
                                                                                              this.LockerRental2,
                                                                                              this.LockerDepositRate,
                                                                                              this.LockerGracePeriod,
                                                                                              this.NonMembershipNo,
                                                                                              this.ManagerID,
                                                                                              this.gridColumn2});
     this.gridViewMd_Branch.GridControl = this.gridControlMd_Branch;
     this.gridViewMd_Branch.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Branch.Name = "gridViewMd_Branch";
     this.gridViewMd_Branch.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_Branch.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Branch.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Branch.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Branch.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Branch.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Branch_FocusedRowChanged);
     this.gridViewMd_Branch.LostFocus += new System.EventHandler(this.gridViewMd_Branch_LostFocus);
     //
     // strBranchCode
     //
     this.strBranchCode.Caption = "Branch";
     this.strBranchCode.FieldName = "strBranchCode";
     this.strBranchCode.Name = "strBranchCode";
     this.strBranchCode.Visible = true;
     this.strBranchCode.VisibleIndex = 0;
     this.strBranchCode.Width = 62;
     //
     // strBranchName
     //
     this.strBranchName.Caption = "Name";
     this.strBranchName.FieldName = "strBranchName";
     this.strBranchName.Name = "strBranchName";
     this.strBranchName.Visible = true;
     this.strBranchName.VisibleIndex = 1;
     this.strBranchName.Width = 100;
     //
     // ReceiptHeader1
     //
     this.ReceiptHeader1.Caption = "Receipt Header 1";
     this.ReceiptHeader1.FieldName = "strHeader1";
     this.ReceiptHeader1.Name = "ReceiptHeader1";
     this.ReceiptHeader1.Visible = true;
     this.ReceiptHeader1.VisibleIndex = 2;
     this.ReceiptHeader1.Width = 100;
     //
     // ReceiptHeader2
     //
     this.ReceiptHeader2.Caption = "Receipt Header 2";
     this.ReceiptHeader2.FieldName = "strHeader2";
     this.ReceiptHeader2.Name = "ReceiptHeader2";
     this.ReceiptHeader2.Visible = true;
     this.ReceiptHeader2.VisibleIndex = 3;
     this.ReceiptHeader2.Width = 100;
     //
     // ReceiptHeader3
     //
     this.ReceiptHeader3.Caption = "Receipt Header 3";
     this.ReceiptHeader3.FieldName = "strHeader3";
     this.ReceiptHeader3.Name = "ReceiptHeader3";
     this.ReceiptHeader3.Visible = true;
     this.ReceiptHeader3.VisibleIndex = 4;
     this.ReceiptHeader3.Width = 100;
     //
     // ReceiptHeader4
     //
     this.ReceiptHeader4.Caption = "Receipt Header 4";
     this.ReceiptHeader4.FieldName = "strHeader4";
     this.ReceiptHeader4.Name = "ReceiptHeader4";
     this.ReceiptHeader4.Visible = true;
     this.ReceiptHeader4.VisibleIndex = 5;
     this.ReceiptHeader4.Width = 100;
     //
     // ReceiptHeader5
     //
     this.ReceiptHeader5.Caption = "Receipt Header 5";
     this.ReceiptHeader5.FieldName = "strHeader5";
     this.ReceiptHeader5.Name = "ReceiptHeader5";
     this.ReceiptHeader5.Visible = true;
     this.ReceiptHeader5.VisibleIndex = 6;
     this.ReceiptHeader5.Width = 95;
     //
     // ReceiptFooter
     //
     this.ReceiptFooter.Caption = "Receipt Footer";
     this.ReceiptFooter.FieldName = "strFooter1";
     this.ReceiptFooter.Name = "ReceiptFooter";
     this.ReceiptFooter.Visible = true;
     this.ReceiptFooter.VisibleIndex = 7;
     this.ReceiptFooter.Width = 87;
     //
     // LockerRental1
     //
     this.LockerRental1.AppearanceCell.Options.UseTextOptions = true;
     this.LockerRental1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LockerRental1.Caption = "Locker Rental 1";
     this.LockerRental1.DisplayFormat.FormatString = "c";
     this.LockerRental1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.LockerRental1.FieldName = "mLockerRentalRate1";
     this.LockerRental1.Name = "LockerRental1";
     this.LockerRental1.Visible = true;
     this.LockerRental1.VisibleIndex = 8;
     this.LockerRental1.Width = 100;
     //
     // LockerRental2
     //
     this.LockerRental2.AppearanceCell.Options.UseTextOptions = true;
     this.LockerRental2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LockerRental2.Caption = "Locker Rental 2";
     this.LockerRental2.DisplayFormat.FormatString = "c";
     this.LockerRental2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.LockerRental2.FieldName = "mLockerRentalRate2";
     this.LockerRental2.Name = "LockerRental2";
     this.LockerRental2.Visible = true;
     this.LockerRental2.VisibleIndex = 9;
     this.LockerRental2.Width = 100;
     //
     // LockerDepositRate
     //
     this.LockerDepositRate.AppearanceCell.Options.UseTextOptions = true;
     this.LockerDepositRate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LockerDepositRate.Caption = "Locker Deposit Rate";
     this.LockerDepositRate.DisplayFormat.FormatString = "c";
     this.LockerDepositRate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.LockerDepositRate.FieldName = "mLockerDepositRate";
     this.LockerDepositRate.Name = "LockerDepositRate";
     this.LockerDepositRate.Visible = true;
     this.LockerDepositRate.VisibleIndex = 10;
     this.LockerDepositRate.Width = 110;
     //
     // LockerGracePeriod
     //
     this.LockerGracePeriod.AppearanceCell.Options.UseTextOptions = true;
     this.LockerGracePeriod.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LockerGracePeriod.Caption = "Locker Grace Period";
     this.LockerGracePeriod.DisplayFormat.FormatString = "n";
     this.LockerGracePeriod.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.LockerGracePeriod.FieldName = "nLockerGracePeriod";
     this.LockerGracePeriod.Name = "LockerGracePeriod";
     this.LockerGracePeriod.Visible = true;
     this.LockerGracePeriod.VisibleIndex = 11;
     this.LockerGracePeriod.Width = 110;
     //
     // NonMembershipNo
     //
     this.NonMembershipNo.Caption = "Non-Membership No";
     this.NonMembershipNo.DisplayFormat.FormatString = "f0";
     this.NonMembershipNo.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.NonMembershipNo.FieldName = "nMembershipNo";
     this.NonMembershipNo.Name = "NonMembershipNo";
     this.NonMembershipNo.Visible = true;
     this.NonMembershipNo.VisibleIndex = 12;
     this.NonMembershipNo.Width = 108;
     //
     // ManagerID
     //
     this.ManagerID.Caption = "Manager";
     this.ManagerID.ColumnEdit = this.lk_ManagerID;
     this.ManagerID.FieldName = "nManagerID";
     this.ManagerID.Name = "ManagerID";
     this.ManagerID.Visible = true;
     this.ManagerID.VisibleIndex = 13;
     this.ManagerID.Width = 120;
     //
     // lk_ManagerID
     //
     this.lk_ManagerID.AutoHeight = false;
     this.lk_ManagerID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_ManagerID.Name = "lk_ManagerID";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Status";
     this.gridColumn2.ColumnEdit = this.chk_Status;
     this.gridColumn2.FieldName = "nBrStatusID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 14;
     //
     // chk_Status
     //
     this.chk_Status.AutoHeight = false;
     this.chk_Status.Name = "chk_Status";
     //
     // frmBranch
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 570);
     this.Controls.Add(this.grpMdBranchBelow2);
     this.Controls.Add(this.grpMdBranchTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmBranch";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "frmBranch";
     ((System.ComponentModel.ISupportInitialize)(this.grpMdBranchBelow2)).EndInit();
     this.grpMdBranchBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabCtrlMd_Branch)).EndInit();
     this.tabCtrlMd_Branch.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_BranchTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BranchTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdBT_cbNYearID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdBT_cbNMonthID)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_BranchReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BranchReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMdBranchTop)).EndInit();
     this.grpMdBranchTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Branch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Branch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ManagerID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Status)).EndInit();
     this.ResumeLayout(false);
 }
Example #15
0
        private void Init_MT35()
        {
            MT35          = new DataMasterDetail("DT35", "7");
            designer_MT35 = new FormDesigner(MT35);
            if (Tungay == null || Denngay == null)
            {
                return;
            }
            if (MT35.DsData == null)
            {
                GetData_MT35();
            }
            gc_MT35 = designer_MT35.GenGridControl(MT35.DsStruct.Tables[0], false, DockStyle.Fill);
            gv_MT35 = gc_MT35.ViewCollection[0] as DevExpress.XtraGrid.Views.Grid.GridView;
            gv_MT35.OptionsView.ShowDetailButtons = false;
            gv_MT35.OptionsBehavior.Editable      = true;
            gv_MT35.OptionsBehavior.ReadOnly      = true;
            //foreach (GridColumn gc in gv_MT35.Columns)
            //{
            //    if (gc.ColumnEdit != null && (gc.ColumnEdit as CDTRepGridLookup) != null)
            //    {
            //        foreach (EditorButton b in (gc.ColumnEdit as CDTRepGridLookup).Buttons)
            //            if (b.Kind == ButtonPredefines.Plus) b.Visible = false;
            //    }
            //}
            pOrder.Controls.Add(gc_MT35);
            SplitterControl spc = new SplitterControl();

            spc.Dock = DockStyle.Bottom;
            pOrder.Controls.Add(spc);
            gc_DT35 = designer_MT35.GenGridControl(MT35.DsStruct.Tables[1], false, DockStyle.Bottom);
            gv_DT35 = gc_DT35.ViewCollection[0] as DevExpress.XtraGrid.Views.Grid.GridView;
            gv_DT35.OptionsBehavior.Editable      = true;
            gv_DT35.OptionsBehavior.ReadOnly      = true;
            gv_DT35.OptionsView.ShowFooter        = false;
            gv_DT35.OptionsView.ShowGroupPanel    = false;
            gv_DT35.OptionsView.ShowDetailButtons = false;
            //foreach (GridColumn gc in gvDegv_DT35tail.Columns)
            //{
            //    if (gc.ColumnEdit != null && (gc.ColumnEdit as CDTRepGridLookup) != null)
            //    {
            //        foreach (EditorButton b in (gc.ColumnEdit as CDTRepGridLookup).Buttons)
            //            if (b.Kind == ButtonPredefines.Plus) b.Visible = false;
            //    }
            //}
            pOrder.Controls.Add(gc_DT35);
            try
            {
                int i = MT35.DsData.Tables[0].Rows.IndexOf(MT35.DrCurrentMaster);
                i = gv_MT35.GetRowHandle(i);
                if (!gv_MT35.IsGroupRow(i))
                {
                    RowGroup_MT35 = gv_MT35.GetParentRowHandle(i);
                }
            }
            catch { }
            foreach (DevExpress.XtraGrid.Columns.GridColumn col in gv_MT35.Columns)
            {
                if (col.FieldName.ToUpper() == "TASKID")
                {
                    DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox repTask = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
                    this.gc_MT35.RepositoryItems.Add(repTask);

                    repTask.AutoHeight     = false;
                    repTask.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
                    if (MT35.tbTask != null)
                    {
                        for (int i = 0; i < MT35.tbTask.Rows.Count; i++)
                        {
                            DataRow drTask = MT35.tbTask.Rows[i];
                            if (drTask["Icon"] != DBNull.Value)
                            {
                                if (imageList_Order == null)
                                {
                                    imageList_Order = new ImageList();
                                }
                                this.imageList_Order.Images.Add(GetImage(drTask["Icon"] as byte[]));
                                repTask.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem(drTask["TaskLabel"].ToString(), drTask["ID"], repTask.Items.Count)
                                });
                            }
                        }
                    }
                    repTask.SmallImages = this.imageList_Order;

                    col.ColumnEdit = repTask;
                    col.Caption    = "";
                }
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTimeInOutQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDuyet = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemK_Duyet = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NVID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TenNV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NgayLamViec = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioBatDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioKetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTG_LV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Cham_Cong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_Bs = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_BC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NP_Nam = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NP_KL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Noi_Dung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotIP_Address = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoaiDT_VS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.chkIPMay = new DevExpress.XtraEditors.CheckEdit();
     this.chkChamCong = new DevExpress.XtraEditors.CheckEdit();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.NhanVien = new ProtocolVN.Framework.Win.PLDMTreeGroup();
     this.chkBinhThuong = new DevExpress.XtraEditors.CheckEdit();
     this.ngayLamViec = new ProtocolVN.Framework.Win.Office.PLDateSelection();
     this.chkVe_som = new DevExpress.XtraEditors.CheckEdit();
     this.chkDi_tre = new DevExpress.XtraEditors.CheckEdit();
     this.chkDaChamCong = new DevExpress.XtraEditors.CheckEdit();
     this.chkChuaChamCong = new DevExpress.XtraEditors.CheckEdit();
     this.plLabel1 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIPMay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChamCong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkBinhThuong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkVe_som.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDi_tre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDaChamCong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChuaChamCong.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDuyet,
     this.barButtonItemK_Duyet});
     this.barManager1.MaxItemId = 37;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDuyet, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemK_Duyet),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemDuyet
     //
     this.barButtonItemDuyet.Caption = "&Duyệt";
     this.barButtonItemDuyet.Id = 35;
     this.barButtonItemDuyet.Name = "barButtonItemDuyet";
     //
     // barButtonItemK_Duyet
     //
     this.barButtonItemK_Duyet.Caption = "&Không duyệt";
     this.barButtonItemK_Duyet.Id = 36;
     this.barButtonItemK_Duyet.Name = "barButtonItemK_Duyet";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1013, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 497);
     this.barDockControlBottom.Size = new System.Drawing.Size(1013, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 473);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1013, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 473);
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 85);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1013, 412);
     this.splitContainerControl1.SplitterPosition = 196;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1013, 196);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ID,
     this.Cot_NVID,
     this.Cot_TenNV,
     this.Cot_NgayLamViec,
     this.Cot_GioBatDau,
     this.Cot_GioKetThuc,
     this.CotTG_LV,
     this.Cot_Cham_Cong,
     this.Cot_N_Bs,
     this.Cot_N_BC,
     this.Cot_NP_Nam,
     this.Cot_NP_KL,
     this.Cot_Noi_Dung,
     this.CotLoai,
     this.CotIP_Address,
     this.CotLoaiDT_VS});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 2;
     this.gridViewMaster.GroupPanelText = "TỔNG HỢP THỜI GIAN LÀM VIỆC";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowFooter = true;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Cot_NgayLamViec, DevExpress.Data.ColumnSortOrder.Descending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Cot_TenNV, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // ID
     //
     this.ID.Caption = "ID";
     this.ID.Name = "ID";
     this.ID.Width = 23;
     //
     // Cot_NVID
     //
     this.Cot_NVID.Caption = "NV_ID";
     this.Cot_NVID.Name = "Cot_NVID";
     this.Cot_NVID.Width = 42;
     //
     // Cot_TenNV
     //
     this.Cot_TenNV.Caption = "Nhân viên";
     this.Cot_TenNV.Name = "Cot_TenNV";
     this.Cot_TenNV.Visible = true;
     this.Cot_TenNV.VisibleIndex = 0;
     this.Cot_TenNV.Width = 73;
     //
     // Cot_NgayLamViec
     //
     this.Cot_NgayLamViec.Caption = "Ngày làm việc";
     this.Cot_NgayLamViec.Name = "Cot_NgayLamViec";
     this.Cot_NgayLamViec.Visible = true;
     this.Cot_NgayLamViec.VisibleIndex = 1;
     this.Cot_NgayLamViec.Width = 91;
     //
     // Cot_GioBatDau
     //
     this.Cot_GioBatDau.Caption = "Từ (hh:mm:ss)";
     this.Cot_GioBatDau.Name = "Cot_GioBatDau";
     this.Cot_GioBatDau.Visible = true;
     this.Cot_GioBatDau.VisibleIndex = 2;
     this.Cot_GioBatDau.Width = 82;
     //
     // Cot_GioKetThuc
     //
     this.Cot_GioKetThuc.Caption = "Đến (hh:mm:ss)";
     this.Cot_GioKetThuc.Name = "Cot_GioKetThuc";
     this.Cot_GioKetThuc.Visible = true;
     this.Cot_GioKetThuc.VisibleIndex = 3;
     this.Cot_GioKetThuc.Width = 89;
     //
     // CotTG_LV
     //
     this.CotTG_LV.Caption = "Thời gian làm việc (hh:mm)";
     this.CotTG_LV.Name = "CotTG_LV";
     this.CotTG_LV.Visible = true;
     this.CotTG_LV.VisibleIndex = 4;
     this.CotTG_LV.Width = 139;
     //
     // Cot_Cham_Cong
     //
     this.Cot_Cham_Cong.Caption = "Đã chấm công";
     this.Cot_Cham_Cong.Name = "Cot_Cham_Cong";
     this.Cot_Cham_Cong.Visible = true;
     this.Cot_Cham_Cong.VisibleIndex = 9;
     this.Cot_Cham_Cong.Width = 80;
     //
     // Cot_N_Bs
     //
     this.Cot_N_Bs.Caption = "Sáng (hh:mm)";
     this.Cot_N_Bs.Name = "Cot_N_Bs";
     this.Cot_N_Bs.Visible = true;
     this.Cot_N_Bs.VisibleIndex = 5;
     this.Cot_N_Bs.Width = 79;
     //
     // Cot_N_BC
     //
     this.Cot_N_BC.Caption = "Chiều (hh:mm)";
     this.Cot_N_BC.Name = "Cot_N_BC";
     this.Cot_N_BC.Visible = true;
     this.Cot_N_BC.VisibleIndex = 6;
     this.Cot_N_BC.Width = 82;
     //
     // Cot_NP_Nam
     //
     this.Cot_NP_Nam.Caption = "Nghỉ phép năm";
     this.Cot_NP_Nam.Name = "Cot_NP_Nam";
     this.Cot_NP_Nam.Visible = true;
     this.Cot_NP_Nam.VisibleIndex = 10;
     this.Cot_NP_Nam.Width = 83;
     //
     // Cot_NP_KL
     //
     this.Cot_NP_KL.Caption = "Nghỉ không lương";
     this.Cot_NP_KL.Name = "Cot_NP_KL";
     this.Cot_NP_KL.Visible = true;
     this.Cot_NP_KL.VisibleIndex = 11;
     this.Cot_NP_KL.Width = 95;
     //
     // Cot_Noi_Dung
     //
     this.Cot_Noi_Dung.Caption = "Nội dung";
     this.Cot_Noi_Dung.Name = "Cot_Noi_Dung";
     this.Cot_Noi_Dung.Visible = true;
     this.Cot_Noi_Dung.VisibleIndex = 8;
     this.Cot_Noi_Dung.Width = 54;
     //
     // CotLoai
     //
     this.CotLoai.Caption = "Loại";
     this.CotLoai.Name = "CotLoai";
     this.CotLoai.Width = 31;
     //
     // CotIP_Address
     //
     this.CotIP_Address.Caption = "IP_Address";
     this.CotIP_Address.Name = "CotIP_Address";
     this.CotIP_Address.Visible = true;
     this.CotIP_Address.VisibleIndex = 12;
     this.CotIP_Address.Width = 67;
     //
     // CotLoaiDT_VS
     //
     this.CotLoaiDT_VS.Caption = "Đi trễ / Về sớm";
     this.CotLoaiDT_VS.Name = "CotLoaiDT_VS";
     this.CotLoaiDT_VS.Visible = true;
     this.CotLoaiDT_VS.VisibleIndex = 7;
     this.CotLoaiDT_VS.Width = 83;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(1013, 210);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(1006, 181);
     this.xtraTabPageDetail.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlDetail.Size = new System.Drawing.Size(1006, 181);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetail.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // chkIPMay
     //
     this.chkIPMay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkIPMay.Location = new System.Drawing.Point(838, 33);
     this.chkIPMay.MenuManager = this.barManager1;
     this.chkIPMay.Name = "chkIPMay";
     this.chkIPMay.Properties.Caption = "Xem IP";
     this.chkIPMay.Size = new System.Drawing.Size(101, 19);
     this.chkIPMay.TabIndex = 9;
     this.chkIPMay.Tag = "IPMay";
     this.chkIPMay.CheckedChanged += new System.EventHandler(this.ShowColumns);
     //
     // chkChamCong
     //
     this.chkChamCong.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkChamCong.Location = new System.Drawing.Point(838, 6);
     this.chkChamCong.MenuManager = this.barManager1;
     this.chkChamCong.Name = "chkChamCong";
     this.chkChamCong.Properties.Caption = "Xem tình trạng chấm công";
     this.chkChamCong.Size = new System.Drawing.Size(161, 19);
     this.chkChamCong.TabIndex = 8;
     this.chkChamCong.Tag = "ChamCong";
     this.chkChamCong.CheckedChanged += new System.EventHandler(this.ShowColumns);
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.NhanVien);
     this.popupControlContainerFilter.Controls.Add(this.chkIPMay);
     this.popupControlContainerFilter.Controls.Add(this.chkBinhThuong);
     this.popupControlContainerFilter.Controls.Add(this.chkChamCong);
     this.popupControlContainerFilter.Controls.Add(this.ngayLamViec);
     this.popupControlContainerFilter.Controls.Add(this.chkVe_som);
     this.popupControlContainerFilter.Controls.Add(this.chkDi_tre);
     this.popupControlContainerFilter.Controls.Add(this.chkDaChamCong);
     this.popupControlContainerFilter.Controls.Add(this.chkChuaChamCong);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1013, 61);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // NhanVien
     //
     this.NhanVien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.NhanVien.Location = new System.Drawing.Point(67, 6);
     this.NhanVien.Name = "NhanVien";
     this.NhanVien.Size = new System.Drawing.Size(210, 20);
     this.NhanVien.TabIndex = 0;
     //
     // chkBinhThuong
     //
     this.chkBinhThuong.Location = new System.Drawing.Point(516, 33);
     this.chkBinhThuong.MenuManager = this.barManager1;
     this.chkBinhThuong.Name = "chkBinhThuong";
     this.chkBinhThuong.Properties.Caption = "Bình thường";
     this.chkBinhThuong.Size = new System.Drawing.Size(115, 19);
     this.chkBinhThuong.TabIndex = 7;
     //
     // ngayLamViec
     //
     this.ngayLamViec.Caption = "Năm 2010 và 2011";
     this.ngayLamViec.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear;
     this.ngayLamViec.FirstFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayLamViec.FirstTo = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.ngayLamViec.FromDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayLamViec.Location = new System.Drawing.Point(380, 5);
     this.ngayLamViec.Name = "ngayLamViec";
     this.ngayLamViec.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayLamViec.SecondFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayLamViec.SecondTo = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.ngayLamViec.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear;
     this.ngayLamViec.Size = new System.Drawing.Size(226, 21);
     this.ngayLamViec.TabIndex = 1;
     this.ngayLamViec.ToDate = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.ngayLamViec.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // chkVe_som
     //
     this.chkVe_som.Location = new System.Drawing.Point(448, 33);
     this.chkVe_som.MenuManager = this.barManager1;
     this.chkVe_som.Name = "chkVe_som";
     this.chkVe_som.Properties.Caption = "Về sớm";
     this.chkVe_som.Size = new System.Drawing.Size(66, 19);
     this.chkVe_som.TabIndex = 6;
     //
     // chkDi_tre
     //
     this.chkDi_tre.Location = new System.Drawing.Point(378, 33);
     this.chkDi_tre.MenuManager = this.barManager1;
     this.chkDi_tre.Name = "chkDi_tre";
     this.chkDi_tre.Properties.Caption = "Đi  trễ";
     this.chkDi_tre.Size = new System.Drawing.Size(64, 19);
     this.chkDi_tre.TabIndex = 5;
     //
     // chkDaChamCong
     //
     this.chkDaChamCong.Location = new System.Drawing.Point(181, 33);
     this.chkDaChamCong.MenuManager = this.barManager1;
     this.chkDaChamCong.Name = "chkDaChamCong";
     this.chkDaChamCong.Properties.Caption = "Đã chấm công";
     this.chkDaChamCong.Size = new System.Drawing.Size(110, 19);
     this.chkDaChamCong.TabIndex = 3;
     //
     // chkChuaChamCong
     //
     this.chkChuaChamCong.Location = new System.Drawing.Point(65, 33);
     this.chkChuaChamCong.MenuManager = this.barManager1;
     this.chkChuaChamCong.Name = "chkChuaChamCong";
     this.chkChuaChamCong.Properties.Caption = "Chưa chấm công";
     this.chkChuaChamCong.Size = new System.Drawing.Size(110, 19);
     this.chkChuaChamCong.TabIndex = 2;
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(308, 9);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(66, 13);
     this.plLabel1.TabIndex = 214;
     this.plLabel1.Text = "Ngày làm việc";
     this.plLabel1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.plLabel1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(13, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Nhân viên";
     this.label1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // frmTimeInOutQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 497);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTimeInOutQL";
     this.Text = "Thời gian làm việc";
     this.Load += new System.EventHandler(this.frmTimeInOutQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIPMay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChamCong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkBinhThuong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkVe_som.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDi_tre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDaChamCong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChuaChamCong.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmEmployee));
     this.grpMDEmployeeTop = new DevExpress.XtraEditors.GroupControl();
     this.gcServiceType = new DevExpress.XtraEditors.GroupControl();
     this.sbPrevious = new DevExpress.XtraEditors.SimpleButton();
     this.sbPreviousAll = new DevExpress.XtraEditors.SimpleButton();
     this.sbNextAll = new DevExpress.XtraEditors.SimpleButton();
     this.sbNext = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl5 = new DevExpress.XtraGrid.GridControl();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label7 = new System.Windows.Forms.Label();
     this.gridControl6 = new DevExpress.XtraGrid.GridControl();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.grpBranch = new DevExpress.XtraEditors.GroupControl();
     this.btnPacBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControl2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPacBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPacBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label6 = new System.Windows.Forms.Label();
     this.gridPacBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.gridControlMd_Employee = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Employee = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnEmp1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnEmp2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_JobPosition = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EmpStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RightsLevel = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_InstructorType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbServiceCom = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nLeaveGroup = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkPartTime = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_StatusID = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Department = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Probation = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_MaternityLeave = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_ChildCareLeave = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_RegisterFee = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_PTInstructor = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_SalesPerson = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_ServiceComm = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Instructor = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_MemoGroup = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EditCessation = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.cmbStatus = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.lk_ServiceComm = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDEmployeeTop)).BeginInit();
     this.grpMDEmployeeTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcServiceType)).BeginInit();
     this.gcServiceType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).BeginInit();
     this.grpBranch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_JobPosition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_InstructorType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbServiceCom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPartTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StatusID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Department)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Probation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_MaternityLeave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ChildCareLeave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RegisterFee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_PTInstructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_SalesPerson)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ServiceComm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Instructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MemoGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditCessation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditCessation.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ServiceComm)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDEmployeeTop
     //
     this.grpMDEmployeeTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDEmployeeTop.Appearance.Options.UseBackColor = true;
     this.grpMDEmployeeTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDEmployeeTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDEmployeeTop.Controls.Add(this.gcServiceType);
     this.grpMDEmployeeTop.Controls.Add(this.label4);
     this.grpMDEmployeeTop.Controls.Add(this.grpBranch);
     this.grpMDEmployeeTop.Controls.Add(this.label2);
     this.grpMDEmployeeTop.Controls.Add(this.label1);
     this.grpMDEmployeeTop.Controls.Add(this.Searchpanel);
     this.grpMDEmployeeTop.Controls.Add(this.gridControlMd_Employee);
     this.grpMDEmployeeTop.Controls.Add(this.btn_Add);
     this.grpMDEmployeeTop.Controls.Add(this.btn_Del);
     this.grpMDEmployeeTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDEmployeeTop.Location = new System.Drawing.Point(0, 0);
     this.grpMDEmployeeTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDEmployeeTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDEmployeeTop.Name = "grpMDEmployeeTop";
     this.grpMDEmployeeTop.Size = new System.Drawing.Size(1063, 572);
     this.grpMDEmployeeTop.TabIndex = 90;
     this.grpMDEmployeeTop.Text = "Employee";
     //
     // gcServiceType
     //
     this.gcServiceType.Controls.Add(this.sbPrevious);
     this.gcServiceType.Controls.Add(this.sbPreviousAll);
     this.gcServiceType.Controls.Add(this.sbNextAll);
     this.gcServiceType.Controls.Add(this.sbNext);
     this.gcServiceType.Controls.Add(this.gridControl5);
     this.gcServiceType.Controls.Add(this.label7);
     this.gcServiceType.Controls.Add(this.gridControl6);
     this.gcServiceType.Location = new System.Drawing.Point(8, 352);
     this.gcServiceType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.gcServiceType.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gcServiceType.Name = "gcServiceType";
     this.gcServiceType.Size = new System.Drawing.Size(984, 210);
     this.gcServiceType.TabIndex = 156;
     this.gcServiceType.Text = "Employee Service Type";
     //
     // sbPrevious
     //
     this.sbPrevious.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbPrevious.Location = new System.Drawing.Point(496, 96);
     this.sbPrevious.Name = "sbPrevious";
     this.sbPrevious.Size = new System.Drawing.Size(30, 20);
     this.sbPrevious.TabIndex = 21;
     this.sbPrevious.Text = "<";
     this.sbPrevious.Click += new System.EventHandler(this.sbPrevious_Click);
     //
     // sbPreviousAll
     //
     this.sbPreviousAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbPreviousAll.Location = new System.Drawing.Point(496, 72);
     this.sbPreviousAll.Name = "sbPreviousAll";
     this.sbPreviousAll.Size = new System.Drawing.Size(30, 20);
     this.sbPreviousAll.TabIndex = 20;
     this.sbPreviousAll.Text = "<<";
     this.sbPreviousAll.Click += new System.EventHandler(this.sbPreviousAll_Click);
     //
     // sbNextAll
     //
     this.sbNextAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbNextAll.Location = new System.Drawing.Point(496, 48);
     this.sbNextAll.Name = "sbNextAll";
     this.sbNextAll.Size = new System.Drawing.Size(30, 20);
     this.sbNextAll.TabIndex = 19;
     this.sbNextAll.Text = ">>";
     this.sbNextAll.Click += new System.EventHandler(this.sbNextAll_Click);
     //
     // sbNext
     //
     this.sbNext.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbNext.Location = new System.Drawing.Point(496, 24);
     this.sbNext.Name = "sbNext";
     this.sbNext.Size = new System.Drawing.Size(30, 20);
     this.sbNext.TabIndex = 18;
     this.sbNext.Text = ">";
     this.sbNext.Click += new System.EventHandler(this.sbNext_Click);
     //
     // gridControl5
     //
     this.gridControl5.Location = new System.Drawing.Point(536, 24);
     this.gridControl5.MainView = this.gridView5;
     this.gridControl5.Name = "gridControl5";
     this.gridControl5.Size = new System.Drawing.Size(424, 183);
     this.gridControl5.TabIndex = 22;
     this.gridControl5.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView5});
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn31,
     this.gridColumn32});
     this.gridView5.GridControl = this.gridControl5;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView5.OptionsBehavior.Editable = false;
     this.gridView5.OptionsCustomization.AllowFilter = false;
     this.gridView5.OptionsSelection.MultiSelect = true;
     this.gridView5.OptionsView.ShowGroupPanel = false;
     this.gridView5.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn31, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Service Type ID";
     this.gridColumn31.FieldName = "nServiceTypeID";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 0;
     this.gridColumn31.Width = 104;
     //
     // gridColumn32
     //
     this.gridColumn32.Caption = "Service Type";
     this.gridColumn32.FieldName = "strDescription";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 1;
     this.gridColumn32.Width = 282;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 24);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(50, 44);
     this.label7.TabIndex = 23;
     this.label7.Text = "Service Type";
     //
     // gridControl6
     //
     this.gridControl6.Location = new System.Drawing.Point(64, 24);
     this.gridControl6.MainView = this.gridView6;
     this.gridControl6.Name = "gridControl6";
     this.gridControl6.Size = new System.Drawing.Size(424, 183);
     this.gridControl6.TabIndex = 17;
     this.gridControl6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView6});
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn37,
     this.gridColumn38});
     this.gridView6.GridControl = this.gridControl6;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView6.OptionsBehavior.Editable = false;
     this.gridView6.OptionsCustomization.AllowFilter = false;
     this.gridView6.OptionsSelection.MultiSelect = true;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     this.gridView6.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn37, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn37
     //
     this.gridColumn37.Caption = "Service Type ID";
     this.gridColumn37.FieldName = "nServiceTypeID";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 0;
     this.gridColumn37.Width = 107;
     //
     // gridColumn38
     //
     this.gridColumn38.Caption = "Service";
     this.gridColumn38.FieldName = "strDescription";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 1;
     this.gridColumn38.Width = 279;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(314, 332);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(103, 17);
     this.label4.TabIndex = 155;
     this.label4.Text = "Service Type";
     this.label4.Click += new System.EventHandler(this.label4_Click);
     //
     // grpBranch
     //
     this.grpBranch.Controls.Add(this.btnPacBranch_Del);
     this.grpBranch.Controls.Add(this.groupControl1);
     this.grpBranch.Controls.Add(this.btnPacBranch_DelAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_AddAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_Add);
     this.grpBranch.Controls.Add(this.gridPacBranch2);
     this.grpBranch.Controls.Add(this.label6);
     this.grpBranch.Controls.Add(this.gridPacBranch);
     this.grpBranch.Location = new System.Drawing.Point(8, 352);
     this.grpBranch.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpBranch.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpBranch.Name = "grpBranch";
     this.grpBranch.Size = new System.Drawing.Size(984, 210);
     this.grpBranch.TabIndex = 151;
     this.grpBranch.Text = "Employee Branch";
     //
     // btnPacBranch_Del
     //
     this.btnPacBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Del.Location = new System.Drawing.Point(496, 96);
     this.btnPacBranch_Del.Name = "btnPacBranch_Del";
     this.btnPacBranch_Del.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Del.TabIndex = 21;
     this.btnPacBranch_Del.Text = "<";
     this.btnPacBranch_Del.Click += new System.EventHandler(this.btnPacBranch_Del_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControl2);
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Controls.Add(this.simpleButton2);
     this.groupControl1.Controls.Add(this.simpleButton3);
     this.groupControl1.Controls.Add(this.simpleButton4);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.gridControl1);
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(984, 210);
     this.groupControl1.TabIndex = 154;
     this.groupControl1.Text = "Leave Entitlement";
     //
     // gridControl2
     //
     this.gridControl2.Location = new System.Drawing.Point(544, 22);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name = "gridControl2";
     this.gridControl2.Size = new System.Drawing.Size(424, 183);
     this.gridControl2.TabIndex = 24;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn8,
     this.gridColumn9});
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsSelection.MultiSelect = true;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridView2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn8, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Leave";
     this.gridColumn8.FieldName = "strLeaveCode";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 0;
     this.gridColumn8.Width = 107;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Description";
     this.gridColumn9.FieldName = "strDescription";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     this.gridColumn9.Width = 279;
     //
     // simpleButton1
     //
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton1.Location = new System.Drawing.Point(496, 96);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(30, 20);
     this.simpleButton1.TabIndex = 21;
     this.simpleButton1.Text = "<";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton2.Location = new System.Drawing.Point(496, 72);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(30, 20);
     this.simpleButton2.TabIndex = 20;
     this.simpleButton2.Text = "<<";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton3.Location = new System.Drawing.Point(496, 48);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(30, 20);
     this.simpleButton3.TabIndex = 19;
     this.simpleButton3.Text = ">>";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton4
     //
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton4.Location = new System.Drawing.Point(496, 24);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(30, 20);
     this.simpleButton4.TabIndex = 18;
     this.simpleButton4.Text = ">";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(5, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(50, 44);
     this.label3.TabIndex = 23;
     this.label3.Text = "Leave";
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(61, 22);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(424, 183);
     this.gridControl1.TabIndex = 17;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn26});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn10, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Leave";
     this.gridColumn10.FieldName = "strLeaveCode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     this.gridColumn10.Width = 107;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Description";
     this.gridColumn26.FieldName = "strDescription";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 1;
     this.gridColumn26.Width = 279;
     //
     // btnPacBranch_DelAll
     //
     this.btnPacBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_DelAll.Location = new System.Drawing.Point(496, 72);
     this.btnPacBranch_DelAll.Name = "btnPacBranch_DelAll";
     this.btnPacBranch_DelAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_DelAll.TabIndex = 20;
     this.btnPacBranch_DelAll.Text = "<<";
     this.btnPacBranch_DelAll.Click += new System.EventHandler(this.btnPacBranch_DelAll_Click);
     //
     // btnPacBranch_AddAll
     //
     this.btnPacBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_AddAll.Location = new System.Drawing.Point(496, 48);
     this.btnPacBranch_AddAll.Name = "btnPacBranch_AddAll";
     this.btnPacBranch_AddAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_AddAll.TabIndex = 19;
     this.btnPacBranch_AddAll.Text = ">>";
     this.btnPacBranch_AddAll.Click += new System.EventHandler(this.btnPacBranch_AddAll_Click);
     //
     // btnPacBranch_Add
     //
     this.btnPacBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Add.Location = new System.Drawing.Point(496, 24);
     this.btnPacBranch_Add.Name = "btnPacBranch_Add";
     this.btnPacBranch_Add.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Add.TabIndex = 18;
     this.btnPacBranch_Add.Text = ">";
     this.btnPacBranch_Add.Click += new System.EventHandler(this.btnPacBranch_Add_Click);
     //
     // gridPacBranch2
     //
     this.gridPacBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPacBranch2.MainView = this.gvPacBranch2;
     this.gridPacBranch2.Name = "gridPacBranch2";
     this.gridPacBranch2.Size = new System.Drawing.Size(424, 183);
     this.gridPacBranch2.TabIndex = 22;
     this.gridPacBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch2});
     //
     // gvPacBranch2
     //
     this.gvPacBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvPacBranch2.GridControl = this.gridPacBranch2;
     this.gvPacBranch2.Name = "gvPacBranch2";
     this.gvPacBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch2.OptionsBehavior.Editable = false;
     this.gvPacBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch2.OptionsSelection.MultiSelect = true;
     this.gvPacBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 104;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 282;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(50, 44);
     this.label6.TabIndex = 23;
     this.label6.Text = "Employe Branch";
     //
     // gridPacBranch
     //
     this.gridPacBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPacBranch.MainView = this.gvPacBranch;
     this.gridPacBranch.Name = "gridPacBranch";
     this.gridPacBranch.Size = new System.Drawing.Size(424, 183);
     this.gridPacBranch.TabIndex = 17;
     this.gridPacBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch});
     //
     // gvPacBranch
     //
     this.gvPacBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvPacBranch.GridControl = this.gridPacBranch;
     this.gvPacBranch.Name = "gvPacBranch";
     this.gvPacBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch.OptionsBehavior.Editable = false;
     this.gvPacBranch.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch.OptionsSelection.MultiSelect = true;
     this.gvPacBranch.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 107;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 279;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(163, 332);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(134, 17);
     this.label2.TabIndex = 153;
     this.label2.Text = "Employee Branch";
     this.label2.Click += new System.EventHandler(this.label2_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(7, 332);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(138, 17);
     this.label1.TabIndex = 152;
     this.label1.Text = "Leave Entitlement";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(512, 24);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 150;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(392, 0);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(232, 0);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // gridControlMd_Employee
     //
     this.gridControlMd_Employee.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.gridControlMd_Employee.Location = new System.Drawing.Point(8, 48);
     this.gridControlMd_Employee.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Employee.MainView = this.gridViewMd_Employee;
     this.gridControlMd_Employee.Name = "gridControlMd_Employee";
     this.gridControlMd_Employee.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_JobPosition,
     this.lk_BranchCode,
     this.EmpStartDate,
     this.lk_RightsLevel,
     this.lk_InstructorType,
     this.chkPartTime,
     this.cmbStatus,
     this.lk_Department,
     this.chk_Probation,
     this.chk_MaternityLeave,
     this.chk_ChildCareLeave,
     this.chk_RegisterFee,
     this.chk_PTInstructor,
     this.chk_SalesPerson,
     this.chk_ServiceComm,
     this.lk_MemoGroup,
     this.lk_Instructor,
     this.lk_ServiceComm,
     this.cmbServiceCom,
     this.repositoryItemTextEdit1,
     this.chk_StatusID,
     this.EditCessation});
     this.gridControlMd_Employee.Size = new System.Drawing.Size(984, 281);
     this.gridControlMd_Employee.TabIndex = 133;
     this.gridControlMd_Employee.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Employee});
     //
     // gridViewMd_Employee
     //
     this.gridViewMd_Employee.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnEmp1,
     this.gridColumnEmp2,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.nLeaveGroup,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn6,
     this.gridColumn7});
     this.gridViewMd_Employee.GridControl = this.gridControlMd_Employee;
     this.gridViewMd_Employee.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Employee.Name = "gridViewMd_Employee";
     this.gridViewMd_Employee.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Employee.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Employee.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Employee.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.SalesComm_Init);
     this.gridViewMd_Employee.LostFocus += new System.EventHandler(this.gridViewMd_Employee_LostFocus);
     //
     // gridColumnEmp1
     //
     this.gridColumnEmp1.Caption = "Emp ID";
     this.gridColumnEmp1.FieldName = "nEmployeeID";
     this.gridColumnEmp1.Name = "gridColumnEmp1";
     this.gridColumnEmp1.Visible = true;
     this.gridColumnEmp1.VisibleIndex = 0;
     this.gridColumnEmp1.Width = 43;
     //
     // gridColumnEmp2
     //
     this.gridColumnEmp2.Caption = "Name";
     this.gridColumnEmp2.FieldName = "strEmployeeName";
     this.gridColumnEmp2.Name = "gridColumnEmp2";
     this.gridColumnEmp2.Visible = true;
     this.gridColumnEmp2.VisibleIndex = 1;
     this.gridColumnEmp2.Width = 104;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Password";
     this.gridColumn1.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn1.FieldName = "strPassword";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemTextEdit1.PasswordChar = '*';
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Job Position";
     this.gridColumn2.ColumnEdit = this.lk_JobPosition;
     this.gridColumn2.FieldName = "strJobPositionCode";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // lk_JobPosition
     //
     this.lk_JobPosition.AutoHeight = false;
     this.lk_JobPosition.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_JobPosition.Name = "lk_JobPosition";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Branch";
     this.gridColumn3.ColumnEdit = this.lk_BranchCode;
     this.gridColumn3.FieldName = "strBranchCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 51;
     //
     // lk_BranchCode
     //
     this.lk_BranchCode.AutoHeight = false;
     this.lk_BranchCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode.Name = "lk_BranchCode";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Start Date";
     this.gridColumn4.ColumnEdit = this.EmpStartDate;
     this.gridColumn4.FieldName = "dtEmployeeStartDate";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 5;
     //
     // EmpStartDate
     //
     this.EmpStartDate.AutoHeight = false;
     this.EmpStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EmpStartDate.Name = "EmpStartDate";
     this.EmpStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Rights Lvl";
     this.gridColumn5.ColumnEdit = this.lk_RightsLevel;
     this.gridColumn5.FieldName = "nRightsLevelID";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 7;
     this.gridColumn5.Width = 67;
     //
     // lk_RightsLevel
     //
     this.lk_RightsLevel.AutoHeight = false;
     this.lk_RightsLevel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RightsLevel.Name = "lk_RightsLevel";
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Instructor Type";
     this.gridColumn11.ColumnEdit = this.lk_InstructorType;
     this.gridColumn11.FieldName = "nInstructorTypeID";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 8;
     this.gridColumn11.Width = 85;
     //
     // lk_InstructorType
     //
     this.lk_InstructorType.AutoHeight = false;
     this.lk_InstructorType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_InstructorType.Name = "lk_InstructorType";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Service Comm Level";
     this.gridColumn12.ColumnEdit = this.cmbServiceCom;
     this.gridColumn12.FieldName = "nServiceCommLevel";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 9;
     this.gridColumn12.Width = 105;
     //
     // cmbServiceCom
     //
     this.cmbServiceCom.AutoHeight = false;
     this.cmbServiceCom.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbServiceCom.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 1", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 2", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 3", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 4", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 5", 5, -1)});
     this.cmbServiceCom.Name = "cmbServiceCom";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Contact No";
     this.gridColumn13.FieldName = "strContactNo";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 10;
     this.gridColumn13.Width = 78;
     //
     // nLeaveGroup
     //
     this.nLeaveGroup.Caption = "Leave Grp";
     this.nLeaveGroup.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.nLeaveGroup.FieldName = "nLeaveGroup";
     this.nLeaveGroup.Name = "nLeaveGroup";
     this.nLeaveGroup.Visible = true;
     this.nLeaveGroup.VisibleIndex = 11;
     this.nLeaveGroup.Width = 61;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Part Time";
     this.gridColumn14.ColumnEdit = this.chkPartTime;
     this.gridColumn14.FieldName = "fPartTime";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 12;
     this.gridColumn14.Width = 54;
     //
     // chkPartTime
     //
     this.chkPartTime.AutoHeight = false;
     this.chkPartTime.Name = "chkPartTime";
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Status";
     this.gridColumn15.ColumnEdit = this.chk_StatusID;
     this.gridColumn15.FieldName = "nStatusID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 13;
     this.gridColumn15.Width = 46;
     //
     // chk_StatusID
     //
     this.chk_StatusID.AutoHeight = false;
     this.chk_StatusID.Name = "chk_StatusID";
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Department";
     this.gridColumn16.ColumnEdit = this.lk_Department;
     this.gridColumn16.FieldName = "nDepartmentID";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 14;
     this.gridColumn16.Width = 71;
     //
     // lk_Department
     //
     this.lk_Department.AutoHeight = false;
     this.lk_Department.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Department.Name = "lk_Department";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Probation";
     this.gridColumn17.ColumnEdit = this.chk_Probation;
     this.gridColumn17.FieldName = "fProbation";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 15;
     this.gridColumn17.Width = 55;
     //
     // chk_Probation
     //
     this.chk_Probation.AutoHeight = false;
     this.chk_Probation.Name = "chk_Probation";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Maternity";
     this.gridColumn18.ColumnEdit = this.chk_MaternityLeave;
     this.gridColumn18.FieldName = "fMaternityLeave";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 16;
     this.gridColumn18.Width = 55;
     //
     // chk_MaternityLeave
     //
     this.chk_MaternityLeave.AutoHeight = false;
     this.chk_MaternityLeave.Name = "chk_MaternityLeave";
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Child Care";
     this.gridColumn19.ColumnEdit = this.chk_ChildCareLeave;
     this.gridColumn19.FieldName = "fChildcareLeave";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 17;
     this.gridColumn19.Width = 58;
     //
     // chk_ChildCareLeave
     //
     this.chk_ChildCareLeave.AutoHeight = false;
     this.chk_ChildCareLeave.Name = "chk_ChildCareLeave";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Reg Fee";
     this.gridColumn20.ColumnEdit = this.chk_RegisterFee;
     this.gridColumn20.FieldName = "fRegistrationFee";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 18;
     this.gridColumn20.Width = 55;
     //
     // chk_RegisterFee
     //
     this.chk_RegisterFee.AutoHeight = false;
     this.chk_RegisterFee.Name = "chk_RegisterFee";
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "PT Instructor";
     this.gridColumn21.ColumnEdit = this.chk_PTInstructor;
     this.gridColumn21.FieldName = "fPtInstructor";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 19;
     this.gridColumn21.Width = 72;
     //
     // chk_PTInstructor
     //
     this.chk_PTInstructor.AutoHeight = false;
     this.chk_PTInstructor.Name = "chk_PTInstructor";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Sales Person";
     this.gridColumn22.ColumnEdit = this.chk_SalesPerson;
     this.gridColumn22.FieldName = "fSalesPerson";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 20;
     this.gridColumn22.Width = 70;
     //
     // chk_SalesPerson
     //
     this.chk_SalesPerson.AutoHeight = false;
     this.chk_SalesPerson.Name = "chk_SalesPerson";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Svs Comm";
     this.gridColumn23.ColumnEdit = this.chk_ServiceComm;
     this.gridColumn23.FieldName = "fServiceCommission";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 21;
     this.gridColumn23.Width = 58;
     //
     // chk_ServiceComm
     //
     this.chk_ServiceComm.AutoHeight = false;
     this.chk_ServiceComm.Name = "chk_ServiceComm";
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Instructor";
     this.gridColumn24.ColumnEdit = this.lk_Instructor;
     this.gridColumn24.FieldName = "fInstructor";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 22;
     this.gridColumn24.Width = 57;
     //
     // lk_Instructor
     //
     this.lk_Instructor.AutoHeight = false;
     this.lk_Instructor.Name = "lk_Instructor";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Memo Grp";
     this.gridColumn25.ColumnEdit = this.lk_MemoGroup;
     this.gridColumn25.FieldName = "fMemoGroup";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 23;
     this.gridColumn25.Width = 57;
     //
     // lk_MemoGroup
     //
     this.lk_MemoGroup.AutoHeight = false;
     this.lk_MemoGroup.Name = "lk_MemoGroup";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Remarks";
     this.gridColumn6.FieldName = "strRemark";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 24;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Cessation Date";
     this.gridColumn7.ColumnEdit = this.EditCessation;
     this.gridColumn7.FieldName = "dtCessation";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 88;
     //
     // EditCessation
     //
     this.EditCessation.AutoHeight = false;
     this.EditCessation.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EditCessation.Name = "EditCessation";
     this.EditCessation.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // cmbStatus
     //
     this.cmbStatus.AutoHeight = false;
     this.cmbStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbStatus.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 1, -1)});
     this.cmbStatus.Name = "cmbStatus";
     //
     // lk_ServiceComm
     //
     this.lk_ServiceComm.AutoHeight = false;
     this.lk_ServiceComm.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_ServiceComm.Name = "lk_ServiceComm";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 132;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 131;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // frmEmployee
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1036, 560);
     this.Controls.Add(this.grpMDEmployeeTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmEmployee";
     this.Text = "frmEmployee";
     this.Load += new System.EventHandler(this.frmEmployee_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDEmployeeTop)).EndInit();
     this.grpMDEmployeeTop.ResumeLayout(false);
     this.grpMDEmployeeTop.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcServiceType)).EndInit();
     this.gcServiceType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).EndInit();
     this.grpBranch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_JobPosition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_InstructorType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbServiceCom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPartTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StatusID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Department)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Probation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_MaternityLeave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ChildCareLeave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RegisterFee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_PTInstructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_SalesPerson)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ServiceComm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Instructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MemoGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditCessation.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditCessation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ServiceComm)).EndInit();
     this.ResumeLayout(false);
 }
Example #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.xtraTab = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabMemberCardPhoto = new DevExpress.XtraTab.XtraTabPage();
     this.btnPhotoRotate = new System.Windows.Forms.Button();
     this.btnMemberPhotoReject = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberPhotoApprove = new DevExpress.XtraEditors.SimpleButton();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.GridMemberCard = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCheck = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckSelection = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcMemberPhotoID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMemberName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRequestDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.xtraTabPackageExtension = new DevExpress.XtraTab.XtraTabPage();
     this.btnRotate = new System.Windows.Forms.Button();
     this.pictureEdit2 = new System.Windows.Forms.PictureBox();
     this.btnPackageExtensionReject = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageExtensionApprove = new DevExpress.XtraEditors.SimpleButton();
     this.label2 = new System.Windows.Forms.Label();
     this.GridPackageExtension = new DevExpress.XtraGrid.GridControl();
     this.gridViewPackageExtension = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCheckExtension = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcExtensionID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCreateDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMemberID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPackageCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gReason = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDayExtend = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcStartDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcNewExpiryDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTab)).BeginInit();
     this.xtraTab.SuspendLayout();
     this.xtraTabMemberCardPhoto.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckSelection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     this.xtraTabPackageExtension.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPackageExtension)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackageExtension)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.xtraTab);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(912, 525);
     this.groupControl1.TabIndex = 124;
     this.groupControl1.Text = "Mobile App";
     //
     // xtraTab
     //
     this.xtraTab.Location = new System.Drawing.Point(8, 48);
     this.xtraTab.Name = "xtraTab";
     this.xtraTab.SelectedTabPage = this.xtraTabMemberCardPhoto;
     this.xtraTab.Size = new System.Drawing.Size(840, 442);
     this.xtraTab.TabIndex = 119;
     this.xtraTab.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabMemberCardPhoto,
     this.xtraTabPackageExtension});
     //
     // xtraTabMemberCardPhoto
     //
     this.xtraTabMemberCardPhoto.Controls.Add(this.btnPhotoRotate);
     this.xtraTabMemberCardPhoto.Controls.Add(this.btnMemberPhotoReject);
     this.xtraTabMemberCardPhoto.Controls.Add(this.btnMemberPhotoApprove);
     this.xtraTabMemberCardPhoto.Controls.Add(this.pictureEdit1);
     this.xtraTabMemberCardPhoto.Controls.Add(this.label1);
     this.xtraTabMemberCardPhoto.Controls.Add(this.GridMemberCard);
     this.xtraTabMemberCardPhoto.Name = "xtraTabMemberCardPhoto";
     this.xtraTabMemberCardPhoto.Size = new System.Drawing.Size(831, 411);
     this.xtraTabMemberCardPhoto.Text = "Photo Approval";
     //
     // btnPhotoRotate
     //
     this.btnPhotoRotate.Location = new System.Drawing.Point(629, 112);
     this.btnPhotoRotate.Name = "btnPhotoRotate";
     this.btnPhotoRotate.Size = new System.Drawing.Size(75, 23);
     this.btnPhotoRotate.TabIndex = 89;
     this.btnPhotoRotate.Text = "Rotate";
     this.btnPhotoRotate.UseVisualStyleBackColor = true;
     this.btnPhotoRotate.Click += new System.EventHandler(this.btnPhotoRotate_Click);
     //
     // btnMemberPhotoReject
     //
     this.btnMemberPhotoReject.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMemberPhotoReject.Appearance.Options.UseFont = true;
     this.btnMemberPhotoReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberPhotoReject.Location = new System.Drawing.Point(84, 340);
     this.btnMemberPhotoReject.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnMemberPhotoReject.Name = "btnMemberPhotoReject";
     this.btnMemberPhotoReject.Size = new System.Drawing.Size(75, 23);
     this.btnMemberPhotoReject.TabIndex = 83;
     this.btnMemberPhotoReject.Text = "Reject";
     this.btnMemberPhotoReject.Click += new System.EventHandler(this.btnMemberPhotoReject_Click);
     //
     // btnMemberPhotoApprove
     //
     this.btnMemberPhotoApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMemberPhotoApprove.Appearance.Options.UseFont = true;
     this.btnMemberPhotoApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberPhotoApprove.Location = new System.Drawing.Point(3, 340);
     this.btnMemberPhotoApprove.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnMemberPhotoApprove.Name = "btnMemberPhotoApprove";
     this.btnMemberPhotoApprove.Size = new System.Drawing.Size(75, 23);
     this.btnMemberPhotoApprove.TabIndex = 82;
     this.btnMemberPhotoApprove.Text = "Approve";
     this.btnMemberPhotoApprove.Click += new System.EventHandler(this.btnMemberPhotoApprove_Click);
     //
     // pictureEdit1
     //
     this.pictureEdit1.Location = new System.Drawing.Point(710, 23);
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     this.pictureEdit1.Size = new System.Drawing.Size(109, 112);
     this.pictureEdit1.TabIndex = 11;
     this.pictureEdit1.Click += new System.EventHandler(this.pictureEdit1_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(4, 10);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(107, 13);
     this.label1.TabIndex = 10;
     this.label1.Text = "Pending Approval";
     //
     // GridMemberCard
     //
     this.GridMemberCard.Location = new System.Drawing.Point(3, 143);
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckSelection,
     this.repositoryItemImageComboBox1,
     this.repositoryItemImageComboBox2,
     this.repositoryItemImageEdit1,
     this.repositoryItemPictureEdit1});
     this.GridMemberCard.Size = new System.Drawing.Size(816, 191);
     this.GridMemberCard.TabIndex = 9;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberCard});
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCheck,
     this.gcMemberPhotoID,
     this.gcMembershipID,
     this.gcMemberName,
     this.gcRequestDate});
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     //
     // gcCheck
     //
     this.gcCheck.Caption = "Utl";
     this.gcCheck.ColumnEdit = this.repositoryItemCheckSelection;
     this.gcCheck.FieldName = "UtlCheck";
     this.gcCheck.Name = "gcCheck";
     this.gcCheck.OptionsColumn.ShowCaption = false;
     this.gcCheck.Visible = true;
     this.gcCheck.VisibleIndex = 0;
     this.gcCheck.Width = 25;
     //
     // repositoryItemCheckSelection
     //
     this.repositoryItemCheckSelection.AutoHeight = false;
     this.repositoryItemCheckSelection.Name = "repositoryItemCheckSelection";
     this.repositoryItemCheckSelection.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gcMemberPhotoID
     //
     this.gcMemberPhotoID.Caption = "ID";
     this.gcMemberPhotoID.FieldName = "nMemberPhotoID";
     this.gcMemberPhotoID.Name = "gcMemberPhotoID";
     this.gcMemberPhotoID.OptionsColumn.AllowEdit = false;
     this.gcMemberPhotoID.Visible = true;
     this.gcMemberPhotoID.VisibleIndex = 1;
     //
     // gcMembershipID
     //
     this.gcMembershipID.Caption = "Membership ID";
     this.gcMembershipID.FieldName = "strMembershipID";
     this.gcMembershipID.Name = "gcMembershipID";
     this.gcMembershipID.OptionsColumn.AllowEdit = false;
     this.gcMembershipID.Visible = true;
     this.gcMembershipID.VisibleIndex = 2;
     this.gcMembershipID.Width = 117;
     //
     // gcMemberName
     //
     this.gcMemberName.Caption = "Member Name";
     this.gcMemberName.FieldName = "strMemberName";
     this.gcMemberName.Name = "gcMemberName";
     this.gcMemberName.OptionsColumn.AllowEdit = false;
     this.gcMemberName.Visible = true;
     this.gcMemberName.VisibleIndex = 3;
     this.gcMemberName.Width = 161;
     //
     // gcRequestDate
     //
     this.gcRequestDate.Caption = "Request Date";
     this.gcRequestDate.FieldName = "dtUpload";
     this.gcRequestDate.Name = "gcRequestDate";
     this.gcRequestDate.OptionsColumn.AllowEdit = false;
     this.gcRequestDate.Visible = true;
     this.gcRequestDate.VisibleIndex = 4;
     this.gcRequestDate.Width = 162;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // repositoryItemImageEdit1
     //
     this.repositoryItemImageEdit1.AutoHeight = false;
     this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
     this.repositoryItemImageEdit1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // xtraTabPackageExtension
     //
     this.xtraTabPackageExtension.Controls.Add(this.btnRotate);
     this.xtraTabPackageExtension.Controls.Add(this.pictureEdit2);
     this.xtraTabPackageExtension.Controls.Add(this.btnPackageExtensionReject);
     this.xtraTabPackageExtension.Controls.Add(this.btnPackageExtensionApprove);
     this.xtraTabPackageExtension.Controls.Add(this.label2);
     this.xtraTabPackageExtension.Controls.Add(this.GridPackageExtension);
     this.xtraTabPackageExtension.Name = "xtraTabPackageExtension";
     this.xtraTabPackageExtension.Size = new System.Drawing.Size(831, 411);
     this.xtraTabPackageExtension.Text = "Package Extension Approval";
     //
     // btnRotate
     //
     this.btnRotate.Location = new System.Drawing.Point(597, 134);
     this.btnRotate.Name = "btnRotate";
     this.btnRotate.Size = new System.Drawing.Size(75, 23);
     this.btnRotate.TabIndex = 87;
     this.btnRotate.Text = "Rotate";
     this.btnRotate.UseVisualStyleBackColor = true;
     this.btnRotate.Click += new System.EventHandler(this.btnRotate_Click);
     //
     // pictureEdit2
     //
     this.pictureEdit2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureEdit2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureEdit2.Location = new System.Drawing.Point(690, 14);
     this.pictureEdit2.Name = "pictureEdit2";
     this.pictureEdit2.Size = new System.Drawing.Size(123, 143);
     this.pictureEdit2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureEdit2.TabIndex = 86;
     this.pictureEdit2.TabStop = false;
     this.pictureEdit2.Click += new System.EventHandler(this.pictureEdit2_Click);
     //
     // btnPackageExtensionReject
     //
     this.btnPackageExtensionReject.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPackageExtensionReject.Appearance.Options.UseFont = true;
     this.btnPackageExtensionReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageExtensionReject.Location = new System.Drawing.Point(88, 361);
     this.btnPackageExtensionReject.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageExtensionReject.Name = "btnPackageExtensionReject";
     this.btnPackageExtensionReject.Size = new System.Drawing.Size(75, 23);
     this.btnPackageExtensionReject.TabIndex = 85;
     this.btnPackageExtensionReject.Text = "Reject";
     this.btnPackageExtensionReject.Click += new System.EventHandler(this.btnPackageExtensionReject_Click);
     //
     // btnPackageExtensionApprove
     //
     this.btnPackageExtensionApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPackageExtensionApprove.Appearance.Options.UseFont = true;
     this.btnPackageExtensionApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageExtensionApprove.Location = new System.Drawing.Point(7, 361);
     this.btnPackageExtensionApprove.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageExtensionApprove.Name = "btnPackageExtensionApprove";
     this.btnPackageExtensionApprove.Size = new System.Drawing.Size(75, 23);
     this.btnPackageExtensionApprove.TabIndex = 84;
     this.btnPackageExtensionApprove.Text = "Approve";
     this.btnPackageExtensionApprove.Click += new System.EventHandler(this.btnPackageExtensionApprove_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(4, 14);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(107, 13);
     this.label2.TabIndex = 11;
     this.label2.Text = "Pending Approval";
     //
     // GridPackageExtension
     //
     this.GridPackageExtension.Location = new System.Drawing.Point(7, 167);
     this.GridPackageExtension.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridPackageExtension.MainView = this.gridViewPackageExtension;
     this.GridPackageExtension.Name = "GridPackageExtension";
     this.GridPackageExtension.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemImageComboBox3,
     this.repositoryItemImageComboBox4,
     this.repositoryItemImageEdit2,
     this.repositoryItemPictureEdit2});
     this.GridPackageExtension.Size = new System.Drawing.Size(806, 188);
     this.GridPackageExtension.TabIndex = 10;
     this.GridPackageExtension.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPackageExtension});
     //
     // gridViewPackageExtension
     //
     this.gridViewPackageExtension.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCheckExtension,
     this.gcExtensionID,
     this.gcCreateDate,
     this.gcMemberID,
     this.gcPackageCode,
     this.gReason,
     this.gcDayExtend,
     this.gcStartDate,
     this.gcEndDate,
     this.gcNewExpiryDate});
     this.gridViewPackageExtension.GridControl = this.GridPackageExtension;
     this.gridViewPackageExtension.Name = "gridViewPackageExtension";
     this.gridViewPackageExtension.OptionsView.ShowGroupPanel = false;
     this.gridViewPackageExtension.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewPackageExtension_FocusedRowChanged);
     this.gridViewPackageExtension.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewPackageExtension_CellValueChanged);
     //
     // gcCheckExtension
     //
     this.gcCheckExtension.Caption = "Utl";
     this.gcCheckExtension.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gcCheckExtension.FieldName = "UtlCheck";
     this.gcCheckExtension.Name = "gcCheckExtension";
     this.gcCheckExtension.OptionsColumn.ShowCaption = false;
     this.gcCheckExtension.Visible = true;
     this.gcCheckExtension.VisibleIndex = 0;
     this.gcCheckExtension.Width = 22;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gcExtensionID
     //
     this.gcExtensionID.Caption = "extensionID";
     this.gcExtensionID.FieldName = "nExtensionID";
     this.gcExtensionID.Name = "gcExtensionID";
     this.gcExtensionID.OptionsColumn.AllowEdit = false;
     //
     // gcCreateDate
     //
     this.gcCreateDate.Caption = "Request Date";
     this.gcCreateDate.FieldName = "dtCreateDate";
     this.gcCreateDate.Name = "gcCreateDate";
     this.gcCreateDate.OptionsColumn.AllowEdit = false;
     this.gcCreateDate.Visible = true;
     this.gcCreateDate.VisibleIndex = 1;
     this.gcCreateDate.Width = 76;
     //
     // gcMemberID
     //
     this.gcMemberID.Caption = "Membership ID";
     this.gcMemberID.FieldName = "strMembershipID";
     this.gcMemberID.Name = "gcMemberID";
     this.gcMemberID.OptionsColumn.AllowEdit = false;
     this.gcMemberID.Visible = true;
     this.gcMemberID.VisibleIndex = 2;
     //
     // gcPackageCode
     //
     this.gcPackageCode.Caption = "Package Code";
     this.gcPackageCode.FieldName = "strPackageCode";
     this.gcPackageCode.Name = "gcPackageCode";
     this.gcPackageCode.OptionsColumn.AllowEdit = false;
     this.gcPackageCode.Visible = true;
     this.gcPackageCode.VisibleIndex = 3;
     this.gcPackageCode.Width = 148;
     //
     // gReason
     //
     this.gReason.Caption = "Reason";
     this.gReason.FieldName = "strDescription";
     this.gReason.Name = "gReason";
     this.gReason.OptionsColumn.AllowEdit = false;
     this.gReason.Visible = true;
     this.gReason.VisibleIndex = 4;
     this.gReason.Width = 140;
     //
     // gcDayExtend
     //
     this.gcDayExtend.Caption = "Days Extend";
     this.gcDayExtend.FieldName = "nDaysExtended";
     this.gcDayExtend.Name = "gcDayExtend";
     this.gcDayExtend.OptionsColumn.AllowEdit = false;
     this.gcDayExtend.Visible = true;
     this.gcDayExtend.VisibleIndex = 7;
     //
     // gcStartDate
     //
     this.gcStartDate.Caption = "Start Date";
     this.gcStartDate.FieldName = "dtStartDate";
     this.gcStartDate.Name = "gcStartDate";
     this.gcStartDate.Visible = true;
     this.gcStartDate.VisibleIndex = 5;
     //
     // gcEndDate
     //
     this.gcEndDate.Caption = "End Date";
     this.gcEndDate.FieldName = "dtEndDate";
     this.gcEndDate.Name = "gcEndDate";
     this.gcEndDate.Visible = true;
     this.gcEndDate.VisibleIndex = 6;
     //
     // gcNewExpiryDate
     //
     this.gcNewExpiryDate.Caption = "New Expiry Date";
     this.gcNewExpiryDate.Name = "gcNewExpiryDate";
     this.gcNewExpiryDate.OptionsColumn.AllowEdit = false;
     this.gcNewExpiryDate.Visible = true;
     this.gcNewExpiryDate.VisibleIndex = 8;
     //
     // repositoryItemImageComboBox3
     //
     this.repositoryItemImageComboBox3.AutoHeight = false;
     this.repositoryItemImageComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox3.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)});
     this.repositoryItemImageComboBox3.Name = "repositoryItemImageComboBox3";
     //
     // repositoryItemImageComboBox4
     //
     this.repositoryItemImageComboBox4.AutoHeight = false;
     this.repositoryItemImageComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox4.Name = "repositoryItemImageComboBox4";
     //
     // repositoryItemImageEdit2
     //
     this.repositoryItemImageEdit2.AutoHeight = false;
     this.repositoryItemImageEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit2.Name = "repositoryItemImageEdit2";
     this.repositoryItemImageEdit2.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     //
     // repositoryItemPictureEdit2
     //
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     //
     // frmMemberCardPhoto
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(912, 525);
     this.ControlBox = false;
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmMemberCardPhoto";
     this.Text = "frmMemberCardPhoto";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTab)).EndInit();
     this.xtraTab.ResumeLayout(false);
     this.xtraTabMemberCardPhoto.ResumeLayout(false);
     this.xtraTabMemberCardPhoto.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckSelection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     this.xtraTabPackageExtension.ResumeLayout(false);
     this.xtraTabPackageExtension.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPackageExtension)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackageExtension)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_MaHoSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TenUngVien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TTHS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_SoNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_SoNgayLamViec = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_SoNgayConLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_KetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.SoNgayKetThuc = new DevExpress.XtraEditors.CalcEdit();
     this.TinhTrangHoSo = new ProtocolVN.Framework.Win.PLCombobox();
     this.TenUngVien = new ProtocolVN.Framework.Win.PLCombobox();
     this.MaHoSo = new DevExpress.XtraEditors.TextEdit();
     this.DenNgay = new DevExpress.XtraEditors.DateEdit();
     this.TuNgay = new DevExpress.XtraEditors.DateEdit();
     this.label8 = new  System.Windows.Forms.PLLabel ();
     this.label4 = new  System.Windows.Forms.PLLabel ();
     this.label5 = new  System.Windows.Forms.PLLabel ();
     this.label2 = new  System.Windows.Forms.PLLabel ();
     this.label3 = new  System.Windows.Forms.PLLabel ();
     this.label1 = new  System.Windows.Forms.PLLabel ();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoNgayKetThuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaHoSo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4});
     this.barManager1.MaxItemId = 35;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 87);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(804, 410);
     this.splitContainerControl1.SplitterPosition = 175;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(804, 175);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_MaHoSo,
     this.Cot_TenUngVien,
     this.Cot_TTHS,
     this.Cot_SoNgay,
     this.Cot_TuNgay,
     this.Cot_DenNgay,
     this.Cot_SoNgayLamViec,
     this.Cot_SoNgayConLai,
     this.Cot_KetThuc,
     this.Cot_GhiChu});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các phiếu mua hàng thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_MaHoSo
     //
     this.Cot_MaHoSo.Caption = "Mã hồ sơ";
     this.Cot_MaHoSo.Name = "Cot_MaHoSo";
     this.Cot_MaHoSo.Visible = true;
     this.Cot_MaHoSo.VisibleIndex = 0;
     this.Cot_MaHoSo.Width = 55;
     //
     // Cot_TenUngVien
     //
     this.Cot_TenUngVien.Caption = "Tên ứng viên";
     this.Cot_TenUngVien.Name = "Cot_TenUngVien";
     this.Cot_TenUngVien.Visible = true;
     this.Cot_TenUngVien.VisibleIndex = 1;
     //
     // Cot_TTHS
     //
     this.Cot_TTHS.Caption = "Tình trạng hồ sơ";
     this.Cot_TTHS.Name = "Cot_TTHS";
     this.Cot_TTHS.Visible = true;
     this.Cot_TTHS.VisibleIndex = 3;
     this.Cot_TTHS.Width = 90;
     //
     // Cot_SoNgay
     //
     this.Cot_SoNgay.Caption = "Số ngày";
     this.Cot_SoNgay.Name = "Cot_SoNgay";
     this.Cot_SoNgay.Visible = true;
     this.Cot_SoNgay.VisibleIndex = 2;
     this.Cot_SoNgay.Width = 51;
     //
     // Cot_TuNgay
     //
     this.Cot_TuNgay.Caption = "Ngày bắt đầu";
     this.Cot_TuNgay.Name = "Cot_TuNgay";
     this.Cot_TuNgay.Visible = true;
     this.Cot_TuNgay.VisibleIndex = 4;
     this.Cot_TuNgay.Width = 77;
     //
     // Cot_DenNgay
     //
     this.Cot_DenNgay.Caption = "Ngày kết thúc";
     this.Cot_DenNgay.Name = "Cot_DenNgay";
     this.Cot_DenNgay.Visible = true;
     this.Cot_DenNgay.VisibleIndex = 5;
     this.Cot_DenNgay.Width = 79;
     //
     // Cot_SoNgayLamViec
     //
     this.Cot_SoNgayLamViec.Caption = "Số ngày đi làm";
     this.Cot_SoNgayLamViec.Name = "Cot_SoNgayLamViec";
     this.Cot_SoNgayLamViec.Visible = true;
     this.Cot_SoNgayLamViec.VisibleIndex = 6;
     this.Cot_SoNgayLamViec.Width = 81;
     //
     // Cot_SoNgayConLai
     //
     this.Cot_SoNgayConLai.Caption = "Số ngày còn lại";
     this.Cot_SoNgayConLai.Name = "Cot_SoNgayConLai";
     this.Cot_SoNgayConLai.Visible = true;
     this.Cot_SoNgayConLai.VisibleIndex = 7;
     this.Cot_SoNgayConLai.Width = 84;
     //
     // Cot_KetThuc
     //
     this.Cot_KetThuc.Caption = "Kết thúc";
     this.Cot_KetThuc.Name = "Cot_KetThuc";
     this.Cot_KetThuc.Visible = true;
     this.Cot_KetThuc.VisibleIndex = 8;
     this.Cot_KetThuc.Width = 52;
     //
     // Cot_GhiChu
     //
     this.Cot_GhiChu.Caption = "Ghi chú";
     this.Cot_GhiChu.Name = "Cot_GhiChu";
     this.Cot_GhiChu.Visible = true;
     this.Cot_GhiChu.VisibleIndex = 9;
     this.Cot_GhiChu.Width = 47;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(804, 229);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(795, 198);
     this.xtraTabPageDetail.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlDetail.Size = new System.Drawing.Size(795, 198);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetail.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.SoNgayKetThuc);
     this.popupControlContainerFilter.Controls.Add(this.TinhTrangHoSo);
     this.popupControlContainerFilter.Controls.Add(this.TenUngVien);
     this.popupControlContainerFilter.Controls.Add(this.MaHoSo);
     this.popupControlContainerFilter.Controls.Add(this.DenNgay);
     this.popupControlContainerFilter.Controls.Add(this.TuNgay);
     this.popupControlContainerFilter.Controls.Add(this.label8);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(804, 63);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // SoNgayKetThuc
     //
     this.SoNgayKetThuc.Location = new System.Drawing.Point(722, 6);
     this.SoNgayKetThuc.Name = "SoNgayKetThuc";
     this.SoNgayKetThuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoNgayKetThuc.Size = new System.Drawing.Size(70, 20);
     this.SoNgayKetThuc.TabIndex = 6;
     //
     // TinhTrangHoSo
     //
     this.TinhTrangHoSo.DataSource = null;
     this.TinhTrangHoSo.DisplayField = null;
     this.TinhTrangHoSo.Location = new System.Drawing.Point(402, 6);
     this.TinhTrangHoSo.Name = "TinhTrangHoSo";
     this.TinhTrangHoSo.Size = new System.Drawing.Size(204, 21);
     this.TinhTrangHoSo.TabIndex = 5;
     this.TinhTrangHoSo.ValueField = null;
     //
     // TenUngVien
     //
     this.TenUngVien.DataSource = null;
     this.TenUngVien.DisplayField = null;
     this.TenUngVien.Location = new System.Drawing.Point(90, 34);
     this.TenUngVien.Name = "TenUngVien";
     this.TenUngVien.Size = new System.Drawing.Size(204, 21);
     this.TenUngVien.TabIndex = 5;
     this.TenUngVien.ValueField = null;
     //
     // MaHoSo
     //
     this.MaHoSo.Location = new System.Drawing.Point(90, 6);
     this.MaHoSo.Name = "MaHoSo";
     this.MaHoSo.Properties.MaxLength = 100;
     this.MaHoSo.Size = new System.Drawing.Size(204, 20);
     this.MaHoSo.TabIndex = 0;
     //
     // DenNgay
     //
     this.DenNgay.EditValue = null;
     this.DenNgay.Location = new System.Drawing.Point(519, 34);
     this.DenNgay.Name = "DenNgay";
     this.DenNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DenNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DenNgay.Size = new System.Drawing.Size(87, 20);
     this.DenNgay.TabIndex = 3;
     //
     // TuNgay
     //
     this.TuNgay.EditValue = null;
     this.TuNgay.Location = new System.Drawing.Point(402, 34);
     this.TuNgay.Name = "TuNgay";
     this.TuNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TuNgay.Size = new System.Drawing.Size(88, 20);
     this.TuNgay.TabIndex = 2;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(491, 38);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(27, 13);
     this.label8.TabIndex = 3;
     this.label8.Text = "Đến";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(316, 38);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Từ ngày";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(628, 10);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(88, 13);
     this.label5.TabIndex = 5;
     this.label5.Text = "Số ngày kết thúc";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(316, 10);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(85, 13);
     this.label2.TabIndex = 5;
     this.label2.Text = "Tình trạng hồ sơ";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(4, 10);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(50, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Mã hồ sơ";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(4, 38);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(84, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Họ tên ứng viên";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // frmTheoDoi_TT_HL_TVQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 497);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTheoDoi_TT_HL_TVQL";
     this.Text = "Quản lý phiếu mua hàng của nhà cung cấp";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoNgayKetThuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaHoSo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGestionarSLead));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel1 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(18))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(12))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(9))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(15))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(21))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(13))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView1 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel2 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(5))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(12))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(23))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(6))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(9))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView2 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel3 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(4))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(1))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(2))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(3))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(4))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(2))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(3))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView3 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel4 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView4 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel5 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView5 = new DevExpress.XtraCharts.StackedBarSeriesView();
     this.toolStripBarraSLead = new System.Windows.Forms.ToolStrip();
     this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuCancelar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuTodasAsignaciones = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuFichaSLead = new System.Windows.Forms.ToolStripButton();
     this.MenuEnviarMail = new System.Windows.Forms.ToolStripButton();
     this.MenuFollowUp = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuExcel = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuSalir = new System.Windows.Forms.ToolStripButton();
     this.sBActualizar = new DevExpress.XtraEditors.SimpleButton();
     this.DateHasta = new DevExpress.XtraEditors.DateEdit();
     this.DateDesde = new DevExpress.XtraEditors.DateEdit();
     this.ChartSalesLead = new DevExpress.XtraCharts.ChartControl();
     this.sButtonAgregarObservacion = new DevExpress.XtraEditors.SimpleButton();
     this.sButtonEliminarObservacion = new DevExpress.XtraEditors.SimpleButton();
     this.sButtonGrabarObs = new DevExpress.XtraEditors.SimpleButton();
     this.gridProspectos = new DevExpress.XtraEditors.GroupControl();
     this.gridSLeads = new DevExpress.XtraGrid.GridControl();
     this.gridViewSLeads = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColContacto = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColCuenta = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColConsignatario = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.repSel = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridObservacionesSL = new DevExpress.XtraGrid.GridControl();
     this.gridViewObsSL = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColUsuario = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColObservacion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridFechaHora = new DevExpress.XtraGrid.Columns.GridColumn();
     this.toolStripBarraSLead.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChartSalesLead)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).BeginInit();
     this.gridProspectos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridObservacionesSL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewObsSL)).BeginInit();
     this.SuspendLayout();
     //
     // toolStripBarraSLead
     //
     this.toolStripBarraSLead.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuNuevo,
     this.toolStripSeparator2,
     this.MenuCancelar,
     this.toolStripSeparator1,
     this.MenuTodasAsignaciones,
     this.toolStripSeparator5,
     this.MenuFichaSLead,
     this.MenuEnviarMail,
     this.MenuFollowUp,
     this.toolStripSeparator4,
     this.MenuExcel,
     this.toolStripSeparator3,
     this.MenuSalir});
     this.toolStripBarraSLead.Location = new System.Drawing.Point(0, 0);
     this.toolStripBarraSLead.Name = "toolStripBarraSLead";
     this.toolStripBarraSLead.Size = new System.Drawing.Size(956, 38);
     this.toolStripBarraSLead.TabIndex = 8;
     this.toolStripBarraSLead.Text = "toolStrip1";
     //
     // MenuNuevo
     //
     this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
     this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuNuevo.Name = "MenuNuevo";
     this.MenuNuevo.Size = new System.Drawing.Size(63, 35);
     this.MenuNuevo.Text = "Actualizar";
     this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuNuevo.ToolTipText = "Nueva Llamada";
     this.MenuNuevo.Click += new System.EventHandler(this.MenuNuevo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 38);
     //
     // MenuCancelar
     //
     this.MenuCancelar.Image = ((System.Drawing.Image)(resources.GetObject("MenuCancelar.Image")));
     this.MenuCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuCancelar.Name = "MenuCancelar";
     this.MenuCancelar.Size = new System.Drawing.Size(57, 35);
     this.MenuCancelar.Text = "Cancelar";
     this.MenuCancelar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuCancelar.Click += new System.EventHandler(this.MenuCancelar_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // MenuTodasAsignaciones
     //
     this.MenuTodasAsignaciones.Enabled = false;
     this.MenuTodasAsignaciones.Image = ((System.Drawing.Image)(resources.GetObject("MenuTodasAsignaciones.Image")));
     this.MenuTodasAsignaciones.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.MenuTodasAsignaciones.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuTodasAsignaciones.Name = "MenuTodasAsignaciones";
     this.MenuTodasAsignaciones.Size = new System.Drawing.Size(63, 35);
     this.MenuTodasAsignaciones.Text = "Ver Todas";
     this.MenuTodasAsignaciones.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuTodasAsignaciones.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 38);
     //
     // MenuFichaSLead
     //
     this.MenuFichaSLead.Image = ((System.Drawing.Image)(resources.GetObject("MenuFichaSLead.Image")));
     this.MenuFichaSLead.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFichaSLead.Name = "MenuFichaSLead";
     this.MenuFichaSLead.Size = new System.Drawing.Size(96, 35);
     this.MenuFichaSLead.Text = "Ficha Sales Lead";
     this.MenuFichaSLead.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFichaSLead.Click += new System.EventHandler(this.MenuFichaSLead_Click);
     //
     // MenuEnviarMail
     //
     this.MenuEnviarMail.Image = ((System.Drawing.Image)(resources.GetObject("MenuEnviarMail.Image")));
     this.MenuEnviarMail.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuEnviarMail.Name = "MenuEnviarMail";
     this.MenuEnviarMail.Size = new System.Drawing.Size(100, 35);
     this.MenuEnviarMail.Text = "Enviar Sales Lead";
     this.MenuEnviarMail.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuEnviarMail.Click += new System.EventHandler(this.MenuEnviarMail_Click);
     //
     // MenuFollowUp
     //
     this.MenuFollowUp.Enabled = false;
     this.MenuFollowUp.Image = ((System.Drawing.Image)(resources.GetObject("MenuFollowUp.Image")));
     this.MenuFollowUp.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFollowUp.Name = "MenuFollowUp";
     this.MenuFollowUp.Size = new System.Drawing.Size(61, 35);
     this.MenuFollowUp.Text = "FollowUp";
     this.MenuFollowUp.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFollowUp.Click += new System.EventHandler(this.MenuFollowUp_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 38);
     //
     // MenuExcel
     //
     this.MenuExcel.Image = ((System.Drawing.Image)(resources.GetObject("MenuExcel.Image")));
     this.MenuExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuExcel.Name = "MenuExcel";
     this.MenuExcel.Size = new System.Drawing.Size(37, 35);
     this.MenuExcel.Text = "Excel";
     this.MenuExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuExcel.Click += new System.EventHandler(this.MenuExcel_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 38);
     //
     // MenuSalir
     //
     this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
     this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuSalir.Name = "MenuSalir";
     this.MenuSalir.Size = new System.Drawing.Size(33, 35);
     this.MenuSalir.Text = "Salir";
     this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click);
     //
     // sBActualizar
     //
     this.sBActualizar.Image = ((System.Drawing.Image)(resources.GetObject("sBActualizar.Image")));
     this.sBActualizar.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sBActualizar.Location = new System.Drawing.Point(199, 411);
     this.sBActualizar.Name = "sBActualizar";
     this.sBActualizar.Size = new System.Drawing.Size(41, 20);
     this.sBActualizar.TabIndex = 77;
     this.sBActualizar.ToolTip = "Actualizar Gráfico";
     this.sBActualizar.Click += new System.EventHandler(this.sBActualizar_Click);
     //
     // DateHasta
     //
     this.DateHasta.EditValue = null;
     this.DateHasta.Location = new System.Drawing.Point(102, 411);
     this.DateHasta.Name = "DateHasta";
     this.DateHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateHasta.Size = new System.Drawing.Size(91, 20);
     this.DateHasta.TabIndex = 76;
     //
     // DateDesde
     //
     this.DateDesde.EditValue = null;
     this.DateDesde.Location = new System.Drawing.Point(5, 411);
     this.DateDesde.Name = "DateDesde";
     this.DateDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateDesde.Size = new System.Drawing.Size(91, 20);
     this.DateDesde.TabIndex = 75;
     //
     // ChartSalesLead
     //
     this.ChartSalesLead.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.ChartSalesLead.Diagram = xyDiagram1;
     this.ChartSalesLead.Location = new System.Drawing.Point(5, 437);
     this.ChartSalesLead.Name = "ChartSalesLead";
     stackedBarSeriesLabel1.OverlappingOptionsTypeName = "OverlappingOptions";
     series1.Label = stackedBarSeriesLabel1;
     series1.Name = "Asignada";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1,
     seriesPoint2,
     seriesPoint3,
     seriesPoint4,
     seriesPoint5,
     seriesPoint6,
     seriesPoint7});
     series1.View = stackedBarSeriesView1;
     stackedBarSeriesLabel2.OverlappingOptionsTypeName = "OverlappingOptions";
     series2.Label = stackedBarSeriesLabel2;
     series2.Name = "Seguimiento";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint8,
     seriesPoint9,
     seriesPoint10,
     seriesPoint11,
     seriesPoint12,
     seriesPoint13,
     seriesPoint14});
     series2.View = stackedBarSeriesView2;
     stackedBarSeriesLabel3.OverlappingOptionsTypeName = "OverlappingOptions";
     series3.Label = stackedBarSeriesLabel3;
     series3.Name = "Cierre";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint15,
     seriesPoint16,
     seriesPoint17,
     seriesPoint18,
     seriesPoint19,
     seriesPoint20,
     seriesPoint21});
     series3.View = stackedBarSeriesView3;
     stackedBarSeriesLabel4.OverlappingOptionsTypeName = "OverlappingOptions";
     series4.Label = stackedBarSeriesLabel4;
     series4.Name = "Cancelada";
     series4.View = stackedBarSeriesView4;
     this.ChartSalesLead.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2,
     series3,
     series4};
     stackedBarSeriesLabel5.OverlappingOptionsTypeName = "OverlappingOptions";
     this.ChartSalesLead.SeriesTemplate.Label = stackedBarSeriesLabel5;
     this.ChartSalesLead.SeriesTemplate.View = stackedBarSeriesView5;
     this.ChartSalesLead.Size = new System.Drawing.Size(479, 135);
     this.ChartSalesLead.TabIndex = 78;
     //
     // sButtonAgregarObservacion
     //
     this.sButtonAgregarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonAgregarObservacion.Image")));
     this.sButtonAgregarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonAgregarObservacion.Location = new System.Drawing.Point(508, 548);
     this.sButtonAgregarObservacion.Name = "sButtonAgregarObservacion";
     this.sButtonAgregarObservacion.Size = new System.Drawing.Size(32, 24);
     this.sButtonAgregarObservacion.TabIndex = 81;
     this.sButtonAgregarObservacion.Click += new System.EventHandler(this.sButtonAgregarObservacion_Click);
     //
     // sButtonEliminarObservacion
     //
     this.sButtonEliminarObservacion.AutoSizeInLayoutControl = true;
     this.sButtonEliminarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminarObservacion.Image")));
     this.sButtonEliminarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonEliminarObservacion.Location = new System.Drawing.Point(508, 518);
     this.sButtonEliminarObservacion.Name = "sButtonEliminarObservacion";
     this.sButtonEliminarObservacion.Size = new System.Drawing.Size(32, 24);
     this.sButtonEliminarObservacion.TabIndex = 80;
     this.sButtonEliminarObservacion.Click += new System.EventHandler(this.sButtonEliminarObservacion_Click);
     //
     // sButtonGrabarObs
     //
     this.sButtonGrabarObs.Image = ((System.Drawing.Image)(resources.GetObject("sButtonGrabarObs.Image")));
     this.sButtonGrabarObs.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonGrabarObs.Location = new System.Drawing.Point(508, 437);
     this.sButtonGrabarObs.Name = "sButtonGrabarObs";
     this.sButtonGrabarObs.Size = new System.Drawing.Size(32, 29);
     this.sButtonGrabarObs.TabIndex = 79;
     this.sButtonGrabarObs.Click += new System.EventHandler(this.sButtonGrabarObs_Click);
     //
     // gridProspectos
     //
     this.gridProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridProspectos.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridProspectos.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.gridProspectos.AppearanceCaption.Options.UseFont = true;
     this.gridProspectos.AppearanceCaption.Options.UseForeColor = true;
     this.gridProspectos.Controls.Add(this.gridSLeads);
     this.gridProspectos.Location = new System.Drawing.Point(5, 41);
     this.gridProspectos.Name = "gridProspectos";
     this.gridProspectos.Size = new System.Drawing.Size(951, 369);
     this.gridProspectos.TabIndex = 83;
     this.gridProspectos.Text = "Sales Leads";
     //
     // gridSLeads
     //
     this.gridSLeads.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridSLeads.Location = new System.Drawing.Point(5, 23);
     this.gridSLeads.MainView = this.gridViewSLeads;
     this.gridSLeads.Name = "gridSLeads";
     this.gridSLeads.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemImageComboBox1,
     this.repositoryItemPictureEdit1,
     this.repositoryItemCheckEdit3,
     this.repositoryItemCheckEdit4});
     this.gridSLeads.Size = new System.Drawing.Size(941, 306);
     this.gridSLeads.TabIndex = 1;
     this.gridSLeads.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewSLeads});
     this.gridSLeads.Click += new System.EventHandler(this.gridSLeads_Click);
     //
     // gridViewSLeads
     //
     this.gridViewSLeads.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn7,
     this.gridColContacto,
     this.gridColCuenta,
     this.gridColConsignatario,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn1});
     this.gridViewSLeads.GridControl = this.gridSLeads;
     this.gridViewSLeads.Name = "gridViewSLeads";
     this.gridViewSLeads.OptionsSelection.MultiSelect = true;
     this.gridViewSLeads.OptionsView.ShowGroupPanel = false;
     this.gridViewSLeads.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewSLeads_FocusedRowChanged);
     this.gridViewSLeads.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewSLeads_RowStyle);
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "N# Sales Lead";
     this.gridColumn3.FieldName = "Reference";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 85;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "Agente";
     this.gridColumn7.FieldName = "Agente.Nombre";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     this.gridColumn7.Width = 180;
     //
     // gridColContacto
     //
     this.gridColContacto.Caption = "Contacto";
     this.gridColContacto.FieldName = "Agente.Contacto";
     this.gridColContacto.Name = "gridColContacto";
     this.gridColContacto.OptionsColumn.ReadOnly = true;
     this.gridColContacto.Visible = true;
     this.gridColContacto.VisibleIndex = 2;
     this.gridColContacto.Width = 77;
     //
     // gridColCuenta
     //
     this.gridColCuenta.Caption = "Shipper";
     this.gridColCuenta.FieldName = "ShipperNombre";
     this.gridColCuenta.Name = "gridColCuenta";
     this.gridColCuenta.OptionsColumn.ReadOnly = true;
     this.gridColCuenta.Visible = true;
     this.gridColCuenta.VisibleIndex = 3;
     this.gridColCuenta.Width = 101;
     //
     // gridColConsignatario
     //
     this.gridColConsignatario.Caption = "Consignatario";
     this.gridColConsignatario.FieldName = "ConsigNombre";
     this.gridColConsignatario.Name = "gridColConsignatario";
     this.gridColConsignatario.OptionsColumn.ReadOnly = true;
     this.gridColConsignatario.Visible = true;
     this.gridColConsignatario.VisibleIndex = 4;
     this.gridColConsignatario.Width = 86;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "Estado";
     this.gridColumn9.FieldName = "EstadoSLead";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     this.gridColumn9.Width = 73;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn10.Caption = "Asignación";
     this.gridColumn10.FieldName = "FechaApertura";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 6;
     this.gridColumn10.Width = 107;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn1.Caption = "Follow Up";
     this.gridColumn1.FieldName = "FechaRevision";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 7;
     this.gridColumn1.Width = 109;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.Appearance.Options.UseTextOptions = true;
     this.repositoryItemImageComboBox1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemImageComboBox1.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned;
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Baja", "2", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Alta", "0", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Media", "1", 2),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("New", 1, 3)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.PictureStoreMode = DevExpress.XtraEditors.Controls.PictureStoreMode.Image;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // ctrldxError
     //
     this.ctrldxError.ContainerControl = this;
     //
     // repSel
     //
     this.repSel.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("repSel.Appearance.Image")));
     this.repSel.Appearance.Options.UseImage = true;
     this.repSel.AutoHeight = false;
     this.repSel.Name = "repSel";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.Appearance.Options.UseTextOptions = true;
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // repositoryItemMemoExEdit1
     //
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     this.repositoryItemMemoExEdit1.ShowIcon = false;
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridObservacionesSL;
     this.gridView3.Name = "gridView3";
     //
     // gridObservacionesSL
     //
     this.gridObservacionesSL.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.gridObservacionesSL.Location = new System.Drawing.Point(542, 416);
     this.gridObservacionesSL.MainView = this.gridViewObsSL;
     this.gridObservacionesSL.Name = "gridObservacionesSL";
     this.gridObservacionesSL.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repSel,
     this.repositoryItemCheckEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemMemoEdit1,
     this.repositoryItemMemoEdit2,
     this.repositoryItemMemoExEdit1});
     this.gridObservacionesSL.Size = new System.Drawing.Size(414, 156);
     this.gridObservacionesSL.TabIndex = 82;
     this.gridObservacionesSL.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewObsSL,
     this.gridView3});
     //
     // gridViewObsSL
     //
     this.gridViewObsSL.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColUsuario,
     this.gridColObservacion,
     this.gridFechaHora});
     this.gridViewObsSL.CustomizationFormBounds = new System.Drawing.Rectangle(592, 334, 208, 170);
     this.gridViewObsSL.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridViewObsSL.GridControl = this.gridObservacionesSL;
     this.gridViewObsSL.Name = "gridViewObsSL";
     this.gridViewObsSL.OptionsBehavior.CacheValuesOnRowUpdating = DevExpress.Data.CacheRowValuesMode.Disabled;
     this.gridViewObsSL.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewObsSL.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridViewObsSL.OptionsView.ShowGroupPanel = false;
     //
     // gridColUsuario
     //
     this.gridColUsuario.Caption = "Usuario";
     this.gridColUsuario.FieldName = "ObjUsuario.NombreUsuario";
     this.gridColUsuario.Name = "gridColUsuario";
     this.gridColUsuario.OptionsColumn.AllowEdit = false;
     this.gridColUsuario.OptionsColumn.ReadOnly = true;
     this.gridColUsuario.Visible = true;
     this.gridColUsuario.VisibleIndex = 0;
     this.gridColUsuario.Width = 63;
     //
     // gridColObservacion
     //
     this.gridColObservacion.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColObservacion.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColObservacion.Caption = "Comentario";
     this.gridColObservacion.ColumnEdit = this.repositoryItemMemoExEdit1;
     this.gridColObservacion.FieldName = "Observacion";
     this.gridColObservacion.Name = "gridColObservacion";
     this.gridColObservacion.Visible = true;
     this.gridColObservacion.VisibleIndex = 1;
     this.gridColObservacion.Width = 276;
     //
     // gridFechaHora
     //
     this.gridFechaHora.AppearanceHeader.Options.UseTextOptions = true;
     this.gridFechaHora.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridFechaHora.Caption = "Fecha";
     this.gridFechaHora.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridFechaHora.FieldName = "FechaHora";
     this.gridFechaHora.Name = "gridFechaHora";
     this.gridFechaHora.OptionsColumn.ReadOnly = true;
     this.gridFechaHora.Visible = true;
     this.gridFechaHora.VisibleIndex = 2;
     this.gridFechaHora.Width = 76;
     //
     // frmGestionarSLead
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(956, 574);
     this.Controls.Add(this.gridProspectos);
     this.Controls.Add(this.gridObservacionesSL);
     this.Controls.Add(this.sButtonAgregarObservacion);
     this.Controls.Add(this.sButtonEliminarObservacion);
     this.Controls.Add(this.sButtonGrabarObs);
     this.Controls.Add(this.ChartSalesLead);
     this.Controls.Add(this.sBActualizar);
     this.Controls.Add(this.DateHasta);
     this.Controls.Add(this.DateDesde);
     this.Controls.Add(this.toolStripBarraSLead);
     this.Name = "frmGestionarSLead";
     this.Text = "Gestión de Sales Leads";
     this.Load += new System.EventHandler(this.frmGestionarSLead_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmGestionarSLead_FormClosed);
     this.toolStripBarraSLead.ResumeLayout(false);
     this.toolStripBarraSLead.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChartSalesLead)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).EndInit();
     this.gridProspectos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridObservacionesSL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewObsSL)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #21
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(frmDepartment));
     this.grpMDServiceTop = new DevExpress.XtraEditors.GroupControl();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LK_nDepartHead = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).BeginInit();
     this.grpMDServiceTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LK_nDepartHead)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDServiceTop
     //
     this.grpMDServiceTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDServiceTop.Appearance.Options.UseBackColor = true;
     this.grpMDServiceTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDServiceTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDServiceTop.Controls.Add(this.btn_Add);
     this.grpMDServiceTop.Controls.Add(this.btn_Del);
     this.grpMDServiceTop.Controls.Add(this.gridControl1);
     this.grpMDServiceTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDServiceTop.Location = new System.Drawing.Point(0, 0);
     this.grpMDServiceTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDServiceTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDServiceTop.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDServiceTop.Name = "grpMDServiceTop";
     this.grpMDServiceTop.Size = new System.Drawing.Size(984, 560);
     this.grpMDServiceTop.TabIndex = 91;
     this.grpMDServiceTop.Text = "Department";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 130;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // 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_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 129;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(2, 46);
     this.gridControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.LK_nDepartHead,
                                                                                                           this.repositoryItemLookUpEdit1});
     this.gridControl1.Size = new System.Drawing.Size(980, 512);
     this.gridControl1.TabIndex = 19;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.LostFocus += new System.EventHandler(this.gridView1_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Department ID";
     this.gridColumn1.FieldName = "nDepartmentID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 152;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 556;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Department Head";
     this.gridColumn3.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumn3.FieldName = "nDepartHead";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 227;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // LK_nDepartHead
     //
     this.LK_nDepartHead.AutoHeight = false;
     this.LK_nDepartHead.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LK_nDepartHead.Name = "LK_nDepartHead";
     //
     // frmDepartment
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDServiceTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmDepartment";
     this.Text = "frmDepartment";
     this.Load += new System.EventHandler(this.frmDepartment_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).EndInit();
     this.grpMDServiceTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LK_nDepartHead)).EndInit();
     this.ResumeLayout(false);
 }
Example #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmEmployee));
     this.grpMDEmployeeTop = new DevExpress.XtraEditors.GroupControl();
     this.btn_Comm_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Comm_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupSalesComm = new DevExpress.XtraEditors.GroupControl();
     this.gridSalesComm = new DevExpress.XtraGrid.GridControl();
     this.gridView_SalesComm = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCommGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CommGroupID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.mIndivTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.gridControlMd_Employee = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Employee = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnEmp1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnEmp2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_JobPosition = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EmpStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RightsLevel = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_InstructorType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbServiceCom = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nLeaveGroup = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkPartTime = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_StatusID = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Department = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Probation = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_MaternityLeave = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_ChildCareLeave = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_RegisterFee = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_PTInstructor = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_SalesPerson = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_ServiceComm = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Instructor = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_MemoGroup = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbStatus = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.lk_ServiceComm = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDEmployeeTop)).BeginInit();
     this.grpMDEmployeeTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupSalesComm)).BeginInit();
     this.groupSalesComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSalesComm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_SalesComm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CommGroupID)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_JobPosition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_InstructorType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbServiceCom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPartTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StatusID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Department)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Probation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_MaternityLeave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ChildCareLeave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RegisterFee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_PTInstructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_SalesPerson)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ServiceComm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Instructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MemoGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ServiceComm)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDEmployeeTop
     //
     this.grpMDEmployeeTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDEmployeeTop.Appearance.Options.UseBackColor = true;
     this.grpMDEmployeeTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDEmployeeTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDEmployeeTop.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpMDEmployeeTop.Controls.Add(this.btn_Comm_Add);
     this.grpMDEmployeeTop.Controls.Add(this.btn_Comm_Del);
     this.grpMDEmployeeTop.Controls.Add(this.groupSalesComm);
     this.grpMDEmployeeTop.Controls.Add(this.Searchpanel);
     this.grpMDEmployeeTop.Controls.Add(this.gridControlMd_Employee);
     this.grpMDEmployeeTop.Controls.Add(this.btn_Add);
     this.grpMDEmployeeTop.Controls.Add(this.btn_Del);
     this.grpMDEmployeeTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDEmployeeTop.Location = new System.Drawing.Point(0, 0);
     this.grpMDEmployeeTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDEmployeeTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDEmployeeTop.Name = "grpMDEmployeeTop";
     this.grpMDEmployeeTop.Size = new System.Drawing.Size(1072, 560);
     this.grpMDEmployeeTop.TabIndex = 90;
     this.grpMDEmployeeTop.Text = "Employee";
     //
     // btn_Comm_Add
     //
     this.btn_Comm_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Comm_Add.Appearance.Options.UseFont = true;
     this.btn_Comm_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Comm_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Comm_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Comm_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Comm_Add.ImageIndex = 0;
     this.btn_Comm_Add.ImageList = this.imageList1;
     this.btn_Comm_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Comm_Add.Location = new System.Drawing.Point(8, 416);
     this.btn_Comm_Add.Name = "btn_Comm_Add";
     this.btn_Comm_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Comm_Add.TabIndex = 153;
     this.btn_Comm_Add.Click += new System.EventHandler(this.btn_Comm_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_Comm_Del
     //
     this.btn_Comm_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Comm_Del.Appearance.Options.UseFont = true;
     this.btn_Comm_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Comm_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Comm_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Comm_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Comm_Del.ImageIndex = 1;
     this.btn_Comm_Del.ImageList = this.imageList1;
     this.btn_Comm_Del.Location = new System.Drawing.Point(48, 416);
     this.btn_Comm_Del.Name = "btn_Comm_Del";
     this.btn_Comm_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Comm_Del.TabIndex = 152;
     this.btn_Comm_Del.Click += new System.EventHandler(this.btn_Comm_Del_Click);
     //
     // groupSalesComm
     //
     this.groupSalesComm.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupSalesComm.Controls.Add(this.gridSalesComm);
     this.groupSalesComm.Location = new System.Drawing.Point(0, 440);
     this.groupSalesComm.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupSalesComm.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupSalesComm.Name = "groupSalesComm";
     this.groupSalesComm.Size = new System.Drawing.Size(984, 120);
     this.groupSalesComm.TabIndex = 151;
     this.groupSalesComm.Text = "Sales Commission Setup";
     //
     // gridSalesComm
     //
     this.gridSalesComm.Dock = System.Windows.Forms.DockStyle.Left;
     this.gridSalesComm.EmbeddedNavigator.Name = "";
     this.gridSalesComm.Location = new System.Drawing.Point(2, 19);
     this.gridSalesComm.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridSalesComm.MainView = this.gridView_SalesComm;
     this.gridSalesComm.Name = "gridSalesComm";
     this.gridSalesComm.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_CommGroupID});
     this.gridSalesComm.Size = new System.Drawing.Size(958, 99);
     this.gridSalesComm.TabIndex = 126;
     this.gridSalesComm.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView_SalesComm});
     //
     // gridView_SalesComm
     //
     this.gridView_SalesComm.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.nCommGroupID,
     this.mIndivTarget,
     this.dtFrom,
     this.dtTo});
     this.gridView_SalesComm.GridControl = this.gridSalesComm;
     this.gridView_SalesComm.Name = "gridView_SalesComm";
     this.gridView_SalesComm.OptionsCustomization.AllowColumnMoving = false;
     this.gridView_SalesComm.OptionsCustomization.AllowFilter = false;
     this.gridView_SalesComm.OptionsCustomization.AllowSort = false;
     this.gridView_SalesComm.OptionsView.ShowGroupPanel = false;
     this.gridView_SalesComm.LostFocus += new System.EventHandler(this.gridView_SalesComm_LostFocus);
     //
     // nCommGroupID
     //
     this.nCommGroupID.Caption = "Commission Type";
     this.nCommGroupID.ColumnEdit = this.lk_CommGroupID;
     this.nCommGroupID.FieldName = "nCommGroupID";
     this.nCommGroupID.Name = "nCommGroupID";
     this.nCommGroupID.Visible = true;
     this.nCommGroupID.VisibleIndex = 2;
     //
     // lk_CommGroupID
     //
     this.lk_CommGroupID.AutoHeight = false;
     this.lk_CommGroupID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CommGroupID.Name = "lk_CommGroupID";
     //
     // mIndivTarget
     //
     this.mIndivTarget.Caption = "Commission Target";
     this.mIndivTarget.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.mIndivTarget.FieldName = "mIndivTarget";
     this.mIndivTarget.Name = "mIndivTarget";
     this.mIndivTarget.Visible = true;
     this.mIndivTarget.VisibleIndex = 3;
     //
     // dtFrom
     //
     this.dtFrom.Caption = "Valid From";
     this.dtFrom.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtFrom.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtFrom.FieldName = "dtFrom";
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.Visible = true;
     this.dtFrom.VisibleIndex = 0;
     //
     // dtTo
     //
     this.dtTo.Caption = "Valid Till";
     this.dtTo.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtTo.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtTo.FieldName = "dtTo";
     this.dtTo.Name = "dtTo";
     this.dtTo.Visible = true;
     this.dtTo.VisibleIndex = 1;
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(512, 24);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 150;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(392, 0);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(232, 0);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // gridControlMd_Employee
     //
     this.gridControlMd_Employee.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.gridControlMd_Employee.EmbeddedNavigator.Name = "";
     this.gridControlMd_Employee.Location = new System.Drawing.Point(8, 46);
     this.gridControlMd_Employee.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Employee.MainView = this.gridViewMd_Employee;
     this.gridControlMd_Employee.Name = "gridControlMd_Employee";
     this.gridControlMd_Employee.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_JobPosition,
     this.lk_BranchCode,
     this.EmpStartDate,
     this.lk_RightsLevel,
     this.lk_InstructorType,
     this.chkPartTime,
     this.cmbStatus,
     this.lk_Department,
     this.chk_Probation,
     this.chk_MaternityLeave,
     this.chk_ChildCareLeave,
     this.chk_RegisterFee,
     this.chk_PTInstructor,
     this.chk_SalesPerson,
     this.chk_ServiceComm,
     this.lk_MemoGroup,
     this.lk_Instructor,
     this.lk_ServiceComm,
     this.cmbServiceCom,
     this.repositoryItemTextEdit1,
     this.chk_StatusID});
     this.gridControlMd_Employee.Size = new System.Drawing.Size(984, 344);
     this.gridControlMd_Employee.TabIndex = 133;
     this.gridControlMd_Employee.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Employee});
     //
     // gridViewMd_Employee
     //
     this.gridViewMd_Employee.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnEmp1,
     this.gridColumnEmp2,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.nLeaveGroup,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn6});
     this.gridViewMd_Employee.GridControl = this.gridControlMd_Employee;
     this.gridViewMd_Employee.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Employee.Name = "gridViewMd_Employee";
     this.gridViewMd_Employee.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Employee.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Employee.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Employee.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Employee.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Employee.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.SalesComm_Init);
     this.gridViewMd_Employee.LostFocus += new System.EventHandler(this.gridViewMd_Employee_LostFocus);
     //
     // gridColumnEmp1
     //
     this.gridColumnEmp1.Caption = "Emp ID";
     this.gridColumnEmp1.FieldName = "nEmployeeID";
     this.gridColumnEmp1.Name = "gridColumnEmp1";
     this.gridColumnEmp1.Visible = true;
     this.gridColumnEmp1.VisibleIndex = 0;
     this.gridColumnEmp1.Width = 43;
     //
     // gridColumnEmp2
     //
     this.gridColumnEmp2.Caption = "Name";
     this.gridColumnEmp2.FieldName = "strEmployeeName";
     this.gridColumnEmp2.Name = "gridColumnEmp2";
     this.gridColumnEmp2.Visible = true;
     this.gridColumnEmp2.VisibleIndex = 1;
     this.gridColumnEmp2.Width = 104;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Password";
     this.gridColumn1.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn1.FieldName = "strPassword";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemTextEdit1.PasswordChar = '*';
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Job Position";
     this.gridColumn2.ColumnEdit = this.lk_JobPosition;
     this.gridColumn2.FieldName = "strJobPositionCode";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // lk_JobPosition
     //
     this.lk_JobPosition.AutoHeight = false;
     this.lk_JobPosition.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_JobPosition.Name = "lk_JobPosition";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Branch";
     this.gridColumn3.ColumnEdit = this.lk_BranchCode;
     this.gridColumn3.FieldName = "strBranchCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 51;
     //
     // lk_BranchCode
     //
     this.lk_BranchCode.AutoHeight = false;
     this.lk_BranchCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode.Name = "lk_BranchCode";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Start Date";
     this.gridColumn4.ColumnEdit = this.EmpStartDate;
     this.gridColumn4.FieldName = "dtEmployeeStartDate";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 5;
     //
     // EmpStartDate
     //
     this.EmpStartDate.AutoHeight = false;
     this.EmpStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EmpStartDate.Name = "EmpStartDate";
     this.EmpStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Rights Lvl";
     this.gridColumn5.ColumnEdit = this.lk_RightsLevel;
     this.gridColumn5.FieldName = "nRightsLevelID";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 6;
     this.gridColumn5.Width = 67;
     //
     // lk_RightsLevel
     //
     this.lk_RightsLevel.AutoHeight = false;
     this.lk_RightsLevel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RightsLevel.Name = "lk_RightsLevel";
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Instructor Type";
     this.gridColumn11.ColumnEdit = this.lk_InstructorType;
     this.gridColumn11.FieldName = "nInstructorTypeID";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 7;
     this.gridColumn11.Width = 85;
     //
     // lk_InstructorType
     //
     this.lk_InstructorType.AutoHeight = false;
     this.lk_InstructorType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_InstructorType.Name = "lk_InstructorType";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Service Comm Level";
     this.gridColumn12.ColumnEdit = this.cmbServiceCom;
     this.gridColumn12.FieldName = "nServiceCommLevel";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 8;
     this.gridColumn12.Width = 105;
     //
     // cmbServiceCom
     //
     this.cmbServiceCom.AutoHeight = false;
     this.cmbServiceCom.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbServiceCom.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 1", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 2", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 3", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 4", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Level 5", 5, -1)});
     this.cmbServiceCom.Name = "cmbServiceCom";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Contact No";
     this.gridColumn13.FieldName = "strContactNo";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 9;
     this.gridColumn13.Width = 78;
     //
     // nLeaveGroup
     //
     this.nLeaveGroup.Caption = "Leave Grp";
     this.nLeaveGroup.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.nLeaveGroup.FieldName = "nLeaveGroup";
     this.nLeaveGroup.Name = "nLeaveGroup";
     this.nLeaveGroup.Visible = true;
     this.nLeaveGroup.VisibleIndex = 10;
     this.nLeaveGroup.Width = 61;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Part Time";
     this.gridColumn14.ColumnEdit = this.chkPartTime;
     this.gridColumn14.FieldName = "fPartTime";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 11;
     this.gridColumn14.Width = 54;
     //
     // chkPartTime
     //
     this.chkPartTime.AutoHeight = false;
     this.chkPartTime.Name = "chkPartTime";
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Status";
     this.gridColumn15.ColumnEdit = this.chk_StatusID;
     this.gridColumn15.FieldName = "nStatusID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 12;
     this.gridColumn15.Width = 46;
     //
     // chk_StatusID
     //
     this.chk_StatusID.AutoHeight = false;
     this.chk_StatusID.Name = "chk_StatusID";
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Department";
     this.gridColumn16.ColumnEdit = this.lk_Department;
     this.gridColumn16.FieldName = "nDepartmentID";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 13;
     this.gridColumn16.Width = 71;
     //
     // lk_Department
     //
     this.lk_Department.AutoHeight = false;
     this.lk_Department.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Department.Name = "lk_Department";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Probation";
     this.gridColumn17.ColumnEdit = this.chk_Probation;
     this.gridColumn17.FieldName = "fProbation";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 14;
     this.gridColumn17.Width = 55;
     //
     // chk_Probation
     //
     this.chk_Probation.AutoHeight = false;
     this.chk_Probation.Name = "chk_Probation";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Maternity";
     this.gridColumn18.ColumnEdit = this.chk_MaternityLeave;
     this.gridColumn18.FieldName = "fMaternityLeave";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 15;
     this.gridColumn18.Width = 55;
     //
     // chk_MaternityLeave
     //
     this.chk_MaternityLeave.AutoHeight = false;
     this.chk_MaternityLeave.Name = "chk_MaternityLeave";
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Child Care";
     this.gridColumn19.ColumnEdit = this.chk_ChildCareLeave;
     this.gridColumn19.FieldName = "fChildcareLeave";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 16;
     this.gridColumn19.Width = 58;
     //
     // chk_ChildCareLeave
     //
     this.chk_ChildCareLeave.AutoHeight = false;
     this.chk_ChildCareLeave.Name = "chk_ChildCareLeave";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Reg Fee";
     this.gridColumn20.ColumnEdit = this.chk_RegisterFee;
     this.gridColumn20.FieldName = "fRegistrationFee";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 17;
     this.gridColumn20.Width = 55;
     //
     // chk_RegisterFee
     //
     this.chk_RegisterFee.AutoHeight = false;
     this.chk_RegisterFee.Name = "chk_RegisterFee";
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "PT Instructor";
     this.gridColumn21.ColumnEdit = this.chk_PTInstructor;
     this.gridColumn21.FieldName = "fPtInstructor";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 18;
     this.gridColumn21.Width = 72;
     //
     // chk_PTInstructor
     //
     this.chk_PTInstructor.AutoHeight = false;
     this.chk_PTInstructor.Name = "chk_PTInstructor";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Sales Person";
     this.gridColumn22.ColumnEdit = this.chk_SalesPerson;
     this.gridColumn22.FieldName = "fSalesPerson";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 19;
     this.gridColumn22.Width = 70;
     //
     // chk_SalesPerson
     //
     this.chk_SalesPerson.AutoHeight = false;
     this.chk_SalesPerson.Name = "chk_SalesPerson";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Svs Comm";
     this.gridColumn23.ColumnEdit = this.chk_ServiceComm;
     this.gridColumn23.FieldName = "fServiceCommission";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 20;
     this.gridColumn23.Width = 58;
     //
     // chk_ServiceComm
     //
     this.chk_ServiceComm.AutoHeight = false;
     this.chk_ServiceComm.Name = "chk_ServiceComm";
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Instructor";
     this.gridColumn24.ColumnEdit = this.lk_Instructor;
     this.gridColumn24.FieldName = "fInstructor";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 21;
     this.gridColumn24.Width = 57;
     //
     // lk_Instructor
     //
     this.lk_Instructor.AutoHeight = false;
     this.lk_Instructor.Name = "lk_Instructor";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Memo Grp";
     this.gridColumn25.ColumnEdit = this.lk_MemoGroup;
     this.gridColumn25.FieldName = "fMemoGroup";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 22;
     this.gridColumn25.Width = 57;
     //
     // lk_MemoGroup
     //
     this.lk_MemoGroup.AutoHeight = false;
     this.lk_MemoGroup.Name = "lk_MemoGroup";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Remarks";
     this.gridColumn6.FieldName = "strRemark";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 23;
     //
     // cmbStatus
     //
     this.cmbStatus.AutoHeight = false;
     this.cmbStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbStatus.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 1, -1)});
     this.cmbStatus.Name = "cmbStatus";
     //
     // lk_ServiceComm
     //
     this.lk_ServiceComm.AutoHeight = false;
     this.lk_ServiceComm.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_ServiceComm.Name = "lk_ServiceComm";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 132;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 131;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // frmEmployee
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1036, 560);
     this.Controls.Add(this.grpMDEmployeeTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmEmployee";
     this.Text = "frmEmployee";
     this.Load += new System.EventHandler(this.frmEmployee_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDEmployeeTop)).EndInit();
     this.grpMDEmployeeTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupSalesComm)).EndInit();
     this.groupSalesComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSalesComm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_SalesComm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CommGroupID)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_JobPosition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EmpStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_InstructorType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbServiceCom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPartTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StatusID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Department)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Probation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_MaternityLeave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ChildCareLeave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RegisterFee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_PTInstructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_SalesPerson)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ServiceComm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Instructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MemoGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ServiceComm)).EndInit();
     this.ResumeLayout(false);
 }
Example #23
0
        private void InitializeLayout()
        {
            this.SetFormCaption();
            if (_data.DsData == null)
            {
                _data.GetData();
            }
            gcMain = this._frmDesigner.GenGridControl(this._data.DsStruct.Tables[0], false, DockStyle.Fill);
            gvMain = gcMain.ViewCollection[0] as DevExpress.XtraGrid.Views.Grid.GridView;
            this.Controls.Add(gcMain);

            SplitterControl spc = new SplitterControl();

            spc.Dock = DockStyle.Bottom;
            this.Controls.Add(spc);

            gcDetail = this._frmDesigner.GenGridControl(this._data.DsStruct.Tables[1], false, DockStyle.Bottom);
            gvDetail = gcDetail.ViewCollection[0] as DevExpress.XtraGrid.Views.Grid.GridView;
            gvDetail.OptionsView.ShowFooter     = false;
            gvDetail.OptionsView.ShowGroupPanel = false;
            this.Controls.Add(gcDetail);
            gcMain.MouseUp += new MouseEventHandler(gcMain_MouseUp);
            gcDetail.SendToBack();
            layoutControl2.SendToBack();
            gcDetail.Height = this.Height / 3;
            //Thêm vào phần duyệt
            foreach (DevExpress.XtraGrid.Columns.GridColumn col in gvMain.Columns)
            {
                if (col.FieldName.ToUpper() == "TASKID")
                {
                    DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox repTask = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
                    this.gcMain.RepositoryItems.Add(repTask);

                    repTask.AutoHeight     = false;
                    repTask.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
                    if (_data.tbTask != null)
                    {
                        for (int i = 0; i < _data.tbTask.Rows.Count; i++)
                        {
                            DataRow drTask = _data.tbTask.Rows[i];
                            if (drTask["Icon"] != DBNull.Value)
                            {
                                this.imageList2.Images.Add(GetImage(drTask["Icon"] as byte[]));
                                repTask.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem(drTask["TaskLabel"].ToString(), drTask["ID"], repTask.Items.Count)
                                });
                            }
                        }
                    }
                    repTask.SmallImages = this.imageList2;

                    col.ColumnEdit = repTask;
                    col.Caption    = "";
                }
                if (col.FieldName.ToUpper() == "APPROVED" || col.FieldName.ToUpper() == "HOANTHANH")
                {
                    if (col.FieldName.ToUpper() == "APPROVED")
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox rep = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
                        this.gcMain.RepositoryItems.Add(rep);

                        rep.AutoHeight     = false;
                        rep.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
                        rep.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Chưa duyệt", 0, 2),
                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Đã duyệt", 1, 0)
                        });
                        rep.SmallImages = this.imageList1;
                        col.ColumnEdit  = rep;
                        col.Caption     = "";
                    }
                    if (col.FieldName.ToUpper() == "HOANTHANH")
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox rep1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
                        this.gcMain.RepositoryItems.Add(rep1);

                        rep1.AutoHeight     = false;
                        rep1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
                        rep1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Chưa hoàn thành", false, 2),
                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Đã hoàn thành", true, 0)
                        });
                        rep1.SmallImages = this.imageList1;
                        col.ColumnEdit   = rep1;
                        col.Caption      = "Hoàn thành";
                    }

                    gvMain.GroupFormat = "[#image]{1}";
                }
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormNewQaQc));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition();
     this.bgvBatchCalc1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcBachCalc = new DevExpress.XtraGrid.GridControl();
     this.bgvBatchCalc3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bgvBatchCalc4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.bgvBatchCalc2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand13 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_par_prev_batch = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_Previous_par = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.imageStatus = new System.Windows.Forms.ImageList(this.components);
     this.gbSample = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Cod_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Cod_des_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repDes_Sample = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gv2col_Fum = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idunit_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idtemplate_method = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_mri = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail_elem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Weight1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Weight2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand10 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Volumen1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Volumen2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Reading1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Reading2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gbDilution = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Flag_dila1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repCheckDilution = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Dilua1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_dilb1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Dilub1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Rank1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Rank2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Factor1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Factor2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Law1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Law2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand12 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Str_result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand9 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_text_obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_observation = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowPopup = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gv2col_Qaqc_mr = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_blk = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_par = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_parity = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_approve = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_approve = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_review = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_review = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_status_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_StatusResult = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_error = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowObs = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridBand14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_has_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_HasRetest = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_tmp_retest_idmethod = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_tmp_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idretest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_approve_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_review_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.imgChecks = new System.Windows.Forms.ImageList(this.components);
     this.repProcedence2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.treeCol_Urgent_sample = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeTrayWaiting = new DevExpress.XtraTreeList.TreeList();
     this.treeCol_Idtemplate_method = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Idrecep_sample_detail_elem = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Abbreviation = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Cod_repetition = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repRepetition = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeCol_Id = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Parentid = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Num_tray = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Date_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.treeCol_Hour_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repHour = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.imgPriority = new System.Windows.Forms.ImageList(this.components);
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabTreeQaqc = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationWait = new DevExpress.XtraEditors.LookUpEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.treeTrayFinished = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn8 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn9 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.paListAuthorization = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationApproved = new DevExpress.XtraEditors.LookUpEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.paHistoryFilter = new DevExpress.XtraEditors.GroupControl();
     this.txYear = new DevExpress.XtraEditors.TextEdit();
     this.txSample = new DevExpress.XtraEditors.SpinEdit();
     this.cbTypeSample = new DevExpress.XtraEditors.LookUpEdit();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.btSearchTray = new DevExpress.XtraEditors.SimpleButton();
     this.label22 = new System.Windows.Forms.Label();
     this.ckSample = new DevExpress.XtraEditors.CheckEdit();
     this.ckCompany = new DevExpress.XtraEditors.CheckEdit();
     this.panel9 = new System.Windows.Forms.Panel();
     this.deFrom = new DevExpress.XtraEditors.DateEdit();
     this.deUntil = new DevExpress.XtraEditors.DateEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.paButtons = new DevExpress.XtraEditors.PanelControl();
     this.paNewTray = new System.Windows.Forms.Panel();
     this.btRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel5 = new System.Windows.Forms.Panel();
     this.gbApprove = new System.Windows.Forms.GroupBox();
     this.laDate_approved = new System.Windows.Forms.Label();
     this.laUser_approved = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.paAuthorization = new System.Windows.Forms.Panel();
     this.ucSign1 = new LimsProject.UcSign();
     this.gbReview = new System.Windows.Forms.GroupBox();
     this.laDate_revised = new System.Windows.Forms.Label();
     this.laUser_revised = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.tbStd = new DevExpress.XtraEditors.SpinEdit();
     this.tbAbs = new DevExpress.XtraEditors.SpinEdit();
     this.btRegAbsStd = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.tbTitle = new DevExpress.XtraEditors.MemoEdit();
     this.label16 = new System.Windows.Forms.Label();
     this.tbCodMethod = new DevExpress.XtraEditors.ButtonEdit();
     this.tbAbbreviation = new DevExpress.XtraEditors.TextEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.ucSignCloseTray = new LimsProject.UcSign();
     this.laTitleModule = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbUnitMeasure = new DevExpress.XtraEditors.TextEdit();
     this.tbLawMri = new DevExpress.XtraEditors.TextEdit();
     this.tbSdMr = new DevExpress.XtraEditors.TextEdit();
     this.tbSdBlk = new DevExpress.XtraEditors.TextEdit();
     this.tbMri = new DevExpress.XtraEditors.TextEdit();
     this.label18 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.tbErrorAllowed = new DevExpress.XtraEditors.TextEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.deDate_allowed_error = new DevExpress.XtraEditors.DateEdit();
     this.label14 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc2 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc1 = new DevExpress.XtraEditors.PanelControl();
     this.panel7 = new System.Windows.Forms.Panel();
     this.img32x32 = new System.Windows.Forms.ImageList(this.components);
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).BeginInit();
     this.tabTreeQaqc.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).BeginInit();
     this.xtraTabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).BeginInit();
     this.paListAuthorization.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).BeginInit();
     this.paHistoryFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).BeginInit();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).BeginInit();
     this.paButtons.SuspendLayout();
     this.panel5.SuspendLayout();
     this.gbApprove.SuspendLayout();
     this.paAuthorization.SuspendLayout();
     this.gbReview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).BeginInit();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).BeginInit();
     this.paQaqc2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).BeginInit();
     this.paQaqc1.SuspendLayout();
     this.panel7.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Módulo de QaQc - Búsqueda";
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Size = new System.Drawing.Size(282, 35);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     //
     // btGuardar
     //
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(5, 5);
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(84, 5);
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(163, 5);
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 57);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 194);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(1144, 0);
     this.panel1.Size = new System.Drawing.Size(72, 35);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Size = new System.Drawing.Size(526, 97);
     //
     // panel2
     //
     this.panel2.Location = new System.Drawing.Point(1132, 0);
     //
     // paInferior
     //
     this.paInferior.Location = new System.Drawing.Point(3, 544);
     this.paInferior.Size = new System.Drawing.Size(1216, 35);
     this.paInferior.Visible = false;
     //
     // paTitulo
     //
     this.paTitulo.Size = new System.Drawing.Size(1216, 36);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.gcBachCalc);
     this.paCentral.Controls.Add(this.panelControl1);
     this.paCentral.Controls.Add(this.panel5);
     this.paCentral.Controls.Add(this.splitter1);
     this.paCentral.Controls.Add(this.expandablePanel1);
     this.paCentral.Location = new System.Drawing.Point(3, 51);
     this.paCentral.Size = new System.Drawing.Size(1216, 493);
     //
     // paSuperior
     //
     this.paSuperior.Size = new System.Drawing.Size(1216, 12);
     this.paSuperior.Visible = false;
     //
     // laTitulo
     //
     this.laTitulo.Size = new System.Drawing.Size(1132, 36);
     this.laTitulo.Text = "QaQc";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Size = new System.Drawing.Size(1230, 611);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1222, 582);
     //
     // paSupBotones
     //
     this.paSupBotones.Size = new System.Drawing.Size(1230, 32);
     //
     // bgvBatchCalc1
     //
     this.bgvBatchCalc1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.bgvBatchCalc1.GridControl = this.gcBachCalc;
     this.bgvBatchCalc1.Name = "bgvBatchCalc1";
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // gcBachCalc
     //
     this.gcBachCalc.AllowDrop = true;
     this.gcBachCalc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcBachCalc.EmbeddedNavigator.Name = "";
     gridLevelNode1.LevelTemplate = this.bgvBatchCalc1;
     gridLevelNode1.RelationName = "Level1";
     gridLevelNode2.LevelTemplate = this.bgvBatchCalc3;
     gridLevelNode2.RelationName = "Level2";
     gridLevelNode3.LevelTemplate = this.bgvBatchCalc4;
     gridLevelNode3.RelationName = "Level3";
     this.gcBachCalc.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode2,
     gridLevelNode3});
     this.gcBachCalc.Location = new System.Drawing.Point(231, 103);
     this.gcBachCalc.MainView = this.bgvBatchCalc2;
     this.gcBachCalc.Name = "gcBachCalc";
     this.gcBachCalc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repQaqc_parity,
     this.repQaqc_ShowObs,
     this.repQaqc_review,
     this.repQaqc_StatusResult,
     this.repQaqc_ShowPopup,
     this.repQaqc_Previous_par,
     this.repQaqc_approve,
     this.repQaqc_HasRetest,
     this.repCheckDilution,
     this.repProcedence2,
     this.repDes_Sample});
     this.gcBachCalc.Size = new System.Drawing.Size(985, 341);
     this.gcBachCalc.TabIndex = 7;
     this.gcBachCalc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bgvBatchCalc3,
     this.bgvBatchCalc4,
     this.bgvBatchCalc2,
     this.bgvBatchCalc1});
     this.gcBachCalc.DragDrop += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragDrop);
     this.gcBachCalc.DragOver += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragOver);
     this.gcBachCalc.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseDown);
     this.gcBachCalc.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseMove);
     //
     // bgvBatchCalc3
     //
     this.bgvBatchCalc3.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand2});
     this.bgvBatchCalc3.GridControl = this.gcBachCalc;
     this.bgvBatchCalc3.Name = "bgvBatchCalc3";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // bgvBatchCalc4
     //
     this.bgvBatchCalc4.GridControl = this.gcBachCalc;
     this.bgvBatchCalc4.Name = "bgvBatchCalc4";
     //
     // bgvBatchCalc2
     //
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.BandPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.BandPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Empty.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.bgvBatchCalc2.Appearance.FixedLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FocusedCell.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.HorzLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.Preview.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Preview.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.Row.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Row.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.RowSeparator.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.VertLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand13,
     this.gbSample,
     this.gridBand3,
     this.gridBand10,
     this.gridBand4,
     this.gbDilution,
     this.gridBand6,
     this.gridBand5,
     this.gridBand7,
     this.gridBand12,
     this.gridBand9,
     this.gridBand14});
     this.bgvBatchCalc2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gv2col_Idrecep_sample_detail,
     this.gv2col_Idrecep_sample_detail_elem,
     this.gv2col_Qaqc_par_prev_batch,
     this.gv2col_Cod_sample,
     this.gv2col_Result_analysis,
     this.gv2col_Fum,
     this.gv2col_Idtemplate_method,
     this.gv2col_Flag_mri,
     this.gv2col_Qaqc_blk,
     this.gv2col_Qaqc_par,
     this.gv2col_Qaqc_mr,
     this.gv2col_Qaqc_observation,
     this.gv2col_Qaqc_text_obs,
     this.gv2col_Qaqc_error,
     this.gv2col_Str_result_analysis,
     this.gv2col_Qaqc_approve,
     this.gv2col_Qaqc_review,
     this.gv2col_Qaqc_status_result,
     this.gv2col_Qaqc_has_retest,
     this.gv2col_Qaqc_tmp_retest_idmethod,
     this.gv2col_Qaqc_tmp_retest,
     this.gv2col_Idunit_result,
     this.gv2col_Idretest,
     this.gv2col_Weight1,
     this.gv2col_Weight2,
     this.gv2col_Reading1,
     this.gv2col_Reading2,
     this.gv2col_Factor1,
     this.gv2col_Factor2,
     this.gv2col_Rank1,
     this.gv2col_Rank2,
     this.gv2col_Law1,
     this.gv2col_Law2,
     this.gv2col_Volumen1,
     this.gv2col_Volumen2,
     this.gv2col_Flag_dila1,
     this.gv2col_Dilua1,
     this.gv2col_Flag_dilb1,
     this.gv2col_Dilub1,
     this.gv2col_Qaqc_approve_text,
     this.gv2col_Qaqc_review_text,
     this.gv2col_Cod_des_sample});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Orange;
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.gv2col_Flag_mri;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition1.Value1 = "1";
     this.bgvBatchCalc2.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.bgvBatchCalc2.GridControl = this.gcBachCalc;
     this.bgvBatchCalc2.Images = this.imgChecks;
     this.bgvBatchCalc2.Name = "bgvBatchCalc2";
     this.bgvBatchCalc2.OptionsBehavior.Editable = false;
     this.bgvBatchCalc2.OptionsCustomization.AllowSort = false;
     this.bgvBatchCalc2.OptionsView.ColumnAutoWidth = false;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceEvenRow = true;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceOddRow = true;
     this.bgvBatchCalc2.OptionsView.ShowGroupPanel = false;
     this.bgvBatchCalc2.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.bgvBatchCalc2_RowCellStyle);
     this.bgvBatchCalc2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanged);
     this.bgvBatchCalc2.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanging);
     this.bgvBatchCalc2.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.bgvBatchCalc2_InvalidRowException);
     this.bgvBatchCalc2.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.bgvBatchCalc2_ValidateRow);
     this.bgvBatchCalc2.Click += new System.EventHandler(this.bgvBatchCalc2_Click);
     //
     // gridBand13
     //
     this.gridBand13.Caption = "A. P";
     this.gridBand13.Columns.Add(this.gv2col_Qaqc_par_prev_batch);
     this.gridBand13.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gridBand13.Name = "gridBand13";
     this.gridBand13.Width = 37;
     //
     // gv2col_Qaqc_par_prev_batch
     //
     this.gv2col_Qaqc_par_prev_batch.Caption = "Par";
     this.gv2col_Qaqc_par_prev_batch.ColumnEdit = this.repQaqc_Previous_par;
     this.gv2col_Qaqc_par_prev_batch.FieldName = "Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.Name = "gv2col_Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par_prev_batch.Visible = true;
     this.gv2col_Qaqc_par_prev_batch.Width = 37;
     //
     // repQaqc_Previous_par
     //
     this.repQaqc_Previous_par.AutoHeight = false;
     this.repQaqc_Previous_par.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_Previous_par.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_Previous_par.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_Previous_par.Name = "repQaqc_Previous_par";
     this.repQaqc_Previous_par.SmallImages = this.imageStatus;
     //
     // imageStatus
     //
     this.imageStatus.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageStatus.ImageStream")));
     this.imageStatus.TransparentColor = System.Drawing.Color.Transparent;
     this.imageStatus.Images.SetKeyName(0, "gray.png");
     this.imageStatus.Images.SetKeyName(1, "green.png");
     this.imageStatus.Images.SetKeyName(2, "ambar.png");
     this.imageStatus.Images.SetKeyName(3, "blue.png");
     this.imageStatus.Images.SetKeyName(4, "purple.png");
     this.imageStatus.Images.SetKeyName(5, "red.png");
     this.imageStatus.Images.SetKeyName(6, "yellow.png");
     this.imageStatus.Images.SetKeyName(7, "obs.png");
     this.imageStatus.Images.SetKeyName(8, "exclamation.png");
     this.imageStatus.Images.SetKeyName(9, "tick.png");
     this.imageStatus.Images.SetKeyName(10, "tick_lup.png");
     this.imageStatus.Images.SetKeyName(11, "espera.png");
     this.imageStatus.Images.SetKeyName(12, "incorrecto.png");
     this.imageStatus.Images.SetKeyName(13, "plausible.png");
     this.imageStatus.Images.SetKeyName(14, "aceptado.png");
     this.imageStatus.Images.SetKeyName(15, "reensayo.png");
     //
     // gbSample
     //
     this.gbSample.Caption = "Muestra";
     this.gbSample.Columns.Add(this.gv2col_Cod_sample);
     this.gbSample.Columns.Add(this.gv2col_Cod_des_sample);
     this.gbSample.Columns.Add(this.gv2col_Fum);
     this.gbSample.Columns.Add(this.gv2col_Idunit_result);
     this.gbSample.Columns.Add(this.gv2col_Idtemplate_method);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail);
     this.gbSample.Columns.Add(this.gv2col_Flag_mri);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail_elem);
     this.gbSample.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gbSample.Name = "gbSample";
     this.gbSample.Width = 150;
     //
     // gv2col_Cod_sample
     //
     this.gv2col_Cod_sample.Caption = "Cod.Muestra";
     this.gv2col_Cod_sample.FieldName = "Cod_sample";
     this.gv2col_Cod_sample.MinWidth = 75;
     this.gv2col_Cod_sample.Name = "gv2col_Cod_sample";
     this.gv2col_Cod_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_sample.Visible = true;
     //
     // gv2col_Cod_des_sample
     //
     this.gv2col_Cod_des_sample.Caption = "Descripción";
     this.gv2col_Cod_des_sample.ColumnEdit = this.repDes_Sample;
     this.gv2col_Cod_des_sample.FieldName = "Cod_des_sample";
     this.gv2col_Cod_des_sample.Name = "gv2col_Cod_des_sample";
     this.gv2col_Cod_des_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_des_sample.Visible = true;
     //
     // repDes_Sample
     //
     this.repDes_Sample.AutoHeight = false;
     this.repDes_Sample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDes_Sample.Name = "repDes_Sample";
     this.repDes_Sample.NullText = "";
     //
     // gv2col_Fum
     //
     this.gv2col_Fum.Caption = "Fum";
     this.gv2col_Fum.FieldName = "Fum";
     this.gv2col_Fum.Name = "gv2col_Fum";
     //
     // gv2col_Idunit_result
     //
     this.gv2col_Idunit_result.Caption = "Idunit_result";
     this.gv2col_Idunit_result.FieldName = "Idunit_result";
     this.gv2col_Idunit_result.Name = "gv2col_Idunit_result";
     //
     // gv2col_Idtemplate_method
     //
     this.gv2col_Idtemplate_method.Caption = "Idtemplate_method";
     this.gv2col_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gv2col_Idtemplate_method.Name = "gv2col_Idtemplate_method";
     //
     // gv2col_Idrecep_sample_detail
     //
     this.gv2col_Idrecep_sample_detail.Caption = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.Name = "gv2col_Idrecep_sample_detail";
     //
     // gv2col_Flag_mri
     //
     this.gv2col_Flag_mri.Caption = "Flag_mri";
     this.gv2col_Flag_mri.FieldName = "Flag_mri";
     this.gv2col_Flag_mri.Name = "gv2col_Flag_mri";
     //
     // gv2col_Idrecep_sample_detail_elem
     //
     this.gv2col_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.Name = "gv2col_Idrecep_sample_detail_elem";
     //
     // gridBand3
     //
     this.gridBand3.Caption = "Pesos";
     this.gridBand3.Columns.Add(this.gv2col_Weight1);
     this.gridBand3.Columns.Add(this.gv2col_Weight2);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 112;
     //
     // gv2col_Weight1
     //
     this.gv2col_Weight1.Caption = "Peso-1";
     this.gv2col_Weight1.FieldName = "Weight1";
     this.gv2col_Weight1.Name = "gv2col_Weight1";
     this.gv2col_Weight1.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight1.Visible = true;
     this.gv2col_Weight1.Width = 56;
     //
     // gv2col_Weight2
     //
     this.gv2col_Weight2.Caption = "Peso-2";
     this.gv2col_Weight2.FieldName = "Weight2";
     this.gv2col_Weight2.Name = "gv2col_Weight2";
     this.gv2col_Weight2.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight2.Visible = true;
     this.gv2col_Weight2.Width = 56;
     //
     // gridBand10
     //
     this.gridBand10.Caption = "Volumen";
     this.gridBand10.Columns.Add(this.gv2col_Volumen1);
     this.gridBand10.Columns.Add(this.gv2col_Volumen2);
     this.gridBand10.Name = "gridBand10";
     this.gridBand10.Width = 116;
     //
     // gv2col_Volumen1
     //
     this.gv2col_Volumen1.Caption = "Vol-1";
     this.gv2col_Volumen1.FieldName = "Volumen1";
     this.gv2col_Volumen1.Name = "gv2col_Volumen1";
     this.gv2col_Volumen1.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen1.Visible = true;
     this.gv2col_Volumen1.Width = 58;
     //
     // gv2col_Volumen2
     //
     this.gv2col_Volumen2.Caption = "Vol-2";
     this.gv2col_Volumen2.FieldName = "Volumen2";
     this.gv2col_Volumen2.Name = "gv2col_Volumen2";
     this.gv2col_Volumen2.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen2.Visible = true;
     this.gv2col_Volumen2.Width = 58;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "Lecturas";
     this.gridBand4.Columns.Add(this.gv2col_Reading1);
     this.gridBand4.Columns.Add(this.gv2col_Reading2);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 120;
     //
     // gv2col_Reading1
     //
     this.gv2col_Reading1.Caption = "Lec-1";
     this.gv2col_Reading1.FieldName = "Reading1";
     this.gv2col_Reading1.Name = "gv2col_Reading1";
     this.gv2col_Reading1.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading1.Visible = true;
     this.gv2col_Reading1.Width = 60;
     //
     // gv2col_Reading2
     //
     this.gv2col_Reading2.Caption = "Lec-2";
     this.gv2col_Reading2.FieldName = "Reading2";
     this.gv2col_Reading2.Name = "gv2col_Reading2";
     this.gv2col_Reading2.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading2.Visible = true;
     this.gv2col_Reading2.Width = 60;
     //
     // gbDilution
     //
     this.gbDilution.Caption = "Dilución";
     this.gbDilution.Columns.Add(this.gv2col_Flag_dila1);
     this.gbDilution.Columns.Add(this.gv2col_Dilua1);
     this.gbDilution.Columns.Add(this.gv2col_Flag_dilb1);
     this.gbDilution.Columns.Add(this.gv2col_Dilub1);
     this.gbDilution.Name = "gbDilution";
     this.gbDilution.Width = 212;
     //
     // gv2col_Flag_dila1
     //
     this.gv2col_Flag_dila1.Caption = "# Dil 2";
     this.gv2col_Flag_dila1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dila1.FieldName = "Flag_dilu2";
     this.gv2col_Flag_dila1.Name = "gv2col_Flag_dila1";
     this.gv2col_Flag_dila1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dila1.Visible = true;
     this.gv2col_Flag_dila1.Width = 53;
     //
     // repCheckDilution
     //
     this.repCheckDilution.AutoHeight = false;
     this.repCheckDilution.Name = "repCheckDilution";
     //
     // gv2col_Dilua1
     //
     this.gv2col_Dilua1.Caption = "Dil 2";
     this.gv2col_Dilua1.FieldName = "Dilu2";
     this.gv2col_Dilua1.Name = "gv2col_Dilua1";
     this.gv2col_Dilua1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilua1.Visible = true;
     this.gv2col_Dilua1.Width = 53;
     //
     // gv2col_Flag_dilb1
     //
     this.gv2col_Flag_dilb1.Caption = "# Dil 3";
     this.gv2col_Flag_dilb1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dilb1.FieldName = "Flag_dilu3";
     this.gv2col_Flag_dilb1.Name = "gv2col_Flag_dilb1";
     this.gv2col_Flag_dilb1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dilb1.Visible = true;
     this.gv2col_Flag_dilb1.Width = 53;
     //
     // gv2col_Dilub1
     //
     this.gv2col_Dilub1.Caption = "Dil 3";
     this.gv2col_Dilub1.FieldName = "Dilu3";
     this.gv2col_Dilub1.Name = "gv2col_Dilub1";
     this.gv2col_Dilub1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilub1.Visible = true;
     this.gv2col_Dilub1.Width = 53;
     //
     // gridBand6
     //
     this.gridBand6.Caption = "Rangos";
     this.gridBand6.Columns.Add(this.gv2col_Rank1);
     this.gridBand6.Columns.Add(this.gv2col_Rank2);
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.Visible = false;
     this.gridBand6.Width = 150;
     //
     // gv2col_Rank1
     //
     this.gv2col_Rank1.Caption = "Rango1";
     this.gv2col_Rank1.FieldName = "Rank1";
     this.gv2col_Rank1.Name = "gv2col_Rank1";
     this.gv2col_Rank1.Visible = true;
     //
     // gv2col_Rank2
     //
     this.gv2col_Rank2.Caption = "Rango2";
     this.gv2col_Rank2.FieldName = "Rank2";
     this.gv2col_Rank2.Name = "gv2col_Rank2";
     this.gv2col_Rank2.Visible = true;
     //
     // gridBand5
     //
     this.gridBand5.Caption = "Factores";
     this.gridBand5.Columns.Add(this.gv2col_Factor1);
     this.gridBand5.Columns.Add(this.gv2col_Factor2);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.Width = 114;
     //
     // gv2col_Factor1
     //
     this.gv2col_Factor1.Caption = "Factor1";
     this.gv2col_Factor1.FieldName = "Factor1";
     this.gv2col_Factor1.Name = "gv2col_Factor1";
     this.gv2col_Factor1.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor1.Visible = true;
     this.gv2col_Factor1.Width = 57;
     //
     // gv2col_Factor2
     //
     this.gv2col_Factor2.Caption = "Factor2";
     this.gv2col_Factor2.FieldName = "Factor2";
     this.gv2col_Factor2.Name = "gv2col_Factor2";
     this.gv2col_Factor2.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor2.Visible = true;
     this.gv2col_Factor2.Width = 57;
     //
     // gridBand7
     //
     this.gridBand7.Caption = "Ley Parcial";
     this.gridBand7.Columns.Add(this.gv2col_Law1);
     this.gridBand7.Columns.Add(this.gv2col_Law2);
     this.gridBand7.Name = "gridBand7";
     this.gridBand7.Width = 119;
     //
     // gv2col_Law1
     //
     this.gv2col_Law1.Caption = "Ley-1";
     this.gv2col_Law1.FieldName = "Law1";
     this.gv2col_Law1.Name = "gv2col_Law1";
     this.gv2col_Law1.OptionsColumn.ReadOnly = true;
     this.gv2col_Law1.Visible = true;
     this.gv2col_Law1.Width = 59;
     //
     // gv2col_Law2
     //
     this.gv2col_Law2.Caption = "Ley-2";
     this.gv2col_Law2.FieldName = "Law2";
     this.gv2col_Law2.Name = "gv2col_Law2";
     this.gv2col_Law2.OptionsColumn.ReadOnly = true;
     this.gv2col_Law2.Visible = true;
     this.gv2col_Law2.Width = 60;
     //
     // gridBand12
     //
     this.gridBand12.Caption = "Ley";
     this.gridBand12.Columns.Add(this.gv2col_Str_result_analysis);
     this.gridBand12.Columns.Add(this.gv2col_Result_analysis);
     this.gridBand12.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand12.Name = "gridBand12";
     this.gridBand12.Width = 60;
     //
     // gv2col_Str_result_analysis
     //
     this.gv2col_Str_result_analysis.Caption = "Ley";
     this.gv2col_Str_result_analysis.FieldName = "Str_result_analysis";
     this.gv2col_Str_result_analysis.Name = "gv2col_Str_result_analysis";
     this.gv2col_Str_result_analysis.OptionsColumn.ReadOnly = true;
     this.gv2col_Str_result_analysis.Visible = true;
     this.gv2col_Str_result_analysis.Width = 60;
     //
     // gv2col_Result_analysis
     //
     this.gv2col_Result_analysis.Caption = "Result_analysis";
     this.gv2col_Result_analysis.FieldName = "Result_analysis";
     this.gv2col_Result_analysis.Name = "gv2col_Result_analysis";
     //
     // gridBand9
     //
     this.gridBand9.Caption = "Qaqc";
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_text_obs);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_observation);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_mr);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_blk);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_par);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_approve);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_review);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_status_result);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_error);
     this.gridBand9.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand9.Name = "gridBand9";
     this.gridBand9.Width = 145;
     //
     // gv2col_Qaqc_text_obs
     //
     this.gv2col_Qaqc_text_obs.Caption = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.FieldName = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.Name = "gv2col_Qaqc_text_obs";
     //
     // gv2col_Qaqc_observation
     //
     this.gv2col_Qaqc_observation.Caption = "#";
     this.gv2col_Qaqc_observation.ColumnEdit = this.repQaqc_ShowPopup;
     this.gv2col_Qaqc_observation.FieldName = "Qaqc_observation";
     this.gv2col_Qaqc_observation.MinWidth = 25;
     this.gv2col_Qaqc_observation.Name = "gv2col_Qaqc_observation";
     this.gv2col_Qaqc_observation.Visible = true;
     this.gv2col_Qaqc_observation.Width = 25;
     //
     // repQaqc_ShowPopup
     //
     this.repQaqc_ShowPopup.AutoHeight = false;
     this.repQaqc_ShowPopup.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repQaqc_ShowPopup.Name = "repQaqc_ShowPopup";
     this.repQaqc_ShowPopup.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repQaqc_ShowPopup.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repQaqc_ShowPopup_ButtonClick);
     //
     // gv2col_Qaqc_mr
     //
     this.gv2col_Qaqc_mr.Caption = "Mr";
     this.gv2col_Qaqc_mr.FieldName = "Qaqc_mr";
     this.gv2col_Qaqc_mr.Name = "gv2col_Qaqc_mr";
     //
     // gv2col_Qaqc_blk
     //
     this.gv2col_Qaqc_blk.Caption = "Blk";
     this.gv2col_Qaqc_blk.FieldName = "Qaqc_blk";
     this.gv2col_Qaqc_blk.Name = "gv2col_Qaqc_blk";
     //
     // gv2col_Qaqc_par
     //
     this.gv2col_Qaqc_par.Caption = "Par";
     this.gv2col_Qaqc_par.ColumnEdit = this.repQaqc_parity;
     this.gv2col_Qaqc_par.FieldName = "Qaqc_par";
     this.gv2col_Qaqc_par.MinWidth = 40;
     this.gv2col_Qaqc_par.Name = "gv2col_Qaqc_par";
     this.gv2col_Qaqc_par.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par.Visible = true;
     this.gv2col_Qaqc_par.Width = 40;
     //
     // repQaqc_parity
     //
     this.repQaqc_parity.AutoHeight = false;
     this.repQaqc_parity.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_parity.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_parity.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_parity.LargeImages = this.imageStatus;
     this.repQaqc_parity.Name = "repQaqc_parity";
     //
     // gv2col_Qaqc_approve
     //
     this.gv2col_Qaqc_approve.Caption = "Aprobar";
     this.gv2col_Qaqc_approve.ColumnEdit = this.repQaqc_approve;
     this.gv2col_Qaqc_approve.FieldName = "Qaqc_approve";
     this.gv2col_Qaqc_approve.ImageIndex = 0;
     this.gv2col_Qaqc_approve.MinWidth = 80;
     this.gv2col_Qaqc_approve.Name = "gv2col_Qaqc_approve";
     this.gv2col_Qaqc_approve.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_approve.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_approve.Visible = true;
     this.gv2col_Qaqc_approve.Width = 80;
     //
     // repQaqc_approve
     //
     this.repQaqc_approve.AutoHeight = false;
     this.repQaqc_approve.Name = "repQaqc_approve";
     //
     // gv2col_Qaqc_review
     //
     this.gv2col_Qaqc_review.Caption = "Revisar";
     this.gv2col_Qaqc_review.ColumnEdit = this.repQaqc_review;
     this.gv2col_Qaqc_review.FieldName = "Qaqc_review";
     this.gv2col_Qaqc_review.ImageIndex = 0;
     this.gv2col_Qaqc_review.MinWidth = 80;
     this.gv2col_Qaqc_review.Name = "gv2col_Qaqc_review";
     this.gv2col_Qaqc_review.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_review.Width = 80;
     //
     // repQaqc_review
     //
     this.repQaqc_review.AutoHeight = false;
     this.repQaqc_review.Name = "repQaqc_review";
     //
     // gv2col_Qaqc_status_result
     //
     this.gv2col_Qaqc_status_result.Caption = ".";
     this.gv2col_Qaqc_status_result.ColumnEdit = this.repQaqc_StatusResult;
     this.gv2col_Qaqc_status_result.FieldName = "Qaqc_status_result";
     this.gv2col_Qaqc_status_result.MinWidth = 40;
     this.gv2col_Qaqc_status_result.Name = "gv2col_Qaqc_status_result";
     this.gv2col_Qaqc_status_result.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_status_result.Width = 40;
     //
     // repQaqc_StatusResult
     //
     this.repQaqc_StatusResult.AutoHeight = false;
     this.repQaqc_StatusResult.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_StatusResult.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_StatusResult.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 11),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 12),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 13),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 14),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 12)});
     this.repQaqc_StatusResult.Name = "repQaqc_StatusResult";
     this.repQaqc_StatusResult.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_error
     //
     this.gv2col_Qaqc_error.Caption = ".";
     this.gv2col_Qaqc_error.ColumnEdit = this.repQaqc_ShowObs;
     this.gv2col_Qaqc_error.FieldName = "Qaqc_error";
     this.gv2col_Qaqc_error.MinWidth = 25;
     this.gv2col_Qaqc_error.Name = "gv2col_Qaqc_error";
     this.gv2col_Qaqc_error.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_error.Width = 25;
     //
     // repQaqc_ShowObs
     //
     this.repQaqc_ShowObs.AutoHeight = false;
     this.repQaqc_ShowObs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_ShowObs.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 9),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 6, 10)});
     this.repQaqc_ShowObs.Name = "repQaqc_ShowObs";
     this.repQaqc_ShowObs.SmallImages = this.imageStatus;
     //
     // gridBand14
     //
     this.gridBand14.Caption = "Ryo";
     this.gridBand14.Columns.Add(this.gv2col_Qaqc_has_retest);
     this.gridBand14.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand14.Name = "gridBand14";
     this.gridBand14.Width = 40;
     //
     // gv2col_Qaqc_has_retest
     //
     this.gv2col_Qaqc_has_retest.Caption = "Ryo";
     this.gv2col_Qaqc_has_retest.ColumnEdit = this.repQaqc_HasRetest;
     this.gv2col_Qaqc_has_retest.FieldName = "Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gv2col_Qaqc_has_retest.Name = "gv2col_Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_has_retest.Visible = true;
     this.gv2col_Qaqc_has_retest.Width = 40;
     //
     // repQaqc_HasRetest
     //
     this.repQaqc_HasRetest.AutoHeight = false;
     this.repQaqc_HasRetest.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_HasRetest.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_HasRetest.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 15)});
     this.repQaqc_HasRetest.Name = "repQaqc_HasRetest";
     this.repQaqc_HasRetest.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_tmp_retest_idmethod
     //
     this.gv2col_Qaqc_tmp_retest_idmethod.Caption = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.FieldName = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.Name = "gv2col_Qaqc_tmp_retest_idmethod";
     //
     // gv2col_Qaqc_tmp_retest
     //
     this.gv2col_Qaqc_tmp_retest.Caption = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.FieldName = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.Name = "gv2col_Qaqc_tmp_retest";
     //
     // gv2col_Idretest
     //
     this.gv2col_Idretest.Caption = "gv2col_Qaqc_idretest";
     this.gv2col_Idretest.FieldName = "Qaqc_Qaqc_idretest";
     this.gv2col_Idretest.Name = "gv2col_Idretest";
     //
     // gv2col_Qaqc_approve_text
     //
     this.gv2col_Qaqc_approve_text.Caption = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.FieldName = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Name = "gv2col_Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Visible = true;
     //
     // gv2col_Qaqc_review_text
     //
     this.gv2col_Qaqc_review_text.Caption = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.FieldName = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Name = "gv2col_Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Visible = true;
     //
     // imgChecks
     //
     this.imgChecks.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgChecks.ImageStream")));
     this.imgChecks.TransparentColor = System.Drawing.Color.Transparent;
     this.imgChecks.Images.SetKeyName(0, "uncheck16x16.png");
     this.imgChecks.Images.SetKeyName(1, "check16x16.png");
     //
     // repProcedence2
     //
     this.repProcedence2.AutoHeight = false;
     this.repProcedence2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProcedence2.Name = "repProcedence2";
     //
     // treeCol_Urgent_sample
     //
     this.treeCol_Urgent_sample.Caption = "treeListColumn10";
     this.treeCol_Urgent_sample.FieldName = "Urgent_sample";
     this.treeCol_Urgent_sample.Name = "treeCol_Urgent_sample";
     //
     // treeTrayWaiting
     //
     this.treeTrayWaiting.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Empty.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(180)))), ((int)(((byte)(191)))));
     this.treeTrayWaiting.Appearance.FocusedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(219)))), ((int)(((byte)(226)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(131)))), ((int)(((byte)(161)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.HorzLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(253)))));
     this.treeTrayWaiting.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(165)))), ((int)(((byte)(177)))));
     this.treeTrayWaiting.Appearance.Preview.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Preview.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.Row.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(197)))), ((int)(((byte)(205)))));
     this.treeTrayWaiting.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.TreeLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(148)))));
     this.treeTrayWaiting.Appearance.TreeLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.VertLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeCol_Idtemplate_method,
     this.treeCol_Idrecep_sample_detail_elem,
     this.treeCol_Abbreviation,
     this.treeCol_Cod_repetition,
     this.treeCol_Id,
     this.treeCol_Parentid,
     this.treeCol_Num_tray,
     this.treeCol_Date_result,
     this.treeCol_Hour_result,
     this.treeCol_Urgent_sample});
     this.treeTrayWaiting.Dock = System.Windows.Forms.DockStyle.Fill;
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Column = this.treeCol_Urgent_sample;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition2.Value1 = 1D;
     this.treeTrayWaiting.FormatConditions.AddRange(new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition[] {
     styleFormatCondition2});
     this.treeTrayWaiting.ImageIndexFieldName = "Image_index";
     this.treeTrayWaiting.KeyFieldName = "Id";
     this.treeTrayWaiting.Location = new System.Drawing.Point(0, 0);
     this.treeTrayWaiting.Name = "treeTrayWaiting";
     this.treeTrayWaiting.OptionsBehavior.DragNodes = true;
     this.treeTrayWaiting.OptionsBehavior.SmartMouseHover = false;
     this.treeTrayWaiting.OptionsView.AutoWidth = false;
     this.treeTrayWaiting.OptionsView.EnableAppearanceEvenRow = true;
     this.treeTrayWaiting.OptionsView.EnableAppearanceOddRow = true;
     this.treeTrayWaiting.ParentFieldName = "Parentid";
     this.treeTrayWaiting.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repRepetition,
     this.repDate,
     this.repHour});
     this.treeTrayWaiting.SelectImageList = this.imgPriority;
     this.treeTrayWaiting.Size = new System.Drawing.Size(217, 343);
     this.treeTrayWaiting.TabIndex = 1;
     this.treeTrayWaiting.AfterDragNode += new DevExpress.XtraTreeList.NodeEventHandler(this.treeTrayWaiting_AfterDragNode);
     this.treeTrayWaiting.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     this.treeTrayWaiting.DragOver += new System.Windows.Forms.DragEventHandler(this.treeTrayWaiting_DragOver);
     this.treeTrayWaiting.MouseMove += new System.Windows.Forms.MouseEventHandler(this.treeTrayWaiting_MouseMove);
     //
     // treeCol_Idtemplate_method
     //
     this.treeCol_Idtemplate_method.Caption = "Idtemplate_method";
     this.treeCol_Idtemplate_method.FieldName = "Idtemplate_method";
     this.treeCol_Idtemplate_method.Name = "treeCol_Idtemplate_method";
     //
     // treeCol_Idrecep_sample_detail_elem
     //
     this.treeCol_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.Name = "treeCol_Idrecep_sample_detail_elem";
     //
     // treeCol_Abbreviation
     //
     this.treeCol_Abbreviation.Caption = "Bandeja";
     this.treeCol_Abbreviation.FieldName = "Abbreviation";
     this.treeCol_Abbreviation.MinWidth = 27;
     this.treeCol_Abbreviation.Name = "treeCol_Abbreviation";
     this.treeCol_Abbreviation.OptionsColumn.AllowEdit = false;
     this.treeCol_Abbreviation.VisibleIndex = 0;
     this.treeCol_Abbreviation.Width = 60;
     //
     // treeCol_Cod_repetition
     //
     this.treeCol_Cod_repetition.Caption = "N°Repeticiones";
     this.treeCol_Cod_repetition.ColumnEdit = this.repRepetition;
     this.treeCol_Cod_repetition.FieldName = "Cod_repetition";
     this.treeCol_Cod_repetition.Name = "treeCol_Cod_repetition";
     this.treeCol_Cod_repetition.OptionsColumn.ReadOnly = true;
     this.treeCol_Cod_repetition.Width = 63;
     //
     // repRepetition
     //
     this.repRepetition.AutoHeight = false;
     this.repRepetition.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repRepetition.Name = "repRepetition";
     this.repRepetition.NullText = "";
     //
     // treeCol_Id
     //
     this.treeCol_Id.Caption = "Id";
     this.treeCol_Id.FieldName = "Id";
     this.treeCol_Id.Name = "treeCol_Id";
     //
     // treeCol_Parentid
     //
     this.treeCol_Parentid.Caption = "Parentid";
     this.treeCol_Parentid.FieldName = "Parentid";
     this.treeCol_Parentid.Name = "treeCol_Parentid";
     //
     // treeCol_Num_tray
     //
     this.treeCol_Num_tray.Caption = "N°Bandeja";
     this.treeCol_Num_tray.FieldName = "Num_tray";
     this.treeCol_Num_tray.Name = "treeCol_Num_tray";
     this.treeCol_Num_tray.OptionsColumn.AllowEdit = false;
     this.treeCol_Num_tray.VisibleIndex = 1;
     this.treeCol_Num_tray.Width = 65;
     //
     // treeCol_Date_result
     //
     this.treeCol_Date_result.Caption = "Fecha";
     this.treeCol_Date_result.ColumnEdit = this.repDate;
     this.treeCol_Date_result.FieldName = "Date_result";
     this.treeCol_Date_result.Name = "treeCol_Date_result";
     this.treeCol_Date_result.VisibleIndex = 2;
     this.treeCol_Date_result.Width = 54;
     //
     // repDate
     //
     this.repDate.AutoHeight = false;
     this.repDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDate.Name = "repDate";
     //
     // treeCol_Hour_result
     //
     this.treeCol_Hour_result.Caption = "Hora";
     this.treeCol_Hour_result.ColumnEdit = this.repHour;
     this.treeCol_Hour_result.FieldName = "Hour_result";
     this.treeCol_Hour_result.Name = "treeCol_Hour_result";
     this.treeCol_Hour_result.VisibleIndex = 3;
     this.treeCol_Hour_result.Width = 53;
     //
     // repHour
     //
     this.repHour.AutoHeight = false;
     this.repHour.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repHour.Name = "repHour";
     //
     // imgPriority
     //
     this.imgPriority.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgPriority.ImageStream")));
     this.imgPriority.TransparentColor = System.Drawing.Color.Transparent;
     this.imgPriority.Images.SetKeyName(0, "high.png");
     this.imgPriority.Images.SetKeyName(1, "medium.png");
     this.imgPriority.Images.SetKeyName(2, "low.png");
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabTreeQaqc);
     this.expandablePanel1.Controls.Add(this.paButtons);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.expandablePanel1.Location = new System.Drawing.Point(0, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(226, 493);
     this.expandablePanel1.TabIndex = 9;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Bandejas";
     //
     // tabTreeQaqc
     //
     this.tabTreeQaqc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabTreeQaqc.Location = new System.Drawing.Point(0, 66);
     this.tabTreeQaqc.Name = "tabTreeQaqc";
     this.tabTreeQaqc.SelectedTabPage = this.xtraTabPage4;
     this.tabTreeQaqc.Size = new System.Drawing.Size(226, 427);
     this.tabTreeQaqc.TabIndex = 2;
     this.tabTreeQaqc.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5});
     this.tabTreeQaqc.Text = "xtraTabControl2";
     this.tabTreeQaqc.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabTreeQaqc_SelectedPageChanged);
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.treeTrayWaiting);
     this.xtraTabPage4.Controls.Add(this.groupControl1);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(217, 397);
     this.xtraTabPage4.Text = "En Espera";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cbAuthorizationWait);
     this.groupControl1.Controls.Add(this.label23);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl1.Location = new System.Drawing.Point(0, 343);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(217, 54);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Listar";
     //
     // cbAuthorizationWait
     //
     this.cbAuthorizationWait.Location = new System.Drawing.Point(81, 23);
     this.cbAuthorizationWait.Name = "cbAuthorizationWait";
     this.cbAuthorizationWait.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationWait.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationWait.Properties.NullText = "Seleccionar";
     this.cbAuthorizationWait.Properties.PopupWidth = 100;
     this.cbAuthorizationWait.Properties.ShowFooter = false;
     this.cbAuthorizationWait.Properties.ShowHeader = false;
     this.cbAuthorizationWait.Size = new System.Drawing.Size(112, 20);
     this.cbAuthorizationWait.TabIndex = 0;
     this.cbAuthorizationWait.EditValueChanged += new System.EventHandler(this.cbAuthorizationWait_EditValueChanged);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(27, 26);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(53, 13);
     this.label23.TabIndex = 1;
     this.label23.Text = "Listar por:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Controls.Add(this.treeTrayFinished);
     this.xtraTabPage5.Controls.Add(this.paListAuthorization);
     this.xtraTabPage5.Controls.Add(this.paHistoryFilter);
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(217, 55);
     this.xtraTabPage5.Text = "Gerencia";
     //
     // treeTrayFinished
     //
     this.treeTrayFinished.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn6,
     this.treeListColumn7,
     this.treeListColumn8,
     this.treeListColumn9});
     this.treeTrayFinished.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeTrayFinished.ImageIndexFieldName = "Image_index";
     this.treeTrayFinished.KeyFieldName = "Id";
     this.treeTrayFinished.Location = new System.Drawing.Point(0, 0);
     this.treeTrayFinished.Name = "treeTrayFinished";
     this.treeTrayFinished.OptionsView.AutoWidth = false;
     this.treeTrayFinished.ParentFieldName = "Parentid";
     this.treeTrayFinished.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1});
     this.treeTrayFinished.SelectImageList = this.imgPriority;
     this.treeTrayFinished.Size = new System.Drawing.Size(217, 0);
     this.treeTrayFinished.TabIndex = 2;
     this.treeTrayFinished.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeTrayFinished_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "Idtemplate_method";
     this.treeListColumn1.FieldName = "Idtemplate_method";
     this.treeListColumn1.Name = "treeListColumn1";
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "Idrecep_sample_detail_elem";
     this.treeListColumn2.FieldName = "Idrecep_sample_detail_elem";
     this.treeListColumn2.Name = "treeListColumn2";
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "Bandeja";
     this.treeListColumn3.FieldName = "Abbreviation";
     this.treeListColumn3.MinWidth = 27;
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.OptionsColumn.AllowEdit = false;
     this.treeListColumn3.VisibleIndex = 0;
     this.treeListColumn3.Width = 110;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "N°Repeticiones";
     this.treeListColumn4.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.treeListColumn4.FieldName = "Cod_repetition";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.OptionsColumn.ReadOnly = true;
     this.treeListColumn4.Width = 63;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "";
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "Id";
     this.treeListColumn5.FieldName = "Id";
     this.treeListColumn5.Name = "treeListColumn5";
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "Parentid";
     this.treeListColumn6.FieldName = "Parentid";
     this.treeListColumn6.Name = "treeListColumn6";
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "N°Bandeja";
     this.treeListColumn7.FieldName = "Num_tray";
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.OptionsColumn.AllowEdit = false;
     this.treeListColumn7.VisibleIndex = 1;
     //
     // treeListColumn8
     //
     this.treeListColumn8.Caption = "Fecha";
     this.treeListColumn8.FieldName = "Date_result";
     this.treeListColumn8.Name = "treeListColumn8";
     this.treeListColumn8.VisibleIndex = 2;
     //
     // treeListColumn9
     //
     this.treeListColumn9.Caption = "Hora";
     this.treeListColumn9.FieldName = "Hour_result";
     this.treeListColumn9.Name = "treeListColumn9";
     this.treeListColumn9.VisibleIndex = 3;
     //
     // paListAuthorization
     //
     this.paListAuthorization.Controls.Add(this.cbAuthorizationApproved);
     this.paListAuthorization.Controls.Add(this.label25);
     this.paListAuthorization.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paListAuthorization.Location = new System.Drawing.Point(0, -149);
     this.paListAuthorization.Name = "paListAuthorization";
     this.paListAuthorization.Size = new System.Drawing.Size(217, 54);
     this.paListAuthorization.TabIndex = 4;
     this.paListAuthorization.Text = "Listar";
     //
     // cbAuthorizationApproved
     //
     this.cbAuthorizationApproved.Location = new System.Drawing.Point(98, 23);
     this.cbAuthorizationApproved.Name = "cbAuthorizationApproved";
     this.cbAuthorizationApproved.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationApproved.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationApproved.Properties.NullText = "Seleccionar";
     this.cbAuthorizationApproved.Properties.PopupWidth = 100;
     this.cbAuthorizationApproved.Properties.ShowFooter = false;
     this.cbAuthorizationApproved.Properties.ShowHeader = false;
     this.cbAuthorizationApproved.Size = new System.Drawing.Size(103, 20);
     this.cbAuthorizationApproved.TabIndex = 0;
     this.cbAuthorizationApproved.EditValueChanged += new System.EventHandler(this.cbAuthorization_EditValueChanged);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(25, 26);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(53, 13);
     this.label25.TabIndex = 1;
     this.label25.Text = "Listar por:";
     //
     // paHistoryFilter
     //
     this.paHistoryFilter.Controls.Add(this.txYear);
     this.paHistoryFilter.Controls.Add(this.txSample);
     this.paHistoryFilter.Controls.Add(this.cbTypeSample);
     this.paHistoryFilter.Controls.Add(this.cbCompany);
     this.paHistoryFilter.Controls.Add(this.btSearchTray);
     this.paHistoryFilter.Controls.Add(this.label22);
     this.paHistoryFilter.Controls.Add(this.ckSample);
     this.paHistoryFilter.Controls.Add(this.ckCompany);
     this.paHistoryFilter.Controls.Add(this.panel9);
     this.paHistoryFilter.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paHistoryFilter.Location = new System.Drawing.Point(0, -95);
     this.paHistoryFilter.Name = "paHistoryFilter";
     this.paHistoryFilter.Size = new System.Drawing.Size(217, 150);
     this.paHistoryFilter.TabIndex = 3;
     this.paHistoryFilter.Text = "Filtrar por";
     this.paHistoryFilter.Visible = false;
     //
     // txYear
     //
     this.txYear.EditValue = "12";
     this.txYear.Location = new System.Drawing.Point(117, 96);
     this.txYear.Name = "txYear";
     this.txYear.Size = new System.Drawing.Size(22, 20);
     this.txYear.TabIndex = 12;
     this.txYear.Visible = false;
     //
     // txSample
     //
     this.txSample.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txSample.Location = new System.Drawing.Point(141, 96);
     this.txSample.Name = "txSample";
     this.txSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txSample.Size = new System.Drawing.Size(61, 20);
     this.txSample.TabIndex = 11;
     this.txSample.Visible = false;
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(67, 96);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 10, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.PopupWidth = 100;
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Size = new System.Drawing.Size(48, 20);
     this.cbTypeSample.TabIndex = 10;
     this.cbTypeSample.Visible = false;
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(67, 73);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(135, 20);
     this.cbCompany.TabIndex = 8;
     this.cbCompany.Visible = false;
     //
     // btSearchTray
     //
     this.btSearchTray.ImageAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.btSearchTray.ImageIndex = 3;
     this.btSearchTray.ImageList = this.imageList1;
     this.btSearchTray.Location = new System.Drawing.Point(141, 120);
     this.btSearchTray.Name = "btSearchTray";
     this.btSearchTray.Size = new System.Drawing.Size(62, 25);
     this.btSearchTray.TabIndex = 7;
     this.btSearchTray.Text = "Buscar";
     this.btSearchTray.Click += new System.EventHandler(this.btSearchTray_Click);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(22, 24);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(37, 13);
     this.label22.TabIndex = 1;
     this.label22.Text = "Fecha";
     //
     // ckSample
     //
     this.ckSample.Location = new System.Drawing.Point(4, 96);
     this.ckSample.Name = "ckSample";
     this.ckSample.Properties.Caption = "Muestra";
     this.ckSample.Size = new System.Drawing.Size(71, 19);
     this.ckSample.TabIndex = 4;
     this.ckSample.CheckedChanged += new System.EventHandler(this.ckSample_CheckedChanged);
     //
     // ckCompany
     //
     this.ckCompany.Location = new System.Drawing.Point(4, 73);
     this.ckCompany.Name = "ckCompany";
     this.ckCompany.Properties.Caption = "Cliente";
     this.ckCompany.Size = new System.Drawing.Size(75, 19);
     this.ckCompany.TabIndex = 4;
     this.ckCompany.CheckedChanged += new System.EventHandler(this.ckCompany_CheckedChanged);
     //
     // panel9
     //
     this.panel9.Controls.Add(this.deFrom);
     this.panel9.Controls.Add(this.deUntil);
     this.panel9.Controls.Add(this.label21);
     this.panel9.Controls.Add(this.label26);
     this.panel9.Location = new System.Drawing.Point(65, 19);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(140, 47);
     this.panel9.TabIndex = 3;
     //
     // deFrom
     //
     this.deFrom.EditValue = null;
     this.deFrom.Location = new System.Drawing.Point(50, 3);
     this.deFrom.Name = "deFrom";
     this.deFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFrom.Size = new System.Drawing.Size(86, 20);
     this.deFrom.TabIndex = 2;
     //
     // deUntil
     //
     this.deUntil.EditValue = null;
     this.deUntil.Location = new System.Drawing.Point(50, 25);
     this.deUntil.Name = "deUntil";
     this.deUntil.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deUntil.Size = new System.Drawing.Size(86, 20);
     this.deUntil.TabIndex = 2;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(5, 6);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 13);
     this.label21.TabIndex = 1;
     this.label21.Text = "Desde:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 28);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(38, 13);
     this.label26.TabIndex = 1;
     this.label26.Text = "Hasta:";
     //
     // paButtons
     //
     this.paButtons.Controls.Add(this.paNewTray);
     this.paButtons.Controls.Add(this.btRefresh);
     this.paButtons.Dock = System.Windows.Forms.DockStyle.Top;
     this.paButtons.Location = new System.Drawing.Point(0, 26);
     this.paButtons.Name = "paButtons";
     this.paButtons.Size = new System.Drawing.Size(226, 40);
     this.paButtons.TabIndex = 3;
     this.paButtons.Text = "paSettingsTree";
     //
     // paNewTray
     //
     this.paNewTray.AllowDrop = true;
     this.paNewTray.BackgroundImage = global::LimsProject.Properties.Resources.add_tray2;
     this.paNewTray.Location = new System.Drawing.Point(200, 11);
     this.paNewTray.Name = "paNewTray";
     this.paNewTray.Size = new System.Drawing.Size(20, 20);
     this.paNewTray.TabIndex = 1;
     this.paNewTray.DragDrop += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragDrop);
     this.paNewTray.DragEnter += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragEnter);
     //
     // btRefresh
     //
     this.btRefresh.Location = new System.Drawing.Point(8, 11);
     this.btRefresh.Name = "btRefresh";
     this.btRefresh.Size = new System.Drawing.Size(75, 23);
     this.btRefresh.TabIndex = 0;
     this.btRefresh.Text = "Refrescar";
     this.btRefresh.Click += new System.EventHandler(this.btRefresh_Click);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(226, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(5, 493);
     this.splitter1.TabIndex = 10;
     this.splitter1.TabStop = false;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.gbApprove);
     this.panel5.Controls.Add(this.paAuthorization);
     this.panel5.Controls.Add(this.gbReview);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(231, 444);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(985, 49);
     this.panel5.TabIndex = 10;
     //
     // gbApprove
     //
     this.gbApprove.Controls.Add(this.laDate_approved);
     this.gbApprove.Controls.Add(this.laUser_approved);
     this.gbApprove.Controls.Add(this.label13);
     this.gbApprove.Controls.Add(this.label7);
     this.gbApprove.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbApprove.Location = new System.Drawing.Point(11, 6);
     this.gbApprove.Name = "gbApprove";
     this.gbApprove.Size = new System.Drawing.Size(267, 38);
     this.gbApprove.TabIndex = 4;
     this.gbApprove.TabStop = false;
     this.gbApprove.Text = "Aprobación";
     this.gbApprove.Visible = false;
     //
     // laDate_approved
     //
     this.laDate_approved.AutoSize = true;
     this.laDate_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_approved.Location = new System.Drawing.Point(153, 16);
     this.laDate_approved.Name = "laDate_approved";
     this.laDate_approved.Size = new System.Drawing.Size(47, 13);
     this.laDate_approved.TabIndex = 3;
     this.laDate_approved.Text = "[fecha]";
     //
     // laUser_approved
     //
     this.laUser_approved.AutoSize = true;
     this.laUser_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_approved.Location = new System.Drawing.Point(58, 16);
     this.laUser_approved.Name = "laUser_approved";
     this.laUser_approved.Size = new System.Drawing.Size(39, 13);
     this.laUser_approved.TabIndex = 3;
     this.laUser_approved.Text = "[user]";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(103, 16);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(46, 13);
     this.label13.TabIndex = 2;
     this.label13.Text = "Fecha:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 16);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(54, 13);
     this.label7.TabIndex = 2;
     this.label7.Text = "Usuario:";
     //
     // paAuthorization
     //
     this.paAuthorization.Controls.Add(this.ucSign1);
     this.paAuthorization.Dock = System.Windows.Forms.DockStyle.Right;
     this.paAuthorization.Location = new System.Drawing.Point(811, 0);
     this.paAuthorization.Name = "paAuthorization";
     this.paAuthorization.Padding = new System.Windows.Forms.Padding(0, 19, 5, 14);
     this.paAuthorization.Size = new System.Drawing.Size(174, 49);
     this.paAuthorization.TabIndex = 5;
     this.paAuthorization.Visible = false;
     //
     // ucSign1
     //
     this.ucSign1.Location = new System.Drawing.Point(8, 5);
     this.ucSign1.Margin = new System.Windows.Forms.Padding(0);
     this.ucSign1.Name = "ucSign1";
     this.ucSign1.Pwd = null;
     this.ucSign1.Size = new System.Drawing.Size(160, 39);
     this.ucSign1.TabIndex = 13;
     this.ucSign1.Title = "Firmar";
     this.ucSign1.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // gbReview
     //
     this.gbReview.Controls.Add(this.laDate_revised);
     this.gbReview.Controls.Add(this.laUser_revised);
     this.gbReview.Controls.Add(this.label28);
     this.gbReview.Controls.Add(this.label29);
     this.gbReview.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbReview.Location = new System.Drawing.Point(284, 6);
     this.gbReview.Name = "gbReview";
     this.gbReview.Size = new System.Drawing.Size(269, 38);
     this.gbReview.TabIndex = 4;
     this.gbReview.TabStop = false;
     this.gbReview.Text = "Revisión";
     this.gbReview.Visible = false;
     //
     // laDate_revised
     //
     this.laDate_revised.AutoSize = true;
     this.laDate_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_revised.Location = new System.Drawing.Point(158, 16);
     this.laDate_revised.Name = "laDate_revised";
     this.laDate_revised.Size = new System.Drawing.Size(47, 13);
     this.laDate_revised.TabIndex = 3;
     this.laDate_revised.Text = "[fecha]";
     //
     // laUser_revised
     //
     this.laUser_revised.AutoSize = true;
     this.laUser_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_revised.Location = new System.Drawing.Point(57, 16);
     this.laUser_revised.Name = "laUser_revised";
     this.laUser_revised.Size = new System.Drawing.Size(39, 13);
     this.laUser_revised.TabIndex = 3;
     this.laUser_revised.Text = "[user]";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(112, 16);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(46, 13);
     this.label28.TabIndex = 2;
     this.label28.Text = "Fecha:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 16);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(54, 13);
     this.label29.TabIndex = 2;
     this.label29.Text = "Usuario:";
     //
     // tbStd
     //
     this.tbStd.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbStd.Location = new System.Drawing.Point(62, 28);
     this.tbStd.Name = "tbStd";
     this.tbStd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbStd.Size = new System.Drawing.Size(57, 20);
     this.tbStd.TabIndex = 1;
     this.tbStd.Leave += new System.EventHandler(this.tbStd_Leave);
     //
     // tbAbs
     //
     this.tbAbs.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAbs.Location = new System.Drawing.Point(62, 5);
     this.tbAbs.Name = "tbAbs";
     this.tbAbs.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAbs.Size = new System.Drawing.Size(57, 20);
     this.tbAbs.TabIndex = 0;
     this.tbAbs.Leave += new System.EventHandler(this.tbAbs_Leave);
     //
     // btRegAbsStd
     //
     this.btRegAbsStd.Location = new System.Drawing.Point(125, 26);
     this.btRegAbsStd.Name = "btRegAbsStd";
     this.btRegAbsStd.Size = new System.Drawing.Size(61, 23);
     this.btRegAbsStd.TabIndex = 2;
     this.btRegAbsStd.Text = "Registrar";
     this.btRegAbsStd.Click += new System.EventHandler(this.btRegAbsStd_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 31);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Std Ver:";
     //
     // panel6
     //
     this.panel6.Controls.Add(this.tbTitle);
     this.panel6.Controls.Add(this.label16);
     this.panel6.Controls.Add(this.tbCodMethod);
     this.panel6.Controls.Add(this.tbAbbreviation);
     this.panel6.Controls.Add(this.label12);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(375, 2);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(434, 43);
     this.panel6.TabIndex = 14;
     //
     // tbTitle
     //
     this.tbTitle.Location = new System.Drawing.Point(137, 6);
     this.tbTitle.Name = "tbTitle";
     this.tbTitle.Properties.ReadOnly = true;
     this.tbTitle.Size = new System.Drawing.Size(288, 33);
     this.tbTitle.TabIndex = 6;
     this.tbTitle.TabStop = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(71, 4);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(61, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "Abreviatura";
     //
     // tbCodMethod
     //
     this.tbCodMethod.Location = new System.Drawing.Point(4, 19);
     this.tbCodMethod.Name = "tbCodMethod";
     this.tbCodMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, true, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbCodMethod.Properties.ReadOnly = true;
     this.tbCodMethod.Size = new System.Drawing.Size(61, 20);
     this.tbCodMethod.TabIndex = 13;
     this.tbCodMethod.TabStop = false;
     this.tbCodMethod.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.tbCodMethod_ButtonClick);
     //
     // tbAbbreviation
     //
     this.tbAbbreviation.Location = new System.Drawing.Point(66, 19);
     this.tbAbbreviation.Name = "tbAbbreviation";
     this.tbAbbreviation.Properties.ReadOnly = true;
     this.tbAbbreviation.Size = new System.Drawing.Size(70, 20);
     this.tbAbbreviation.TabIndex = 7;
     this.tbAbbreviation.TabStop = false;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(15, 4);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "Código";
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ucSignCloseTray);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(809, 2);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(170, 43);
     this.panel4.TabIndex = 12;
     //
     // ucSignCloseTray
     //
     this.ucSignCloseTray.Location = new System.Drawing.Point(6, 1);
     this.ucSignCloseTray.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignCloseTray.Name = "ucSignCloseTray";
     this.ucSignCloseTray.Pwd = null;
     this.ucSignCloseTray.Size = new System.Drawing.Size(158, 40);
     this.ucSignCloseTray.TabIndex = 12;
     this.ucSignCloseTray.Title = "Cerrar bandeja";
     this.ucSignCloseTray.OnSign += new LimsProject.sign(this.ucSignCloseTray_OnSign);
     //
     // laTitleModule
     //
     this.laTitleModule.AutoSize = true;
     this.laTitleModule.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.laTitleModule.Location = new System.Drawing.Point(0, 1);
     this.laTitleModule.Margin = new System.Windows.Forms.Padding(0);
     this.laTitleModule.Name = "laTitleModule";
     this.laTitleModule.Size = new System.Drawing.Size(57, 20);
     this.laTitleModule.TabIndex = 10;
     this.laTitleModule.Text = "label7";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(10, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 13);
     this.label5.TabIndex = 2;
     this.label5.Text = "Abs1 Std:";
     //
     // tbUnitMeasure
     //
     this.tbUnitMeasure.Location = new System.Drawing.Point(284, 28);
     this.tbUnitMeasure.Name = "tbUnitMeasure";
     this.tbUnitMeasure.Properties.ReadOnly = true;
     this.tbUnitMeasure.Size = new System.Drawing.Size(31, 20);
     this.tbUnitMeasure.TabIndex = 9;
     this.tbUnitMeasure.TabStop = false;
     //
     // tbLawMri
     //
     this.tbLawMri.Location = new System.Drawing.Point(225, 28);
     this.tbLawMri.Name = "tbLawMri";
     this.tbLawMri.Properties.ReadOnly = true;
     this.tbLawMri.Size = new System.Drawing.Size(56, 20);
     this.tbLawMri.TabIndex = 9;
     this.tbLawMri.TabStop = false;
     //
     // tbSdMr
     //
     this.tbSdMr.Location = new System.Drawing.Point(353, 28);
     this.tbSdMr.Name = "tbSdMr";
     this.tbSdMr.Properties.ReadOnly = true;
     this.tbSdMr.Size = new System.Drawing.Size(75, 20);
     this.tbSdMr.TabIndex = 9;
     this.tbSdMr.TabStop = false;
     //
     // tbSdBlk
     //
     this.tbSdBlk.Location = new System.Drawing.Point(353, 5);
     this.tbSdBlk.Name = "tbSdBlk";
     this.tbSdBlk.Properties.ReadOnly = true;
     this.tbSdBlk.Size = new System.Drawing.Size(75, 20);
     this.tbSdBlk.TabIndex = 9;
     this.tbSdBlk.TabStop = false;
     //
     // tbMri
     //
     this.tbMri.Location = new System.Drawing.Point(225, 5);
     this.tbMri.Name = "tbMri";
     this.tbMri.Properties.ReadOnly = true;
     this.tbMri.Size = new System.Drawing.Size(56, 20);
     this.tbMri.TabIndex = 9;
     this.tbMri.TabStop = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(194, 31);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(27, 13);
     this.label18.TabIndex = 4;
     this.label18.Text = "Ley:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(434, 31);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(77, 13);
     this.label15.TabIndex = 4;
     this.label15.Text = "Error permitido:";
     //
     // tbErrorAllowed
     //
     this.tbErrorAllowed.Location = new System.Drawing.Point(514, 28);
     this.tbErrorAllowed.Name = "tbErrorAllowed";
     this.tbErrorAllowed.Properties.ReadOnly = true;
     this.tbErrorAllowed.Size = new System.Drawing.Size(52, 20);
     this.tbErrorAllowed.TabIndex = 5;
     this.tbErrorAllowed.TabStop = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(320, 8);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(31, 13);
     this.label20.TabIndex = 2;
     this.label20.Text = "LRB:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(320, 31);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(30, 13);
     this.label19.TabIndex = 2;
     this.label19.Text = "MRI:";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(194, 9);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(24, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Mri:";
     //
     // deDate_allowed_error
     //
     this.deDate_allowed_error.EditValue = null;
     this.deDate_allowed_error.Location = new System.Drawing.Point(477, 5);
     this.deDate_allowed_error.Name = "deDate_allowed_error";
     this.deDate_allowed_error.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate_allowed_error.Properties.ReadOnly = true;
     this.deDate_allowed_error.Size = new System.Drawing.Size(89, 20);
     this.deDate_allowed_error.TabIndex = 3;
     this.deDate_allowed_error.TabStop = false;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(434, 6);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(40, 13);
     this.label14.TabIndex = 2;
     this.label14.Text = "Fecha:";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.paQaqc2);
     this.panelControl1.Controls.Add(this.paQaqc1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(231, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(985, 103);
     this.panelControl1.TabIndex = 11;
     this.panelControl1.Text = "panelControl1";
     //
     // paQaqc2
     //
     this.paQaqc2.Controls.Add(this.deDate_allowed_error);
     this.paQaqc2.Controls.Add(this.tbSdBlk);
     this.paQaqc2.Controls.Add(this.tbStd);
     this.paQaqc2.Controls.Add(this.tbMri);
     this.paQaqc2.Controls.Add(this.tbSdMr);
     this.paQaqc2.Controls.Add(this.tbAbs);
     this.paQaqc2.Controls.Add(this.label18);
     this.paQaqc2.Controls.Add(this.label14);
     this.paQaqc2.Controls.Add(this.tbLawMri);
     this.paQaqc2.Controls.Add(this.btRegAbsStd);
     this.paQaqc2.Controls.Add(this.label15);
     this.paQaqc2.Controls.Add(this.label17);
     this.paQaqc2.Controls.Add(this.tbUnitMeasure);
     this.paQaqc2.Controls.Add(this.label4);
     this.paQaqc2.Controls.Add(this.tbErrorAllowed);
     this.paQaqc2.Controls.Add(this.label19);
     this.paQaqc2.Controls.Add(this.label5);
     this.paQaqc2.Controls.Add(this.label20);
     this.paQaqc2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.paQaqc2.Enabled = false;
     this.paQaqc2.Location = new System.Drawing.Point(2, 49);
     this.paQaqc2.Name = "paQaqc2";
     this.paQaqc2.Size = new System.Drawing.Size(981, 52);
     this.paQaqc2.TabIndex = 17;
     this.paQaqc2.Text = "paQaqc2";
     //
     // paQaqc1
     //
     this.paQaqc1.Appearance.BackColor = System.Drawing.Color.LightSteelBlue;
     this.paQaqc1.Appearance.Options.UseBackColor = true;
     this.paQaqc1.Controls.Add(this.panel6);
     this.paQaqc1.Controls.Add(this.panel4);
     this.paQaqc1.Controls.Add(this.panel7);
     this.paQaqc1.Dock = System.Windows.Forms.DockStyle.Top;
     this.paQaqc1.Location = new System.Drawing.Point(2, 2);
     this.paQaqc1.Name = "paQaqc1";
     this.paQaqc1.Size = new System.Drawing.Size(981, 47);
     this.paQaqc1.TabIndex = 16;
     this.paQaqc1.Text = "paTitle2";
     //
     // panel7
     //
     this.panel7.Controls.Add(this.laTitleModule);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(2, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(977, 43);
     this.panel7.TabIndex = 15;
     //
     // img32x32
     //
     this.img32x32.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("img32x32.ImageStream")));
     this.img32x32.TransparentColor = System.Drawing.Color.Transparent;
     this.img32x32.Images.SetKeyName(0, "add_file.png");
     //
     // FormNewQaQc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1230, 643);
     this.Name = "FormNewQaQc";
     this.Text = "Módulo de QaQc";
     this.Load += new System.EventHandler(this.FormQaQc_Load);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).EndInit();
     this.tabTreeQaqc.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).EndInit();
     this.xtraTabPage5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).EndInit();
     this.paListAuthorization.ResumeLayout(false);
     this.paListAuthorization.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).EndInit();
     this.paHistoryFilter.ResumeLayout(false);
     this.paHistoryFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).EndInit();
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).EndInit();
     this.paButtons.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.gbApprove.ResumeLayout(false);
     this.gbApprove.PerformLayout();
     this.paAuthorization.ResumeLayout(false);
     this.gbReview.ResumeLayout(false);
     this.gbReview.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).EndInit();
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).EndInit();
     this.paQaqc2.ResumeLayout(false);
     this.paQaqc2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).EndInit();
     this.paQaqc1.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel7.PerformLayout();
     this.ResumeLayout(false);
 }
Example #25
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(frmCommission));
     this.grpMDCommision = new DevExpress.XtraEditors.GroupControl();
     this.tabControlCommission = new DevExpress.XtraTab.XtraTabControl();
     this.mdCM_tabSalesCommision = new DevExpress.XtraTab.XtraTabPage();
     this.grpSubMDCommissionScheme = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_SalesCommisionScheme = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCommGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCalMethod = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CalMethod = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.mBranchTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCrossSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_CrossSales = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.dtFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdSC_txtNEmployeeID = new DevExpress.XtraEditors.TextEdit();
     this.tabControlCommissionEntry = new DevExpress.XtraTab.XtraTabControl();
     this.tabMethodOne = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Target_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Target_Del = new DevExpress.XtraEditors.SimpleButton();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.gridCategory2 = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Percentage2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridCategory = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.CategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnCategory_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.gridTarget = new DevExpress.XtraGrid.GridControl();
     this.gridViewTarget = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nIndivTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBasePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mBaseAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabMethodTwo = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Range_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridRange = new DevExpress.XtraGrid.GridControl();
     this.gridViewRange = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.mRangeSalesFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeSalesTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nRangePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Range = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Range_Add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.grid2Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid2Category = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn2Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.tabMethodThree = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Mgr_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridMgr = new DevExpress.XtraGrid.GridControl();
     this.gridViewMgr = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nBranchPercentFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercentTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nMgrPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dMgrAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Mgr = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine_Mgr = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Mgr_add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.grid3Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid3Category = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn3Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Add2 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_del2 = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_SalesCommisionSchemeEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommissionSchemeEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE21 = 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.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.mdCM_tabInstructorCommision = new DevExpress.XtraTab.XtraTabPage();
     this.tabControlInstructorCommission = new DevExpress.XtraTab.XtraTabControl();
     this.tabPageInstructorType = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorType = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdInstructor = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.tabPageInstructorComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdIC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPageInstructorTypeComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorTypeCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdITC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdITC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdCM_tabPTCommision = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_PTCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewPTCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.panelSalesCommission = new System.Windows.Forms.Panel();
     this.cmbYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).BeginInit();
     this.grpMDCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).BeginInit();
     this.tabControlCommission.SuspendLayout();
     this.mdCM_tabSalesCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).BeginInit();
     this.grpSubMDCommissionScheme.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).BeginInit();
     this.tabControlCommissionEntry.SuspendLayout();
     this.tabMethodOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).BeginInit();
     this.tabMethodTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).BeginInit();
     this.tabMethodThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     this.mdCM_tabInstructorCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).BeginInit();
     this.tabControlInstructorCommission.SuspendLayout();
     this.tabPageInstructorType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     this.tabPageInstructorComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).BeginInit();
     this.tabPageInstructorTypeComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     this.mdCM_tabPTCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.panelSalesCommission.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDCommision
     //
     this.grpMDCommision.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDCommision.Appearance.Options.UseBackColor = true;
     this.grpMDCommision.Controls.Add(this.tabControlCommission);
     this.grpMDCommision.Controls.Add(this.btn_Add);
     this.grpMDCommision.Controls.Add(this.btn_Del);
     this.grpMDCommision.Controls.Add(this.panelSalesCommission);
     this.grpMDCommision.Location = new System.Drawing.Point(8, 0);
     this.grpMDCommision.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDCommision.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDCommision.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDCommision.Name = "grpMDCommision";
     this.grpMDCommision.Size = new System.Drawing.Size(980, 560);
     this.grpMDCommision.TabIndex = 17;
     this.grpMDCommision.Text = "Commision";
     //
     // tabControlCommission
     //
     this.tabControlCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommission.Location = new System.Drawing.Point(8, 48);
     this.tabControlCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommission.Name = "tabControlCommission";
     this.tabControlCommission.SelectedTabPage = this.mdCM_tabSalesCommision;
     this.tabControlCommission.Size = new System.Drawing.Size(960, 512);
     this.tabControlCommission.TabIndex = 13;
     this.tabControlCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                          this.mdCM_tabSalesCommision,
                                                                                          this.mdCM_tabInstructorCommision,
                                                                                          this.mdCM_tabPTCommision});
     this.tabControlCommission.Text = "xtraTabControl2";
     this.tabControlCommission.Click += new System.EventHandler(this.tabControlCommission_Click);
     this.tabControlCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlCommission_SelectedPageChanged);
     //
     // mdCM_tabSalesCommision
     //
     this.mdCM_tabSalesCommision.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.mdCM_tabSalesCommision.Appearance.PageClient.Options.UseBackColor = true;
     this.mdCM_tabSalesCommision.Controls.Add(this.grpSubMDCommissionScheme);
     this.mdCM_tabSalesCommision.Controls.Add(this.tabControlCommissionEntry);
     this.mdCM_tabSalesCommision.Name = "mdCM_tabSalesCommision";
     this.mdCM_tabSalesCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabSalesCommision.Text = "Sales Commission";
     //
     // grpSubMDCommissionScheme
     //
     this.grpSubMDCommissionScheme.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpSubMDCommissionScheme.Controls.Add(this.gridControlMd_SalesCommisionScheme);
     this.grpSubMDCommissionScheme.Controls.Add(this.mdSC_txtNEmployeeID);
     this.grpSubMDCommissionScheme.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpSubMDCommissionScheme.Location = new System.Drawing.Point(0, 0);
     this.grpSubMDCommissionScheme.Name = "grpSubMDCommissionScheme";
     this.grpSubMDCommissionScheme.Size = new System.Drawing.Size(954, 136);
     this.grpSubMDCommissionScheme.TabIndex = 101;
     this.grpSubMDCommissionScheme.Text = "groupControl4";
     //
     // gridControlMd_SalesCommisionScheme
     //
     this.gridControlMd_SalesCommisionScheme.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_SalesCommisionScheme.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionScheme.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionScheme.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_SalesCommisionScheme.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionScheme.MainView = this.gridViewMd_SalesCommission;
     this.gridControlMd_SalesCommisionScheme.Name = "gridControlMd_SalesCommisionScheme";
     this.gridControlMd_SalesCommisionScheme.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                 this.chk_CrossSales,
                                                                                                                                 this.lk_CalMethod});
     this.gridControlMd_SalesCommisionScheme.Size = new System.Drawing.Size(954, 136);
     this.gridControlMd_SalesCommisionScheme.TabIndex = 101;
     this.gridControlMd_SalesCommisionScheme.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMd_SalesCommission});
     //
     // gridViewMd_SalesCommission
     //
     this.gridViewMd_SalesCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                       this.nCommGroupID,
                                                                                                       this.strGroupName,
                                                                                                       this.nCalMethod,
                                                                                                       this.mBranchTarget,
                                                                                                       this.fCrossSales,
                                                                                                       this.dtFrom,
                                                                                                       this.dtTo});
     this.gridViewMd_SalesCommission.GridControl = this.gridControlMd_SalesCommisionScheme;
     this.gridViewMd_SalesCommission.Name = "gridViewMd_SalesCommission";
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_SalesCommission.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_SalesCommission_FocusedRowChanged);
     this.gridViewMd_SalesCommission.LostFocus += new System.EventHandler(this.gridViewMd_SalesCommission_LostFocus);
     //
     // nCommGroupID
     //
     this.nCommGroupID.Caption = "CommGroupID";
     this.nCommGroupID.FieldName = "nCommGroupID";
     this.nCommGroupID.Name = "nCommGroupID";
     this.nCommGroupID.Visible = true;
     this.nCommGroupID.VisibleIndex = 0;
     this.nCommGroupID.Width = 134;
     //
     // strGroupName
     //
     this.strGroupName.Caption = "GroupName";
     this.strGroupName.FieldName = "strGroupName";
     this.strGroupName.Name = "strGroupName";
     this.strGroupName.Visible = true;
     this.strGroupName.VisibleIndex = 1;
     this.strGroupName.Width = 203;
     //
     // nCalMethod
     //
     this.nCalMethod.Caption = "Method";
     this.nCalMethod.ColumnEdit = this.lk_CalMethod;
     this.nCalMethod.FieldName = "nCalMethod";
     this.nCalMethod.Name = "nCalMethod";
     this.nCalMethod.Visible = true;
     this.nCalMethod.VisibleIndex = 2;
     this.nCalMethod.Width = 120;
     //
     // lk_CalMethod
     //
     this.lk_CalMethod.AutoHeight = false;
     this.lk_CalMethod.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CalMethod.Name = "lk_CalMethod";
     //
     // mBranchTarget
     //
     this.mBranchTarget.Caption = "Branch Target $";
     this.mBranchTarget.FieldName = "mBranchTarget";
     this.mBranchTarget.Name = "mBranchTarget";
     this.mBranchTarget.Visible = true;
     this.mBranchTarget.VisibleIndex = 3;
     this.mBranchTarget.Width = 153;
     //
     // fCrossSales
     //
     this.fCrossSales.Caption = "Cross Sales";
     this.fCrossSales.ColumnEdit = this.chk_CrossSales;
     this.fCrossSales.FieldName = "fCrossSales";
     this.fCrossSales.Name = "fCrossSales";
     this.fCrossSales.Visible = true;
     this.fCrossSales.VisibleIndex = 6;
     this.fCrossSales.Width = 73;
     //
     // chk_CrossSales
     //
     this.chk_CrossSales.AutoHeight = false;
     this.chk_CrossSales.Name = "chk_CrossSales";
     //
     // dtFrom
     //
     this.dtFrom.Caption = "From";
     this.dtFrom.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtFrom.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtFrom.FieldName = "dtFrom";
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.Visible = true;
     this.dtFrom.VisibleIndex = 4;
     this.dtFrom.Width = 130;
     //
     // dtTo
     //
     this.dtTo.Caption = "Till";
     this.dtTo.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtTo.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtTo.FieldName = "dtTo";
     this.dtTo.Name = "dtTo";
     this.dtTo.Visible = true;
     this.dtTo.VisibleIndex = 5;
     this.dtTo.Width = 127;
     //
     // mdSC_txtNEmployeeID
     //
     this.mdSC_txtNEmployeeID.EditValue = "";
     this.mdSC_txtNEmployeeID.ImeMode = System.Windows.Forms.ImeMode.On;
     this.mdSC_txtNEmployeeID.Location = new System.Drawing.Point(552, 168);
     this.mdSC_txtNEmployeeID.Name = "mdSC_txtNEmployeeID";
     //
     // mdSC_txtNEmployeeID.Properties
     //
     this.mdSC_txtNEmployeeID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdSC_txtNEmployeeID.Properties.Appearance.Options.UseFont = true;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdSC_txtNEmployeeID.Size = new System.Drawing.Size(32, 20);
     this.mdSC_txtNEmployeeID.TabIndex = 111;
     //
     // tabControlCommissionEntry
     //
     this.tabControlCommissionEntry.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommissionEntry.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommissionEntry.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabControlCommissionEntry.Location = new System.Drawing.Point(0, 139);
     this.tabControlCommissionEntry.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommissionEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommissionEntry.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommissionEntry.Name = "tabControlCommissionEntry";
     this.tabControlCommissionEntry.SelectedTabPage = this.tabMethodOne;
     this.tabControlCommissionEntry.Size = new System.Drawing.Size(954, 344);
     this.tabControlCommissionEntry.TabIndex = 94;
     this.tabControlCommissionEntry.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                               this.tabMethodOne,
                                                                                               this.tabMethodTwo,
                                                                                               this.tabMethodThree,
                                                                                               this.xtraTabPage1});
     this.tabControlCommissionEntry.Text = "xtraTabControl2";
     //
     // tabMethodOne
     //
     this.tabMethodOne.Controls.Add(this.btn_Target_Add);
     this.tabMethodOne.Controls.Add(this.btn_Target_Del);
     this.tabMethodOne.Controls.Add(this.grpMDPromotionBelow2);
     this.tabMethodOne.Controls.Add(this.gridTarget);
     this.tabMethodOne.Name = "tabMethodOne";
     this.tabMethodOne.Size = new System.Drawing.Size(948, 315);
     this.tabMethodOne.Text = "Method One";
     //
     // btn_Target_Add
     //
     this.btn_Target_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Add.Appearance.Options.UseFont = true;
     this.btn_Target_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Add.ImageIndex = 0;
     this.btn_Target_Add.ImageList = this.imageList1;
     this.btn_Target_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Target_Add.Location = new System.Drawing.Point(8, 176);
     this.btn_Target_Add.Name = "btn_Target_Add";
     this.btn_Target_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Add.TabIndex = 136;
     this.btn_Target_Add.Click += new System.EventHandler(this.btn_Target_Add_Click);
     //
     // 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_Target_Del
     //
     this.btn_Target_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Del.Appearance.Options.UseFont = true;
     this.btn_Target_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Del.ImageIndex = 1;
     this.btn_Target_Del.ImageList = this.imageList1;
     this.btn_Target_Del.Location = new System.Drawing.Point(48, 176);
     this.btn_Target_Del.Name = "btn_Target_Del";
     this.btn_Target_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Del.TabIndex = 135;
     this.btn_Target_Del.Click += new System.EventHandler(this.btn_Target_Del_Click);
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory2);
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Add);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Del);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_DelAll);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_AddAll);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(0, 8);
     this.grpMDPromotionBelow2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(896, 160);
     this.grpMDPromotionBelow2.TabIndex = 7;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // gridCategory2
     //
     //
     // gridCategory2.EmbeddedNavigator
     //
     this.gridCategory2.EmbeddedNavigator.Name = "";
     this.gridCategory2.Location = new System.Drawing.Point(480, 8);
     this.gridCategory2.MainView = this.gridViewCategory2;
     this.gridCategory2.Name = "gridCategory2";
     this.gridCategory2.Size = new System.Drawing.Size(376, 144);
     this.gridCategory2.TabIndex = 29;
     this.gridCategory2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridViewCategory2});
     //
     // gridViewCategory2
     //
     this.gridViewCategory2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.nCategoryID,
                                                                                              this.Description2,
                                                                                              this.Percentage2});
     this.gridViewCategory2.GridControl = this.gridCategory2;
     this.gridViewCategory2.Name = "gridViewCategory2";
     this.gridViewCategory2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory2.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory2.OptionsSelection.MultiSelect = true;
     this.gridViewCategory2.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.nCategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewCategory2.SynchronizeClones = false;
     this.gridViewCategory2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.Update_Pecentage);
     this.gridViewCategory2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridTarget_FocusedRowChanged);
     //
     // nCategoryID
     //
     this.nCategoryID.Caption = "CategoryID";
     this.nCategoryID.FieldName = "nCategoryID";
     this.nCategoryID.Name = "nCategoryID";
     this.nCategoryID.OptionsColumn.AllowEdit = false;
     this.nCategoryID.Visible = true;
     this.nCategoryID.VisibleIndex = 0;
     this.nCategoryID.Width = 102;
     //
     // Description2
     //
     this.Description2.Caption = "Description";
     this.Description2.FieldName = "strDescription";
     this.Description2.Name = "Description2";
     this.Description2.OptionsColumn.AllowEdit = false;
     this.Description2.Visible = true;
     this.Description2.VisibleIndex = 1;
     this.Description2.Width = 181;
     //
     // Percentage2
     //
     this.Percentage2.Caption = "%";
     this.Percentage2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.Percentage2.FieldName = "Percentage";
     this.Percentage2.Name = "Percentage2";
     this.Percentage2.Visible = true;
     this.Percentage2.VisibleIndex = 2;
     this.Percentage2.Width = 79;
     //
     // gridCategory
     //
     //
     // gridCategory.EmbeddedNavigator
     //
     this.gridCategory.EmbeddedNavigator.Name = "";
     this.gridCategory.Location = new System.Drawing.Point(8, 8);
     this.gridCategory.MainView = this.gridViewCategory;
     this.gridCategory.Name = "gridCategory";
     this.gridCategory.Size = new System.Drawing.Size(376, 144);
     this.gridCategory.TabIndex = 24;
     this.gridCategory.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridViewCategory});
     //
     // gridViewCategory
     //
     this.gridViewCategory.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.CategoryID,
                                                                                             this.Description});
     this.gridViewCategory.GridControl = this.gridCategory;
     this.gridViewCategory.Name = "gridViewCategory";
     this.gridViewCategory.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory.OptionsBehavior.Editable = false;
     this.gridViewCategory.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory.OptionsSelection.MultiSelect = true;
     this.gridViewCategory.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                      new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // CategoryID
     //
     this.CategoryID.Caption = "CategoryID";
     this.CategoryID.FieldName = "nCategoryID";
     this.CategoryID.Name = "CategoryID";
     this.CategoryID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.CategoryID.Visible = true;
     this.CategoryID.VisibleIndex = 0;
     this.CategoryID.Width = 100;
     //
     // Description
     //
     this.Description.Caption = "Description";
     this.Description.FieldName = "strDescription";
     this.Description.Name = "Description";
     this.Description.Visible = true;
     this.Description.VisibleIndex = 1;
     this.Description.Width = 262;
     //
     // btnCategory_Add
     //
     this.btnCategory_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Add.Location = new System.Drawing.Point(416, 16);
     this.btnCategory_Add.Name = "btnCategory_Add";
     this.btnCategory_Add.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Add.TabIndex = 25;
     this.btnCategory_Add.Text = ">";
     this.btnCategory_Add.Click += new System.EventHandler(this.btnCategory_Add_Click);
     //
     // btnCategory_Del
     //
     this.btnCategory_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Del.Location = new System.Drawing.Point(416, 112);
     this.btnCategory_Del.Name = "btnCategory_Del";
     this.btnCategory_Del.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Del.TabIndex = 28;
     this.btnCategory_Del.Text = "<";
     this.btnCategory_Del.Click += new System.EventHandler(this.btnCategory_Del_Click);
     //
     // btnCategory_DelAll
     //
     this.btnCategory_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_DelAll.Location = new System.Drawing.Point(416, 48);
     this.btnCategory_DelAll.Name = "btnCategory_DelAll";
     this.btnCategory_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_DelAll.TabIndex = 27;
     this.btnCategory_DelAll.Text = "<<";
     this.btnCategory_DelAll.Click += new System.EventHandler(this.btnCategory_DelAll_Click);
     //
     // btnCategory_AddAll
     //
     this.btnCategory_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_AddAll.Location = new System.Drawing.Point(416, 80);
     this.btnCategory_AddAll.Name = "btnCategory_AddAll";
     this.btnCategory_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_AddAll.TabIndex = 26;
     this.btnCategory_AddAll.Text = ">>";
     this.btnCategory_AddAll.Click += new System.EventHandler(this.btnCategory_AddAll_Click);
     //
     // gridTarget
     //
     //
     // gridTarget.EmbeddedNavigator
     //
     this.gridTarget.EmbeddedNavigator.Name = "";
     this.gridTarget.Location = new System.Drawing.Point(8, 192);
     this.gridTarget.MainView = this.gridViewTarget;
     this.gridTarget.Name = "gridTarget";
     this.gridTarget.Size = new System.Drawing.Size(888, 120);
     this.gridTarget.TabIndex = 25;
     this.gridTarget.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                               this.gridViewTarget});
     //
     // gridViewTarget
     //
     this.gridViewTarget.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.nIndivTargetFrom,
                                                                                           this.nIndivTargetTo,
                                                                                           this.nIndivPercent,
                                                                                           this.nBranchTargetFrom,
                                                                                           this.nBranchTargetTo,
                                                                                           this.nBranchPercent,
                                                                                           this.nBasePercent,
                                                                                           this.mBaseAmount,
                                                                                           this.fCombine});
     this.gridViewTarget.GridControl = this.gridTarget;
     this.gridViewTarget.Name = "gridViewTarget";
     this.gridViewTarget.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewTarget.OptionsCustomization.AllowFilter = false;
     this.gridViewTarget.OptionsSelection.MultiSelect = true;
     this.gridViewTarget.OptionsView.ShowGroupPanel = false;
     this.gridViewTarget.LostFocus += new System.EventHandler(this.gridViewTarget_LostFocus);
     //
     // nIndivTargetFrom
     //
     this.nIndivTargetFrom.Caption = "Individual From";
     this.nIndivTargetFrom.FieldName = "nIndivTargetFrom";
     this.nIndivTargetFrom.Name = "nIndivTargetFrom";
     this.nIndivTargetFrom.Visible = true;
     this.nIndivTargetFrom.VisibleIndex = 0;
     this.nIndivTargetFrom.Width = 117;
     //
     // nIndivTargetTo
     //
     this.nIndivTargetTo.Caption = "Individual To";
     this.nIndivTargetTo.FieldName = "nIndivTargetTo";
     this.nIndivTargetTo.Name = "nIndivTargetTo";
     this.nIndivTargetTo.Visible = true;
     this.nIndivTargetTo.VisibleIndex = 1;
     this.nIndivTargetTo.Width = 114;
     //
     // nIndivPercent
     //
     this.nIndivPercent.Caption = "Reward %";
     this.nIndivPercent.FieldName = "nIndivPercent";
     this.nIndivPercent.Name = "nIndivPercent";
     this.nIndivPercent.Visible = true;
     this.nIndivPercent.VisibleIndex = 2;
     this.nIndivPercent.Width = 105;
     //
     // nBranchTargetFrom
     //
     this.nBranchTargetFrom.Caption = "Branch From";
     this.nBranchTargetFrom.FieldName = "nBranchTargetFrom";
     this.nBranchTargetFrom.Name = "nBranchTargetFrom";
     this.nBranchTargetFrom.Visible = true;
     this.nBranchTargetFrom.VisibleIndex = 3;
     this.nBranchTargetFrom.Width = 103;
     //
     // nBranchTargetTo
     //
     this.nBranchTargetTo.Caption = "Branch To";
     this.nBranchTargetTo.FieldName = "nBranchTargetTo";
     this.nBranchTargetTo.Name = "nBranchTargetTo";
     this.nBranchTargetTo.Visible = true;
     this.nBranchTargetTo.VisibleIndex = 4;
     this.nBranchTargetTo.Width = 113;
     //
     // nBranchPercent
     //
     this.nBranchPercent.Caption = "+ Branch %";
     this.nBranchPercent.FieldName = "nBranchPercent";
     this.nBranchPercent.Name = "nBranchPercent";
     this.nBranchPercent.Visible = true;
     this.nBranchPercent.VisibleIndex = 5;
     this.nBranchPercent.Width = 82;
     //
     // nBasePercent
     //
     this.nBasePercent.Caption = "Min %";
     this.nBasePercent.FieldName = "nBasePercent";
     this.nBasePercent.Name = "nBasePercent";
     this.nBasePercent.Visible = true;
     this.nBasePercent.VisibleIndex = 6;
     this.nBasePercent.Width = 82;
     //
     // mBaseAmount
     //
     this.mBaseAmount.Caption = "Min Amount";
     this.mBaseAmount.FieldName = "mBaseAmount";
     this.mBaseAmount.Name = "mBaseAmount";
     this.mBaseAmount.Visible = true;
     this.mBaseAmount.VisibleIndex = 7;
     this.mBaseAmount.Width = 103;
     //
     // fCombine
     //
     this.fCombine.Caption = "Both";
     this.fCombine.FieldName = "fCombine";
     this.fCombine.Name = "fCombine";
     this.fCombine.Visible = true;
     this.fCombine.VisibleIndex = 8;
     this.fCombine.Width = 55;
     //
     // tabMethodTwo
     //
     this.tabMethodTwo.Controls.Add(this.btn_Range_Del);
     this.tabMethodTwo.Controls.Add(this.gridRange);
     this.tabMethodTwo.Controls.Add(this.btn_Range_Add);
     this.tabMethodTwo.Controls.Add(this.groupControl2);
     this.tabMethodTwo.Name = "tabMethodTwo";
     this.tabMethodTwo.Size = new System.Drawing.Size(948, 315);
     this.tabMethodTwo.Text = "Method Two";
     //
     // btn_Range_Del
     //
     this.btn_Range_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Del.Appearance.Options.UseFont = true;
     this.btn_Range_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Del.ImageIndex = 1;
     this.btn_Range_Del.ImageList = this.imageList1;
     this.btn_Range_Del.Location = new System.Drawing.Point(48, 168);
     this.btn_Range_Del.Name = "btn_Range_Del";
     this.btn_Range_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Del.TabIndex = 139;
     this.btn_Range_Del.Click += new System.EventHandler(this.btn_Range_Del_Click);
     //
     // gridRange
     //
     //
     // gridRange.EmbeddedNavigator
     //
     this.gridRange.EmbeddedNavigator.Name = "";
     this.gridRange.Location = new System.Drawing.Point(8, 192);
     this.gridRange.MainView = this.gridViewRange;
     this.gridRange.Name = "gridRange";
     this.gridRange.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                        this.chk_fCombine});
     this.gridRange.Size = new System.Drawing.Size(888, 120);
     this.gridRange.TabIndex = 137;
     this.gridRange.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                              this.gridViewRange});
     //
     // gridViewRange
     //
     this.gridViewRange.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.mRangeSalesFrom,
                                                                                          this.mRangeSalesTo,
                                                                                          this.nRangePercent,
                                                                                          this.mRangeAmt,
                                                                                          this.fCombine_Range});
     this.gridViewRange.GridControl = this.gridRange;
     this.gridViewRange.Name = "gridViewRange";
     this.gridViewRange.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewRange.OptionsCustomization.AllowFilter = false;
     this.gridViewRange.OptionsSelection.MultiSelect = true;
     this.gridViewRange.OptionsView.ShowGroupPanel = false;
     this.gridViewRange.LostFocus += new System.EventHandler(this.gridViewRange_LostFocus);
     //
     // mRangeSalesFrom
     //
     this.mRangeSalesFrom.Caption = "Sales From $";
     this.mRangeSalesFrom.FieldName = "mRangeSalesFrom";
     this.mRangeSalesFrom.Name = "mRangeSalesFrom";
     this.mRangeSalesFrom.Visible = true;
     this.mRangeSalesFrom.VisibleIndex = 0;
     this.mRangeSalesFrom.Width = 195;
     //
     // mRangeSalesTo
     //
     this.mRangeSalesTo.Caption = "Sales To $";
     this.mRangeSalesTo.FieldName = "mRangeSalesTo";
     this.mRangeSalesTo.Name = "mRangeSalesTo";
     this.mRangeSalesTo.Visible = true;
     this.mRangeSalesTo.VisibleIndex = 1;
     this.mRangeSalesTo.Width = 190;
     //
     // nRangePercent
     //
     this.nRangePercent.Caption = "Reward % ";
     this.nRangePercent.FieldName = "nRangePercent";
     this.nRangePercent.Name = "nRangePercent";
     this.nRangePercent.Visible = true;
     this.nRangePercent.VisibleIndex = 2;
     this.nRangePercent.Width = 175;
     //
     // mRangeAmt
     //
     this.mRangeAmt.Caption = "Reward Amount";
     this.mRangeAmt.FieldName = "mRangeAmt";
     this.mRangeAmt.Name = "mRangeAmt";
     this.mRangeAmt.Visible = true;
     this.mRangeAmt.VisibleIndex = 3;
     this.mRangeAmt.Width = 222;
     //
     // fCombine_Range
     //
     this.fCombine_Range.Caption = "Both";
     this.fCombine_Range.ColumnEdit = this.chk_fCombine;
     this.fCombine_Range.FieldName = "fCombine ";
     this.fCombine_Range.Name = "fCombine_Range";
     this.fCombine_Range.Visible = true;
     this.fCombine_Range.VisibleIndex = 4;
     this.fCombine_Range.Width = 92;
     //
     // chk_fCombine
     //
     this.chk_fCombine.AutoHeight = false;
     this.chk_fCombine.Name = "chk_fCombine";
     //
     // btn_Range_Add
     //
     this.btn_Range_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Add.Appearance.Options.UseFont = true;
     this.btn_Range_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Add.ImageIndex = 0;
     this.btn_Range_Add.ImageList = this.imageList1;
     this.btn_Range_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Range_Add.Location = new System.Drawing.Point(8, 168);
     this.btn_Range_Add.Name = "btn_Range_Add";
     this.btn_Range_Add.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Add.TabIndex = 140;
     this.btn_Range_Add.Click += new System.EventHandler(this.btn_Range_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl2.Controls.Add(this.grid2Category2);
     this.groupControl2.Controls.Add(this.grid2Category);
     this.groupControl2.Controls.Add(this.btn2Category_Add);
     this.groupControl2.Controls.Add(this.btn2Category_Del);
     this.groupControl2.Controls.Add(this.btn2Category_DelAll);
     this.groupControl2.Controls.Add(this.btn2Category_AddAll);
     this.groupControl2.Location = new System.Drawing.Point(0, 8);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(896, 160);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "groupControl1";
     //
     // grid2Category2
     //
     //
     // grid2Category2.EmbeddedNavigator
     //
     this.grid2Category2.EmbeddedNavigator.Name = "";
     this.grid2Category2.Location = new System.Drawing.Point(456, 8);
     this.grid2Category2.MainView = this.gridView2Category2;
     this.grid2Category2.Name = "grid2Category2";
     this.grid2Category2.Size = new System.Drawing.Size(376, 144);
     this.grid2Category2.TabIndex = 29;
     this.grid2Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView2Category2});
     //
     // gridView2Category2
     //
     this.gridView2Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn18,
                                                                                               this.gridColumn19});
     this.gridView2Category2.GridControl = this.grid2Category2;
     this.gridView2Category2.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     this.gridView2Category2.Name = "gridView2Category2";
     this.gridView2Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category2.OptionsCustomization.AllowFilter = false;
     this.gridView2Category2.OptionsSelection.MultiSelect = true;
     this.gridView2Category2.OptionsView.ShowGroupPanel = false;
     this.gridView2Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView2Category2.SynchronizeClones = false;
     this.gridView2Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridRange_FocusedRowChanged);
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "CategoryID";
     this.gridColumn18.FieldName = "nCategoryID";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 78;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "strDescription";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 171;
     //
     // grid2Category
     //
     //
     // grid2Category.EmbeddedNavigator
     //
     this.grid2Category.EmbeddedNavigator.Name = "";
     this.grid2Category.Location = new System.Drawing.Point(8, 8);
     this.grid2Category.MainView = this.gridView2Category;
     this.grid2Category.Name = "grid2Category";
     this.grid2Category.Size = new System.Drawing.Size(360, 144);
     this.grid2Category.TabIndex = 24;
     this.grid2Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView2Category});
     //
     // gridView2Category
     //
     this.gridView2Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn21,
                                                                                              this.gridColumn22});
     this.gridView2Category.GridControl = this.grid2Category;
     this.gridView2Category.Name = "gridView2Category";
     this.gridView2Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category.OptionsBehavior.Editable = false;
     this.gridView2Category.OptionsCustomization.AllowFilter = false;
     this.gridView2Category.OptionsSelection.MultiSelect = true;
     this.gridView2Category.OptionsView.ShowGroupPanel = false;
     this.gridView2Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn21, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "CategoryID";
     this.gridColumn21.FieldName = "nCategoryID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     this.gridColumn21.Width = 78;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Description";
     this.gridColumn22.FieldName = "strDescription";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 268;
     //
     // btn2Category_Add
     //
     this.btn2Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn2Category_Add.Name = "btn2Category_Add";
     this.btn2Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Add.TabIndex = 25;
     this.btn2Category_Add.Text = ">";
     this.btn2Category_Add.Click += new System.EventHandler(this.btn2Category_Add_Click);
     //
     // btn2Category_Del
     //
     this.btn2Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn2Category_Del.Name = "btn2Category_Del";
     this.btn2Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Del.TabIndex = 28;
     this.btn2Category_Del.Text = "<";
     this.btn2Category_Del.Click += new System.EventHandler(this.btn2Category_Del_Click);
     //
     // btn2Category_DelAll
     //
     this.btn2Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn2Category_DelAll.Name = "btn2Category_DelAll";
     this.btn2Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_DelAll.TabIndex = 27;
     this.btn2Category_DelAll.Text = "<<";
     this.btn2Category_DelAll.Click += new System.EventHandler(this.btn2Category_DelAll_Click);
     //
     // btn2Category_AddAll
     //
     this.btn2Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn2Category_AddAll.Name = "btn2Category_AddAll";
     this.btn2Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_AddAll.TabIndex = 26;
     this.btn2Category_AddAll.Text = ">>";
     this.btn2Category_AddAll.Click += new System.EventHandler(this.btn2Category_AddAll_Click);
     //
     // tabMethodThree
     //
     this.tabMethodThree.Controls.Add(this.btn_Mgr_Del);
     this.tabMethodThree.Controls.Add(this.gridMgr);
     this.tabMethodThree.Controls.Add(this.btn_Mgr_add);
     this.tabMethodThree.Controls.Add(this.groupControl3);
     this.tabMethodThree.Name = "tabMethodThree";
     this.tabMethodThree.Size = new System.Drawing.Size(948, 315);
     this.tabMethodThree.Text = "Method Three";
     //
     // btn_Mgr_Del
     //
     this.btn_Mgr_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_Del.Appearance.Options.UseFont = true;
     this.btn_Mgr_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_Del.ImageIndex = 1;
     this.btn_Mgr_Del.ImageList = this.imageList1;
     this.btn_Mgr_Del.Location = new System.Drawing.Point(48, 160);
     this.btn_Mgr_Del.Name = "btn_Mgr_Del";
     this.btn_Mgr_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_Del.TabIndex = 139;
     this.btn_Mgr_Del.Click += new System.EventHandler(this.btn_Mgr_Del_Click);
     //
     // gridMgr
     //
     //
     // gridMgr.EmbeddedNavigator
     //
     this.gridMgr.EmbeddedNavigator.Name = "";
     this.gridMgr.Location = new System.Drawing.Point(8, 184);
     this.gridMgr.MainView = this.gridViewMgr;
     this.gridMgr.Name = "gridMgr";
     this.gridMgr.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                      this.chk_fCombine_Mgr});
     this.gridMgr.Size = new System.Drawing.Size(888, 120);
     this.gridMgr.TabIndex = 137;
     this.gridMgr.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                            this.gridViewMgr});
     //
     // gridViewMgr
     //
     this.gridViewMgr.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.nBranchPercentFrom,
                                                                                        this.nBranchPercentTo,
                                                                                        this.nMgrPercent,
                                                                                        this.dMgrAmt,
                                                                                        this.fCombine_Mgr});
     this.gridViewMgr.GridControl = this.gridMgr;
     this.gridViewMgr.Name = "gridViewMgr";
     this.gridViewMgr.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewMgr.OptionsCustomization.AllowFilter = false;
     this.gridViewMgr.OptionsSelection.MultiSelect = true;
     this.gridViewMgr.OptionsView.ShowGroupPanel = false;
     this.gridViewMgr.LostFocus += new System.EventHandler(this.gridViewMgr_LostFocus);
     //
     // nBranchPercentFrom
     //
     this.nBranchPercentFrom.Caption = "Branch From %";
     this.nBranchPercentFrom.FieldName = "nBranchPercentFrom";
     this.nBranchPercentFrom.Name = "nBranchPercentFrom";
     this.nBranchPercentFrom.Visible = true;
     this.nBranchPercentFrom.VisibleIndex = 0;
     this.nBranchPercentFrom.Width = 117;
     //
     // nBranchPercentTo
     //
     this.nBranchPercentTo.Caption = "Branch To %";
     this.nBranchPercentTo.FieldName = "nBranchPercentTo";
     this.nBranchPercentTo.Name = "nBranchPercentTo";
     this.nBranchPercentTo.Visible = true;
     this.nBranchPercentTo.VisibleIndex = 1;
     this.nBranchPercentTo.Width = 114;
     //
     // nMgrPercent
     //
     this.nMgrPercent.Caption = "Reward %";
     this.nMgrPercent.FieldName = "nMgrPercent";
     this.nMgrPercent.Name = "nMgrPercent";
     this.nMgrPercent.Visible = true;
     this.nMgrPercent.VisibleIndex = 2;
     this.nMgrPercent.Width = 105;
     //
     // dMgrAmt
     //
     this.dMgrAmt.Caption = "Min. Amount";
     this.dMgrAmt.FieldName = "dMgrAmt";
     this.dMgrAmt.Name = "dMgrAmt";
     this.dMgrAmt.Visible = true;
     this.dMgrAmt.VisibleIndex = 3;
     this.dMgrAmt.Width = 103;
     //
     // fCombine_Mgr
     //
     this.fCombine_Mgr.Caption = "Both";
     this.fCombine_Mgr.ColumnEdit = this.chk_fCombine_Mgr;
     this.fCombine_Mgr.FieldName = "fCombine";
     this.fCombine_Mgr.Name = "fCombine_Mgr";
     this.fCombine_Mgr.Visible = true;
     this.fCombine_Mgr.VisibleIndex = 4;
     this.fCombine_Mgr.Width = 113;
     //
     // chk_fCombine_Mgr
     //
     this.chk_fCombine_Mgr.AutoHeight = false;
     this.chk_fCombine_Mgr.Name = "chk_fCombine_Mgr";
     //
     // btn_Mgr_add
     //
     this.btn_Mgr_add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_add.Appearance.Options.UseFont = true;
     this.btn_Mgr_add.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_add.ImageIndex = 0;
     this.btn_Mgr_add.ImageList = this.imageList1;
     this.btn_Mgr_add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Mgr_add.Location = new System.Drawing.Point(8, 160);
     this.btn_Mgr_add.Name = "btn_Mgr_add";
     this.btn_Mgr_add.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_add.TabIndex = 140;
     this.btn_Mgr_add.Click += new System.EventHandler(this.btn_Mgr_add_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl3.Controls.Add(this.grid3Category2);
     this.groupControl3.Controls.Add(this.grid3Category);
     this.groupControl3.Controls.Add(this.btn3Category_Add);
     this.groupControl3.Controls.Add(this.btn3Category_Del);
     this.groupControl3.Controls.Add(this.btn3Category_DelAll);
     this.groupControl3.Controls.Add(this.btn3Category_AddAll);
     this.groupControl3.Location = new System.Drawing.Point(0, 8);
     this.groupControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.ShowCaption = false;
     this.groupControl3.Size = new System.Drawing.Size(896, 152);
     this.groupControl3.TabIndex = 8;
     this.groupControl3.Text = "groupControl1";
     //
     // grid3Category2
     //
     //
     // grid3Category2.EmbeddedNavigator
     //
     this.grid3Category2.EmbeddedNavigator.Name = "";
     this.grid3Category2.Location = new System.Drawing.Point(456, 8);
     this.grid3Category2.MainView = this.gridView3Category2;
     this.grid3Category2.Name = "grid3Category2";
     this.grid3Category2.Size = new System.Drawing.Size(376, 136);
     this.grid3Category2.TabIndex = 29;
     this.grid3Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView3Category2});
     //
     // gridView3Category2
     //
     this.gridView3Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn23,
                                                                                               this.gridColumn24,
                                                                                               this.gridColumn25});
     this.gridView3Category2.GridControl = this.grid3Category2;
     this.gridView3Category2.Name = "gridView3Category2";
     this.gridView3Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category2.OptionsCustomization.AllowFilter = false;
     this.gridView3Category2.OptionsSelection.MultiSelect = true;
     this.gridView3Category2.OptionsView.ShowGroupPanel = false;
     this.gridView3Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView3Category2.SynchronizeClones = false;
     this.gridView3Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridManager_FocusedRowChanged);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "CategoryID";
     this.gridColumn23.FieldName = "nCategoryID";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 78;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Description";
     this.gridColumn24.FieldName = "strDescription";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 171;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "%";
     this.gridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn25.FieldName = "Percentage";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Width = 73;
     //
     // grid3Category
     //
     //
     // grid3Category.EmbeddedNavigator
     //
     this.grid3Category.EmbeddedNavigator.Name = "";
     this.grid3Category.Location = new System.Drawing.Point(8, 8);
     this.grid3Category.MainView = this.gridView3Category;
     this.grid3Category.Name = "grid3Category";
     this.grid3Category.Size = new System.Drawing.Size(360, 136);
     this.grid3Category.TabIndex = 24;
     this.grid3Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView3Category});
     //
     // gridView3Category
     //
     this.gridView3Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn26,
                                                                                              this.gridColumn27});
     this.gridView3Category.GridControl = this.grid3Category;
     this.gridView3Category.Name = "gridView3Category";
     this.gridView3Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category.OptionsBehavior.Editable = false;
     this.gridView3Category.OptionsCustomization.AllowFilter = false;
     this.gridView3Category.OptionsSelection.MultiSelect = true;
     this.gridView3Category.OptionsView.ShowGroupPanel = false;
     this.gridView3Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn26, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "CategoryID";
     this.gridColumn26.FieldName = "nCategoryID";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     this.gridColumn26.Width = 78;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Description";
     this.gridColumn27.FieldName = "strDescription";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     this.gridColumn27.Width = 268;
     //
     // btn3Category_Add
     //
     this.btn3Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn3Category_Add.Name = "btn3Category_Add";
     this.btn3Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Add.TabIndex = 25;
     this.btn3Category_Add.Text = ">";
     this.btn3Category_Add.Click += new System.EventHandler(this.btn3Category_Add_Click);
     //
     // btn3Category_Del
     //
     this.btn3Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn3Category_Del.Name = "btn3Category_Del";
     this.btn3Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Del.TabIndex = 28;
     this.btn3Category_Del.Text = "<";
     this.btn3Category_Del.Click += new System.EventHandler(this.btn3Category_Del_Click);
     //
     // btn3Category_DelAll
     //
     this.btn3Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn3Category_DelAll.Name = "btn3Category_DelAll";
     this.btn3Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_DelAll.TabIndex = 27;
     this.btn3Category_DelAll.Text = "<<";
     this.btn3Category_DelAll.Click += new System.EventHandler(this.btn3Category_DelAll_Click);
     //
     // btn3Category_AddAll
     //
     this.btn3Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn3Category_AddAll.Name = "btn3Category_AddAll";
     this.btn3Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_AddAll.TabIndex = 26;
     this.btn3Category_AddAll.Text = ">>";
     this.btn3Category_AddAll.Click += new System.EventHandler(this.btn3Category_AddAll_Click);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.btn_Add2);
     this.xtraTabPage1.Controls.Add(this.btn_del2);
     this.xtraTabPage1.Controls.Add(this.gridControlMd_SalesCommisionSchemeEntries);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.PageEnabled = false;
     this.xtraTabPage1.PageVisible = false;
     this.xtraTabPage1.Size = new System.Drawing.Size(948, 315);
     this.xtraTabPage1.Text = "xtraTabPage1";
     //
     // btn_Add2
     //
     this.btn_Add2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add2.Appearance.Options.UseFont = true;
     this.btn_Add2.Appearance.Options.UseTextOptions = true;
     this.btn_Add2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add2.ImageIndex = 0;
     this.btn_Add2.ImageList = this.imageList1;
     this.btn_Add2.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add2.Location = new System.Drawing.Point(0, 8);
     this.btn_Add2.Name = "btn_Add2";
     this.btn_Add2.Size = new System.Drawing.Size(38, 20);
     this.btn_Add2.TabIndex = 138;
     //
     // btn_del2
     //
     this.btn_del2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_del2.Appearance.Options.UseFont = true;
     this.btn_del2.Appearance.Options.UseTextOptions = true;
     this.btn_del2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_del2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_del2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_del2.ImageIndex = 1;
     this.btn_del2.ImageList = this.imageList1;
     this.btn_del2.Location = new System.Drawing.Point(40, 8);
     this.btn_del2.Name = "btn_del2";
     this.btn_del2.Size = new System.Drawing.Size(38, 20);
     this.btn_del2.TabIndex = 137;
     //
     // gridControlMd_SalesCommisionSchemeEntries
     //
     this.gridControlMd_SalesCommisionSchemeEntries.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionSchemeEntries.Location = new System.Drawing.Point(0, 131);
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_SalesCommisionSchemeEntries.MainView = this.gridViewMd_SalesCommissionSchemeEntries;
     this.gridControlMd_SalesCommisionSchemeEntries.Name = "gridControlMd_SalesCommisionSchemeEntries";
     this.gridControlMd_SalesCommisionSchemeEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                        this.repositoryItemComboBox1});
     this.gridControlMd_SalesCommisionSchemeEntries.Size = new System.Drawing.Size(948, 184);
     this.gridControlMd_SalesCommisionSchemeEntries.TabIndex = 96;
     this.gridControlMd_SalesCommisionSchemeEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                              this.gridViewMd_SalesCommissionSchemeEntries});
     //
     // gridViewMd_SalesCommissionSchemeEntries
     //
     this.gridViewMd_SalesCommissionSchemeEntries.Appearance.FocusedRow.BackColor = System.Drawing.Color.White;
     this.gridViewMd_SalesCommissionSchemeEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                                    this.gridColumn17,
                                                                                                                    this.gridColumnMdSCE2,
                                                                                                                    this.gridColumnMdSCE3,
                                                                                                                    this.gridColumnMdSCE4,
                                                                                                                    this.gridColumnMdSCE5,
                                                                                                                    this.gridColumnMdSCE6,
                                                                                                                    this.gridColumnMdSCE7,
                                                                                                                    this.gridColumnMdSCE8,
                                                                                                                    this.gridColumnMdSCE9,
                                                                                                                    this.gridColumnMdSCE10,
                                                                                                                    this.gridColumnMdSCE11,
                                                                                                                    this.gridColumnMdSCE12,
                                                                                                                    this.gridColumnMdSCE13,
                                                                                                                    this.gridColumnMdSCE14,
                                                                                                                    this.gridColumnMdSCE15,
                                                                                                                    this.gridColumnMdSCE16,
                                                                                                                    this.gridColumnMdSCE17,
                                                                                                                    this.gridColumnMdSCE18,
                                                                                                                    this.gridColumnMdSCE19,
                                                                                                                    this.gridColumnMdSCE20,
                                                                                                                    this.gridColumnMdSCE21,
                                                                                                                    this.gridColumn1,
                                                                                                                    this.gridColumn2,
                                                                                                                    this.gridColumn3,
                                                                                                                    this.gridColumn4,
                                                                                                                    this.gridColumn5,
                                                                                                                    this.gridColumn6,
                                                                                                                    this.gridColumn7,
                                                                                                                    this.gridColumn8,
                                                                                                                    this.gridColumn9,
                                                                                                                    this.gridColumn10,
                                                                                                                    this.gridColumn11,
                                                                                                                    this.gridColumn12,
                                                                                                                    this.gridColumn13,
                                                                                                                    this.gridColumn14,
                                                                                                                    this.gridColumn15,
                                                                                                                    this.gridColumn16});
     this.gridViewMd_SalesCommissionSchemeEntries.GridControl = this.gridControlMd_SalesCommisionSchemeEntries;
     this.gridViewMd_SalesCommissionSchemeEntries.Name = "gridViewMd_SalesCommissionSchemeEntries";
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Priority ID";
     this.gridColumn17.FieldName = "nPriorityID";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     //
     // gridColumnMdSCE2
     //
     this.gridColumnMdSCE2.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE2.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE2.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE2.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE2.FieldName = "nFitnessPackageBranchTargetPercent";
     this.gridColumnMdSCE2.MinWidth = 30;
     this.gridColumnMdSCE2.Name = "gridColumnMdSCE2";
     this.gridColumnMdSCE2.Visible = true;
     this.gridColumnMdSCE2.VisibleIndex = 1;
     this.gridColumnMdSCE2.Width = 80;
     //
     // gridColumnMdSCE3
     //
     this.gridColumnMdSCE3.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE3.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE3.Caption = "Fitness Prod %";
     this.gridColumnMdSCE3.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE3.FieldName = "nFitnessProductBranchTargetPercent";
     this.gridColumnMdSCE3.MinWidth = 30;
     this.gridColumnMdSCE3.Name = "gridColumnMdSCE3";
     this.gridColumnMdSCE3.Visible = true;
     this.gridColumnMdSCE3.VisibleIndex = 2;
     this.gridColumnMdSCE3.Width = 80;
     //
     // gridColumnMdSCE4
     //
     this.gridColumnMdSCE4.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE4.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE4.Caption = "SPA Pkg %";
     this.gridColumnMdSCE4.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE4.FieldName = "nSPAPackageBranchTargetPercent";
     this.gridColumnMdSCE4.MinWidth = 30;
     this.gridColumnMdSCE4.Name = "gridColumnMdSCE4";
     this.gridColumnMdSCE4.Visible = true;
     this.gridColumnMdSCE4.VisibleIndex = 3;
     this.gridColumnMdSCE4.Width = 80;
     //
     // gridColumnMdSCE5
     //
     this.gridColumnMdSCE5.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE5.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE5.Caption = "SPA Prod %";
     this.gridColumnMdSCE5.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE5.FieldName = "nSPAProductBranchTargetPercent";
     this.gridColumnMdSCE5.Name = "gridColumnMdSCE5";
     this.gridColumnMdSCE5.Visible = true;
     this.gridColumnMdSCE5.VisibleIndex = 4;
     this.gridColumnMdSCE5.Width = 80;
     //
     // gridColumnMdSCE6
     //
     this.gridColumnMdSCE6.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE6.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE6.Caption = "PT Pkg %";
     this.gridColumnMdSCE6.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE6.FieldName = "nPTPackageBranchTargetPercent";
     this.gridColumnMdSCE6.Name = "gridColumnMdSCE6";
     this.gridColumnMdSCE6.Visible = true;
     this.gridColumnMdSCE6.VisibleIndex = 5;
     this.gridColumnMdSCE6.Width = 60;
     //
     // gridColumnMdSCE7
     //
     this.gridColumnMdSCE7.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE7.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE7.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE7.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE7.FieldName = "nFitnessPackageIndTargetPercent";
     this.gridColumnMdSCE7.Name = "gridColumnMdSCE7";
     this.gridColumnMdSCE7.Visible = true;
     this.gridColumnMdSCE7.VisibleIndex = 6;
     this.gridColumnMdSCE7.Width = 80;
     //
     // gridColumnMdSCE8
     //
     this.gridColumnMdSCE8.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE8.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE8.Caption = "Fitness Prod %";
     this.gridColumnMdSCE8.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE8.FieldName = "nFitnessProductIndTargetPercent";
     this.gridColumnMdSCE8.Name = "gridColumnMdSCE8";
     this.gridColumnMdSCE8.Visible = true;
     this.gridColumnMdSCE8.VisibleIndex = 7;
     this.gridColumnMdSCE8.Width = 80;
     //
     // gridColumnMdSCE9
     //
     this.gridColumnMdSCE9.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE9.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE9.Caption = "SPA Pkg %";
     this.gridColumnMdSCE9.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE9.FieldName = "nSPAPackageIndTargetPercent";
     this.gridColumnMdSCE9.Name = "gridColumnMdSCE9";
     this.gridColumnMdSCE9.Visible = true;
     this.gridColumnMdSCE9.VisibleIndex = 8;
     this.gridColumnMdSCE9.Width = 80;
     //
     // gridColumnMdSCE10
     //
     this.gridColumnMdSCE10.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE10.Caption = "SPA Prod %";
     this.gridColumnMdSCE10.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE10.FieldName = "nSPAProductIndTargetPercent";
     this.gridColumnMdSCE10.Name = "gridColumnMdSCE10";
     this.gridColumnMdSCE10.Visible = true;
     this.gridColumnMdSCE10.VisibleIndex = 9;
     this.gridColumnMdSCE10.Width = 80;
     //
     // gridColumnMdSCE11
     //
     this.gridColumnMdSCE11.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE11.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE11.Caption = "PT Pkg %";
     this.gridColumnMdSCE11.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE11.FieldName = "nPTPackageIndTargetPercent";
     this.gridColumnMdSCE11.Name = "gridColumnMdSCE11";
     this.gridColumnMdSCE11.Visible = true;
     this.gridColumnMdSCE11.VisibleIndex = 10;
     this.gridColumnMdSCE11.Width = 80;
     //
     // gridColumnMdSCE12
     //
     this.gridColumnMdSCE12.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE12.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE12.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE12.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE12.FieldName = "nFitnessPackageBranchExcess";
     this.gridColumnMdSCE12.Name = "gridColumnMdSCE12";
     this.gridColumnMdSCE12.Visible = true;
     this.gridColumnMdSCE12.VisibleIndex = 11;
     this.gridColumnMdSCE12.Width = 100;
     //
     // gridColumnMdSCE13
     //
     this.gridColumnMdSCE13.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE13.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE13.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE13.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE13.FieldName = "nFitnessProductBranchExcess";
     this.gridColumnMdSCE13.Name = "gridColumnMdSCE13";
     this.gridColumnMdSCE13.Visible = true;
     this.gridColumnMdSCE13.VisibleIndex = 12;
     this.gridColumnMdSCE13.Width = 100;
     //
     // gridColumnMdSCE14
     //
     this.gridColumnMdSCE14.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE14.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE14.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE14.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE14.FieldName = "nSpaPackageBranchExcess";
     this.gridColumnMdSCE14.Name = "gridColumnMdSCE14";
     this.gridColumnMdSCE14.Visible = true;
     this.gridColumnMdSCE14.VisibleIndex = 13;
     this.gridColumnMdSCE14.Width = 90;
     //
     // gridColumnMdSCE15
     //
     this.gridColumnMdSCE15.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE15.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE15.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE15.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE15.FieldName = "nSpaProductBranchExcess";
     this.gridColumnMdSCE15.Name = "gridColumnMdSCE15";
     this.gridColumnMdSCE15.Visible = true;
     this.gridColumnMdSCE15.VisibleIndex = 14;
     this.gridColumnMdSCE15.Width = 90;
     //
     // gridColumnMdSCE16
     //
     this.gridColumnMdSCE16.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE16.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE16.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE16.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE16.FieldName = "nPTPackageBranchExcess";
     this.gridColumnMdSCE16.Name = "gridColumnMdSCE16";
     this.gridColumnMdSCE16.Visible = true;
     this.gridColumnMdSCE16.VisibleIndex = 15;
     this.gridColumnMdSCE16.Width = 90;
     //
     // gridColumnMdSCE17
     //
     this.gridColumnMdSCE17.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE17.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE17.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE17.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE17.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE17.FieldName = "nFitnessPackageIndExcess";
     this.gridColumnMdSCE17.Name = "gridColumnMdSCE17";
     this.gridColumnMdSCE17.Visible = true;
     this.gridColumnMdSCE17.VisibleIndex = 16;
     this.gridColumnMdSCE17.Width = 100;
     //
     // gridColumnMdSCE18
     //
     this.gridColumnMdSCE18.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE18.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE18.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE18.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE18.FieldName = "nFitnessProductIndExcess";
     this.gridColumnMdSCE18.Name = "gridColumnMdSCE18";
     this.gridColumnMdSCE18.Visible = true;
     this.gridColumnMdSCE18.VisibleIndex = 17;
     this.gridColumnMdSCE18.Width = 90;
     //
     // gridColumnMdSCE19
     //
     this.gridColumnMdSCE19.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE19.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE19.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE19.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE19.FieldName = "nSPAPackageIndExcess";
     this.gridColumnMdSCE19.Name = "gridColumnMdSCE19";
     this.gridColumnMdSCE19.Visible = true;
     this.gridColumnMdSCE19.VisibleIndex = 18;
     this.gridColumnMdSCE19.Width = 90;
     //
     // gridColumnMdSCE20
     //
     this.gridColumnMdSCE20.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE20.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE20.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE20.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE20.FieldName = "nSPAProductIndExcess";
     this.gridColumnMdSCE20.Name = "gridColumnMdSCE20";
     this.gridColumnMdSCE20.Visible = true;
     this.gridColumnMdSCE20.VisibleIndex = 19;
     this.gridColumnMdSCE20.Width = 90;
     //
     // gridColumnMdSCE21
     //
     this.gridColumnMdSCE21.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE21.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE21.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE21.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE21.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE21.FieldName = "nPTPackageIndExcess";
     this.gridColumnMdSCE21.Name = "gridColumnMdSCE21";
     this.gridColumnMdSCE21.Visible = true;
     this.gridColumnMdSCE21.VisibleIndex = 20;
     this.gridColumnMdSCE21.Width = 90;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Fitness Pkg Branch Comm %";
     this.gridColumn1.DisplayFormat.FormatString = "f";
     this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn1.FieldName = "nFitnessPackageBranchPercentComm";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 21;
     this.gridColumn1.Width = 150;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Fitness Prod Branch Comm %";
     this.gridColumn2.DisplayFormat.FormatString = "f";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn2.FieldName = "nFitnessProductBranchPercentComm";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 22;
     this.gridColumn2.Width = 150;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "SPA Pkg Branch Comm %";
     this.gridColumn3.DisplayFormat.FormatString = "f";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.FieldName = "nSpaPackageBranchPercentComm";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 23;
     this.gridColumn3.Width = 150;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "SPA Prod Branch Comm %";
     this.gridColumn4.DisplayFormat.FormatString = "f";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "nSpaProductBranchPercentComm";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 24;
     this.gridColumn4.Width = 150;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "PT Pkg Branch Comm %";
     this.gridColumn5.DisplayFormat.FormatString = "f";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nPTPackageBranchPercentComm";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 25;
     this.gridColumn5.Width = 150;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Fitness Pkg Branch Shared Comm %";
     this.gridColumn6.DisplayFormat.FormatString = "f";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nFitnessPackageBranchPercentSharedComm";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 26;
     this.gridColumn6.Width = 130;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Fitness Prod Branch Shared Comm %";
     this.gridColumn7.DisplayFormat.FormatString = "f";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "nFitnessProductBranchPercentSharedComm";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 27;
     this.gridColumn7.Width = 130;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "SPA Pkg Branch Shared Comm %";
     this.gridColumn8.DisplayFormat.FormatString = "f";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "nSpaPackageBranchPercentSharedComm";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 28;
     this.gridColumn8.Width = 130;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "SPA Prod Branch Shared Comm %";
     this.gridColumn9.DisplayFormat.FormatString = "f";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "nSpaProductBranchPercentSharedComm";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 29;
     this.gridColumn9.Width = 130;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "PT Pkg Branch Shared Comm %";
     this.gridColumn10.DisplayFormat.FormatString = "f";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn10.FieldName = "nPTPackageBranchPercentSharedComm";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 30;
     this.gridColumn10.Width = 130;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Fitness Pkg Branch Individual Comm %";
     this.gridColumn11.DisplayFormat.FormatString = "f";
     this.gridColumn11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn11.FieldName = "nFitnessPackageIndPercentComm";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 31;
     this.gridColumn11.Width = 140;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Fitness Prod Branch Individual Comm %";
     this.gridColumn12.DisplayFormat.FormatString = "f";
     this.gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn12.FieldName = "nFitnessProductIndPercentComm";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 32;
     this.gridColumn12.Width = 140;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "SPA Pkg Branch Individual Comm %";
     this.gridColumn13.DisplayFormat.FormatString = "f";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn13.FieldName = "nSpaPackageIndPercentComm";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 33;
     this.gridColumn13.Width = 140;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "SPA Prod Branch Individual Comm %";
     this.gridColumn14.DisplayFormat.FormatString = "f";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn14.FieldName = "nSpaProductIndPercentComm";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 34;
     this.gridColumn14.Width = 140;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "PT Pkg Branch Individual Comm %";
     this.gridColumn15.DisplayFormat.FormatString = "f";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn15.FieldName = "nPTPackageIndPercentComm";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 35;
     this.gridColumn15.Width = 140;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Commission Amount";
     this.gridColumn16.DisplayFormat.FormatString = "f2";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn16.FieldName = "mCommissionAmount";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 36;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.DisplayFormat.FormatString = "f";
     this.repositoryItemComboBox1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.EditFormat.FormatString = "f";
     this.repositoryItemComboBox1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
                                                                  "1",
                                                                  "2",
                                                                  "3",
                                                                  "4",
                                                                  "5"});
     this.repositoryItemComboBox1.Mask.EditMask = "f";
     this.repositoryItemComboBox1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // mdCM_tabInstructorCommision
     //
     this.mdCM_tabInstructorCommision.Controls.Add(this.tabControlInstructorCommission);
     this.mdCM_tabInstructorCommision.Name = "mdCM_tabInstructorCommision";
     this.mdCM_tabInstructorCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabInstructorCommision.Text = "Instructor Commission";
     //
     // tabControlInstructorCommission
     //
     this.tabControlInstructorCommission.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabControlInstructorCommission.Appearance.Options.UseBackColor = true;
     this.tabControlInstructorCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlInstructorCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlInstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlInstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.tabControlInstructorCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlInstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlInstructorCommission.Name = "tabControlInstructorCommission";
     this.tabControlInstructorCommission.SelectedTabPage = this.tabPageInstructorType;
     this.tabControlInstructorCommission.Size = new System.Drawing.Size(954, 483);
     this.tabControlInstructorCommission.TabIndex = 1;
     this.tabControlInstructorCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                                    this.tabPageInstructorType,
                                                                                                    this.tabPageInstructorComm,
                                                                                                    this.tabPageInstructorTypeComm});
     this.tabControlInstructorCommission.Text = "xtraTabControl2";
     this.tabControlInstructorCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlInstructorCommission_SelectedPageChanged);
     //
     // tabPageInstructorType
     //
     this.tabPageInstructorType.Controls.Add(this.gridControlMd_InstructorType);
     this.tabPageInstructorType.Name = "tabPageInstructorType";
     this.tabPageInstructorType.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorType.Text = "Instructor Type";
     //
     // gridControlMd_InstructorType
     //
     this.gridControlMd_InstructorType.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorType.EmbeddedNavigator
     //
     this.gridControlMd_InstructorType.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorType.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorType.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorType.MainView = this.gridViewMdInstructor;
     this.gridControlMd_InstructorType.Name = "gridControlMd_InstructorType";
     this.gridControlMd_InstructorType.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                           this.repositoryItemComboBox2,
                                                                                                                           this.repositoryItemImageComboBox1});
     this.gridControlMd_InstructorType.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorType.TabIndex = 15;
     this.gridControlMd_InstructorType.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                 this.gridViewMdInstructor});
     //
     // gridViewMdInstructor
     //
     this.gridViewMdInstructor.ActiveFilterEnabled = false;
     this.gridViewMdInstructor.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnMdIT1,
                                                                                                 this.gridColumnMdIT2,
                                                                                                 this.gridColumnMdIT3});
     this.gridViewMdInstructor.GridControl = this.gridControlMd_InstructorType;
     this.gridViewMdInstructor.Name = "gridViewMdInstructor";
     this.gridViewMdInstructor.OptionsCustomization.AllowFilter = false;
     this.gridViewMdInstructor.OptionsCustomization.AllowSort = false;
     this.gridViewMdInstructor.OptionsView.ShowGroupPanel = false;
     this.gridViewMdInstructor.LostFocus += new System.EventHandler(this.gridViewMdInstructor_LostFocus);
     //
     // gridColumnMdIT1
     //
     this.gridColumnMdIT1.Caption = "Instructor Type";
     this.gridColumnMdIT1.FieldName = "nInstructorTypeID";
     this.gridColumnMdIT1.Name = "gridColumnMdIT1";
     this.gridColumnMdIT1.Visible = true;
     this.gridColumnMdIT1.VisibleIndex = 0;
     //
     // gridColumnMdIT2
     //
     this.gridColumnMdIT2.Caption = "Name";
     this.gridColumnMdIT2.FieldName = "strDescription";
     this.gridColumnMdIT2.MinWidth = 40;
     this.gridColumnMdIT2.Name = "gridColumnMdIT2";
     this.gridColumnMdIT2.Visible = true;
     this.gridColumnMdIT2.VisibleIndex = 2;
     //
     // gridColumnMdIT3
     //
     this.gridColumnMdIT3.Caption = "Bonus Type ID";
     this.gridColumnMdIT3.ColumnEdit = this.repositoryItemImageComboBox1;
     this.gridColumnMdIT3.FieldName = "nBonusTypeID";
     this.gridColumnMdIT3.Name = "gridColumnMdIT3";
     this.gridColumnMdIT3.Visible = true;
     this.gridColumnMdIT3.VisibleIndex = 1;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("No Bonus", 0, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Permenant Class", 1, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Class Taught", 2, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // tabPageInstructorComm
     //
     this.tabPageInstructorComm.Controls.Add(this.gridControlMd_InstructorCommission);
     this.tabPageInstructorComm.Name = "tabPageInstructorComm";
     this.tabPageInstructorComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorComm.Text = "Commission";
     //
     // gridControlMd_InstructorCommission
     //
     this.gridControlMd_InstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorCommission.MainView = this.gridViewMdIC;
     this.gridControlMd_InstructorCommission.Name = "gridControlMd_InstructorCommission";
     this.gridControlMd_InstructorCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorCommission.TabIndex = 14;
     this.gridControlMd_InstructorCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMdIC});
     //
     // gridViewMdIC
     //
     this.gridViewMdIC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                         this.gridColumnMdIC1,
                                                                                         this.gridColumnMdIC2});
     this.gridViewMdIC.GridControl = this.gridControlMd_InstructorCommission;
     this.gridViewMdIC.Name = "gridViewMdIC";
     this.gridViewMdIC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdIC.OptionsCustomization.AllowSort = false;
     this.gridViewMdIC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdIC.LostFocus += new System.EventHandler(this.gridViewMdIC_LostFocus);
     //
     // gridColumnMdIC1
     //
     this.gridColumnMdIC1.Caption = "Commission Code";
     this.gridColumnMdIC1.FieldName = "nCommissionTypeID";
     this.gridColumnMdIC1.Name = "gridColumnMdIC1";
     this.gridColumnMdIC1.Visible = true;
     this.gridColumnMdIC1.VisibleIndex = 0;
     //
     // gridColumnMdIC2
     //
     this.gridColumnMdIC2.Caption = "Description";
     this.gridColumnMdIC2.FieldName = "strDescription";
     this.gridColumnMdIC2.Name = "gridColumnMdIC2";
     this.gridColumnMdIC2.Visible = true;
     this.gridColumnMdIC2.VisibleIndex = 1;
     //
     // tabPageInstructorTypeComm
     //
     this.tabPageInstructorTypeComm.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.tabPageInstructorTypeComm.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPageInstructorTypeComm.Controls.Add(this.gridControlMd_InstructorTypeCommission);
     this.tabPageInstructorTypeComm.Name = "tabPageInstructorTypeComm";
     this.tabPageInstructorTypeComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorTypeComm.Text = "Instructor Type Commission";
     //
     // gridControlMd_InstructorTypeCommission
     //
     this.gridControlMd_InstructorTypeCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorTypeCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorTypeCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorTypeCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorTypeCommission.MainView = this.gridViewMdITC;
     this.gridControlMd_InstructorTypeCommission.Name = "gridControlMd_InstructorTypeCommission";
     this.gridControlMd_InstructorTypeCommission.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                     this.repositoryItemLookUpEdit1,
                                                                                                                                     this.repositoryItemLookUpEdit2});
     this.gridControlMd_InstructorTypeCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorTypeCommission.TabIndex = 14;
     this.gridControlMd_InstructorTypeCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                           this.gridViewMdITC});
     //
     // gridViewMdITC
     //
     this.gridViewMdITC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.gridColumnMdITC1,
                                                                                          this.gridColumnMdITC2,
                                                                                          this.gridColumnMdITC3});
     this.gridViewMdITC.GridControl = this.gridControlMd_InstructorTypeCommission;
     this.gridViewMdITC.Name = "gridViewMdITC";
     this.gridViewMdITC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdITC.OptionsCustomization.AllowSort = false;
     this.gridViewMdITC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdITC.LostFocus += new System.EventHandler(this.gridViewMdITC_LostFocus);
     //
     // gridColumnMdITC1
     //
     this.gridColumnMdITC1.Caption = "Instructor Type";
     this.gridColumnMdITC1.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumnMdITC1.FieldName = "nInstructorTypeID";
     this.gridColumnMdITC1.Name = "gridColumnMdITC1";
     this.gridColumnMdITC1.Visible = true;
     this.gridColumnMdITC1.VisibleIndex = 0;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // gridColumnMdITC2
     //
     this.gridColumnMdITC2.Caption = "Commission Type";
     this.gridColumnMdITC2.ColumnEdit = this.repositoryItemLookUpEdit2;
     this.gridColumnMdITC2.FieldName = "nCommissionTypeID";
     this.gridColumnMdITC2.Name = "gridColumnMdITC2";
     this.gridColumnMdITC2.Visible = true;
     this.gridColumnMdITC2.VisibleIndex = 1;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // gridColumnMdITC3
     //
     this.gridColumnMdITC3.Caption = "Commission Amount";
     this.gridColumnMdITC3.FieldName = "mCommissionAmount";
     this.gridColumnMdITC3.Name = "gridColumnMdITC3";
     this.gridColumnMdITC3.Visible = true;
     this.gridColumnMdITC3.VisibleIndex = 2;
     //
     // mdCM_tabPTCommision
     //
     this.mdCM_tabPTCommision.Controls.Add(this.gridControlMd_PTCommission);
     this.mdCM_tabPTCommision.Name = "mdCM_tabPTCommision";
     this.mdCM_tabPTCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabPTCommision.Text = "PT Commission";
     //
     // gridControlMd_PTCommission
     //
     this.gridControlMd_PTCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_PTCommission.EmbeddedNavigator
     //
     this.gridControlMd_PTCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_PTCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PTCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_PTCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_PTCommission.MainView = this.gridViewPTCommission;
     this.gridControlMd_PTCommission.Name = "gridControlMd_PTCommission";
     this.gridControlMd_PTCommission.Size = new System.Drawing.Size(954, 483);
     this.gridControlMd_PTCommission.TabIndex = 15;
     this.gridControlMd_PTCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                               this.gridViewPTCommission,
                                                                                                               this.gridView2});
     //
     // gridViewPTCommission
     //
     this.gridViewPTCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnPT1,
                                                                                                 this.gridColumnPT2,
                                                                                                 this.gridColumnPT3});
     this.gridViewPTCommission.GridControl = this.gridControlMd_PTCommission;
     this.gridViewPTCommission.Name = "gridViewPTCommission";
     this.gridViewPTCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewPTCommission.OptionsCustomization.AllowSort = false;
     this.gridViewPTCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewPTCommission.LostFocus += new System.EventHandler(this.gridViewPTCommission_LostFocus);
     //
     // gridColumnPT1
     //
     this.gridColumnPT1.Caption = "Lower Limit";
     this.gridColumnPT1.DisplayFormat.FormatString = "f2";
     this.gridColumnPT1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT1.FieldName = "nLowerLimit";
     this.gridColumnPT1.Name = "gridColumnPT1";
     this.gridColumnPT1.Visible = true;
     this.gridColumnPT1.VisibleIndex = 0;
     //
     // gridColumnPT2
     //
     this.gridColumnPT2.Caption = "Upper Limit";
     this.gridColumnPT2.DisplayFormat.FormatString = "f2";
     this.gridColumnPT2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT2.FieldName = "nUpperLimit";
     this.gridColumnPT2.Name = "gridColumnPT2";
     this.gridColumnPT2.Visible = true;
     this.gridColumnPT2.VisibleIndex = 1;
     //
     // gridColumnPT3
     //
     this.gridColumnPT3.Caption = "Service Commission";
     this.gridColumnPT3.DisplayFormat.FormatString = "f2";
     this.gridColumnPT3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT3.FieldName = "mServiceCommission";
     this.gridColumnPT3.Name = "gridColumnPT3";
     this.gridColumnPT3.Visible = true;
     this.gridColumnPT3.VisibleIndex = 2;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControlMd_PTCommission;
     this.gridView2.Name = "gridView2";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(16, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 134;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(56, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 133;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // panelSalesCommission
     //
     this.panelSalesCommission.BackColor = System.Drawing.Color.Transparent;
     this.panelSalesCommission.Controls.Add(this.cmbYear);
     this.panelSalesCommission.Controls.Add(this.label12);
     this.panelSalesCommission.Controls.Add(this.lkBranch);
     this.panelSalesCommission.Controls.Add(this.label3);
     this.panelSalesCommission.Controls.Add(this.btn_Search);
     this.panelSalesCommission.Location = new System.Drawing.Point(176, 16);
     this.panelSalesCommission.Name = "panelSalesCommission";
     this.panelSalesCommission.Size = new System.Drawing.Size(792, 32);
     this.panelSalesCommission.TabIndex = 220;
     //
     // cmbYear
     //
     this.cmbYear.Location = new System.Drawing.Point(640, 8);
     this.cmbYear.Name = "cmbYear";
     //
     // cmbYear.Properties
     //
     this.cmbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbYear.Size = new System.Drawing.Size(48, 20);
     this.cmbYear.TabIndex = 221;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label12.Location = new System.Drawing.Point(600, 12);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 16);
     this.label12.TabIndex = 220;
     this.label12.Text = "Year";
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(472, 8);
     this.lkBranch.Name = "lkBranch";
     //
     // lkBranch.Properties
     //
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(112, 20);
     this.lkBranch.TabIndex = 149;
     this.lkBranch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Branch_KeyDown);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(392, 12);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.label3.TabIndex = 148;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(712, 8);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 219;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // frmCommission
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDCommision);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmCommission";
     this.Text = "frmCommission";
     this.Load += new System.EventHandler(this.frmCommission_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).EndInit();
     this.grpMDCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).EndInit();
     this.tabControlCommission.ResumeLayout(false);
     this.mdCM_tabSalesCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).EndInit();
     this.grpSubMDCommissionScheme.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).EndInit();
     this.tabControlCommissionEntry.ResumeLayout(false);
     this.tabMethodOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).EndInit();
     this.tabMethodTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).EndInit();
     this.tabMethodThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     this.mdCM_tabInstructorCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).EndInit();
     this.tabControlInstructorCommission.ResumeLayout(false);
     this.tabPageInstructorType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     this.tabPageInstructorComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).EndInit();
     this.tabPageInstructorTypeComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     this.mdCM_tabPTCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.panelSalesCommission.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmListarCotizaciones));
     this.gridViewOpciones = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Col_Numero = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_Fecha_Inicio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.Col_Fecha_Termino = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_Naviera = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.Col_Fecha_Creacion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_Fecha_Estado = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridSLeads = new DevExpress.XtraGrid.GridControl();
     this.gridViewSLeads = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColContacto = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColCuenta = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Checkbox = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.GridColumnFollowup = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.ImageCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.MenuSalir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuExcel = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripBarraLlamada = new System.Windows.Forms.ToolStrip();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.MenuEnviarAlCliente = new System.Windows.Forms.ToolStripButton();
     this.MenuCopiar = new System.Windows.Forms.ToolStripButton();
     this.MenuActualizar = new System.Windows.Forms.ToolStripButton();
     this.MenuFollowup = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.ListSemanas = new System.Windows.Forms.ToolStripComboBox();
     this.gridProspectos = new DevExpress.XtraEditors.GroupControl();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cboEstado = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtComentario = new DevExpress.XtraEditors.MemoEdit();
     this.btnGuardarComentario = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.gridComentarios = new DevExpress.XtraGrid.GridControl();
     this.gridViewComentario = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label3 = new System.Windows.Forms.Label();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.label4 = new System.Windows.Forms.Label();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.label5 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOpciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
     this.toolStripBarraLlamada.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).BeginInit();
     this.gridProspectos.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboEstado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComentario.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridComentarios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewComentario)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewOpciones
     //
     this.gridViewOpciones.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_Numero,
     this.Col_Fecha_Inicio,
     this.Col_Fecha_Termino,
     this.Col_Naviera,
     this.Col_Fecha_Creacion,
     this.Col_Fecha_Estado});
     this.gridViewOpciones.GridControl = this.gridSLeads;
     this.gridViewOpciones.Name = "gridViewOpciones";
     this.gridViewOpciones.OptionsBehavior.AutoSelectAllInEditor = false;
     this.gridViewOpciones.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gridViewOpciones.OptionsCustomization.AllowGroup = false;
     this.gridViewOpciones.OptionsDetail.EnableMasterViewMode = false;
     this.gridViewOpciones.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewOpciones.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridViewOpciones.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridViewOpciones.OptionsView.ShowChildrenInGroupPanel = true;
     this.gridViewOpciones.OptionsView.ShowGroupPanel = false;
     this.gridViewOpciones.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     this.gridViewOpciones.ViewCaption = "Opciones";
     this.gridViewOpciones.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewOpciones_FocusedRowChanged);
     this.gridViewOpciones.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.GridViewOpcionesCellValueChanging);
     //
     // Col_Numero
     //
     this.Col_Numero.Caption = "Numero";
     this.Col_Numero.FieldName = "Numero";
     this.Col_Numero.Name = "Col_Numero";
     this.Col_Numero.OptionsColumn.AllowEdit = false;
     this.Col_Numero.OptionsColumn.ReadOnly = true;
     this.Col_Numero.Visible = true;
     this.Col_Numero.VisibleIndex = 0;
     //
     // Col_Fecha_Inicio
     //
     this.Col_Fecha_Inicio.Caption = "Fecha Validez Inicio";
     this.Col_Fecha_Inicio.ColumnEdit = this.repositoryItemDateEdit1;
     this.Col_Fecha_Inicio.FieldName = "FechaValidesInicio";
     this.Col_Fecha_Inicio.Name = "Col_Fecha_Inicio";
     this.Col_Fecha_Inicio.OptionsColumn.AllowEdit = false;
     this.Col_Fecha_Inicio.OptionsColumn.AllowFocus = false;
     this.Col_Fecha_Inicio.OptionsColumn.ReadOnly = true;
     this.Col_Fecha_Inicio.Visible = true;
     this.Col_Fecha_Inicio.VisibleIndex = 1;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AllowFocused = false;
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     this.repositoryItemDateEdit1.ReadOnly = true;
     this.repositoryItemDateEdit1.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.Never;
     this.repositoryItemDateEdit1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.repositoryItemDateEdit1.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // Col_Fecha_Termino
     //
     this.Col_Fecha_Termino.Caption = "Fecha Validez Fin";
     this.Col_Fecha_Termino.FieldName = "FechaValidesFin";
     this.Col_Fecha_Termino.Name = "Col_Fecha_Termino";
     this.Col_Fecha_Termino.OptionsColumn.AllowEdit = false;
     this.Col_Fecha_Termino.OptionsColumn.ReadOnly = true;
     this.Col_Fecha_Termino.Visible = true;
     this.Col_Fecha_Termino.VisibleIndex = 2;
     //
     // Col_Naviera
     //
     this.Col_Naviera.Caption = "Naviera";
     this.Col_Naviera.ColumnEdit = this.repositoryItemTextEdit1;
     this.Col_Naviera.FieldName = "Naviera";
     this.Col_Naviera.Name = "Col_Naviera";
     this.Col_Naviera.OptionsColumn.AllowEdit = false;
     this.Col_Naviera.OptionsColumn.ReadOnly = true;
     this.Col_Naviera.Visible = true;
     this.Col_Naviera.VisibleIndex = 3;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemTextEdit1.ReadOnly = true;
     //
     // Col_Fecha_Creacion
     //
     this.Col_Fecha_Creacion.Caption = "Fecha de creacion";
     this.Col_Fecha_Creacion.FieldName = "FechaCreacion";
     this.Col_Fecha_Creacion.Name = "Col_Fecha_Creacion";
     this.Col_Fecha_Creacion.OptionsColumn.AllowEdit = false;
     this.Col_Fecha_Creacion.OptionsColumn.ReadOnly = true;
     this.Col_Fecha_Creacion.Visible = true;
     this.Col_Fecha_Creacion.VisibleIndex = 4;
     //
     // Col_Fecha_Estado
     //
     this.Col_Fecha_Estado.Caption = "Est";
     this.Col_Fecha_Estado.FieldName = "EstadoDescripcion";
     this.Col_Fecha_Estado.Name = "Col_Fecha_Estado";
     this.Col_Fecha_Estado.Visible = true;
     this.Col_Fecha_Estado.VisibleIndex = 5;
     //
     // gridSLeads
     //
     this.gridSLeads.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     gridLevelNode1.LevelTemplate = this.gridViewOpciones;
     gridLevelNode1.RelationName = "lvlOpciones";
     this.gridSLeads.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridSLeads.Location = new System.Drawing.Point(4, 23);
     this.gridSLeads.MainView = this.gridViewSLeads;
     this.gridSLeads.Name = "gridSLeads";
     this.gridSLeads.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit3,
     this.repositoryItemComboBox1,
     this.repositoryItemCheckEdit4,
     this.repositoryItemTextEdit1,
     this.repositoryItemDateEdit1,
     this.repositoryItemImageComboBox1});
     this.gridSLeads.Size = new System.Drawing.Size(1215, 305);
     this.gridSLeads.TabIndex = 3;
     this.gridSLeads.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewSLeads,
     this.gridViewOpciones});
     //
     // gridViewSLeads
     //
     this.gridViewSLeads.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn7,
     this.gridColContacto,
     this.gridColCuenta,
     this.gridColumn4,
     this.gridColumn2,
     this.Checkbox,
     this.GridColumnFollowup,
     this.gridColumn6});
     this.gridViewSLeads.CustomizationFormBounds = new System.Drawing.Rectangle(1054, 496, 216, 178);
     this.gridViewSLeads.GridControl = this.gridSLeads;
     this.gridViewSLeads.Name = "gridViewSLeads";
     this.gridViewSLeads.OptionsBehavior.AutoSelectAllInEditor = false;
     this.gridViewSLeads.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gridViewSLeads.OptionsCustomization.AllowGroup = false;
     this.gridViewSLeads.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewSLeads.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridViewSLeads.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridViewSLeads.OptionsView.ShowChildrenInGroupPanel = true;
     this.gridViewSLeads.OptionsView.ShowGroupPanel = false;
     this.gridViewSLeads.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     this.gridViewSLeads.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewSLeads_FocusedRowChanged);
     this.gridViewSLeads.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.GridViewSLeadsCellValueChanging);
     this.gridViewSLeads.MasterRowExpanded += new DevExpress.XtraGrid.Views.Grid.CustomMasterRowEventHandler(this.gridViewSLeads_MasterRowExpanded);
     this.gridViewSLeads.DoubleClick += new System.EventHandler(this.gridViewSLeads_DoubleClick);
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "N° Cotización";
     this.gridColumn3.FieldName = "Numero";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 112;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "Cliente";
     this.gridColumn7.FieldName = "Cliente";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     this.gridColumn7.Width = 312;
     //
     // gridColContacto
     //
     this.gridColContacto.Caption = "Fecha de Cotización";
     this.gridColContacto.FieldName = "FechaSolicitud";
     this.gridColContacto.Name = "gridColContacto";
     this.gridColContacto.OptionsColumn.AllowEdit = false;
     this.gridColContacto.OptionsColumn.ReadOnly = true;
     this.gridColContacto.Visible = true;
     this.gridColContacto.VisibleIndex = 1;
     this.gridColContacto.Width = 111;
     //
     // gridColCuenta
     //
     this.gridColCuenta.Caption = "Incoterms";
     this.gridColCuenta.FieldName = "IncoTerm.Codigo";
     this.gridColCuenta.Name = "gridColCuenta";
     this.gridColCuenta.OptionsColumn.AllowEdit = false;
     this.gridColCuenta.OptionsColumn.ReadOnly = true;
     this.gridColCuenta.Visible = true;
     this.gridColCuenta.VisibleIndex = 3;
     this.gridColCuenta.Width = 64;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Tipo";
     this.gridColumn4.FieldName = "Tipo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     this.gridColumn4.Width = 143;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Estado";
     this.gridColumn2.FieldName = "EstadoDescripcion";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 5;
     this.gridColumn2.Width = 93;
     //
     // Checkbox
     //
     this.Checkbox.Caption = "Seleccionado";
     this.Checkbox.ColumnEdit = this.repositoryItemCheckEdit3;
     this.Checkbox.FieldName = "Seleccionado";
     this.Checkbox.Name = "Checkbox";
     this.Checkbox.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.Checkbox.Visible = true;
     this.Checkbox.VisibleIndex = 8;
     this.Checkbox.Width = 95;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // GridColumnFollowup
     //
     this.GridColumnFollowup.Caption = "Followup";
     this.GridColumnFollowup.ColumnEdit = this.repositoryItemImageComboBox1;
     this.GridColumnFollowup.FieldName = "FollowUpIcon";
     this.GridColumnFollowup.Name = "GridColumnFollowup";
     this.GridColumnFollowup.Visible = true;
     this.GridColumnFollowup.VisibleIndex = 6;
     this.GridColumnFollowup.Width = 58;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 2),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 0)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     this.repositoryItemImageComboBox1.SmallImages = this.ImageCollection;
     //
     // ImageCollection
     //
     this.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImageCollection.ImageStream")));
     this.ImageCollection.Images.SetKeyName(0, "Baja Prioridad.png");
     this.ImageCollection.Images.SetKeyName(1, "Alta Prioridad.png");
     this.ImageCollection.Images.SetKeyName(2, "Media Prioridad.png");
     this.ImageCollection.Images.SetKeyName(3, "mail_get.png");
     this.ImageCollection.Images.SetKeyName(4, "mail_get.png");
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Prox. FollowUp";
     this.gridColumn6.FieldName = "NextFollowup";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 7;
     this.gridColumn6.Width = 206;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // ctrldxError
     //
     this.ctrldxError.ContainerControl = this;
     //
     // MenuSalir
     //
     this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
     this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuSalir.Name = "MenuSalir";
     this.MenuSalir.Size = new System.Drawing.Size(33, 35);
     this.MenuSalir.Text = "Salir";
     this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click_1);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 38);
     //
     // MenuExcel
     //
     this.MenuExcel.Image = ((System.Drawing.Image)(resources.GetObject("MenuExcel.Image")));
     this.MenuExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuExcel.Name = "MenuExcel";
     this.MenuExcel.Size = new System.Drawing.Size(37, 35);
     this.MenuExcel.Text = "Excel";
     this.MenuExcel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuExcel.Click += new System.EventHandler(this.MenuExcel_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 38);
     //
     // toolStripBarraLlamada
     //
     this.toolStripBarraLlamada.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripSeparator2,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.MenuEnviarAlCliente,
     this.MenuCopiar,
     this.MenuActualizar,
     this.MenuFollowup,
     this.toolStripSeparator4,
     this.MenuExcel,
     this.MenuSalir,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.ListSemanas});
     this.toolStripBarraLlamada.Location = new System.Drawing.Point(0, 0);
     this.toolStripBarraLlamada.Name = "toolStripBarraLlamada";
     this.toolStripBarraLlamada.Size = new System.Drawing.Size(1228, 38);
     this.toolStripBarraLlamada.TabIndex = 85;
     this.toolStripBarraLlamada.Text = "toolStrip1";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 38);
     //
     // toolStripButton2
     //
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(45, 35);
     this.toolStripButton2.Text = "Nueva";
     this.toolStripButton2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.toolStripButton2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolStripButton2.ToolTipText = "Tarifa Directa";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click_1);
     //
     // MenuEnviarAlCliente
     //
     this.MenuEnviarAlCliente.Image = ((System.Drawing.Image)(resources.GetObject("MenuEnviarAlCliente.Image")));
     this.MenuEnviarAlCliente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuEnviarAlCliente.Name = "MenuEnviarAlCliente";
     this.MenuEnviarAlCliente.Size = new System.Drawing.Size(93, 35);
     this.MenuEnviarAlCliente.Text = "Enviar al cliente";
     this.MenuEnviarAlCliente.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuEnviarAlCliente.Click += new System.EventHandler(this.MenuEnviarAlCliente_Click);
     //
     // MenuCopiar
     //
     this.MenuCopiar.Image = ((System.Drawing.Image)(resources.GetObject("MenuCopiar.Image")));
     this.MenuCopiar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuCopiar.Name = "MenuCopiar";
     this.MenuCopiar.Size = new System.Drawing.Size(46, 35);
     this.MenuCopiar.Text = "Copiar";
     this.MenuCopiar.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuCopiar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuCopiar.ToolTipText = "Copiar";
     this.MenuCopiar.Click += new System.EventHandler(this.MenuCopiar_Click);
     //
     // MenuActualizar
     //
     this.MenuActualizar.Image = ((System.Drawing.Image)(resources.GetObject("MenuActualizar.Image")));
     this.MenuActualizar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuActualizar.Name = "MenuActualizar";
     this.MenuActualizar.Size = new System.Drawing.Size(63, 35);
     this.MenuActualizar.Text = "Actualizar";
     this.MenuActualizar.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuActualizar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuActualizar.ToolTipText = "Actualizar";
     this.MenuActualizar.Click += new System.EventHandler(this.MenuActualizar_Click);
     //
     // MenuFollowup
     //
     this.MenuFollowup.Enabled = false;
     this.MenuFollowup.Image = ((System.Drawing.Image)(resources.GetObject("MenuFollowup.Image")));
     this.MenuFollowup.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFollowup.Name = "MenuFollowup";
     this.MenuFollowup.Size = new System.Drawing.Size(61, 35);
     this.MenuFollowup.Text = "FollowUp";
     this.MenuFollowup.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFollowup.Click += new System.EventHandler(this.MenuFollowup_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(54, 35);
     this.toolStripLabel1.Text = "Semanas";
     //
     // ListSemanas
     //
     this.ListSemanas.IntegralHeight = false;
     this.ListSemanas.Name = "ListSemanas";
     this.ListSemanas.Size = new System.Drawing.Size(121, 38);
     //
     // gridProspectos
     //
     this.gridProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridProspectos.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridProspectos.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.gridProspectos.AppearanceCaption.Options.UseFont = true;
     this.gridProspectos.AppearanceCaption.Options.UseForeColor = true;
     this.gridProspectos.Controls.Add(this.gridSLeads);
     this.gridProspectos.Location = new System.Drawing.Point(4, 46);
     this.gridProspectos.Name = "gridProspectos";
     this.gridProspectos.Size = new System.Drawing.Size(1224, 333);
     this.gridProspectos.TabIndex = 84;
     this.gridProspectos.Text = "Cotizaciones";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cboEstado);
     this.groupBox1.Controls.Add(this.txtComentario);
     this.groupBox1.Controls.Add(this.btnGuardarComentario);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.Color.Black;
     this.groupBox1.Location = new System.Drawing.Point(4, 385);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(435, 201);
     this.groupBox1.TabIndex = 90;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Comentarios y Cambio de estado";
     //
     // cboEstado
     //
     this.cboEstado.Location = new System.Drawing.Point(96, 27);
     this.cboEstado.Name = "cboEstado";
     this.cboEstado.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboEstado.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboEstado.Size = new System.Drawing.Size(210, 20);
     this.cboEstado.TabIndex = 92;
     //
     // txtComentario
     //
     this.txtComentario.Location = new System.Drawing.Point(96, 53);
     this.txtComentario.Name = "txtComentario";
     this.txtComentario.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtComentario.Properties.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.txtComentario.Properties.Appearance.Options.UseFont = true;
     this.txtComentario.Properties.Appearance.Options.UseForeColor = true;
     this.txtComentario.Size = new System.Drawing.Size(325, 109);
     this.txtComentario.TabIndex = 91;
     //
     // btnGuardarComentario
     //
     this.btnGuardarComentario.Image = ((System.Drawing.Image)(resources.GetObject("btnGuardarComentario.Image")));
     this.btnGuardarComentario.Location = new System.Drawing.Point(96, 162);
     this.btnGuardarComentario.Name = "btnGuardarComentario";
     this.btnGuardarComentario.Size = new System.Drawing.Size(42, 33);
     this.btnGuardarComentario.TabIndex = 90;
     this.btnGuardarComentario.UseVisualStyleBackColor = true;
     this.btnGuardarComentario.Click += new System.EventHandler(this.btnGuardarComentario_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(18, 58);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "Comentario";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(18, 29);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Estado";
     //
     // gridComentarios
     //
     this.gridComentarios.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridComentarios.Location = new System.Drawing.Point(445, 385);
     this.gridComentarios.MainView = this.gridViewComentario;
     this.gridComentarios.Name = "gridComentarios";
     this.gridComentarios.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2,
     this.repositoryItemComboBox2,
     this.repositoryItemCheckEdit1,
     this.repositoryItemTextEdit2,
     this.repositoryItemDateEdit2});
     this.gridComentarios.Size = new System.Drawing.Size(771, 201);
     this.gridComentarios.TabIndex = 4;
     this.gridComentarios.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewComentario,
     this.gridView1});
     //
     // gridViewComentario
     //
     this.gridViewComentario.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23});
     this.gridViewComentario.CustomizationFormBounds = new System.Drawing.Rectangle(1054, 496, 216, 178);
     this.gridViewComentario.GridControl = this.gridComentarios;
     this.gridViewComentario.Name = "gridViewComentario";
     this.gridViewComentario.OptionsBehavior.AutoSelectAllInEditor = false;
     this.gridViewComentario.OptionsBehavior.Editable = false;
     this.gridViewComentario.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gridViewComentario.OptionsCustomization.AllowGroup = false;
     this.gridViewComentario.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewComentario.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridViewComentario.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridViewComentario.OptionsView.ShowChildrenInGroupPanel = true;
     this.gridViewComentario.OptionsView.ShowGroupPanel = false;
     this.gridViewComentario.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     //
     // gridColumn20
     //
     this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn20.Caption = "Usuario";
     this.gridColumn20.FieldName = "Usuario.NombreUsuario";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsColumn.ReadOnly = true;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 0;
     this.gridColumn20.Width = 111;
     //
     // gridColumn21
     //
     this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn21.Caption = "Historial";
     this.gridColumn21.FieldName = "EsHistorial";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsColumn.ReadOnly = true;
     this.gridColumn21.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn21.Width = 73;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Comentario";
     this.gridColumn22.FieldName = "Observacion";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.ReadOnly = true;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 448;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Fecha";
     this.gridColumn23.DisplayFormat.FormatString = "d/M/yyyy HH:mm:ss";
     this.gridColumn23.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn23.FieldName = "Fecha";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.OptionsColumn.ReadOnly = true;
     this.gridColumn23.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 2;
     this.gridColumn23.Width = 141;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AllowFocused = false;
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     this.repositoryItemDateEdit2.ReadOnly = true;
     this.repositoryItemDateEdit2.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.Never;
     this.repositoryItemDateEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.repositoryItemDateEdit2.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn5,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19});
     this.gridView1.GridControl = this.gridComentarios;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
     this.gridView1.ViewCaption = "Cotizaciones";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Numero";
     this.gridColumn1.FieldName = "Numero";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Fecha Validez Inicio";
     this.gridColumn5.ColumnEdit = this.repositoryItemDateEdit2;
     this.gridColumn5.FieldName = "FechaValidesInicio";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Fecha Validez Fin";
     this.gridColumn15.FieldName = "FechaValidesFin";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.ReadOnly = true;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Naviera";
     this.gridColumn16.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn16.FieldName = "Naviera";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.OptionsColumn.ReadOnly = true;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 3;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Fecha de creacion";
     this.gridColumn17.FieldName = "FechaCreacion";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     this.gridColumn17.OptionsColumn.ReadOnly = true;
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 4;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Estado";
     this.gridColumn18.FieldName = "Estado";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.OptionsColumn.ReadOnly = true;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Checkbox";
     this.gridColumn19.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn19.FieldName = "Seleccionado";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 6;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::SCCMultimodal.Properties.Resources.Alta_Prioridad;
     this.pictureBox1.Location = new System.Drawing.Point(12, 592);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(17, 16);
     this.pictureBox1.TabIndex = 91;
     this.pictureBox1.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(35, 592);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 13);
     this.label3.TabIndex = 92;
     this.label3.Text = "Menor a 5 dias";
     //
     // pictureBox2
     //
     this.pictureBox2.Image = global::SCCMultimodal.Properties.Resources.Media_Prioridad;
     this.pictureBox2.Location = new System.Drawing.Point(153, 592);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(17, 16);
     this.pictureBox2.TabIndex = 93;
     this.pictureBox2.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(176, 592);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(76, 13);
     this.label4.TabIndex = 94;
     this.label4.Text = "Mayor a 5 dias";
     //
     // pictureBox3
     //
     this.pictureBox3.Image = global::SCCMultimodal.Properties.Resources.Baja_Prioridad;
     this.pictureBox3.Location = new System.Drawing.Point(293, 592);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(17, 16);
     this.pictureBox3.TabIndex = 95;
     this.pictureBox3.TabStop = false;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(315, 592);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(82, 13);
     this.label5.TabIndex = 96;
     this.label5.Text = "Mayor a 10 dias";
     //
     // FrmListarCotizaciones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1228, 614);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.pictureBox3);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.gridComentarios);
     this.Controls.Add(this.gridProspectos);
     this.Controls.Add(this.toolStripBarraLlamada);
     this.Controls.Add(this.groupBox1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FrmListarCotizaciones";
     this.Text = "Mis Cotizaciones";
     this.Load += new System.EventHandler(this.FrmListarTarifas_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmListarCotizaciones_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOpciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
     this.toolStripBarraLlamada.ResumeLayout(false);
     this.toolStripBarraLlamada.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).EndInit();
     this.gridProspectos.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboEstado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComentario.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridComentarios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewComentario)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GridMemberCard = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn225 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn234 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn235 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.mcard_lblNStatusID = new System.Windows.Forms.Label();
     this.cmbMemberCard = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnMemberCard_Reprint = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberCard_Print = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.grpMemberCardBelow = new DevExpress.XtraEditors.GroupControl();
     this.gcTransferMember = new DevExpress.XtraGrid.GridControl();
     this.gvTransferMember = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.txtMemberName = new DevExpress.XtraEditors.TextEdit();
     this.txtMemberID = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.btnCancelCard = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).BeginInit();
     this.grpMemberCardBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GridMemberCard
     //
     //
     // GridMemberCard.EmbeddedNavigator
     //
     this.GridMemberCard.EmbeddedNavigator.Name = "";
     this.GridMemberCard.Location = new System.Drawing.Point(16, 64);
     this.GridMemberCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.LookAndFeel.UseWindowsXPTheme = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                             this.repositoryItemImageComboBox1,
                                                                                                             this.repositoryItemImageComboBox2});
     this.GridMemberCard.Size = new System.Drawing.Size(936, 208);
     this.GridMemberCard.TabIndex = 8;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridViewMemberCard});
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.GridColumn225,
                                                                                               this.GridColumn234,
                                                                                               this.GridColumn235,
                                                                                               this.gridColumn25,
                                                                                               this.gridColumn1});
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMemberCard.OptionsCustomization.AllowFilter = false;
     this.gridViewMemberCard.OptionsSelection.MultiSelect = true;
     this.gridViewMemberCard.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     this.gridViewMemberCard.LostFocus += new System.EventHandler(this.gridViewMemberCard_LostFocus);
     //
     // GridColumn225
     //
     this.GridColumn225.Caption = "Membership ID";
     this.GridColumn225.FieldName = "strMembershipID";
     this.GridColumn225.Name = "GridColumn225";
     this.GridColumn225.OptionsColumn.AllowEdit = false;
     this.GridColumn225.Visible = true;
     this.GridColumn225.VisibleIndex = 0;
     this.GridColumn225.Width = 117;
     //
     // GridColumn234
     //
     this.GridColumn234.Caption = "Member Name";
     this.GridColumn234.FieldName = "strMemberName";
     this.GridColumn234.Name = "GridColumn234";
     this.GridColumn234.OptionsColumn.AllowEdit = false;
     this.GridColumn234.Visible = true;
     this.GridColumn234.VisibleIndex = 1;
     this.GridColumn234.Width = 161;
     //
     // GridColumn235
     //
     this.GridColumn235.Caption = "Source Branch";
     this.GridColumn235.FieldName = "BranchFrom";
     this.GridColumn235.Name = "GridColumn235";
     this.GridColumn235.OptionsColumn.AllowEdit = false;
     this.GridColumn235.Width = 190;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Collection Branch";
     this.gridColumn25.FieldName = "strBranchCode";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 2;
     this.gridColumn25.Width = 162;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Status";
     this.gridColumn1.ColumnEdit = this.repositoryItemImageComboBox1;
     this.gridColumn1.FieldName = "nStatusID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 3;
     this.gridColumn1.Width = 189;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // mcard_lblNStatusID
     //
     this.mcard_lblNStatusID.BackColor = System.Drawing.Color.Transparent;
     this.mcard_lblNStatusID.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mcard_lblNStatusID.Location = new System.Drawing.Point(16, 40);
     this.mcard_lblNStatusID.Name = "mcard_lblNStatusID";
     this.mcard_lblNStatusID.Size = new System.Drawing.Size(56, 16);
     this.mcard_lblNStatusID.TabIndex = 122;
     this.mcard_lblNStatusID.Text = "Status";
     //
     // cmbMemberCard
     //
     this.cmbMemberCard.Location = new System.Drawing.Point(72, 32);
     this.cmbMemberCard.Name = "cmbMemberCard";
     //
     // cmbMemberCard.Properties
     //
     this.cmbMemberCard.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbMemberCard.Properties.Items.AddRange(new object[] {
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1)});
     this.cmbMemberCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cmbMemberCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbMemberCard.Size = new System.Drawing.Size(160, 20);
     this.cmbMemberCard.TabIndex = 120;
     this.cmbMemberCard.SelectedIndexChanged += new System.EventHandler(this.cmbMemberCard_SelectedIndexChanged);
     //
     // btnMemberCard_Reprint
     //
     this.btnMemberCard_Reprint.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnMemberCard_Reprint.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Reprint.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Options.UseBackColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseFont = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseForeColor = true;
     this.btnMemberCard_Reprint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Reprint.Enabled = false;
     this.btnMemberCard_Reprint.Location = new System.Drawing.Point(384, 32);
     this.btnMemberCard_Reprint.Name = "btnMemberCard_Reprint";
     this.btnMemberCard_Reprint.Size = new System.Drawing.Size(140, 20);
     this.btnMemberCard_Reprint.TabIndex = 119;
     this.btnMemberCard_Reprint.Text = "Reprint Member Card";
     this.btnMemberCard_Reprint.Click += new System.EventHandler(this.btnMemberCard_Reprint_Click);
     //
     // btnMemberCard_Print
     //
     this.btnMemberCard_Print.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnMemberCard_Print.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Print.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Options.UseBackColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseFont = true;
     this.btnMemberCard_Print.Appearance.Options.UseForeColor = true;
     this.btnMemberCard_Print.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Print.Enabled = false;
     this.btnMemberCard_Print.Location = new System.Drawing.Point(248, 32);
     this.btnMemberCard_Print.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnMemberCard_Print.Name = "btnMemberCard_Print";
     this.btnMemberCard_Print.Size = new System.Drawing.Size(128, 20);
     this.btnMemberCard_Print.TabIndex = 118;
     this.btnMemberCard_Print.Text = "Print Member Card";
     this.btnMemberCard_Print.Click += new System.EventHandler(this.btnMemberCard_Print_Click);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.btnCancelCard);
     this.groupControl1.Controls.Add(this.grpMemberCardBelow);
     this.groupControl1.Controls.Add(this.btnMemberCard_Reprint);
     this.groupControl1.Controls.Add(this.mcard_lblNStatusID);
     this.groupControl1.Controls.Add(this.cmbMemberCard);
     this.groupControl1.Controls.Add(this.btnMemberCard_Print);
     this.groupControl1.Controls.Add(this.GridMemberCard);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(984, 541);
     this.groupControl1.TabIndex = 123;
     this.groupControl1.Text = "Member Card";
     //
     // grpMemberCardBelow
     //
     this.grpMemberCardBelow.Appearance.BackColor = System.Drawing.Color.White;
     this.grpMemberCardBelow.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpMemberCardBelow.Appearance.Options.UseBackColor = true;
     this.grpMemberCardBelow.Controls.Add(this.gcTransferMember);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberName);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberID);
     this.grpMemberCardBelow.Controls.Add(this.label2);
     this.grpMemberCardBelow.Controls.Add(this.label1);
     this.grpMemberCardBelow.Location = new System.Drawing.Point(16, 288);
     this.grpMemberCardBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMemberCardBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMemberCardBelow.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMemberCardBelow.Name = "grpMemberCardBelow";
     this.grpMemberCardBelow.Size = new System.Drawing.Size(936, 224);
     this.grpMemberCardBelow.TabIndex = 123;
     this.grpMemberCardBelow.Text = "In Transit Member Card";
     //
     // gcTransferMember
     //
     this.gcTransferMember.Dock = System.Windows.Forms.DockStyle.Left;
     //
     // gcTransferMember.EmbeddedNavigator
     //
     this.gcTransferMember.EmbeddedNavigator.Name = "";
     this.gcTransferMember.Location = new System.Drawing.Point(2, 20);
     this.gcTransferMember.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.gcTransferMember.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gcTransferMember.MainView = this.gvTransferMember;
     this.gcTransferMember.Name = "gcTransferMember";
     this.gcTransferMember.Size = new System.Drawing.Size(398, 202);
     this.gcTransferMember.TabIndex = 6;
     this.gcTransferMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gvTransferMember});
     //
     // gvTransferMember
     //
     this.gvTransferMember.GridControl = this.gcTransferMember;
     this.gvTransferMember.Name = "gvTransferMember";
     this.gvTransferMember.OptionsBehavior.Editable = false;
     this.gvTransferMember.OptionsCustomization.AllowColumnMoving = false;
     this.gvTransferMember.OptionsCustomization.AllowFilter = false;
     this.gvTransferMember.OptionsCustomization.AllowSort = false;
     this.gvTransferMember.OptionsView.ShowGroupPanel = false;
     //
     // txtMemberName
     //
     this.txtMemberName.EditValue = "";
     this.txtMemberName.Enabled = false;
     this.txtMemberName.Location = new System.Drawing.Point(536, 144);
     this.txtMemberName.Name = "txtMemberName";
     this.txtMemberName.Size = new System.Drawing.Size(224, 20);
     this.txtMemberName.TabIndex = 5;
     //
     // txtMemberID
     //
     this.txtMemberID.EditValue = "";
     this.txtMemberID.Enabled = false;
     this.txtMemberID.Location = new System.Drawing.Point(536, 96);
     this.txtMemberID.Name = "txtMemberID";
     //
     // txtMemberID.Properties
     //
     this.txtMemberID.Properties.Appearance.BackColor = System.Drawing.Color.LightBlue;
     this.txtMemberID.Properties.Appearance.Options.UseBackColor = true;
     this.txtMemberID.Size = new System.Drawing.Size(176, 20);
     this.txtMemberID.TabIndex = 4;
     this.txtMemberID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMemberID_KeyPress);
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(432, 144);
     this.label2.Name = "label2";
     this.label2.TabIndex = 3;
     this.label2.Text = "Member Name";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(432, 96);
     this.label1.Name = "label1";
     this.label1.TabIndex = 2;
     this.label1.Text = "Member ID";
     //
     // btnCancelCard
     //
     this.btnCancelCard.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnCancelCard.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancelCard.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Options.UseBackColor = true;
     this.btnCancelCard.Appearance.Options.UseBorderColor = true;
     this.btnCancelCard.Appearance.Options.UseFont = true;
     this.btnCancelCard.Appearance.Options.UseForeColor = true;
     this.btnCancelCard.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancelCard.Location = new System.Drawing.Point(544, 32);
     this.btnCancelCard.Name = "btnCancelCard";
     this.btnCancelCard.Size = new System.Drawing.Size(72, 20);
     this.btnCancelCard.TabIndex = 124;
     this.btnCancelCard.Text = "Cancel";
     this.btnCancelCard.Click += new System.EventHandler(this.btnCancelCard_Click);
     //
     // frmMemberCard
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(984, 541);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmMemberCard";
     this.Text = "Member Card";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmMemberCard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).EndInit();
     this.grpMemberCardBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #28
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(frmPromotionItem));
     this.gridViewMd_ItemPromotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn1   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GroupID    = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn2   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMd_ItemPromotion = new DevExpress.XtraGrid.GridControl();
     this.lk_PromotionCode            = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.lk_CategoryIDs     = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.lk_Code            = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.grpMDClass         = new DevExpress.XtraEditors.GroupControl();
     this.grpMDItemPromotion = new DevExpress.XtraEditors.GroupControl();
     this.btn_Del            = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.btn_Add            = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2      = new DevExpress.XtraEditors.GroupControl();
     this.btn_Search         = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch          = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).BeginInit();
     this.grpMDItemPromotion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewMd_ItemPromotion
     //
     this.gridViewMd_ItemPromotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn1,
         this.gridColumn2
     });
     this.gridViewMd_ItemPromotion.GridControl = this.gridControlMd_ItemPromotion;
     this.gridViewMd_ItemPromotion.Name        = "gridViewMd_ItemPromotion";
     this.gridViewMd_ItemPromotion.OptionsBehavior.Editable = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowFilter       = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowSort         = false;
     this.gridViewMd_ItemPromotion.OptionsView.ShowGroupPanel             = false;
     this.gridViewMd_ItemPromotion.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewMd_ItemPromotion_CellValueChanged);
     this.gridViewMd_ItemPromotion.DoubleClick      += new System.EventHandler(this.gridViewMd_ItemPromotion_DoubleClick);
     this.gridViewMd_ItemPromotion.LostFocus        += new System.EventHandler(this.gridViewMd_ItemPromotion_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Promotion Code";
     this.gridColumn3.FieldName    = "strPromotionCode";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Category Type";
     this.gridColumn4.ColumnEdit   = this.lk_CategoryID;
     this.gridColumn4.FieldName    = "nCategoryTypeID";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // lk_CategoryID
     //
     this.lk_CategoryID.AutoHeight = false;
     this.lk_CategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_CategoryID.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item or Product", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package Group", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Credit Package", 4, -1)
     });
     this.lk_CategoryID.Name = "lk_CategoryID";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Group";
     this.gridColumn1.ColumnEdit   = this.lk_GroupID;
     this.gridColumn1.FieldName    = "nGroupID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // lk_GroupID
     //
     this.lk_GroupID.AutoHeight = false;
     this.lk_GroupID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_GroupID.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Group", 1, -1)
     });
     this.lk_GroupID.Name = "lk_GroupID";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Code";
     this.gridColumn2.FieldName    = "strCode";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // gridControlMd_ItemPromotion
     //
     this.gridControlMd_ItemPromotion.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ItemPromotion.EmbeddedNavigator
     //
     this.gridControlMd_ItemPromotion.EmbeddedNavigator.Name = "";
     this.gridControlMd_ItemPromotion.Location          = new System.Drawing.Point(0, 0);
     this.gridControlMd_ItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ItemPromotion.MainView = this.gridViewMd_ItemPromotion;
     this.gridControlMd_ItemPromotion.Name     = "gridControlMd_ItemPromotion";
     this.gridControlMd_ItemPromotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.lk_PromotionCode,
         this.lk_CategoryIDs,
         this.lk_CategoryID,
         this.lk_GroupID,
         this.lk_Code
     });
     this.gridControlMd_ItemPromotion.Size     = new System.Drawing.Size(976, 444);
     this.gridControlMd_ItemPromotion.TabIndex = 126;
     this.gridControlMd_ItemPromotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMd_ItemPromotion
     });
     //
     // lk_PromotionCode
     //
     this.lk_PromotionCode.AutoHeight = false;
     this.lk_PromotionCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_PromotionCode.Name = "lk_PromotionCode";
     //
     // lk_CategoryIDs
     //
     this.lk_CategoryIDs.AutoHeight = false;
     this.lk_CategoryIDs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_CategoryIDs.Name = "lk_CategoryIDs";
     //
     // lk_Code
     //
     this.lk_Code.AutoHeight = false;
     this.lk_Code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_Code.Name = "lk_Code";
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.Controls.Add(this.grpMDItemPromotion);
     this.grpMDClass.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location          = new System.Drawing.Point(-5, -26);
     this.grpMDClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDClass.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMDClass.Name     = "grpMDClass";
     this.grpMDClass.Size     = new System.Drawing.Size(1021, 560);
     this.grpMDClass.TabIndex = 34;
     this.grpMDClass.Text     = "Class";
     //
     // grpMDItemPromotion
     //
     this.grpMDItemPromotion.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.grpMDItemPromotion.Appearance.Options.UseBackColor   = true;
     this.grpMDItemPromotion.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDItemPromotion.AppearanceCaption.Options.UseFont = true;
     this.grpMDItemPromotion.Controls.Add(this.btn_Del);
     this.grpMDItemPromotion.Controls.Add(this.btn_Add);
     this.grpMDItemPromotion.Controls.Add(this.groupControl2);
     this.grpMDItemPromotion.Controls.Add(this.btn_Search);
     this.grpMDItemPromotion.Controls.Add(this.txtSearch);
     this.grpMDItemPromotion.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDItemPromotion.Location          = new System.Drawing.Point(8, 24);
     this.grpMDItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDItemPromotion.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMDItemPromotion.Name     = "grpMDItemPromotion";
     this.grpMDItemPromotion.Size     = new System.Drawing.Size(1000, 504);
     this.grpMDItemPromotion.TabIndex = 138;
     this.grpMDItemPromotion.Text     = "Item Promotion";
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont        = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList  = this.imageList1;
     this.btn_Del.Location   = new System.Drawing.Point(48, 24);
     this.btn_Del.Name       = "btn_Del";
     this.btn_Del.Size       = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex   = 131;
     this.btn_Del.Click     += new System.EventHandler(this.btn_Del_Click);
     //
     // 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_Add
     //
     this.btn_Add.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont        = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList  = this.imageList1;
     this.btn_Add.ImeMode    = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location   = new System.Drawing.Point(8, 24);
     this.btn_Add.Name       = "btn_Add";
     this.btn_Add.Size       = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex   = 132;
     this.btn_Add.Click     += new System.EventHandler(this.btn_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_ItemPromotion);
     this.groupControl2.Location          = new System.Drawing.Point(8, 48);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme     = false;
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(976, 448);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text     = "Promotion Item";
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location    = new System.Drawing.Point(912, 24);
     this.btn_Search.Name        = "btn_Search";
     this.btn_Search.Size        = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex    = 137;
     this.btn_Search.Text        = "Search";
     this.btn_Search.Click      += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location  = new System.Drawing.Point(720, 24);
     this.txtSearch.Name      = "txtSearch";
     //
     // txtSearch.Properties
     //
     this.txtSearch.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont        = true;
     this.txtSearch.Properties.LookAndFeel.Style                 = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size     = new System.Drawing.Size(176, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // frmPromotionItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(1000, 509);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmPromotionItem";
     this.Text            = "Promotion Item";
     this.Load           += new System.EventHandler(this.frmPromotionItem_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).EndInit();
     this.grpMDItemPromotion.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pbSelect             = new System.Windows.Forms.PictureBox();
     this.txtFilePath          = new DevExpress.XtraEditors.TextEdit();
     this.label9               = new System.Windows.Forms.Label();
     this.btnCashVoucherImport = new DevExpress.XtraEditors.SimpleButton();
     this.groupCashVoucher     = new DevExpress.XtraEditors.GroupControl();
     this.cmbStatus            = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.lk_BranchCode        = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.components           = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCashVoucher));
     this.imageList1                = new System.Windows.Forms.ImageList(this.components);
     this.grpMDCashVoucherTop       = new DevExpress.XtraEditors.GroupControl();
     this.Searchpanel               = new System.Windows.Forms.Panel();
     this.btn_Search                = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch                 = new DevExpress.XtraEditors.TextEdit();
     this.btn_Add                   = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del                   = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_CashVoucher = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdCashVoucher     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnSV1             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV2             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV3             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV4             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV5             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV6             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV7             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV8             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV9             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnSV10            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV11            = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCashVoucherTop)).BeginInit();
     this.grpMDCashVoucherTop.SuspendLayout();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CashVoucher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdCashVoucher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // grpMDCashVoucherTop
     //
     this.grpMDCashVoucherTop.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.grpMDCashVoucherTop.Appearance.Options.UseBackColor   = true;
     this.grpMDCashVoucherTop.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDCashVoucherTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDCashVoucherTop.Controls.Add(this.Searchpanel);
     this.grpMDCashVoucherTop.Controls.Add(this.gridControlMd_CashVoucher);
     this.grpMDCashVoucherTop.Controls.Add(this.groupCashVoucher);
     this.grpMDCashVoucherTop.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDCashVoucherTop.Location          = new System.Drawing.Point(10, 0);
     this.grpMDCashVoucherTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDCashVoucherTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDCashVoucherTop.Name     = "grpMDCashVoucherTop";
     this.grpMDCashVoucherTop.Size     = new System.Drawing.Size(980, 592);
     this.grpMDCashVoucherTop.TabIndex = 91;
     this.grpMDCashVoucherTop.Text     = "Cash Voucher";
     //
     // Searchpanel
     //
     this.Searchpanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.Searchpanel.Controls.Add(btn_Add);
     this.Searchpanel.Controls.Add(btn_Del);
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(614, 48);
     this.Searchpanel.Name     = "Searchpanel";
     this.Searchpanel.Size     = new System.Drawing.Size(557, 27);
     this.Searchpanel.TabIndex = 152;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location    = new System.Drawing.Point(470, 0);
     this.btn_Search.Name        = "btn_Search";
     this.btn_Search.Size        = new System.Drawing.Size(68, 23);
     this.btn_Search.TabIndex    = 137;
     this.btn_Search.Text        = "Search";
     this.btn_Search.Click      += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.ImeMode   = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location  = new System.Drawing.Point(278, 0);
     this.txtSearch.Name      = "txtSearch";
     this.txtSearch.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont        = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size     = new System.Drawing.Size(183, 23);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Add.Appearance.Options.UseFont        = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList  = this.imageList1;
     this.btn_Add.ImeMode    = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location   = new System.Drawing.Point(10, 0);
     this.btn_Add.Name       = "btn_Add";
     this.btn_Add.Size       = new System.Drawing.Size(45, 18);
     this.btn_Add.TabIndex   = 132;
     this.btn_Add.Click     += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Del.Appearance.Options.UseFont        = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList  = this.imageList1;
     this.btn_Del.Location   = new System.Drawing.Point(58, 0);
     this.btn_Del.Name       = "btn_Del";
     this.btn_Del.Size       = new System.Drawing.Size(45, 18);
     this.btn_Del.TabIndex   = 131;
     this.btn_Del.Click     += new System.EventHandler(this.btn_Del_Click);
     //
     // gridControlMd_CashVoucher
     //
     this.gridControlMd_CashVoucher.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.gridControlMd_CashVoucher.Location = new System.Drawing.Point(2, 342);
     this.gridControlMd_CashVoucher.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CashVoucher.MainView = this.gridViewMdCashVoucher;
     this.gridControlMd_CashVoucher.Name     = "gridControlMd_CashVoucher";
     this.gridControlMd_CashVoucher.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemLookUpEdit1, this.lk_BranchCode
     });
     this.gridControlMd_CashVoucher.Size     = new System.Drawing.Size(998, 420);
     this.gridControlMd_CashVoucher.TabIndex = 19;
     this.gridControlMd_CashVoucher.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMdCashVoucher
     });
     //
     // lk_BranchCode
     //
     this.lk_BranchCode.AutoHeight = false;
     this.lk_BranchCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_BranchCode.Name = "lk_BranchCode";
     //
     // gridViewMdCashVoucher
     //
     this.gridViewMdCashVoucher.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumnSV1,
         this.gridColumnSV2,
         this.gridColumnSV3,
         this.gridColumnSV4,
         this.gridColumnSV5,
         this.gridColumnSV6,
         this.gridColumnSV7,
         this.gridColumnSV8,
         this.gridColumnSV9,
         this.gridColumnSV10,
         this.gridColumnSV11
     });
     this.gridViewMdCashVoucher.GridControl = this.gridControlMd_CashVoucher;
     this.gridViewMdCashVoucher.Name        = "gridViewMdCashVoucher";
     this.gridViewMdCashVoucher.OptionsCustomization.AllowFilter = false;
     this.gridViewMdCashVoucher.OptionsCustomization.AllowSort   = false;
     this.gridViewMdCashVoucher.OptionsView.ShowGroupPanel       = false;
     this.gridViewMdCashVoucher.LostFocus += new System.EventHandler(this.gridViewMdCashVoucher_LostFocus);
     //
     // gridColumnSV1
     //
     this.gridColumnSV1.Caption      = "SN";
     this.gridColumnSV1.FieldName    = "strSN";
     this.gridColumnSV1.Name         = "gridColumnSV1";
     this.gridColumnSV1.Visible      = true;
     this.gridColumnSV1.VisibleIndex = 0;
     this.gridColumnSV1.Width        = 93;
     //
     // gridColumnSV2
     //
     this.gridColumnSV2.Caption      = "Description";
     this.gridColumnSV2.FieldName    = "strDescription";
     this.gridColumnSV2.Name         = "gridColumnSV2";
     this.gridColumnSV2.Visible      = true;
     this.gridColumnSV2.VisibleIndex = 1;
     this.gridColumnSV2.Width        = 93;
     //
     // gridColumnSV3
     //
     this.gridColumnSV3.Caption      = "Description 2";
     this.gridColumnSV3.FieldName    = "strDescription2";
     this.gridColumnSV3.Name         = "gridColumnSV3";
     this.gridColumnSV3.Visible      = true;
     this.gridColumnSV3.VisibleIndex = 2;
     this.gridColumnSV3.Width        = 93;
     //
     // gridColumnSV4
     //
     this.gridColumnSV4.Caption      = "Status";
     this.gridColumnSV4.FieldName    = "nStatusID";
     this.gridColumnSV4.Name         = "gridColumnSV4";
     this.gridColumnSV4.Visible      = true;
     this.gridColumnSV4.VisibleIndex = 3;
     this.gridColumnSV4.Width        = 93;
     //
     // gridColumnSV5
     //
     this.gridColumnSV5.Caption      = "Start Date";
     this.gridColumnSV5.FieldName    = "dtStartDate";
     this.gridColumnSV5.Name         = "gridColumnSV5";
     this.gridColumnSV5.Visible      = true;
     this.gridColumnSV5.VisibleIndex = 4;
     this.gridColumnSV5.Width        = 93;
     //
     // gridColumnSV6
     //
     this.gridColumnSV6.Caption      = "Expiry Date";
     this.gridColumnSV6.FieldName    = "dtExpiryDate";
     this.gridColumnSV6.Name         = "gridColumnSV6";
     this.gridColumnSV6.Visible      = true;
     this.gridColumnSV6.VisibleIndex = 5;
     this.gridColumnSV6.Width        = 93;
     //
     // gridColumnSV7
     //
     this.gridColumnSV7.Caption      = "Cash Value";
     this.gridColumnSV7.FieldName    = "mValue";
     this.gridColumnSV7.Name         = "gridColumnSV7";
     this.gridColumnSV7.Visible      = true;
     this.gridColumnSV7.VisibleIndex = 6;
     this.gridColumnSV7.Width        = 93;
     //
     // gridColumnSV8
     //
     this.gridColumnSV8.Caption      = "Branch Code";
     this.gridColumnSV8.ColumnEdit   = this.lk_BranchCode;
     this.gridColumnSV8.FieldName    = "strBranchCode";
     this.gridColumnSV8.Name         = "gridColumnSV8";
     this.gridColumnSV8.Visible      = true;
     this.gridColumnSV8.VisibleIndex = 7;
     this.gridColumnSV8.Width        = 102;
     //
     // gridColumnSV11
     //
     this.gridColumnSV11.Caption      = "Terminal ID";
     this.gridColumnSV11.FieldName    = "nTerminalID";
     this.gridColumnSV11.Name         = "gridColumnSV11";
     this.gridColumnSV11.Visible      = true;
     this.gridColumnSV11.VisibleIndex = 8;
     this.gridColumnSV11.Width        = 93;
     //
     // gridColumnSV9
     //
     this.gridColumnSV9.Caption      = "Cash Voucher Type";
     this.gridColumnSV9.ColumnEdit   = this.repositoryItemLookUpEdit1;
     this.gridColumnSV9.FieldName    = "nCashVoucherTypeID";
     this.gridColumnSV9.Name         = "gridColumnSV9";
     this.gridColumnSV9.Visible      = true;
     this.gridColumnSV9.VisibleIndex = 8;
     this.gridColumnSV9.Width        = 94;
     //
     // cmbStatus
     //
     this.cmbStatus.AutoHeight = false;
     this.cmbStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbStatus.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 1, -1)
     });
     this.cmbStatus.Name = "cmbStatus";
     //
     // groupCashVoucher
     //
     this.groupCashVoucher.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupCashVoucher.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupCashVoucher.Appearance.Options.UseBackColor = true;
     this.groupCashVoucher.Controls.Add(this.pbSelect);
     this.groupCashVoucher.Controls.Add(this.txtFilePath);
     this.groupCashVoucher.Controls.Add(this.label9);
     this.groupCashVoucher.Controls.Add(this.btnCashVoucherImport);
     this.groupCashVoucher.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.groupCashVoucher.Location          = new System.Drawing.Point(10, 647);
     this.groupCashVoucher.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupCashVoucher.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCashVoucher.Name     = "groupCashVoucher";
     this.groupCashVoucher.Size     = new System.Drawing.Size(980, 110);
     this.groupCashVoucher.TabIndex = 19;
     this.groupCashVoucher.Text     = "Cash Voucher Import";
     //
     // pbSelect
     //
     this.pbSelect.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.pbSelect.ErrorImage   = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelect.Image        = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelect.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelect.Location     = new System.Drawing.Point(573, 42);
     this.pbSelect.Name         = "pbSelect";
     this.pbSelect.Size         = new System.Drawing.Size(20, 20);
     this.pbSelect.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbSelect.TabIndex     = 36;
     this.pbSelect.TabStop      = false;
     this.pbSelect.Click       += new System.EventHandler(this.pbSelect_Click);
     //
     // txtFilePath
     //
     this.txtFilePath.EditValue            = "";
     this.txtFilePath.Location             = new System.Drawing.Point(266, 43);
     this.txtFilePath.Name                 = "txtFilePath";
     this.txtFilePath.Properties.MaxLength = 255;
     this.txtFilePath.Properties.ReadOnly  = true;
     this.txtFilePath.Size                 = new System.Drawing.Size(301, 20);
     this.txtFilePath.TabIndex             = 35;
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location  = new System.Drawing.Point(125, 47);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(140, 16);
     this.label9.TabIndex  = 34;
     this.label9.Text      = "Select file to upload";
     //
     // btnCashVoucherImport
     //
     this.btnCashVoucherImport.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnCashVoucherImport.Appearance.Options.UseFont = true;
     this.btnCashVoucherImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCashVoucherImport.Location    = new System.Drawing.Point(521, 69);
     this.btnCashVoucherImport.Name        = "btnCashVoucherImport";
     this.btnCashVoucherImport.Size        = new System.Drawing.Size(72, 18);
     this.btnCashVoucherImport.TabIndex    = 12;
     this.btnCashVoucherImport.Text        = "Import";
     this.btnCashVoucherImport.Click      += new System.EventHandler(this.btnCashVoucherImport_Click);
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // gridColumnSV10
     //
     this.gridColumnSV10.Caption      = "Sell?";
     this.gridColumnSV10.FieldName    = "fSell";
     this.gridColumnSV10.Name         = "gridColumnSV10";
     this.gridColumnSV10.Visible      = true;
     this.gridColumnSV10.VisibleIndex = 9;
     this.gridColumnSV10.Width        = 88;
     //
     // frmCashVoucher
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.ClientSize    = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDCashVoucherTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmCashVoucher";
     this.Text            = "frmCashVoucher";
     this.Load           += new System.EventHandler(this.frmCashVoucher_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCashVoucherTop)).EndInit();
     this.grpMDCashVoucherTop.ResumeLayout(false);
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CashVoucher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdCashVoucher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucher)).EndInit();
     this.groupCashVoucher.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pbSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #30
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.XtraEditors.Repository.RepositoryItemImageComboBox repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     DevExpress.XtraEditors.Controls.EditorButtonImageOptions      editorButtonImageOptions1    = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ShapeBySelectorControl));
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.ShapeSchemeGrid     = new DevExpress.XtraGrid.GridControl();
     this.ShapeSchemeGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ShapeColumn         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ShapeValue          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8       = new DevExpress.XtraEditors.LabelControl();
     this.ShapeByColumn       = new DevExpress.XtraEditors.CheckEdit();
     this.ShapeByFixedShape   = new DevExpress.XtraEditors.CheckEdit();
     this.FixedShapeButton    = new DevExpress.XtraEditors.ButtonEdit();
     this.MarkerShapes16x16   = new System.Windows.Forms.ImageList(this.components);
     this.ShapeColumnSelector = new Mobius.SpotfireClient.ColumnSelectorControl();
     this.labelControl12      = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.ShapeSchemeGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShapeSchemeGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShapeByColumn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShapeByFixedShape.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.FixedShapeButton.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ShapeSchemeGrid
     //
     this.ShapeSchemeGrid.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.ShapeSchemeGrid.Location = new System.Drawing.Point(10, 138);
     this.ShapeSchemeGrid.MainView = this.ShapeSchemeGridView;
     this.ShapeSchemeGrid.Name     = "ShapeSchemeGrid";
     this.ShapeSchemeGrid.Size     = new System.Drawing.Size(565, 344);
     this.ShapeSchemeGrid.TabIndex = 195;
     this.ShapeSchemeGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.ShapeSchemeGridView
     });
     //
     // ShapeSchemeGridView
     //
     this.ShapeSchemeGridView.ActiveFilterEnabled = false;
     this.ShapeSchemeGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.ShapeColumn,
         this.ShapeValue
     });
     this.ShapeSchemeGridView.GridControl = this.ShapeSchemeGrid;
     this.ShapeSchemeGridView.Name        = "ShapeSchemeGridView";
     this.ShapeSchemeGridView.OptionsFilter.AllowColumnMRUFilterList = false;
     this.ShapeSchemeGridView.OptionsFilter.AllowFilterEditor        = false;
     this.ShapeSchemeGridView.OptionsFilter.AllowMRUFilterList       = false;
     this.ShapeSchemeGridView.OptionsMenu.EnableColumnMenu           = false;
     this.ShapeSchemeGridView.OptionsView.ColumnAutoWidth            = false;
     this.ShapeSchemeGridView.OptionsView.ShowGroupPanel             = false;
     this.ShapeSchemeGridView.OptionsView.ShowIndicator = false;
     //
     // ShapeColumn
     //
     this.ShapeColumn.AppearanceHeader.Options.UseTextOptions = true;
     this.ShapeColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.ShapeColumn.Caption = "Shape";
     repositoryItemImageComboBox1.AutoHeight = false;
     repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     repositoryItemImageComboBox1.Name              = "ImageComboBox";
     this.ShapeColumn.ColumnEdit                    = repositoryItemImageComboBox1;
     this.ShapeColumn.FieldName                     = "Shape";
     this.ShapeColumn.Name                          = "ShapeColumn";
     this.ShapeColumn.OptionsColumn.AllowSort       = DevExpress.Utils.DefaultBoolean.False;
     this.ShapeColumn.OptionsFilter.AllowAutoFilter = false;
     this.ShapeColumn.OptionsFilter.AllowFilter     = false;
     this.ShapeColumn.Visible                       = true;
     this.ShapeColumn.VisibleIndex                  = 0;
     this.ShapeColumn.Width                         = 95;
     //
     // ShapeValue
     //
     this.ShapeValue.AppearanceHeader.Options.UseTextOptions = true;
     this.ShapeValue.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.ShapeValue.Caption   = "Value";
     this.ShapeValue.FieldName = "Value";
     this.ShapeValue.Name      = "ShapeValue";
     this.ShapeValue.OptionsFilter.AllowAutoFilter = false;
     this.ShapeValue.OptionsFilter.AllowFilter     = false;
     this.ShapeValue.Visible      = true;
     this.ShapeValue.VisibleIndex = 1;
     this.ShapeValue.Width        = 184;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineVisible  = true;
     this.labelControl8.Location     = new System.Drawing.Point(5, 108);
     this.labelControl8.Name         = "labelControl8";
     this.labelControl8.Size         = new System.Drawing.Size(570, 19);
     this.labelControl8.TabIndex     = 193;
     this.labelControl8.Text         = "Shape scheme";
     //
     // ShapeByColumn
     //
     this.ShapeByColumn.EditValue                  = true;
     this.ShapeByColumn.Location                   = new System.Drawing.Point(9, 30);
     this.ShapeByColumn.Name                       = "ShapeByColumn";
     this.ShapeByColumn.Properties.AutoWidth       = true;
     this.ShapeByColumn.Properties.Caption         = "";
     this.ShapeByColumn.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.ShapeByColumn.Properties.RadioGroupIndex = 1;
     this.ShapeByColumn.Size                       = new System.Drawing.Size(19, 19);
     this.ShapeByColumn.TabIndex                   = 192;
     this.ShapeByColumn.EditValueChanged          += new System.EventHandler(this.ShapeByColumn_EditValueChanged);
     //
     // ShapeByFixedShape
     //
     this.ShapeByFixedShape.Location                   = new System.Drawing.Point(9, 72);
     this.ShapeByFixedShape.Name                       = "ShapeByFixedShape";
     this.ShapeByFixedShape.Properties.AutoWidth       = true;
     this.ShapeByFixedShape.Properties.Caption         = "Fixed shape:";
     this.ShapeByFixedShape.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.ShapeByFixedShape.Properties.RadioGroupIndex = 1;
     this.ShapeByFixedShape.Size                       = new System.Drawing.Size(84, 19);
     this.ShapeByFixedShape.TabIndex                   = 191;
     this.ShapeByFixedShape.TabStop                    = false;
     this.ShapeByFixedShape.EditValueChanged          += new System.EventHandler(this.ShapeByFixedShape_EditValueChanged);
     //
     // FixedShapeButton
     //
     this.FixedShapeButton.EditValue = "Item Name";
     this.FixedShapeButton.Location  = new System.Drawing.Point(99, 71);
     this.FixedShapeButton.Name      = "FixedShapeButton";
     editorButtonImageOptions1.Image = ((System.Drawing.Image)(resources.GetObject("editorButtonImageOptions1.Image")));
     this.FixedShapeButton.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, true, editorButtonImageOptions1, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, serializableAppearanceObject2, serializableAppearanceObject3, serializableAppearanceObject4, "", null, null, DevExpress.Utils.ToolTipAnchor.Default),
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.DropDown)
     });
     this.FixedShapeButton.Size     = new System.Drawing.Size(113, 22);
     this.FixedShapeButton.TabIndex = 256;
     this.FixedShapeButton.Click   += new System.EventHandler(this.FixedShape_Click);
     //
     // MarkerShapes16x16
     //
     this.MarkerShapes16x16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("MarkerShapes16x16.ImageStream")));
     this.MarkerShapes16x16.TransparentColor = System.Drawing.Color.Cyan;
     this.MarkerShapes16x16.Images.SetKeyName(0, "MarkerSquare.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(1, "MarkerDiamond.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(2, "MarkerTriangle.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(3, "MarkerTriangleInverted.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(4, "MarkerCircle.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(5, "MarkerPlus.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(6, "MarkerCross.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(7, "MarkerStar.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(8, "MarkerPentagon.bmp");
     this.MarkerShapes16x16.Images.SetKeyName(9, "MarkerHexagon.bmp");
     //
     // ShapeColumnSelector
     //
     this.ShapeColumnSelector.Appearance.BackColor              = System.Drawing.Color.White;
     this.ShapeColumnSelector.Appearance.BorderColor            = System.Drawing.Color.Silver;
     this.ShapeColumnSelector.Appearance.Options.UseBackColor   = true;
     this.ShapeColumnSelector.Appearance.Options.UseBorderColor = true;
     this.ShapeColumnSelector.Location = new System.Drawing.Point(33, 27);
     this.ShapeColumnSelector.Margin   = new System.Windows.Forms.Padding(0);
     this.ShapeColumnSelector.Name     = "ShapeColumnSelector";
     this.ShapeColumnSelector.OptionIncludeNoneItem = false;
     this.ShapeColumnSelector.Size     = new System.Drawing.Size(542, 26);
     this.ShapeColumnSelector.TabIndex = 257;
     //
     // labelControl12
     //
     this.labelControl12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineVisible  = true;
     this.labelControl12.Location     = new System.Drawing.Point(5, 2);
     this.labelControl12.Name         = "labelControl12";
     this.labelControl12.Size         = new System.Drawing.Size(570, 22);
     this.labelControl12.TabIndex     = 197;
     this.labelControl12.Text         = "Shape by";
     //
     // ShapeByBaseProperties
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.ShapeColumnSelector);
     this.Controls.Add(this.FixedShapeButton);
     this.Controls.Add(this.labelControl12);
     this.Controls.Add(this.ShapeSchemeGrid);
     this.Controls.Add(this.labelControl8);
     this.Controls.Add(this.ShapeByColumn);
     this.Controls.Add(this.ShapeByFixedShape);
     this.Name = "ShapeByBaseProperties";
     this.Size = new System.Drawing.Size(580, 488);
     ((System.ComponentModel.ISupportInitialize)(this.ShapeSchemeGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShapeSchemeGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShapeByColumn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShapeByFixedShape.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.FixedShapeButton.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #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.GridMemberCard               = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard           = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn225                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn234                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn235                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1                  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.mcard_lblNStatusID           = new System.Windows.Forms.Label();
     this.cmbMemberCard                = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnMemberCard_Reprint        = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberCard_Print          = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1              = new System.Windows.Forms.OpenFileDialog();
     this.groupControl1                = new DevExpress.XtraEditors.GroupControl();
     this.grpMemberCardBelow           = new DevExpress.XtraEditors.GroupControl();
     this.gcTransferMember             = new DevExpress.XtraGrid.GridControl();
     this.gvTransferMember             = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.txtMemberName                = new DevExpress.XtraEditors.TextEdit();
     this.txtMemberID                  = new DevExpress.XtraEditors.TextEdit();
     this.label2        = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.btnCancelCard = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).BeginInit();
     this.grpMemberCardBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GridMemberCard
     //
     //
     // GridMemberCard.EmbeddedNavigator
     //
     this.GridMemberCard.EmbeddedNavigator.Name = "";
     this.GridMemberCard.Location          = new System.Drawing.Point(16, 64);
     this.GridMemberCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.LookAndFeel.UseWindowsXPTheme     = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name     = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemImageComboBox1,
         this.repositoryItemImageComboBox2
     });
     this.GridMemberCard.Size     = new System.Drawing.Size(936, 208);
     this.GridMemberCard.TabIndex = 8;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMemberCard
     });
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.GridColumn225,
         this.GridColumn234,
         this.GridColumn235,
         this.gridColumn25,
         this.gridColumn1
     });
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name        = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMemberCard.OptionsCustomization.AllowFilter       = false;
     this.gridViewMemberCard.OptionsSelection.MultiSelect           = true;
     this.gridViewMemberCard.OptionsView.ShowGroupPanel             = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     this.gridViewMemberCard.LostFocus         += new System.EventHandler(this.gridViewMemberCard_LostFocus);
     //
     // GridColumn225
     //
     this.GridColumn225.Caption   = "Membership ID";
     this.GridColumn225.FieldName = "strMembershipID";
     this.GridColumn225.Name      = "GridColumn225";
     this.GridColumn225.OptionsColumn.AllowEdit = false;
     this.GridColumn225.Visible      = true;
     this.GridColumn225.VisibleIndex = 0;
     this.GridColumn225.Width        = 117;
     //
     // GridColumn234
     //
     this.GridColumn234.Caption   = "Member Name";
     this.GridColumn234.FieldName = "strMemberName";
     this.GridColumn234.Name      = "GridColumn234";
     this.GridColumn234.OptionsColumn.AllowEdit = false;
     this.GridColumn234.Visible      = true;
     this.GridColumn234.VisibleIndex = 1;
     this.GridColumn234.Width        = 161;
     //
     // GridColumn235
     //
     this.GridColumn235.Caption   = "Source Branch";
     this.GridColumn235.FieldName = "BranchFrom";
     this.GridColumn235.Name      = "GridColumn235";
     this.GridColumn235.OptionsColumn.AllowEdit = false;
     this.GridColumn235.Width = 190;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption   = "Collection Branch";
     this.gridColumn25.FieldName = "strBranchCode";
     this.gridColumn25.Name      = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.Visible      = true;
     this.gridColumn25.VisibleIndex = 2;
     this.gridColumn25.Width        = 162;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Status";
     this.gridColumn1.ColumnEdit   = this.repositoryItemImageComboBox1;
     this.gridColumn1.FieldName    = "nStatusID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 3;
     this.gridColumn1.Width        = 189;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)
     });
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // mcard_lblNStatusID
     //
     this.mcard_lblNStatusID.BackColor = System.Drawing.Color.Transparent;
     this.mcard_lblNStatusID.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mcard_lblNStatusID.Location  = new System.Drawing.Point(16, 40);
     this.mcard_lblNStatusID.Name      = "mcard_lblNStatusID";
     this.mcard_lblNStatusID.Size      = new System.Drawing.Size(56, 16);
     this.mcard_lblNStatusID.TabIndex  = 122;
     this.mcard_lblNStatusID.Text      = "Status";
     //
     // cmbMemberCard
     //
     this.cmbMemberCard.Location = new System.Drawing.Point(72, 32);
     this.cmbMemberCard.Name     = "cmbMemberCard";
     //
     // cmbMemberCard.Properties
     //
     this.cmbMemberCard.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbMemberCard.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1)
     });
     this.cmbMemberCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cmbMemberCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbMemberCard.Size                  = new System.Drawing.Size(160, 20);
     this.cmbMemberCard.TabIndex              = 120;
     this.cmbMemberCard.SelectedIndexChanged += new System.EventHandler(this.cmbMemberCard_SelectedIndexChanged);
     //
     // btnMemberCard_Reprint
     //
     this.btnMemberCard_Reprint.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnMemberCard_Reprint.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Reprint.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Options.UseBackColor   = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseFont        = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseForeColor   = true;
     this.btnMemberCard_Reprint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Reprint.Enabled     = false;
     this.btnMemberCard_Reprint.Location    = new System.Drawing.Point(384, 32);
     this.btnMemberCard_Reprint.Name        = "btnMemberCard_Reprint";
     this.btnMemberCard_Reprint.Size        = new System.Drawing.Size(140, 20);
     this.btnMemberCard_Reprint.TabIndex    = 119;
     this.btnMemberCard_Reprint.Text        = "Reprint Member Card";
     this.btnMemberCard_Reprint.Click      += new System.EventHandler(this.btnMemberCard_Reprint_Click);
     //
     // btnMemberCard_Print
     //
     this.btnMemberCard_Print.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnMemberCard_Print.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Print.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Options.UseBackColor   = true;
     this.btnMemberCard_Print.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseFont        = true;
     this.btnMemberCard_Print.Appearance.Options.UseForeColor   = true;
     this.btnMemberCard_Print.ButtonStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Print.Enabled           = false;
     this.btnMemberCard_Print.Location          = new System.Drawing.Point(248, 32);
     this.btnMemberCard_Print.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnMemberCard_Print.Name     = "btnMemberCard_Print";
     this.btnMemberCard_Print.Size     = new System.Drawing.Size(128, 20);
     this.btnMemberCard_Print.TabIndex = 118;
     this.btnMemberCard_Print.Text     = "Print Member Card";
     this.btnMemberCard_Print.Click   += new System.EventHandler(this.btnMemberCard_Print_Click);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.btnCancelCard);
     this.groupControl1.Controls.Add(this.grpMemberCardBelow);
     this.groupControl1.Controls.Add(this.btnMemberCard_Reprint);
     this.groupControl1.Controls.Add(this.mcard_lblNStatusID);
     this.groupControl1.Controls.Add(this.cmbMemberCard);
     this.groupControl1.Controls.Add(this.btnMemberCard_Print);
     this.groupControl1.Controls.Add(this.GridMemberCard);
     this.groupControl1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location          = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(984, 541);
     this.groupControl1.TabIndex = 123;
     this.groupControl1.Text     = "Member Card";
     //
     // grpMemberCardBelow
     //
     this.grpMemberCardBelow.Appearance.BackColor            = System.Drawing.Color.White;
     this.grpMemberCardBelow.Appearance.GradientMode         = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpMemberCardBelow.Appearance.Options.UseBackColor = true;
     this.grpMemberCardBelow.Controls.Add(this.gcTransferMember);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberName);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberID);
     this.grpMemberCardBelow.Controls.Add(this.label2);
     this.grpMemberCardBelow.Controls.Add(this.label1);
     this.grpMemberCardBelow.Location          = new System.Drawing.Point(16, 288);
     this.grpMemberCardBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMemberCardBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMemberCardBelow.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMemberCardBelow.Name     = "grpMemberCardBelow";
     this.grpMemberCardBelow.Size     = new System.Drawing.Size(936, 224);
     this.grpMemberCardBelow.TabIndex = 123;
     this.grpMemberCardBelow.Text     = "In Transit Member Card";
     //
     // gcTransferMember
     //
     this.gcTransferMember.Dock = System.Windows.Forms.DockStyle.Left;
     //
     // gcTransferMember.EmbeddedNavigator
     //
     this.gcTransferMember.EmbeddedNavigator.Name = "";
     this.gcTransferMember.Location          = new System.Drawing.Point(2, 20);
     this.gcTransferMember.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.gcTransferMember.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gcTransferMember.MainView = this.gvTransferMember;
     this.gcTransferMember.Name     = "gcTransferMember";
     this.gcTransferMember.Size     = new System.Drawing.Size(398, 202);
     this.gcTransferMember.TabIndex = 6;
     this.gcTransferMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvTransferMember
     });
     //
     // gvTransferMember
     //
     this.gvTransferMember.GridControl = this.gcTransferMember;
     this.gvTransferMember.Name        = "gvTransferMember";
     this.gvTransferMember.OptionsBehavior.Editable = false;
     this.gvTransferMember.OptionsCustomization.AllowColumnMoving = false;
     this.gvTransferMember.OptionsCustomization.AllowFilter       = false;
     this.gvTransferMember.OptionsCustomization.AllowSort         = false;
     this.gvTransferMember.OptionsView.ShowGroupPanel             = false;
     //
     // txtMemberName
     //
     this.txtMemberName.EditValue = "";
     this.txtMemberName.Enabled   = false;
     this.txtMemberName.Location  = new System.Drawing.Point(536, 144);
     this.txtMemberName.Name      = "txtMemberName";
     this.txtMemberName.Size      = new System.Drawing.Size(224, 20);
     this.txtMemberName.TabIndex  = 5;
     //
     // txtMemberID
     //
     this.txtMemberID.EditValue = "";
     this.txtMemberID.Enabled   = false;
     this.txtMemberID.Location  = new System.Drawing.Point(536, 96);
     this.txtMemberID.Name      = "txtMemberID";
     //
     // txtMemberID.Properties
     //
     this.txtMemberID.Properties.Appearance.BackColor            = System.Drawing.Color.LightBlue;
     this.txtMemberID.Properties.Appearance.Options.UseBackColor = true;
     this.txtMemberID.Size      = new System.Drawing.Size(176, 20);
     this.txtMemberID.TabIndex  = 4;
     this.txtMemberID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMemberID_KeyPress);
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(432, 144);
     this.label2.Name     = "label2";
     this.label2.TabIndex = 3;
     this.label2.Text     = "Member Name";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(432, 96);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 2;
     this.label1.Text     = "Member ID";
     //
     // btnCancelCard
     //
     this.btnCancelCard.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnCancelCard.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancelCard.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Options.UseBackColor   = true;
     this.btnCancelCard.Appearance.Options.UseBorderColor = true;
     this.btnCancelCard.Appearance.Options.UseFont        = true;
     this.btnCancelCard.Appearance.Options.UseForeColor   = true;
     this.btnCancelCard.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancelCard.Location    = new System.Drawing.Point(544, 32);
     this.btnCancelCard.Name        = "btnCancelCard";
     this.btnCancelCard.Size        = new System.Drawing.Size(72, 20);
     this.btnCancelCard.TabIndex    = 124;
     this.btnCancelCard.Text        = "Cancel";
     this.btnCancelCard.Click      += new System.EventHandler(this.btnCancelCard_Click);
     //
     // frmMemberCard
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(984, 541);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmMemberCard";
     this.Text            = "Member Card";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.Load           += new System.EventHandler(this.frmMemberCard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).EndInit();
     this.grpMemberCardBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components                   = new System.ComponentModel.Container();
     this.gridControl1                 = new DevExpress.XtraGrid.GridControl();
     this.gridView1                    = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.barManager1                  = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop            = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom         = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft           = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight          = new DevExpress.XtraBars.BarDockControl();
     this.barEditItem1                 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.popupMenu1                   = new DevExpress.XtraBars.PopupMenu(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     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(557, 309);
     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.MouseUp    += new System.Windows.Forms.MouseEventHandler(this.gridView1_MouseUp);
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barEditItem1
     });
     this.barManager1.MaxItemId = 1;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemImageComboBox1
     });
     //
     // barEditItem1
     //
     this.barEditItem1.Caption           = "Category:";
     this.barEditItem1.Edit              = this.repositoryItemImageComboBox1;
     this.barEditItem1.Id                = 0;
     this.barEditItem1.Name              = "barEditItem1";
     this.barEditItem1.Width             = 150;
     this.barEditItem1.EditValueChanged += new System.EventHandler(this.barEditItem1_EditValueChanged);
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem1)
     });
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name    = "popupMenu1";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(557, 309);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     this.ResumeLayout(false);
 }
Example #33
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(frmUserRights));
     this.grpMDUserRight = new DevExpress.XtraEditors.GroupControl();
     this.TabControlMd_UserRightLevel = new DevExpress.XtraTab.XtraTabControl();
     this.TabPageBranchRight = new DevExpress.XtraTab.XtraTabPage();
     this.btnPcReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnPcSearch = new DevExpress.XtraEditors.SimpleButton();
     this.ddlMember = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.btnBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btnBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_UserBranchRight = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_BRight = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnBRight1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_EmployeeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnBRight2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.TabPageRight = new DevExpress.XtraTab.XtraTabPage();
     this.btnRightCode_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnRightCode_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_RightCode = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_RightCode = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnRightCode1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnRightCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnRightCode3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbRightType = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.TabPageRightLevel = new DevExpress.XtraTab.XtraTabPage();
     this.btnRightLevel_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnRightLevel_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_RightLevel = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_RightLevel = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdRL1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdRL2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdRL3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdRL4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RightLevelEmployeeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.TabPageRightLevelEntries = new DevExpress.XtraTab.XtraTabPage();
     this.btnRLEntries_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnRLEntries_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_RightLevelEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewRightLevelEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnRLE1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RightsLevel = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnRLE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Rights = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDUserRight)).BeginInit();
     this.grpMDUserRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabControlMd_UserRightLevel)).BeginInit();
     this.TabControlMd_UserRightLevel.SuspendLayout();
     this.TabPageBranchRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlMember.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_UserBranchRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_EmployeeID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchID)).BeginInit();
     this.TabPageRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbRightType)).BeginInit();
     this.TabPageRightLevel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightLevelEmployeeID)).BeginInit();
     this.TabPageRightLevelEntries.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevelEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRightLevelEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Rights)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDUserRight
     //
     this.grpMDUserRight.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDUserRight.Appearance.Options.UseBackColor = true;
     this.grpMDUserRight.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDUserRight.AppearanceCaption.Options.UseFont = true;
     this.grpMDUserRight.Controls.Add(this.TabControlMd_UserRightLevel);
     this.grpMDUserRight.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDUserRight.Location = new System.Drawing.Point(8, 0);
     this.grpMDUserRight.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDUserRight.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDUserRight.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDUserRight.Name = "grpMDUserRight";
     this.grpMDUserRight.Size = new System.Drawing.Size(960, 528);
     this.grpMDUserRight.TabIndex = 91;
     this.grpMDUserRight.Text = "User Rights";
     //
     // TabControlMd_UserRightLevel
     //
     this.TabControlMd_UserRightLevel.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.TabControlMd_UserRightLevel.AppearancePage.Header.Options.UseFont = true;
     this.TabControlMd_UserRightLevel.Dock = System.Windows.Forms.DockStyle.Top;
     this.TabControlMd_UserRightLevel.Location = new System.Drawing.Point(2, 20);
     this.TabControlMd_UserRightLevel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.TabControlMd_UserRightLevel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TabControlMd_UserRightLevel.Name = "TabControlMd_UserRightLevel";
     this.TabControlMd_UserRightLevel.SelectedTabPage = this.TabPageBranchRight;
     this.TabControlMd_UserRightLevel.Size = new System.Drawing.Size(956, 506);
     this.TabControlMd_UserRightLevel.TabIndex = 21;
     this.TabControlMd_UserRightLevel.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                                 this.TabPageBranchRight,
                                                                                                 this.TabPageRight,
                                                                                                 this.TabPageRightLevel,
                                                                                                 this.TabPageRightLevelEntries});
     this.TabControlMd_UserRightLevel.Text = "xtraTabControl2";
     //
     // TabPageBranchRight
     //
     this.TabPageBranchRight.Controls.Add(this.btnPcReset);
     this.TabPageBranchRight.Controls.Add(this.btnPcSearch);
     this.TabPageBranchRight.Controls.Add(this.ddlMember);
     this.TabPageBranchRight.Controls.Add(this.label5);
     this.TabPageBranchRight.Controls.Add(this.btnBranch_Add);
     this.TabPageBranchRight.Controls.Add(this.btnBranch_Del);
     this.TabPageBranchRight.Controls.Add(this.groupControl1);
     this.TabPageBranchRight.Name = "TabPageBranchRight";
     this.TabPageBranchRight.Size = new System.Drawing.Size(950, 477);
     this.TabPageBranchRight.Text = "Branch Right";
     //
     // btnPcReset
     //
     this.btnPcReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcReset.Appearance.Options.UseFont = true;
     this.btnPcReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcReset.Location = new System.Drawing.Point(392, 8);
     this.btnPcReset.Name = "btnPcReset";
     this.btnPcReset.Size = new System.Drawing.Size(72, 20);
     this.btnPcReset.TabIndex = 179;
     this.btnPcReset.Text = "Reset";
     this.btnPcReset.Click += new System.EventHandler(this.btnPcReset_Click);
     //
     // btnPcSearch
     //
     this.btnPcSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcSearch.Appearance.Options.UseFont = true;
     this.btnPcSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcSearch.Location = new System.Drawing.Point(312, 8);
     this.btnPcSearch.Name = "btnPcSearch";
     this.btnPcSearch.Size = new System.Drawing.Size(72, 20);
     this.btnPcSearch.TabIndex = 178;
     this.btnPcSearch.Text = "Search";
     this.btnPcSearch.Click += new System.EventHandler(this.btnPcSearch_Click);
     //
     // ddlMember
     //
     this.ddlMember.EditValue = "";
     this.ddlMember.Location = new System.Drawing.Point(184, 8);
     this.ddlMember.Name = "ddlMember";
     this.ddlMember.Size = new System.Drawing.Size(120, 20);
     this.ddlMember.TabIndex = 177;
     this.ddlMember.ToolTip = "Use Search Member Tools For Input ";
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(104, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(80, 22);
     this.label5.TabIndex = 175;
     this.label5.Text = "Employee ID";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnBranch_Add
     //
     this.btnBranch_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnBranch_Add.Appearance.Options.UseFont = true;
     this.btnBranch_Add.Appearance.Options.UseTextOptions = true;
     this.btnBranch_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnBranch_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnBranch_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnBranch_Add.ImageIndex = 0;
     this.btnBranch_Add.ImageList = this.imageList1;
     this.btnBranch_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnBranch_Add.Location = new System.Drawing.Point(8, 8);
     this.btnBranch_Add.Name = "btnBranch_Add";
     this.btnBranch_Add.Size = new System.Drawing.Size(38, 20);
     this.btnBranch_Add.TabIndex = 136;
     this.btnBranch_Add.Click += new System.EventHandler(this.btnBranch_Add_Click);
     //
     // 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;
     //
     // btnBranch_Del
     //
     this.btnBranch_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnBranch_Del.Appearance.Options.UseFont = true;
     this.btnBranch_Del.Appearance.Options.UseTextOptions = true;
     this.btnBranch_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnBranch_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnBranch_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnBranch_Del.ImageIndex = 1;
     this.btnBranch_Del.ImageList = this.imageList1;
     this.btnBranch_Del.Location = new System.Drawing.Point(56, 8);
     this.btnBranch_Del.Name = "btnBranch_Del";
     this.btnBranch_Del.Size = new System.Drawing.Size(38, 20);
     this.btnBranch_Del.TabIndex = 135;
     this.btnBranch_Del.Click += new System.EventHandler(this.btnBranch_Del_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_UserBranchRight);
     this.groupControl1.Location = new System.Drawing.Point(0, 32);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(944, 456);
     this.groupControl1.TabIndex = 0;
     //
     // gridControlMd_UserBranchRight
     //
     this.gridControlMd_UserBranchRight.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_UserBranchRight.EmbeddedNavigator
     //
     this.gridControlMd_UserBranchRight.EmbeddedNavigator.Name = "";
     this.gridControlMd_UserBranchRight.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_UserBranchRight.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_UserBranchRight.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_UserBranchRight.MainView = this.gridViewMd_BRight;
     this.gridControlMd_UserBranchRight.Name = "gridControlMd_UserBranchRight";
     this.gridControlMd_UserBranchRight.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                            this.lk_EmployeeID,
                                                                                                                            this.lk_BranchID});
     this.gridControlMd_UserBranchRight.Size = new System.Drawing.Size(944, 434);
     this.gridControlMd_UserBranchRight.TabIndex = 21;
     this.gridControlMd_UserBranchRight.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                  this.gridViewMd_BRight});
     //
     // gridViewMd_BRight
     //
     this.gridViewMd_BRight.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumnBRight1,
                                                                                              this.gridColumnBRight2});
     this.gridViewMd_BRight.GridControl = this.gridControlMd_UserBranchRight;
     this.gridViewMd_BRight.Name = "gridViewMd_BRight";
     this.gridViewMd_BRight.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_BRight.OptionsCustomization.AllowSort = false;
     this.gridViewMd_BRight.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_BRight.LostFocus += new System.EventHandler(this.gridViewMd_BRight_LostFocus);
     //
     // gridColumnBRight1
     //
     this.gridColumnBRight1.Caption = "Employee Name";
     this.gridColumnBRight1.ColumnEdit = this.lk_EmployeeID;
     this.gridColumnBRight1.FieldName = "nEmployeeID";
     this.gridColumnBRight1.Name = "gridColumnBRight1";
     this.gridColumnBRight1.Visible = true;
     this.gridColumnBRight1.VisibleIndex = 0;
     this.gridColumnBRight1.Width = 106;
     //
     // lk_EmployeeID
     //
     this.lk_EmployeeID.AutoHeight = false;
     this.lk_EmployeeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_EmployeeID.Name = "lk_EmployeeID";
     //
     // gridColumnBRight2
     //
     this.gridColumnBRight2.Caption = "Branch Access";
     this.gridColumnBRight2.ColumnEdit = this.lk_BranchID;
     this.gridColumnBRight2.FieldName = "strBranchCode";
     this.gridColumnBRight2.Name = "gridColumnBRight2";
     this.gridColumnBRight2.Visible = true;
     this.gridColumnBRight2.VisibleIndex = 1;
     this.gridColumnBRight2.Width = 820;
     //
     // lk_BranchID
     //
     this.lk_BranchID.AutoHeight = false;
     this.lk_BranchID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchID.Name = "lk_BranchID";
     //
     // TabPageRight
     //
     this.TabPageRight.Controls.Add(this.btnRightCode_Add);
     this.TabPageRight.Controls.Add(this.btnRightCode_Del);
     this.TabPageRight.Controls.Add(this.groupControl2);
     this.TabPageRight.Name = "TabPageRight";
     this.TabPageRight.Size = new System.Drawing.Size(950, 477);
     this.TabPageRight.Text = "Right Code";
     //
     // btnRightCode_Add
     //
     this.btnRightCode_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightCode_Add.Appearance.Options.UseFont = true;
     this.btnRightCode_Add.Appearance.Options.UseTextOptions = true;
     this.btnRightCode_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightCode_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightCode_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightCode_Add.ImageIndex = 0;
     this.btnRightCode_Add.ImageList = this.imageList1;
     this.btnRightCode_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnRightCode_Add.Location = new System.Drawing.Point(8, 0);
     this.btnRightCode_Add.Name = "btnRightCode_Add";
     this.btnRightCode_Add.Size = new System.Drawing.Size(38, 20);
     this.btnRightCode_Add.TabIndex = 138;
     this.btnRightCode_Add.Click += new System.EventHandler(this.btnRightCode_Add_Click);
     //
     // btnRightCode_Del
     //
     this.btnRightCode_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightCode_Del.Appearance.Options.UseFont = true;
     this.btnRightCode_Del.Appearance.Options.UseTextOptions = true;
     this.btnRightCode_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightCode_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightCode_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightCode_Del.ImageIndex = 1;
     this.btnRightCode_Del.ImageList = this.imageList1;
     this.btnRightCode_Del.Location = new System.Drawing.Point(48, 0);
     this.btnRightCode_Del.Name = "btnRightCode_Del";
     this.btnRightCode_Del.Size = new System.Drawing.Size(38, 20);
     this.btnRightCode_Del.TabIndex = 137;
     this.btnRightCode_Del.Click += new System.EventHandler(this.btnRightCode_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControlMd_RightCode);
     this.groupControl2.Location = new System.Drawing.Point(8, 16);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(944, 456);
     this.groupControl2.TabIndex = 8;
     //
     // gridControlMd_RightCode
     //
     this.gridControlMd_RightCode.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_RightCode.EmbeddedNavigator
     //
     this.gridControlMd_RightCode.EmbeddedNavigator.Name = "";
     this.gridControlMd_RightCode.Location = new System.Drawing.Point(4, 18);
     this.gridControlMd_RightCode.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_RightCode.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_RightCode.MainView = this.gridViewMd_RightCode;
     this.gridControlMd_RightCode.Name = "gridControlMd_RightCode";
     this.gridControlMd_RightCode.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                      this.cmbRightType});
     this.gridControlMd_RightCode.Size = new System.Drawing.Size(936, 434);
     this.gridControlMd_RightCode.TabIndex = 1;
     this.gridControlMd_RightCode.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gridViewMd_RightCode});
     //
     // gridViewMd_RightCode
     //
     this.gridViewMd_RightCode.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnRightCode1,
                                                                                                 this.gridColumnRightCode2,
                                                                                                 this.gridColumnRightCode3});
     this.gridViewMd_RightCode.GridControl = this.gridControlMd_RightCode;
     this.gridViewMd_RightCode.Name = "gridViewMd_RightCode";
     this.gridViewMd_RightCode.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_RightCode.OptionsCustomization.AllowSort = false;
     this.gridViewMd_RightCode.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_RightCode.LostFocus += new System.EventHandler(this.gridViewMd_RightCode_LostFocus);
     //
     // gridColumnRightCode1
     //
     this.gridColumnRightCode1.Caption = "Right Code";
     this.gridColumnRightCode1.FieldName = "nRightsID";
     this.gridColumnRightCode1.Name = "gridColumnRightCode1";
     this.gridColumnRightCode1.Visible = true;
     this.gridColumnRightCode1.VisibleIndex = 0;
     this.gridColumnRightCode1.Width = 136;
     //
     // gridColumnRightCode2
     //
     this.gridColumnRightCode2.Caption = "Description";
     this.gridColumnRightCode2.FieldName = "strDescription";
     this.gridColumnRightCode2.MinWidth = 40;
     this.gridColumnRightCode2.Name = "gridColumnRightCode2";
     this.gridColumnRightCode2.Visible = true;
     this.gridColumnRightCode2.VisibleIndex = 1;
     this.gridColumnRightCode2.Width = 119;
     //
     // gridColumnRightCode3
     //
     this.gridColumnRightCode3.Caption = "Right Type";
     this.gridColumnRightCode3.ColumnEdit = this.cmbRightType;
     this.gridColumnRightCode3.FieldName = "nRightsTypeID";
     this.gridColumnRightCode3.Name = "gridColumnRightCode3";
     this.gridColumnRightCode3.Visible = true;
     this.gridColumnRightCode3.VisibleIndex = 2;
     this.gridColumnRightCode3.Width = 671;
     //
     // cmbRightType
     //
     this.cmbRightType.AutoHeight = false;
     this.cmbRightType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbRightType.Items.AddRange(new object[] {
                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Login", 0, -1),
                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transaction", 1, -1),
                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Report", 2, -1)});
     this.cmbRightType.Name = "cmbRightType";
     //
     // TabPageRightLevel
     //
     this.TabPageRightLevel.Controls.Add(this.btnRightLevel_Add);
     this.TabPageRightLevel.Controls.Add(this.btnRightLevel_Del);
     this.TabPageRightLevel.Controls.Add(this.groupControl3);
     this.TabPageRightLevel.Name = "TabPageRightLevel";
     this.TabPageRightLevel.Size = new System.Drawing.Size(950, 477);
     this.TabPageRightLevel.Text = "Right Level";
     //
     // btnRightLevel_Add
     //
     this.btnRightLevel_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightLevel_Add.Appearance.Options.UseFont = true;
     this.btnRightLevel_Add.Appearance.Options.UseTextOptions = true;
     this.btnRightLevel_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightLevel_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightLevel_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightLevel_Add.ImageIndex = 0;
     this.btnRightLevel_Add.ImageList = this.imageList1;
     this.btnRightLevel_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnRightLevel_Add.Location = new System.Drawing.Point(8, 0);
     this.btnRightLevel_Add.Name = "btnRightLevel_Add";
     this.btnRightLevel_Add.Size = new System.Drawing.Size(38, 20);
     this.btnRightLevel_Add.TabIndex = 138;
     this.btnRightLevel_Add.Click += new System.EventHandler(this.btnRightLevel_Add_Click);
     //
     // btnRightLevel_Del
     //
     this.btnRightLevel_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightLevel_Del.Appearance.Options.UseFont = true;
     this.btnRightLevel_Del.Appearance.Options.UseTextOptions = true;
     this.btnRightLevel_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightLevel_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightLevel_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightLevel_Del.ImageIndex = 1;
     this.btnRightLevel_Del.ImageList = this.imageList1;
     this.btnRightLevel_Del.Location = new System.Drawing.Point(48, 0);
     this.btnRightLevel_Del.Name = "btnRightLevel_Del";
     this.btnRightLevel_Del.Size = new System.Drawing.Size(38, 20);
     this.btnRightLevel_Del.TabIndex = 137;
     this.btnRightLevel_Del.Click += new System.EventHandler(this.btnRightLevel_Del_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.gridControlMd_RightLevel);
     this.groupControl3.Location = new System.Drawing.Point(8, 16);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(944, 448);
     this.groupControl3.TabIndex = 1;
     //
     // gridControlMd_RightLevel
     //
     this.gridControlMd_RightLevel.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_RightLevel.EmbeddedNavigator
     //
     this.gridControlMd_RightLevel.EmbeddedNavigator.Name = "";
     this.gridControlMd_RightLevel.Location = new System.Drawing.Point(4, 18);
     this.gridControlMd_RightLevel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_RightLevel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_RightLevel.MainView = this.gridViewMd_RightLevel;
     this.gridControlMd_RightLevel.Name = "gridControlMd_RightLevel";
     this.gridControlMd_RightLevel.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                       this.lk_RightLevelEmployeeID});
     this.gridControlMd_RightLevel.Size = new System.Drawing.Size(936, 426);
     this.gridControlMd_RightLevel.TabIndex = 1;
     this.gridControlMd_RightLevel.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                             this.gridViewMd_RightLevel});
     //
     // gridViewMd_RightLevel
     //
     this.gridViewMd_RightLevel.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                  this.gridColumnMdRL1,
                                                                                                  this.gridColumnMdRL2,
                                                                                                  this.gridColumnMdRL3,
                                                                                                  this.gridColumnMdRL4});
     this.gridViewMd_RightLevel.GridControl = this.gridControlMd_RightLevel;
     this.gridViewMd_RightLevel.Name = "gridViewMd_RightLevel";
     this.gridViewMd_RightLevel.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_RightLevel.OptionsCustomization.AllowSort = false;
     this.gridViewMd_RightLevel.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_RightLevel.LostFocus += new System.EventHandler(this.gridViewMd_RightLevel_LostFocus);
     //
     // gridColumnMdRL1
     //
     this.gridColumnMdRL1.Caption = "Right Level ID";
     this.gridColumnMdRL1.FieldName = "nRightsLevelID";
     this.gridColumnMdRL1.Name = "gridColumnMdRL1";
     this.gridColumnMdRL1.Visible = true;
     this.gridColumnMdRL1.VisibleIndex = 0;
     this.gridColumnMdRL1.Width = 121;
     //
     // gridColumnMdRL2
     //
     this.gridColumnMdRL2.Caption = "Description";
     this.gridColumnMdRL2.FieldName = "strDescription";
     this.gridColumnMdRL2.Name = "gridColumnMdRL2";
     this.gridColumnMdRL2.Visible = true;
     this.gridColumnMdRL2.VisibleIndex = 1;
     this.gridColumnMdRL2.Width = 546;
     //
     // gridColumnMdRL3
     //
     this.gridColumnMdRL3.Caption = "Modified On";
     this.gridColumnMdRL3.FieldName = "dtLastEditDate";
     this.gridColumnMdRL3.Name = "gridColumnMdRL3";
     this.gridColumnMdRL3.Visible = true;
     this.gridColumnMdRL3.VisibleIndex = 2;
     this.gridColumnMdRL3.Width = 101;
     //
     // gridColumnMdRL4
     //
     this.gridColumnMdRL4.Caption = "Modified By";
     this.gridColumnMdRL4.ColumnEdit = this.lk_RightLevelEmployeeID;
     this.gridColumnMdRL4.FieldName = "nEmployeeID";
     this.gridColumnMdRL4.Name = "gridColumnMdRL4";
     this.gridColumnMdRL4.Visible = true;
     this.gridColumnMdRL4.VisibleIndex = 3;
     this.gridColumnMdRL4.Width = 158;
     //
     // lk_RightLevelEmployeeID
     //
     this.lk_RightLevelEmployeeID.AutoHeight = false;
     this.lk_RightLevelEmployeeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RightLevelEmployeeID.Name = "lk_RightLevelEmployeeID";
     //
     // TabPageRightLevelEntries
     //
     this.TabPageRightLevelEntries.Controls.Add(this.btnRLEntries_Add);
     this.TabPageRightLevelEntries.Controls.Add(this.btnRLEntries_Del);
     this.TabPageRightLevelEntries.Controls.Add(this.groupControl4);
     this.TabPageRightLevelEntries.Name = "TabPageRightLevelEntries";
     this.TabPageRightLevelEntries.Size = new System.Drawing.Size(950, 477);
     this.TabPageRightLevelEntries.Text = "Right Level Entries";
     //
     // btnRLEntries_Add
     //
     this.btnRLEntries_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRLEntries_Add.Appearance.Options.UseFont = true;
     this.btnRLEntries_Add.Appearance.Options.UseTextOptions = true;
     this.btnRLEntries_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRLEntries_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRLEntries_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRLEntries_Add.ImageIndex = 0;
     this.btnRLEntries_Add.ImageList = this.imageList1;
     this.btnRLEntries_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnRLEntries_Add.Location = new System.Drawing.Point(8, 0);
     this.btnRLEntries_Add.Name = "btnRLEntries_Add";
     this.btnRLEntries_Add.Size = new System.Drawing.Size(38, 20);
     this.btnRLEntries_Add.TabIndex = 138;
     this.btnRLEntries_Add.Click += new System.EventHandler(this.btnRLEntries_Add_Click);
     //
     // btnRLEntries_Del
     //
     this.btnRLEntries_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRLEntries_Del.Appearance.Options.UseFont = true;
     this.btnRLEntries_Del.Appearance.Options.UseTextOptions = true;
     this.btnRLEntries_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRLEntries_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRLEntries_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRLEntries_Del.ImageIndex = 1;
     this.btnRLEntries_Del.ImageList = this.imageList1;
     this.btnRLEntries_Del.Location = new System.Drawing.Point(48, 0);
     this.btnRLEntries_Del.Name = "btnRLEntries_Del";
     this.btnRLEntries_Del.Size = new System.Drawing.Size(38, 20);
     this.btnRLEntries_Del.TabIndex = 137;
     this.btnRLEntries_Del.Click += new System.EventHandler(this.btnRLEntries_Del_Click);
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.gridControlMd_RightLevelEntries);
     this.groupControl4.Location = new System.Drawing.Point(8, 16);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(952, 456);
     this.groupControl4.TabIndex = 9;
     //
     // gridControlMd_RightLevelEntries
     //
     this.gridControlMd_RightLevelEntries.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_RightLevelEntries.EmbeddedNavigator
     //
     this.gridControlMd_RightLevelEntries.EmbeddedNavigator.Name = "";
     this.gridControlMd_RightLevelEntries.Location = new System.Drawing.Point(4, 18);
     this.gridControlMd_RightLevelEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_RightLevelEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_RightLevelEntries.MainView = this.gridViewRightLevelEntries;
     this.gridControlMd_RightLevelEntries.Name = "gridControlMd_RightLevelEntries";
     this.gridControlMd_RightLevelEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                              this.lk_RightsLevel,
                                                                                                                              this.lk_Rights});
     this.gridControlMd_RightLevelEntries.Size = new System.Drawing.Size(944, 442);
     this.gridControlMd_RightLevelEntries.TabIndex = 1;
     this.gridControlMd_RightLevelEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                    this.gridViewRightLevelEntries});
     //
     // gridViewRightLevelEntries
     //
     this.gridViewRightLevelEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                      this.gridColumnRLE1,
                                                                                                      this.gridColumnRLE2});
     this.gridViewRightLevelEntries.GridControl = this.gridControlMd_RightLevelEntries;
     this.gridViewRightLevelEntries.Name = "gridViewRightLevelEntries";
     this.gridViewRightLevelEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewRightLevelEntries.OptionsCustomization.AllowSort = false;
     this.gridViewRightLevelEntries.OptionsView.ShowGroupPanel = false;
     this.gridViewRightLevelEntries.LostFocus += new System.EventHandler(this.gridViewRightLevelEntries_LostFocus);
     //
     // gridColumnRLE1
     //
     this.gridColumnRLE1.Caption = "Right Level ID";
     this.gridColumnRLE1.ColumnEdit = this.lk_RightsLevel;
     this.gridColumnRLE1.FieldName = "nRightsLevelID";
     this.gridColumnRLE1.Name = "gridColumnRLE1";
     this.gridColumnRLE1.Visible = true;
     this.gridColumnRLE1.VisibleIndex = 0;
     this.gridColumnRLE1.Width = 126;
     //
     // lk_RightsLevel
     //
     this.lk_RightsLevel.AutoHeight = false;
     this.lk_RightsLevel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RightsLevel.Name = "lk_RightsLevel";
     //
     // gridColumnRLE2
     //
     this.gridColumnRLE2.Caption = "Right ID";
     this.gridColumnRLE2.ColumnEdit = this.lk_Rights;
     this.gridColumnRLE2.FieldName = "nRightsID";
     this.gridColumnRLE2.Name = "gridColumnRLE2";
     this.gridColumnRLE2.Visible = true;
     this.gridColumnRLE2.VisibleIndex = 1;
     this.gridColumnRLE2.Width = 800;
     //
     // lk_Rights
     //
     this.lk_Rights.AutoHeight = false;
     this.lk_Rights.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Rights.Name = "lk_Rights";
     //
     // frmUserRights
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(982, 533);
     this.Controls.Add(this.grpMDUserRight);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmUserRights";
     this.Text = "frmUserRights";
     this.Load += new System.EventHandler(this.frmUserRights_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDUserRight)).EndInit();
     this.grpMDUserRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabControlMd_UserRightLevel)).EndInit();
     this.TabControlMd_UserRightLevel.ResumeLayout(false);
     this.TabPageBranchRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlMember.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_UserBranchRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_EmployeeID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchID)).EndInit();
     this.TabPageRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbRightType)).EndInit();
     this.TabPageRightLevel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightLevelEmployeeID)).EndInit();
     this.TabPageRightLevelEntries.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevelEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRightLevelEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Rights)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTimeInOutQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDuyet = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemK_Duyet = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NVID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TenNV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NgayLamViec = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioBatDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioKetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTG_LV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Cham_Cong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_Bs = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_BC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NP_Nam = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NP_KL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Noi_Dung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotIP_Address = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoaiDT_VS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.chkVe_som = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.chkDi_tre = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.chkChuaChamCong = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.chkDaChamCong = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.PLNhanVien = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DenNgay = new DevExpress.XtraEditors.DateEdit();
     this.TuNgay = new DevExpress.XtraEditors.DateEdit();
     this.label8 = new System.Windows.Forms.PLLabel();
     this.label4 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkVe_som.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDi_tre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChuaChamCong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDaChamCong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDuyet,
     this.barButtonItemK_Duyet});
     this.barManager1.MaxItemId = 37;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDuyet, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemK_Duyet),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemDuyet
     //
     this.barButtonItemDuyet.Caption = "&Duyệt";
     this.barButtonItemDuyet.Id = 35;
     this.barButtonItemDuyet.Name = "barButtonItemDuyet";
     //
     // barButtonItemK_Duyet
     //
     this.barButtonItemK_Duyet.Caption = "&Không duyệt";
     this.barButtonItemK_Duyet.Id = 36;
     this.barButtonItemK_Duyet.Name = "barButtonItemK_Duyet";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 90);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(804, 407);
     this.splitContainerControl1.SplitterPosition = 196;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(804, 196);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ID,
     this.Cot_NVID,
     this.Cot_TenNV,
     this.Cot_NgayLamViec,
     this.Cot_GioBatDau,
     this.Cot_GioKetThuc,
     this.CotTG_LV,
     this.Cot_Cham_Cong,
     this.Cot_N_Bs,
     this.Cot_N_BC,
     this.Cot_NP_Nam,
     this.Cot_NP_KL,
     this.Cot_Noi_Dung,
     this.CotLoai,
     this.CotIP_Address,
     this.CotLoaiDT_VS});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 2;
     this.gridViewMaster.GroupPanelText = "Thời gian làm việc của nhân viên thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowFooter = true;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Cot_NgayLamViec, DevExpress.Data.ColumnSortOrder.Descending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Cot_TenNV, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // ID
     //
     this.ID.Caption = "ID";
     this.ID.Name = "ID";
     this.ID.Width = 23;
     //
     // Cot_NVID
     //
     this.Cot_NVID.Caption = "NV_ID";
     this.Cot_NVID.Name = "Cot_NVID";
     this.Cot_NVID.Width = 42;
     //
     // Cot_TenNV
     //
     this.Cot_TenNV.Caption = "Nhân viên";
     this.Cot_TenNV.Name = "Cot_TenNV";
     this.Cot_TenNV.Visible = true;
     this.Cot_TenNV.VisibleIndex = 0;
     this.Cot_TenNV.Width = 73;
     //
     // Cot_NgayLamViec
     //
     this.Cot_NgayLamViec.Caption = "Ngày làm việc";
     this.Cot_NgayLamViec.Name = "Cot_NgayLamViec";
     this.Cot_NgayLamViec.Visible = true;
     this.Cot_NgayLamViec.VisibleIndex = 1;
     this.Cot_NgayLamViec.Width = 91;
     //
     // Cot_GioBatDau
     //
     this.Cot_GioBatDau.Caption = "Giờ bắt đầu";
     this.Cot_GioBatDau.Name = "Cot_GioBatDau";
     this.Cot_GioBatDau.Visible = true;
     this.Cot_GioBatDau.VisibleIndex = 2;
     this.Cot_GioBatDau.Width = 67;
     //
     // Cot_GioKetThuc
     //
     this.Cot_GioKetThuc.Caption = "Giờ kết thúc";
     this.Cot_GioKetThuc.Name = "Cot_GioKetThuc";
     this.Cot_GioKetThuc.Visible = true;
     this.Cot_GioKetThuc.VisibleIndex = 3;
     this.Cot_GioKetThuc.Width = 69;
     //
     // CotTG_LV
     //
     this.CotTG_LV.Caption = "Thời gian làm việc (giờ : phút)";
     this.CotTG_LV.Name = "CotTG_LV";
     this.CotTG_LV.SummaryItem.DisplayFormat = "Thời gian: {0:#.##0}";
     this.CotTG_LV.SummaryItem.FieldName = "TG";
     this.CotTG_LV.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.CotTG_LV.Visible = true;
     this.CotTG_LV.VisibleIndex = 4;
     this.CotTG_LV.Width = 153;
     //
     // Cot_Cham_Cong
     //
     this.Cot_Cham_Cong.Caption = "Đã chấm công";
     this.Cot_Cham_Cong.Name = "Cot_Cham_Cong";
     this.Cot_Cham_Cong.Visible = true;
     this.Cot_Cham_Cong.VisibleIndex = 9;
     this.Cot_Cham_Cong.Width = 80;
     //
     // Cot_N_Bs
     //
     this.Cot_N_Bs.Caption = "Sáng (giờ : phút)";
     this.Cot_N_Bs.Name = "Cot_N_Bs";
     this.Cot_N_Bs.Visible = true;
     this.Cot_N_Bs.VisibleIndex = 5;
     this.Cot_N_Bs.Width = 59;
     //
     // Cot_N_BC
     //
     this.Cot_N_BC.Caption = "Chiều (giờ : phút)";
     this.Cot_N_BC.Name = "Cot_N_BC";
     this.Cot_N_BC.Visible = true;
     this.Cot_N_BC.VisibleIndex = 6;
     this.Cot_N_BC.Width = 61;
     //
     // Cot_NP_Nam
     //
     this.Cot_NP_Nam.Caption = "Nghỉ phép năm";
     this.Cot_NP_Nam.Name = "Cot_NP_Nam";
     this.Cot_NP_Nam.Visible = true;
     this.Cot_NP_Nam.VisibleIndex = 10;
     this.Cot_NP_Nam.Width = 83;
     //
     // Cot_NP_KL
     //
     this.Cot_NP_KL.Caption = "Nghỉ không lương";
     this.Cot_NP_KL.Name = "Cot_NP_KL";
     this.Cot_NP_KL.Visible = true;
     this.Cot_NP_KL.VisibleIndex = 11;
     this.Cot_NP_KL.Width = 95;
     //
     // Cot_Noi_Dung
     //
     this.Cot_Noi_Dung.Caption = "Nội dung";
     this.Cot_Noi_Dung.Name = "Cot_Noi_Dung";
     this.Cot_Noi_Dung.Visible = true;
     this.Cot_Noi_Dung.VisibleIndex = 8;
     this.Cot_Noi_Dung.Width = 54;
     //
     // CotLoai
     //
     this.CotLoai.Caption = "Loại";
     this.CotLoai.Name = "CotLoai";
     this.CotLoai.Width = 31;
     //
     // CotIP_Address
     //
     this.CotIP_Address.Caption = "IP_Address";
     this.CotIP_Address.Name = "CotIP_Address";
     this.CotIP_Address.Visible = true;
     this.CotIP_Address.VisibleIndex = 12;
     this.CotIP_Address.Width = 67;
     //
     // CotLoaiDT_VS
     //
     this.CotLoaiDT_VS.Caption = "Đi trễ / Về sớm";
     this.CotLoaiDT_VS.Name = "CotLoaiDT_VS";
     this.CotLoaiDT_VS.Visible = true;
     this.CotLoaiDT_VS.VisibleIndex = 7;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(804, 205);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(797, 176);
     this.xtraTabPageDetail.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlDetail.Size = new System.Drawing.Size(797, 176);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetail.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.chkVe_som);
     this.popupControlContainerFilter.Controls.Add(this.chkDi_tre);
     this.popupControlContainerFilter.Controls.Add(this.chkChuaChamCong);
     this.popupControlContainerFilter.Controls.Add(this.chkDaChamCong);
     this.popupControlContainerFilter.Controls.Add(this.PLNhanVien);
     this.popupControlContainerFilter.Controls.Add(this.DenNgay);
     this.popupControlContainerFilter.Controls.Add(this.TuNgay);
     this.popupControlContainerFilter.Controls.Add(this.label8);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(804, 66);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // chkVe_som
     //
     this.chkVe_som.Location = new System.Drawing.Point(427, 36);
     this.chkVe_som.Name = "chkVe_som";
     this.chkVe_som.Properties.Caption = "Về sớm";
     this.chkVe_som.Size = new System.Drawing.Size(98, 19);
     this.chkVe_som.TabIndex = 7;
     this.chkVe_som.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkVe_som.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // chkDi_tre
     //
     this.chkDi_tre.Location = new System.Drawing.Point(315, 36);
     this.chkDi_tre.Name = "chkDi_tre";
     this.chkDi_tre.Properties.Caption = "Đi trễ";
     this.chkDi_tre.Size = new System.Drawing.Size(98, 19);
     this.chkDi_tre.TabIndex = 6;
     this.chkDi_tre.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkDi_tre.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // chkChuaChamCong
     //
     this.chkChuaChamCong.Location = new System.Drawing.Point(427, 10);
     this.chkChuaChamCong.Name = "chkChuaChamCong";
     this.chkChuaChamCong.Properties.Caption = "Chưa chấm công";
     this.chkChuaChamCong.Size = new System.Drawing.Size(130, 19);
     this.chkChuaChamCong.TabIndex = 5;
     this.chkChuaChamCong.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkChuaChamCong.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // chkDaChamCong
     //
     this.chkDaChamCong.Location = new System.Drawing.Point(315, 10);
     this.chkDaChamCong.Name = "chkDaChamCong";
     this.chkDaChamCong.Properties.Caption = "Đã chấm công";
     this.chkDaChamCong.Size = new System.Drawing.Size(109, 19);
     this.chkDaChamCong.TabIndex = 4;
     this.chkDaChamCong.ToolTip = "Dữ liệu bắt buộc nhập";
     this.chkDaChamCong.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // PLNhanVien
     //
     this.PLNhanVien.Location = new System.Drawing.Point(67, 8);
     this.PLNhanVien.Name = "PLNhanVien";
     this.PLNhanVien.Size = new System.Drawing.Size(219, 21);
     this.PLNhanVien.TabIndex = 1;
     this.PLNhanVien.ZZZWidthFactor = 2F;
     //
     // DenNgay
     //
     this.DenNgay.EditValue = null;
     this.DenNgay.Location = new System.Drawing.Point(199, 35);
     this.DenNgay.Name = "DenNgay";
     this.DenNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DenNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DenNgay.Size = new System.Drawing.Size(87, 20);
     this.DenNgay.TabIndex = 3;
     //
     // TuNgay
     //
     this.TuNgay.EditValue = null;
     this.TuNgay.Location = new System.Drawing.Point(67, 35);
     this.TuNgay.Name = "TuNgay";
     this.TuNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TuNgay.Size = new System.Drawing.Size(88, 20);
     this.TuNgay.TabIndex = 2;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(166, 39);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(18, 13);
     this.label8.TabIndex = 3;
     this.label8.Text = "đến";
     this.label8.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label8.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(9, 39);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(40, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Từ ngày";
     this.label4.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label4.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(9, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Nhân viên";
     this.label1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // frmTimeInOutQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 497);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTimeInOutQL";
     this.Text = "Thời gian làm việc";
     this.Load += new System.EventHandler(this.frmTimeInOutQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkVe_som.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDi_tre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkChuaChamCong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDaChamCong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraScheduler.TimeRuler timeRuler1 = new DevExpress.XtraScheduler.TimeRuler();
     DevExpress.XtraScheduler.TimeRuler timeRuler2 = new DevExpress.XtraScheduler.TimeRuler();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMeetingQL));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new System.Windows.Forms.PLLabel();
     this.Tuan = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.Ngay = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.Thang = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.labelControl5 = new System.Windows.Forms.PLLabel();
     this.Ngaythuchien = new DevExpress.XtraScheduler.DateNavigator();
     this.schedulerControl = new DevExpress.XtraScheduler.SchedulerControl();
     this.schedulerStorage = new DevExpress.XtraScheduler.SchedulerStorage(this.components);
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDuyet = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemK_Duyet = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChiTiet = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Layout.LayoutView();
     this.ID = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotNgay = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotGioBD = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_2 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotGioKT = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_3 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotNoiDung = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.repNoiDung = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.layoutViewField_layoutViewColumn1_4 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotDiaDiemHop = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.repDiaDiemHop = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.layoutViewField_layoutViewColumn1_5 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewCard1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
     this.item1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.item2 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.repositoryItemButtonEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemButtonEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemMemoExEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.rep_mofile = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.rep_luu_file = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repDiaDiem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotThoiGianBatDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotThoiGianKetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDiaDiem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotNguoiToChuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTinhChat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoaiMeeting = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotKetQua = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.rtxVanBan = new System.Windows.Forms.RichTextBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.cboNguoiToChuc = new ProtocolVN.Framework.Win.PLCombobox();
     this.txtDiaDiem = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.PLLabel();
     this.cboTinhChat = new ProtocolVN.Framework.Win.PLCombobox();
     this.label3 = new System.Windows.Forms.PLLabel();
     this.label2 = new System.Windows.Forms.PLLabel();
     this.cboLoai = new ProtocolVN.Framework.Win.PLCombobox();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new System.Windows.Forms.PLLabel();
     this.checkEdit1 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.checkEdit2 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.checkEdit3 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.imageList_layout = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Tuan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Thang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngaythuchien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageChiTiet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNoiDung)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiemHop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.item1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.item2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_mofile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_luu_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiem)).BeginInit();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaDiem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDuyet,
     this.barButtonItemK_Duyet});
     this.barManager1.MaxItemId = 37;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemSearch.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(943, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 579);
     this.barDockControlBottom.Size = new System.Drawing.Size(943, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 555);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(943, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 555);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID = new System.Guid("b41cff86-da37-41cb-9b0d-062fa10996a9");
     this.dockPanel1.Location = new System.Drawing.Point(0, 24);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanel1.Size = new System.Drawing.Size(200, 555);
     this.dockPanel1.Text = "Tùy chọn";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.panelControl2);
     this.dockPanel1_Container.Controls.Add(this.labelControl5);
     this.dockPanel1_Container.Controls.Add(this.Ngaythuchien);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(194, 527);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.labelControl2);
     this.panelControl2.Controls.Add(this.Tuan);
     this.panelControl2.Controls.Add(this.Ngay);
     this.panelControl2.Controls.Add(this.Thang);
     this.panelControl2.Location = new System.Drawing.Point(8, 196);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(178, 96);
     this.panelControl2.TabIndex = 99;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(5, 5);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(82, 13);
     this.labelControl2.TabIndex = 22;
     this.labelControl2.Text = "Tùy chọn hiển thị";
     this.labelControl2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl2.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // Tuan
     //
     this.Tuan.Location = new System.Drawing.Point(18, 49);
     this.Tuan.Name = "Tuan";
     this.Tuan.Properties.Caption = "Theo tuần";
     this.Tuan.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Tuan.Properties.RadioGroupIndex = 1;
     this.Tuan.Size = new System.Drawing.Size(83, 19);
     this.Tuan.TabIndex = 21;
     this.Tuan.TabStop = false;
     this.Tuan.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Tuan.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Tuan.CheckedChanged += new System.EventHandler(this.Tuan_CheckedChanged);
     //
     // Ngay
     //
     this.Ngay.Location = new System.Drawing.Point(18, 24);
     this.Ngay.Name = "Ngay";
     this.Ngay.Properties.Caption = "Theo ngày";
     this.Ngay.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Ngay.Properties.RadioGroupIndex = 1;
     this.Ngay.Size = new System.Drawing.Size(83, 19);
     this.Ngay.TabIndex = 17;
     this.Ngay.TabStop = false;
     this.Ngay.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Ngay.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Ngay.CheckedChanged += new System.EventHandler(this.Ngay_CheckedChanged);
     //
     // Thang
     //
     this.Thang.Location = new System.Drawing.Point(18, 74);
     this.Thang.Name = "Thang";
     this.Thang.Properties.Caption = "Theo tháng";
     this.Thang.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Thang.Properties.RadioGroupIndex = 1;
     this.Thang.Size = new System.Drawing.Size(83, 19);
     this.Thang.TabIndex = 18;
     this.Thang.TabStop = false;
     this.Thang.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Thang.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Thang.CheckedChanged += new System.EventHandler(this.Thang_CheckedChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(13, 3);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(43, 13);
     this.labelControl5.TabIndex = 84;
     this.labelControl5.Text = "Thời gian";
     this.labelControl5.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl5.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // Ngaythuchien
     //
     this.Ngaythuchien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ngaythuchien.HotDate = null;
     this.Ngaythuchien.Location = new System.Drawing.Point(8, 22);
     this.Ngaythuchien.Name = "Ngaythuchien";
     this.Ngaythuchien.SchedulerControl = this.schedulerControl;
     this.Ngaythuchien.Size = new System.Drawing.Size(178, 168);
     this.Ngaythuchien.TabIndex = 82;
     //
     // schedulerControl
     //
     this.schedulerControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.schedulerControl.Location = new System.Drawing.Point(0, 0);
     this.schedulerControl.MenuManager = this.barManager1;
     this.schedulerControl.Name = "schedulerControl";
     this.schedulerControl.OptionsCustomization.AllowAppointmentCopy = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentCreate = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDelete = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDrag = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDragBetweenResources = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentMultiSelect = false;
     this.schedulerControl.OptionsCustomization.AllowAppointmentResize = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowInplaceEditor = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsView.NavigationButtons.NextCaption = "Sự kiện tiếp theo";
     this.schedulerControl.OptionsView.NavigationButtons.PrevCaption = "Sự kiện trước";
     this.schedulerControl.OptionsView.NavigationButtons.Visibility = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl.Size = new System.Drawing.Size(743, 489);
     this.schedulerControl.Start = new System.DateTime(2009, 2, 14, 0, 0, 0, 0);
     this.schedulerControl.Storage = this.schedulerStorage;
     this.schedulerControl.TabIndex = 12;
     this.schedulerControl.Text = "schedulerControl1";
     this.schedulerControl.Views.DayView.AllDayAreaScrollBarVisible = true;
     this.schedulerControl.Views.DayView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.DayView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.DayView.TimeRulers.Add(timeRuler1);
     this.schedulerControl.Views.DayView.WorkTime.End = System.TimeSpan.Parse("17:00:00");
     this.schedulerControl.Views.DayView.WorkTime.Start = System.TimeSpan.Parse("08:00:00");
     this.schedulerControl.Views.MonthView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.MonthView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WeekView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WeekView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WorkWeekView.TimeRulers.Add(timeRuler2);
     this.schedulerControl.PreparePopupMenu += new DevExpress.XtraScheduler.PreparePopupMenuEventHandler(this.schedulerControl_PreparePopupMenu);
     this.schedulerControl.EditAppointmentFormShowing += new DevExpress.XtraScheduler.AppointmentFormEventHandler(this.schedulerControl_EditAppointmentFormShowing);
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItemDuyet
     //
     this.barButtonItemDuyet.Caption = "&Duyệt";
     this.barButtonItemDuyet.Enabled = false;
     this.barButtonItemDuyet.Id = 35;
     this.barButtonItemDuyet.Name = "barButtonItemDuyet";
     this.barButtonItemDuyet.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemK_Duyet
     //
     this.barButtonItemK_Duyet.Caption = "&Không duyệt";
     this.barButtonItemK_Duyet.Enabled = false;
     this.barButtonItemK_Duyet.Id = 36;
     this.barButtonItemK_Duyet.Name = "barButtonItemK_Duyet";
     this.barButtonItemK_Duyet.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 90);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.schedulerControl);
     this.splitContainerControl1.Panel1.MinSize = 200;
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.MinSize = 150;
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.PanelVisibility = DevExpress.XtraEditors.SplitPanelVisibility.Panel1;
     this.splitContainerControl1.Size = new System.Drawing.Size(743, 489);
     this.splitContainerControl1.SplitterPosition = 240;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageChiTiet;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail,
     this.xtraTabPageChiTiet,
     this.xtraTabPage2});
     //
     // xtraTabPageChiTiet
     //
     this.xtraTabPageChiTiet.Controls.Add(this.gridControlDetail);
     this.xtraTabPageChiTiet.Name = "xtraTabPageChiTiet";
     this.xtraTabPageChiTiet.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPageChiTiet.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit3,
     this.repositoryItemPictureEdit1,
     this.repositoryItemPictureEdit2,
     this.repositoryItemMemoEdit1,
     this.repDiaDiemHop,
     this.repositoryItemButtonEdit4,
     this.repositoryItemButtonEdit5,
     this.repositoryItemMemoExEdit2,
     this.rep_mofile,
     this.rep_luu_file,
     this.repNoiDung,
     this.repDiaDiem});
     this.gridControlDetail.Size = new System.Drawing.Size(0, 0);
     this.gridControlDetail.TabIndex = 191;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.CardCaptionFormat = "Ngày họp: {3}, từ: {4} - {5}";
     this.gridViewDetail.CardHorzInterval = 13;
     this.gridViewDetail.CardMinSize = new System.Drawing.Size(270, 151);
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
     this.ID,
     this.cotNgay,
     this.cotGioBD,
     this.cotGioKT,
     this.cotNoiDung,
     this.cotDiaDiemHop});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutViewField_layoutViewColumn1,
     this.layoutViewField_layoutViewColumn1_1,
     this.layoutViewField_layoutViewColumn1_2,
     this.layoutViewField_layoutViewColumn1_3});
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewDetail.OptionsBehavior.ScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Auto;
     this.gridViewDetail.OptionsCustomization.AllowFilter = false;
     this.gridViewDetail.OptionsCustomization.AllowSort = false;
     this.gridViewDetail.OptionsHeaderPanel.EnableCustomizeButton = false;
     this.gridViewDetail.OptionsItemText.AlignMode = DevExpress.XtraGrid.Views.Layout.FieldTextAlignMode.CustomSize;
     this.gridViewDetail.OptionsItemText.TextToControlDistance = 0;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsView.AllowHotTrackFields = false;
     this.gridViewDetail.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.MultiRow;
     this.gridViewDetail.TemplateCard = this.layoutViewCard1;
     //
     // ID
     //
     this.ID.Caption = "id";
     this.ID.LayoutViewField = this.layoutViewField_layoutViewColumn1;
     this.ID.Name = "ID";
     //
     // layoutViewField_layoutViewColumn1
     //
     this.layoutViewField_layoutViewColumn1.EditorPreferredWidth = 10;
     this.layoutViewField_layoutViewColumn1.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1.Name = "layoutViewField_layoutViewColumn1";
     this.layoutViewField_layoutViewColumn1.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1.TextSize = new System.Drawing.Size(97, 13);
     this.layoutViewField_layoutViewColumn1.TextToControlDistance = 5;
     //
     // cotNgay
     //
     this.cotNgay.Caption = "Ngày họp";
     this.cotNgay.LayoutViewField = this.layoutViewField_layoutViewColumn1_1;
     this.cotNgay.Name = "cotNgay";
     this.cotNgay.OptionsColumn.AllowEdit = false;
     this.cotNgay.OptionsColumn.AllowFocus = false;
     this.cotNgay.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_1
     //
     this.layoutViewField_layoutViewColumn1_1.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_1.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_1.Name = "layoutViewField_layoutViewColumn1_1";
     this.layoutViewField_layoutViewColumn1_1.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_1.TextSize = new System.Drawing.Size(50, 13);
     this.layoutViewField_layoutViewColumn1_1.TextToControlDistance = 5;
     //
     // cotGioBD
     //
     this.cotGioBD.Caption = "Từ";
     this.cotGioBD.CustomizationCaption = "Từ";
     this.cotGioBD.LayoutViewField = this.layoutViewField_layoutViewColumn1_2;
     this.cotGioBD.Name = "cotGioBD";
     this.cotGioBD.OptionsColumn.AllowEdit = false;
     this.cotGioBD.OptionsColumn.AllowFocus = false;
     this.cotGioBD.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_2
     //
     this.layoutViewField_layoutViewColumn1_2.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_2.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_2.Name = "layoutViewField_layoutViewColumn1_2";
     this.layoutViewField_layoutViewColumn1_2.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_2.TextSize = new System.Drawing.Size(17, 13);
     this.layoutViewField_layoutViewColumn1_2.TextToControlDistance = 5;
     //
     // cotGioKT
     //
     this.cotGioKT.Caption = "đến";
     this.cotGioKT.LayoutViewField = this.layoutViewField_layoutViewColumn1_3;
     this.cotGioKT.Name = "cotGioKT";
     this.cotGioKT.OptionsColumn.AllowEdit = false;
     this.cotGioKT.OptionsColumn.AllowFocus = false;
     this.cotGioKT.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_3
     //
     this.layoutViewField_layoutViewColumn1_3.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_3.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_3.Name = "layoutViewField_layoutViewColumn1_3";
     this.layoutViewField_layoutViewColumn1_3.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_3.TextSize = new System.Drawing.Size(22, 13);
     this.layoutViewField_layoutViewColumn1_3.TextToControlDistance = 5;
     //
     // cotNoiDung
     //
     this.cotNoiDung.ColumnEdit = this.repNoiDung;
     this.cotNoiDung.LayoutViewField = this.layoutViewField_layoutViewColumn1_4;
     this.cotNoiDung.Name = "cotNoiDung";
     this.cotNoiDung.OptionsColumn.ReadOnly = true;
     //
     // repNoiDung
     //
     this.repNoiDung.Name = "repNoiDung";
     //
     // layoutViewField_layoutViewColumn1_4
     //
     this.layoutViewField_layoutViewColumn1_4.EditorPreferredWidth = 260;
     this.layoutViewField_layoutViewColumn1_4.Location = new System.Drawing.Point(0, 17);
     this.layoutViewField_layoutViewColumn1_4.MaxSize = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.MinSize = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.Name = "layoutViewField_layoutViewColumn1_4";
     this.layoutViewField_layoutViewColumn1_4.Size = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutViewField_layoutViewColumn1_4.TextSize = new System.Drawing.Size(0, 13);
     //
     // cotDiaDiemHop
     //
     this.cotDiaDiemHop.ColumnEdit = this.repDiaDiemHop;
     this.cotDiaDiemHop.LayoutViewField = this.layoutViewField_layoutViewColumn1_5;
     this.cotDiaDiemHop.Name = "cotDiaDiemHop";
     this.cotDiaDiemHop.OptionsColumn.ReadOnly = true;
     //
     // repDiaDiemHop
     //
     this.repDiaDiemHop.Name = "repDiaDiemHop";
     //
     // layoutViewField_layoutViewColumn1_5
     //
     this.layoutViewField_layoutViewColumn1_5.EditorPreferredWidth = 260;
     this.layoutViewField_layoutViewColumn1_5.Location = new System.Drawing.Point(0, 79);
     this.layoutViewField_layoutViewColumn1_5.MaxSize = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.MinSize = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.Name = "layoutViewField_layoutViewColumn1_5";
     this.layoutViewField_layoutViewColumn1_5.Size = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutViewField_layoutViewColumn1_5.TextSize = new System.Drawing.Size(0, 13);
     //
     // layoutViewCard1
     //
     this.layoutViewCard1.CustomizationFormText = "layoutViewCard1";
     this.layoutViewCard1.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
     this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutViewField_layoutViewColumn1_4,
     this.layoutViewField_layoutViewColumn1_5,
     this.item1,
     this.item2});
     this.layoutViewCard1.Name = "layoutViewCard1";
     this.layoutViewCard1.OptionsItemText.TextToControlDistance = 0;
     this.layoutViewCard1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutViewCard1.Text = "TemplateCard";
     //
     // item1
     //
     this.item1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.item1.AppearanceItemCaption.Options.UseFont = true;
     this.item1.CustomizationFormText = "Nội dung:";
     this.item1.Location = new System.Drawing.Point(0, 0);
     this.item1.Name = "item1";
     this.item1.Size = new System.Drawing.Size(264, 17);
     this.item1.Text = "Nội dung:";
     this.item1.TextSize = new System.Drawing.Size(46, 13);
     //
     // item2
     //
     this.item2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.item2.AppearanceItemCaption.Options.UseFont = true;
     this.item2.CustomizationFormText = "Địa điểm:";
     this.item2.Location = new System.Drawing.Point(0, 62);
     this.item2.Name = "item2";
     this.item2.Size = new System.Drawing.Size(264, 17);
     this.item2.Text = "Địa điểm:";
     this.item2.TextSize = new System.Drawing.Size(45, 13);
     //
     // repositoryItemButtonEdit3
     //
     this.repositoryItemButtonEdit3.AutoHeight = false;
     this.repositoryItemButtonEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEdit3.Name = "repositoryItemButtonEdit3";
     this.repositoryItemButtonEdit3.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // repositoryItemPictureEdit2
     //
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemButtonEdit5
     //
     this.repositoryItemButtonEdit5.AutoHeight = false;
     this.repositoryItemButtonEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Mở file", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.repositoryItemButtonEdit5.Name = "repositoryItemButtonEdit5";
     this.repositoryItemButtonEdit5.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemMemoExEdit2
     //
     this.repositoryItemMemoExEdit2.AutoHeight = false;
     this.repositoryItemMemoExEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit2.Name = "repositoryItemMemoExEdit2";
     //
     // rep_mofile
     //
     this.rep_mofile.AppearanceFocused.Options.UseImage = true;
     this.rep_mofile.Name = "rep_mofile";
     //
     // rep_luu_file
     //
     this.rep_luu_file.Name = "rep_luu_file";
     //
     // repDiaDiem
     //
     this.repDiaDiem.AutoHeight = false;
     this.repDiaDiem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDiaDiem.Name = "repDiaDiem";
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlMaster);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.PageVisible = false;
     this.xtraTabPageDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPageDetail.Text = "Chi tiết ";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlMaster.Size = new System.Drawing.Size(0, 0);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotThoiGianBatDau,
     this.CotThoiGianKetThuc,
     this.CotDiaDiem,
     this.CotNguoiToChuc,
     this.CotTinhChat,
     this.CotLoaiMeeting,
     this.CotKetQua});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     //
     // CotThoiGianBatDau
     //
     this.CotThoiGianBatDau.Caption = "Giờ bắt đầu";
     this.CotThoiGianBatDau.Name = "CotThoiGianBatDau";
     this.CotThoiGianBatDau.OptionsColumn.AllowEdit = false;
     this.CotThoiGianBatDau.OptionsColumn.AllowFocus = false;
     this.CotThoiGianBatDau.Visible = true;
     this.CotThoiGianBatDau.VisibleIndex = 2;
     this.CotThoiGianBatDau.Width = 67;
     //
     // CotThoiGianKetThuc
     //
     this.CotThoiGianKetThuc.Caption = "Giờ kết thúc";
     this.CotThoiGianKetThuc.Name = "CotThoiGianKetThuc";
     this.CotThoiGianKetThuc.OptionsColumn.AllowEdit = false;
     this.CotThoiGianKetThuc.OptionsColumn.AllowFocus = false;
     this.CotThoiGianKetThuc.Visible = true;
     this.CotThoiGianKetThuc.VisibleIndex = 3;
     this.CotThoiGianKetThuc.Width = 69;
     //
     // CotDiaDiem
     //
     this.CotDiaDiem.Caption = "Địa điểm";
     this.CotDiaDiem.Name = "CotDiaDiem";
     this.CotDiaDiem.OptionsColumn.AllowEdit = false;
     this.CotDiaDiem.OptionsColumn.AllowFocus = false;
     this.CotDiaDiem.OptionsColumn.ReadOnly = true;
     this.CotDiaDiem.Visible = true;
     this.CotDiaDiem.VisibleIndex = 0;
     this.CotDiaDiem.Width = 53;
     //
     // CotNguoiToChuc
     //
     this.CotNguoiToChuc.Caption = "Người tổ chức";
     this.CotNguoiToChuc.Name = "CotNguoiToChuc";
     this.CotNguoiToChuc.OptionsColumn.AllowEdit = false;
     this.CotNguoiToChuc.OptionsColumn.AllowFocus = false;
     this.CotNguoiToChuc.Visible = true;
     this.CotNguoiToChuc.VisibleIndex = 1;
     this.CotNguoiToChuc.Width = 79;
     //
     // CotTinhChat
     //
     this.CotTinhChat.Caption = "Tính chất";
     this.CotTinhChat.Name = "CotTinhChat";
     this.CotTinhChat.OptionsColumn.AllowEdit = false;
     this.CotTinhChat.OptionsColumn.AllowFocus = false;
     this.CotTinhChat.Visible = true;
     this.CotTinhChat.VisibleIndex = 4;
     this.CotTinhChat.Width = 56;
     //
     // CotLoaiMeeting
     //
     this.CotLoaiMeeting.Caption = "Loại";
     this.CotLoaiMeeting.Name = "CotLoaiMeeting";
     this.CotLoaiMeeting.OptionsColumn.AllowEdit = false;
     this.CotLoaiMeeting.OptionsColumn.AllowFocus = false;
     this.CotLoaiMeeting.Visible = true;
     this.CotLoaiMeeting.VisibleIndex = 5;
     this.CotLoaiMeeting.Width = 31;
     //
     // CotKetQua
     //
     this.CotKetQua.Caption = "Kết quả";
     this.CotKetQua.Name = "CotKetQua";
     this.CotKetQua.OptionsColumn.AllowEdit = false;
     this.CotKetQua.OptionsColumn.AllowFocus = false;
     this.CotKetQua.OptionsColumn.ReadOnly = true;
     this.CotKetQua.Visible = true;
     this.CotKetQua.VisibleIndex = 6;
     this.CotKetQua.Width = 49;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.rtxVanBan);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.PageVisible = false;
     this.xtraTabPage2.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPage2.Text = "Văn bản họp";
     //
     // rtxVanBan
     //
     this.rtxVanBan.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rtxVanBan.Location = new System.Drawing.Point(0, 0);
     this.rtxVanBan.MaxLength = 200;
     this.rtxVanBan.Name = "rtxVanBan";
     this.rtxVanBan.ReadOnly = true;
     this.rtxVanBan.Size = new System.Drawing.Size(0, 0);
     this.rtxVanBan.TabIndex = 4;
     this.rtxVanBan.Text = "";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.cboNguoiToChuc);
     this.popupControlContainerFilter.Controls.Add(this.txtDiaDiem);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.cboTinhChat);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.cboLoai);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(200, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(743, 66);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // cboNguoiToChuc
     //
     this.cboNguoiToChuc.DataSource = null;
     this.cboNguoiToChuc.DisplayField = null;
     this.cboNguoiToChuc.Location = new System.Drawing.Point(87, 5);
     this.cboNguoiToChuc.Name = "cboNguoiToChuc";
     this.cboNguoiToChuc.Size = new System.Drawing.Size(162, 21);
     this.cboNguoiToChuc.TabIndex = 221;
     this.cboNguoiToChuc.ValueField = null;
     //
     // txtDiaDiem
     //
     this.txtDiaDiem.Location = new System.Drawing.Point(343, 34);
     this.txtDiaDiem.Name = "txtDiaDiem";
     this.txtDiaDiem.Size = new System.Drawing.Size(380, 20);
     this.txtDiaDiem.TabIndex = 220;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(265, 37);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(41, 13);
     this.label4.TabIndex = 10;
     this.label4.Text = "Địa điểm";
     this.label4.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label4.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // cboTinhChat
     //
     this.cboTinhChat.DataSource = null;
     this.cboTinhChat.DisplayField = null;
     this.cboTinhChat.Location = new System.Drawing.Point(87, 32);
     this.cboTinhChat.Name = "cboTinhChat";
     this.cboTinhChat.Size = new System.Drawing.Size(162, 21);
     this.cboTinhChat.TabIndex = 9;
     this.cboTinhChat.ValueField = null;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(9, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 8;
     this.label3.Text = "Tính chất";
     this.label3.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(265, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(65, 13);
     this.label2.TabIndex = 7;
     this.label2.Text = "Loại cuộc họp";
     this.label2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // cboLoai
     //
     this.cboLoai.DataSource = null;
     this.cboLoai.DisplayField = null;
     this.cboLoai.Location = new System.Drawing.Point(343, 5);
     this.cboLoai.Name = "cboLoai";
     this.cboLoai.Size = new System.Drawing.Size(156, 21);
     this.cboLoai.TabIndex = 5;
     this.cboLoai.ValueField = null;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(9, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(67, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Người tổ chức";
     this.label1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(5, 5);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(96, 13);
     this.labelControl1.TabIndex = 22;
     this.labelControl1.Text = "Tùy chọn hiển thị";
     this.labelControl1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(18, 49);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Theo tuần";
     this.checkEdit1.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit1.Properties.RadioGroupIndex = 1;
     this.checkEdit1.Size = new System.Drawing.Size(83, 19);
     this.checkEdit1.TabIndex = 21;
     this.checkEdit1.TabStop = false;
     this.checkEdit1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit1.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // checkEdit2
     //
     this.checkEdit2.EditValue = true;
     this.checkEdit2.Location = new System.Drawing.Point(18, 24);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Theo ngày";
     this.checkEdit2.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit2.Properties.RadioGroupIndex = 1;
     this.checkEdit2.Size = new System.Drawing.Size(83, 19);
     this.checkEdit2.TabIndex = 17;
     this.checkEdit2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit2.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(18, 74);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Theo tháng";
     this.checkEdit3.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit3.Properties.RadioGroupIndex = 1;
     this.checkEdit3.Size = new System.Drawing.Size(83, 19);
     this.checkEdit3.TabIndex = 18;
     this.checkEdit3.TabStop = false;
     this.checkEdit3.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit3.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // imageList_layout
     //
     this.imageList_layout.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_layout.ImageStream")));
     this.imageList_layout.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList_layout.Images.SetKeyName(0, "pl-xuatkho.png");
     this.imageList_layout.Images.SetKeyName(1, "fwSave.png");
     this.imageList_layout.Images.SetKeyName(2, "Delete.png");
     //
     // frmMeetingQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(943, 579);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmMeetingQL";
     this.Text = "Cuộc họp";
     this.Load += new System.EventHandler(this.frmMeetingQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     this.dockPanel1_Container.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Tuan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Thang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngaythuchien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageChiTiet.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNoiDung)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiemHop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.item1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.item2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_mofile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_luu_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiem)).EndInit();
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaDiem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #36
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DefaultWorkbench));
     this.ribbon            = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.appMenu           = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.imageCollection1  = new DevExpress.Utils.ImageCollection(this.components);
     this.barButtonItemHelp = new DevExpress.XtraBars.BarButtonItem();
     this.biStyle           = new DevExpress.XtraBars.BarEditItem();
     this.riicStyle         = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.barStatusItemInfo = new DevExpress.XtraBars.BarStaticItem();
     this.barOtherInfo      = new DevExpress.XtraBars.BarStaticItem();
     this.ribbonStatusBar   = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.dockManager       = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.documentManager   = new DevExpress.XtraBars.Docking2010.DocumentManager(this.components);
     this.tabbedView        = new DevExpress.XtraBars.Docking2010.Views.Tabbed.TabbedView(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riicStyle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedView)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonDropDownControl = this.appMenu;
     this.ribbon.ApplicationButtonText            = null;
     this.ribbon.ExpandCollapseItem.Id            = 0;
     this.ribbon.Images = this.imageCollection1;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbon.ExpandCollapseItem,
         this.barButtonItemHelp,
         this.biStyle,
         this.barStatusItemInfo,
         this.barOtherInfo
     });
     this.ribbon.Location  = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 3;
     this.ribbon.Name      = "ribbon";
     this.ribbon.PageHeaderItemLinks.Add(this.barButtonItemHelp);
     this.ribbon.PageHeaderItemLinks.Add(this.biStyle);
     this.ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.riicStyle
     });
     this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.ribbon.ShowToolbarCustomizeItem = false;
     this.ribbon.Size      = new System.Drawing.Size(920, 50);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.Toolbar.ShowCustomizeItem = false;
     this.ribbon.SelectedPageChanged      += new System.EventHandler(this.ribbon_SelectedPageChanged);
     //
     // appMenu
     //
     this.appMenu.Name   = "appMenu";
     this.appMenu.Ribbon = this.ribbon;
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.InsertGalleryImage("question_16x16.png", "images/support/question_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/support/question_16x16.png"), 0);
     this.imageCollection1.Images.SetKeyName(0, "question_16x16.png");
     //
     // barButtonItemHelp
     //
     this.barButtonItemHelp.Caption      = "帮助";
     this.barButtonItemHelp.Id           = 2;
     this.barButtonItemHelp.ImageIndex   = 0;
     this.barButtonItemHelp.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.F1);
     this.barButtonItemHelp.Name         = "barButtonItemHelp";
     this.barButtonItemHelp.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemHelp_ItemClick);
     //
     // biStyle
     //
     this.biStyle.CategoryGuid      = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.biStyle.Edit              = this.riicStyle;
     this.biStyle.EditValue         = this.ribbon.RibbonStyle;
     this.biStyle.Id                = 1;
     this.biStyle.Name              = "biStyle";
     this.biStyle.Width             = 130;
     this.biStyle.EditValueChanged += new System.EventHandler(this.biStyle_EditValueChanged);
     //
     // riicStyle
     //
     this.riicStyle.AutoHeight = false;
     this.riicStyle.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riicStyle.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Default", DevExpress.XtraBars.Ribbon.RibbonControlStyle.Default, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Office 2007 Blue", DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2007, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Office 2010 Silver", DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Office 2013", DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013, -1)
     });
     this.riicStyle.Name = "riicStyle";
     //
     // barStatusItemInfo
     //
     this.barStatusItemInfo.Caption       = "信息提示";
     this.barStatusItemInfo.CategoryGuid  = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.barStatusItemInfo.Id            = 1;
     this.barStatusItemInfo.Name          = "barStatusItemInfo";
     this.barStatusItemInfo.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barOtherInfo
     //
     this.barOtherInfo.Alignment     = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barOtherInfo.Id            = 2;
     this.barOtherInfo.Name          = "barOtherInfo";
     this.barOtherInfo.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.barStatusItemInfo);
     this.ribbonStatusBar.ItemLinks.Add(this.barOtherInfo);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 448);
     this.ribbonStatusBar.Name     = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon   = this.ribbon;
     this.ribbonStatusBar.Size     = new System.Drawing.Size(920, 31);
     //
     // dockManager
     //
     this.dockManager.DockingOptions.HideImmediatelyOnAutoHide = true;
     this.dockManager.DockModeVS2005FadeFramesCount            = 1;
     this.dockManager.Form = this;
     this.dockManager.TopZIndexControls.AddRange(new string[] {
         "DevExpress.XtraBars.BarDockControl",
         "DevExpress.XtraBars.StandaloneBarDockControl",
         "System.Windows.Forms.StatusBar",
         "System.Windows.Forms.MenuStrip",
         "System.Windows.Forms.StatusStrip",
         "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
         "DevExpress.XtraBars.Ribbon.RibbonControl"
     });
     this.dockManager.ActivePanelChanged += new DevExpress.XtraBars.Docking.ActivePanelChangedEventHandler(this.dockManager_ActivePanelChanged);
     this.dockManager.ActiveChildChanged += new DevExpress.XtraBars.Docking.DockPanelEventHandler(this.dockManager_ActiveChildChanged);
     //
     // documentManager
     //
     this.documentManager.ContainerControl = this;
     this.documentManager.View             = this.tabbedView;
     this.documentManager.ViewCollection.AddRange(new DevExpress.XtraBars.Docking2010.Views.BaseView[] {
         this.tabbedView
     });
     this.documentManager.DocumentActivate += new DevExpress.XtraBars.Docking2010.Views.DocumentEventHandler(this.documentManager_DocumentActivate);
     //
     // tabbedView
     //
     this.tabbedView.Orientation = System.Windows.Forms.Orientation.Vertical;
     //
     // DefaultWorkbench
     //
     this.AllowFormGlass      = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(920, 479);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "DefaultWorkbench";
     this.Ribbon        = this.ribbon;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar     = this.ribbonStatusBar;
     this.Text          = "DefaultWorkbench";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.DefaultWorkbench_FormClosing);
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.DefaultWorkbench_FormClosed);
     this.Shown        += new System.EventHandler(this.DefaultWorkbench_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riicStyle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedView)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmNghiPhepQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDuyet = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemK_Duyet = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NVID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TenNV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_NgayLamViec = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioBatDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GioKetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTG_LV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Cham_Cong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_Bs = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_N_BC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Loai_NP = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_Ly_Do = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cotThoiGianCN = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.NhanVien = new ProtocolVN.Framework.Win.PLDMTreeGroup();
     this.ngayLamViec = new ProtocolVN.Framework.Win.Office.PLDateSelection();
     this.checkNghi_Nam = new DevExpress.XtraEditors.CheckEdit();
     this.chkNghi_KLuong = new DevExpress.XtraEditors.CheckEdit();
     this.DuyetSelect = new ProtocolVN.Framework.Win.PLDuyetCheckbox();
     this.label4 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkNghi_Nam.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNghi_KLuong.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDuyet,
     this.barButtonItemK_Duyet});
     this.barManager1.MaxItemId = 37;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDuyet, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemK_Duyet),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemDuyet
     //
     this.barButtonItemDuyet.Caption = "&Duyệt";
     this.barButtonItemDuyet.Id = 35;
     this.barButtonItemDuyet.Name = "barButtonItemDuyet";
     //
     // barButtonItemK_Duyet
     //
     this.barButtonItemK_Duyet.Caption = "&Không duyệt";
     this.barButtonItemK_Duyet.Id = 36;
     this.barButtonItemK_Duyet.Name = "barButtonItemK_Duyet";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(804, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 497);
     this.barDockControlBottom.Size = new System.Drawing.Size(804, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 473);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(804, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 473);
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 90);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(804, 407);
     this.splitContainerControl1.SplitterPosition = 196;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(804, 196);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ID,
     this.Cot_NVID,
     this.Cot_TenNV,
     this.Cot_NgayLamViec,
     this.Cot_GioBatDau,
     this.Cot_GioKetThuc,
     this.CotTG_LV,
     this.Cot_Cham_Cong,
     this.Cot_N_Bs,
     this.Cot_N_BC,
     this.Loai_NP,
     this.Cot_Ly_Do,
     this.cotThoiGianCN});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 1;
     this.gridViewMaster.GroupPanelText = "DANH SÁCH NGHỈ PHÉP";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowFooter = true;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Cot_NgayLamViec, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // ID
     //
     this.ID.Caption = "ID";
     this.ID.Name = "ID";
     this.ID.Width = 23;
     //
     // Cot_NVID
     //
     this.Cot_NVID.Caption = "NV_ID";
     this.Cot_NVID.Name = "Cot_NVID";
     this.Cot_NVID.Width = 42;
     //
     // Cot_TenNV
     //
     this.Cot_TenNV.Caption = "Nhân viên";
     this.Cot_TenNV.Name = "Cot_TenNV";
     this.Cot_TenNV.Visible = true;
     this.Cot_TenNV.VisibleIndex = 0;
     this.Cot_TenNV.Width = 60;
     //
     // Cot_NgayLamViec
     //
     this.Cot_NgayLamViec.Caption = "Ngày nghỉ phép";
     this.Cot_NgayLamViec.Name = "Cot_NgayLamViec";
     this.Cot_NgayLamViec.Visible = true;
     this.Cot_NgayLamViec.VisibleIndex = 2;
     this.Cot_NgayLamViec.Width = 100;
     //
     // Cot_GioBatDau
     //
     this.Cot_GioBatDau.Caption = "Giờ bắt đầu";
     this.Cot_GioBatDau.Name = "Cot_GioBatDau";
     this.Cot_GioBatDau.Width = 67;
     //
     // Cot_GioKetThuc
     //
     this.Cot_GioKetThuc.Caption = "Giờ kết thúc";
     this.Cot_GioKetThuc.Name = "Cot_GioKetThuc";
     this.Cot_GioKetThuc.Width = 69;
     //
     // CotTG_LV
     //
     this.CotTG_LV.Caption = "Thời gian làm việc (giờ : phút)";
     this.CotTG_LV.Name = "CotTG_LV";
     this.CotTG_LV.SummaryItem.DisplayFormat = "Thời gian: {0:#.##0}";
     this.CotTG_LV.SummaryItem.FieldName = "TG";
     this.CotTG_LV.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.CotTG_LV.Width = 153;
     //
     // Cot_Cham_Cong
     //
     this.Cot_Cham_Cong.Caption = "Đã chấm công";
     this.Cot_Cham_Cong.Name = "Cot_Cham_Cong";
     this.Cot_Cham_Cong.Width = 80;
     //
     // Cot_N_Bs
     //
     this.Cot_N_Bs.Caption = "Nghỉ buổi sáng";
     this.Cot_N_Bs.Name = "Cot_N_Bs";
     this.Cot_N_Bs.SummaryItem.DisplayFormat = "{0:#.###} (buổi)";
     this.Cot_N_Bs.SummaryItem.FieldName = "IS_NGHI_BUOI_SANG";
     this.Cot_N_Bs.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.Cot_N_Bs.Visible = true;
     this.Cot_N_Bs.VisibleIndex = 1;
     this.Cot_N_Bs.Width = 82;
     //
     // Cot_N_BC
     //
     this.Cot_N_BC.Caption = "Nghỉ buổi chiều";
     this.Cot_N_BC.Name = "Cot_N_BC";
     this.Cot_N_BC.SummaryItem.DisplayFormat = "{0:#.###} (buổi)";
     this.Cot_N_BC.SummaryItem.FieldName = "IS_NGHI_BUOI_CHIEU";
     this.Cot_N_BC.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.Cot_N_BC.Visible = true;
     this.Cot_N_BC.VisibleIndex = 3;
     this.Cot_N_BC.Width = 84;
     //
     // Loai_NP
     //
     this.Loai_NP.Caption = "Loại nghỉ phép";
     this.Loai_NP.Name = "Loai_NP";
     this.Loai_NP.Visible = true;
     this.Loai_NP.VisibleIndex = 4;
     this.Loai_NP.Width = 81;
     //
     // Cot_Ly_Do
     //
     this.Cot_Ly_Do.Caption = "Lý do";
     this.Cot_Ly_Do.Name = "Cot_Ly_Do";
     this.Cot_Ly_Do.Visible = true;
     this.Cot_Ly_Do.VisibleIndex = 5;
     this.Cot_Ly_Do.Width = 38;
     //
     // cotThoiGianCN
     //
     this.cotThoiGianCN.Caption = "Thời gian cập nhật";
     this.cotThoiGianCN.Name = "cotThoiGianCN";
     this.cotThoiGianCN.Visible = true;
     this.cotThoiGianCN.VisibleIndex = 6;
     this.cotThoiGianCN.Width = 100;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(804, 205);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(797, 176);
     this.xtraTabPageDetail.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlDetail.Size = new System.Drawing.Size(797, 176);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetail.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.NhanVien);
     this.popupControlContainerFilter.Controls.Add(this.ngayLamViec);
     this.popupControlContainerFilter.Controls.Add(this.checkNghi_Nam);
     this.popupControlContainerFilter.Controls.Add(this.chkNghi_KLuong);
     this.popupControlContainerFilter.Controls.Add(this.DuyetSelect);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(804, 66);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // NhanVien
     //
     this.NhanVien.Location = new System.Drawing.Point(66, 9);
     this.NhanVien.Name = "NhanVien";
     this.NhanVien.Size = new System.Drawing.Size(212, 20);
     this.NhanVien.TabIndex = 0;
     //
     // ngayLamViec
     //
     this.ngayLamViec.Caption = "Năm 2010 và 2011";
     this.ngayLamViec.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear;
     this.ngayLamViec.FirstFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayLamViec.FirstTo = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.ngayLamViec.FromDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayLamViec.Location = new System.Drawing.Point(365, 9);
     this.ngayLamViec.Name = "ngayLamViec";
     this.ngayLamViec.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayLamViec.SecondFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayLamViec.SecondTo = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.ngayLamViec.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear;
     this.ngayLamViec.Size = new System.Drawing.Size(225, 21);
     this.ngayLamViec.TabIndex = 1;
     this.ngayLamViec.ToDate = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.ngayLamViec.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // checkNghi_Nam
     //
     this.checkNghi_Nam.Location = new System.Drawing.Point(159, 36);
     this.checkNghi_Nam.MenuManager = this.barManager1;
     this.checkNghi_Nam.Name = "checkNghi_Nam";
     this.checkNghi_Nam.Properties.Caption = "Phép năm";
     this.checkNghi_Nam.Size = new System.Drawing.Size(87, 19);
     this.checkNghi_Nam.TabIndex = 3;
     //
     // chkNghi_KLuong
     //
     this.chkNghi_KLuong.Location = new System.Drawing.Point(64, 36);
     this.chkNghi_KLuong.MenuManager = this.barManager1;
     this.chkNghi_KLuong.Name = "chkNghi_KLuong";
     this.chkNghi_KLuong.Properties.Caption = "Không lương";
     this.chkNghi_KLuong.Size = new System.Drawing.Size(89, 19);
     this.chkNghi_KLuong.TabIndex = 2;
     //
     // DuyetSelect
     //
     this.DuyetSelect.Location = new System.Drawing.Point(356, 36);
     this.DuyetSelect.Name = "DuyetSelect";
     this.DuyetSelect.Size = new System.Drawing.Size(216, 24);
     this.DuyetSelect.TabIndex = 5;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(284, 14);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(75, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Ngày nghỉ phép";
     this.label4.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 14);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Nhân viên";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // frmNghiPhepQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 497);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmNghiPhepQL";
     this.Text = "Theo dõi nghỉ phép";
     this.Load += new System.EventHandler(this.frmTimeInOutQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkNghi_Nam.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNghi_KLuong.Properties)).EndInit();
     this.ResumeLayout(false);
 }
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.repositoryItemImageComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.barMdiChildrenListItem1 = new DevExpress.XtraBars.BarMdiChildrenListItem();
            this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.barEditItem3 = new DevExpress.XtraBars.BarEditItem();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.bar1 = new DevExpress.XtraBars.Bar();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.bar2 = new DevExpress.XtraBars.Bar();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.barEditItem4 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemImageComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            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.BarButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
            this.PopupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PopupMenu1)).BeginInit();
            this.SuspendLayout();
            // 
            // repositoryItemImageComboBox3
            // 
            this.repositoryItemImageComboBox3.AutoHeight = false;
            this.repositoryItemImageComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox3.Name = "repositoryItemImageComboBox3";
            // 
            // barMdiChildrenListItem1
            // 
            this.barMdiChildrenListItem1.Caption = "Windows";
            this.barMdiChildrenListItem1.Id = 1;
            this.barMdiChildrenListItem1.Name = "barMdiChildrenListItem1";
            // 
            // barAndDockingController1
            // 
            this.barAndDockingController1.LookAndFeel.UseDefaultLookAndFeel = false;
            this.barAndDockingController1.PropertiesBar.AllowLinkLighting = false;
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
            // 
            // barEditItem3
            // 
            this.barEditItem3.Caption = "Page Image Position";
            this.barEditItem3.Edit = this.repositoryItemImageComboBox3;
            this.barEditItem3.Id = 7;
            this.barEditItem3.Name = "barEditItem3";
            this.barEditItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.Caption;
            this.barEditItem3.EditValueChanged += new System.EventHandler(this.barEditItem3_EditValueChanged);
            // 
            // barManager1
            // 
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.bar1,
            this.bar2});
            this.barManager1.Controller = this.barAndDockingController1;
            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.barButtonItem1,
            this.barMdiChildrenListItem1,
            this.barEditItem1,
            this.barEditItem2,
            this.barEditItem3,
            this.barEditItem4,
            this.BarButtonItem2});
            this.barManager1.MaxItemId = 10;
            this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemImageComboBox1,
            this.repositoryItemImageComboBox2,
            this.repositoryItemImageComboBox3,
            this.repositoryItemImageComboBox4});
            // 
            // bar1
            // 
            this.bar1.BarName = "barWindows";
            this.bar1.DockCol = 0;
            this.bar1.DockRow = 0;
            this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.bar1.FloatLocation = new System.Drawing.Point(42, 179);
            this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.barMdiChildrenListItem1)});
            this.bar1.Text = "Windows";
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Add New Form";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
            // 
            // bar2
            // 
            this.bar2.BarName = "barOptions";
            this.bar2.DockCol = 0;
            this.bar2.DockRow = 1;
            this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.bar2.FloatLocation = new System.Drawing.Point(40, 210);
            this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.barEditItem1, "", false, true, true, 85),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.barEditItem2, "", false, true, true, 87),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.barEditItem3, "", false, true, true, 85),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.barEditItem4, "", false, true, true, 81)});
            this.bar2.Text = "Options";
            // 
            // barEditItem1
            // 
            this.barEditItem1.Caption = "Header Location";
            this.barEditItem1.Edit = this.repositoryItemImageComboBox1;
            this.barEditItem1.Id = 5;
            this.barEditItem1.Name = "barEditItem1";
            this.barEditItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.Caption;
            this.barEditItem1.EditValueChanged += new System.EventHandler(this.barEditItem1_EditValueChanged);
            // 
            // barEditItem2
            // 
            this.barEditItem2.Caption = "Header Orientation";
            this.barEditItem2.Edit = this.repositoryItemImageComboBox2;
            this.barEditItem2.Id = 6;
            this.barEditItem2.Name = "barEditItem2";
            this.barEditItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.Caption;
            this.barEditItem2.EditValueChanged += new System.EventHandler(this.barEditItem2_EditValueChanged);
            // 
            // repositoryItemImageComboBox2
            // 
            this.repositoryItemImageComboBox2.AutoHeight = false;
            this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
            // 
            // barEditItem4
            // 
            this.barEditItem4.Caption = "Header AutoFill";
            this.barEditItem4.Edit = this.repositoryItemImageComboBox4;
            this.barEditItem4.Id = 8;
            this.barEditItem4.Name = "barEditItem4";
            this.barEditItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.Caption;
            this.barEditItem4.EditValueChanged += new System.EventHandler(this.barEditItem4_EditValueChanged);
            // 
            // repositoryItemImageComboBox4
            // 
            this.repositoryItemImageComboBox4.AutoHeight = false;
            this.repositoryItemImageComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox4.Name = "repositoryItemImageComboBox4";
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(776, 50);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 310);
            this.barDockControlBottom.Size = new System.Drawing.Size(776, 0);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 50);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 260);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(776, 50);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 260);
            // 
            // BarButtonItem2
            // 
            this.BarButtonItem2.Caption = "BarButtonItem2";
            this.BarButtonItem2.Id = 9;
            this.BarButtonItem2.Name = "BarButtonItem2";
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
            this.imageList1.Images.SetKeyName(0, "");
            this.imageList1.Images.SetKeyName(1, "");
            this.imageList1.Images.SetKeyName(2, "");
            this.imageList1.Images.SetKeyName(3, "");
            this.imageList1.Images.SetKeyName(4, "");
            this.imageList1.Images.SetKeyName(5, "");
            // 
            // xtraTabbedMdiManager1
            // 
            this.xtraTabbedMdiManager1.Controller = this.barAndDockingController1;
            this.xtraTabbedMdiManager1.MdiParent = this;
            this.xtraTabbedMdiManager1.PageAdded += new DevExpress.XtraTabbedMdi.MdiTabPageEventHandler(this.xtraTabbedMdiManager1_PageAdded);
            
            this.xtraTabbedMdiManager1.PageRemoved += new DevExpress.XtraTabbedMdi.MdiTabPageEventHandler(this.xtraTabbedMdiManager1_PageRemoved);
            // 
            // PopupMenu1
            // 
            this.PopupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.BarButtonItem2)});
            this.PopupMenu1.Manager = this.barManager1;
            this.PopupMenu1.Name = "PopupMenu1";
            // 
            // Form1
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(776, 310);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.IsMdiContainer = true;
            this.Name = "Form1";
            this.Text = "TabbedMDI (CS code)";
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PopupMenu1)).EndInit();
            this.ResumeLayout(false);

		}