示例#1
0
        private void InitializeIndicationGridControlComponent()
        {
            this.IndicationCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.IndicationName = new DevExpress.XtraGrid.Columns.GridColumn();

            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                this.IndicationCode,
                this.IndicationName
            });
            this.gridView.GridControl = this.gridControlView;
            this.gridView.Name        = "gridView1";
            this.gridView.OptionsBehavior.Editable    = false;
            this.gridView.OptionsNavigation.UseTabKey = false;

            this.IndicationCode.Caption      = "Code";
            this.IndicationCode.FieldName    = "Code";
            this.IndicationCode.Name         = "IndicationCode";
            this.IndicationCode.Visible      = true;
            this.IndicationCode.VisibleIndex = 0;

            this.IndicationName.Caption      = "Name";
            this.IndicationName.FieldName    = "Name";
            this.IndicationName.Name         = "IndicationName";
            this.IndicationName.Visible      = true;
            this.IndicationName.VisibleIndex = 1;
        }
示例#2
0
        public AppListInfo LinkListToColumn(TableBase.TableEnum listName, DevExpress.XtraGrid.Columns.GridColumn col)
        {
            AppListInfo l = AppListStore.Find(x => x.AppListName == listName);

            l.LinkListToColumn(col);
            return(l);
        }
示例#3
0
        void ABCRepositoryGridLookupEdit_QueryPopUp(object sender, System.ComponentModel.CancelEventArgs e)
        {
            if (sender is ABCGridLookUpEdit && this.Grid != null && this.Grid.DefaultView != null)
            {
                (this.Grid.DefaultView as DevExpress.XtraGrid.Views.Grid.GridView).ClearColumnsFilter();
            }

            this.View.ClearColumnsFilter();

            String strTableName = String.Empty;

            if (sender is ABCGridLookUpEdit)
            {
                strTableName = (sender as ABCGridLookUpEdit).LookupTableName;
                if (String.IsNullOrWhiteSpace(strTableName))
                {
                    if (this.Grid != null && this.Grid.DefaultView != null)
                    {
                        DevExpress.XtraGrid.Columns.GridColumn col = (this.Grid.DefaultView as DevExpress.XtraGrid.Views.Grid.GridView).FocusedColumn as DevExpress.XtraGrid.Columns.GridColumn;
                        if (col == null)
                        {
                            return;
                        }

                        object obj = col.GetType().GetField("TableName").GetValue(col);
                        if (obj != null)
                        {
                            strTableName = obj.ToString();
                        }
                    }
                }

                DataCachingProvider.RefreshLookupTable(strTableName);
            }
        }
示例#4
0
        private void TableShowInit()
        {
            DevExpress.XtraGrid.Columns.GridColumn Col1 = new DevExpress.XtraGrid.Columns.GridColumn();// // ID BoxId UserId  BoxName  UserName CardNo
            Col1.FieldName = "ID";
            Col1.Caption   = "ID";
            Col1.Visible   = false;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "BoxName";
            Col1.Caption   = "工具柜名称";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "UserName";
            Col1.Caption   = "用户名称";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "IcNo";
            Col1.Caption   = "IC卡号";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "CardNo";
            Col1.Caption   = "IC卡编号";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);
        }
示例#5
0
        public void CopySettings(DevExpress.XtraGrid.Views.Grid.GridView sourceGV, DevExpress.XtraGrid.Views.Grid.GridView targetGV)
        {
            targetGV.GridControl.ForceInitialize();
            targetGV.OptionsView.ColumnAutoWidth         = sourceGV.OptionsView.ColumnAutoWidth;
            targetGV.OptionsView.ShowAutoFilterRow       = sourceGV.OptionsView.ShowAutoFilterRow;
            targetGV.OptionsView.ShowFooter              = sourceGV.OptionsView.ShowFooter;
            targetGV.OptionsView.ShowGroupPanel          = sourceGV.OptionsView.ShowGroupPanel;
            targetGV.OptionsView.EnableAppearanceEvenRow = sourceGV.OptionsView.EnableAppearanceEvenRow;
            targetGV.OptionsView.EnableAppearanceOddRow  = sourceGV.OptionsView.EnableAppearanceOddRow;
            targetGV.OptionsView.ShowFilterPanelMode     = sourceGV.OptionsView.ShowFilterPanelMode;
            targetGV.OptionsView.ShowGroupedColumns      = sourceGV.OptionsView.ShowGroupedColumns;


            targetGV.Columns.Clear();//reset all columns

            foreach (DevExpress.XtraGrid.Columns.GridColumn col in sourceGV.Columns)
            {
                DevExpress.XtraGrid.Columns.GridColumn colToken = targetGV.Columns.AddField(col.FieldName);
                colToken.Caption            = col.GetCaption();
                colToken.FieldNameSortGroup = col.FieldNameSortGroup;
                colToken.SortIndex          = col.SortIndex;
                colToken.SortMode           = col.SortMode;
                colToken.SortOrder          = col.SortOrder;
                colToken.Visible            = col.Visible;
                colToken.VisibleIndex       = col.VisibleIndex;
                colToken.Width             = col.Width;
                colToken.UnboundExpression = col.UnboundExpression;
                colToken.UnboundType       = col.UnboundType;
            }
        }
        private void Build()
        {
            dgvQuickLookup.Dock     = DockStyle.Fill;
            dgvQuickLookup.ReadOnly = true;
            dgvQuickLookup.strZone  = this.strZone;

            dgvQuickLookup.BuildGridView(this.isLookup);

            this.Controls.Add(dgvQuickLookup);

            //dgvQuickLookup.ResizeGridView();

            if (bMuiltiLookup)
            {
                //DevExpress.XtraGrid.Columns.GridColumn dgvchkBoxColumn = new DevExpress.XtraGrid.Columns.GridColumn()

                DevExpress.XtraGrid.Columns.GridColumn ColSelect = new DevExpress.XtraGrid.Columns.GridColumn();
                //DataGridViewCheckBoxColumn dgvchkBoxColumn = new DataGridViewCheckBoxColumn();
                ColSelect.Name         = "SELECT";
                ColSelect.FieldName    = "SELECT";
                ColSelect.Visible      = true;
                ColSelect.VisibleIndex = 0;
                ColSelect.UnboundType  = DevExpress.Data.UnboundColumnType.Boolean;
                ColSelect.Caption      = "Chọn";
                ColSelect.Width        = 80;
                dgvQuickLookup.dgvGridView.Columns.Insert(0, ColSelect);
                //dgvQuickLookup.dgvAdvBandedGridView.Columns.Add(ColSelect);
                //ColSelect.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                //ColSelect.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            }
        }
示例#7
0
 private void AddColumn(string xCaption, string xFieldName, int xWidth)
 {//DevExpress.XtraGrid.Columns.GridColumn
     DevExpress.XtraGrid.Columns.GridColumn g = new DevExpress.XtraGrid.Columns.GridColumn();
     g.AppearanceCell.Font                     = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     g.AppearanceCell.Options.UseFont          = true;
     g.AppearanceHeader.Font                   = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     g.AppearanceHeader.ForeColor              = System.Drawing.Color.Black;
     g.AppearanceHeader.Options.UseFont        = true;
     g.AppearanceHeader.Options.UseForeColor   = true;
     g.AppearanceHeader.Options.UseTextOptions = true;
     g.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     if (xFieldName == "Index")
     {
         g.AppearanceCell.Options.UseTextOptions = true;
         g.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     }
     g.Caption   = xCaption;
     g.FieldName = xFieldName;
     g.Name      = xFieldName;
     g.OptionsColumn.AllowEdit = false;
     g.Visible      = true;
     g.VisibleIndex = 0;
     g.Width        = xWidth;
     gridView2.Columns.Add(g);
     //return g;
 }
        private DevExpress.XtraGrid.Columns.GridColumn AddGridColumn(bool isDisplayProperty, bool isString, string columnCaption, string fieldName)
        {
            DevExpress.XtraGrid.Columns.GridColumn column = new DevExpress.XtraGrid.Columns.GridColumn();

            column.AppearanceCell.Options.UseTextOptions = true;
            if (isString)
            {
                column.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
                column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.None;
            }
            else
            {
                column.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
                column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            }
            column.Caption      = isDisplayProperty ? columnCaption : fieldName;
            column.FieldName    = fieldName;
            column.Name         = "datacol" + grdView.Columns.Count.ToString();
            column.Width        = 130;
            column.Visible      = true;
            column.VisibleIndex = isDisplayProperty ? 0 : -1;
            column.SortIndex    = (column.VisibleIndex > 0) ? 0 : -1;
            this.grdView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { column });

            return(column);
        }
示例#9
0
        private void grvUser_ValidateRow(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e)
        {
            DevExpress.XtraGrid.Views.Grid.GridView View      = (DevExpress.XtraGrid.Views.Grid.GridView)sender;
            DevExpress.XtraGrid.Columns.GridColumn  sMaNhom   = View.Columns["ID_NHOM"];
            DevExpress.XtraGrid.Columns.GridColumn  sTenUser  = View.Columns["USER_NAME"];
            DevExpress.XtraGrid.Columns.GridColumn  sFullName = View.Columns["FULL_NAME"];

            if (View.GetRowCellValue(e.RowHandle, sTenUser).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(sTenUser, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraTenUserNULL", Commons.Modules.TypeLanguage));
                XtraMessageBox.Show(Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraTenUserNULL", Commons.Modules.TypeLanguage), "", MessageBoxButtons.OK, MessageBoxIcon.Error); return;
            }

            if (View.GetRowCellValue(e.RowHandle, sTenUser).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(sTenUser, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraTenUserNULL", Commons.Modules.TypeLanguage));
                XtraMessageBox.Show(Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraTenUserNULL", Commons.Modules.TypeLanguage), "", MessageBoxButtons.OK, MessageBoxIcon.Error); return;
            }
            if (!CheckUser(View.GetRowCellValue(e.RowHandle, sTenUser).ToString()))
            {
                e.Valid = false;
                View.SetColumnError(sTenUser, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgDatontainguoidung", Commons.Modules.TypeLanguage));
                XtraMessageBox.Show(Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgDatontainguoidung", Commons.Modules.TypeLanguage), "", MessageBoxButtons.OK, MessageBoxIcon.Error); return;
            }
            if (View.GetRowCellValue(e.RowHandle, sFullName).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(sFullName, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraFullNameNULL", Commons.Modules.TypeLanguage));
                XtraMessageBox.Show(Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraFullNameNULL", Commons.Modules.TypeLanguage), "", MessageBoxButtons.OK, MessageBoxIcon.Error); return;
            }
        }
        private void createGridColumns(DataSet ds, DevExpress.XtraGrid.Views.Grid.GridView gridView)
        {
            gridView.Columns.Clear();
            foreach (DataColumn dc in ds.Tables[0].Columns)
            {
                DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                col.Name      = "Xtra" + gridView.Name + dc.ColumnName;
                col.FieldName = dc.ColumnName;
                if (dc.ColumnName.Equals("Name"))
                {
                    col.UnboundType            = DevExpress.Data.UnboundColumnType.String;
                    col.Caption                = "列名";
                    col.VisibleIndex           = 1;
                    col.OptionsColumn.ReadOnly = true;
                }
                else if (dc.ColumnName.Equals("Description"))
                {
                    col.UnboundType            = DevExpress.Data.UnboundColumnType.String;
                    col.Caption                = "描述";
                    col.VisibleIndex           = 2;
                    col.OptionsColumn.ReadOnly = true;
                }
                else if (dc.ColumnName.Equals("IsDynamic"))
                {
                    col.UnboundType            = DevExpress.Data.UnboundColumnType.Boolean;
                    col.Caption                = "是否动态列";
                    col.VisibleIndex           = 0;
                    col.OptionsColumn.ReadOnly = false;
                }

                gridView.Columns.Add(col);
            }
        }
示例#11
0
        /// <summary>
        /// 修改订单类型时获取订单类型下相应的特征名称
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ZMMTYPChanged(string ZMMTYP)
        {
            //获取特性值
            DataSet ds = this._entity.GetATNAM(ZMMTYP);

            if (!string.IsNullOrEmpty(this._entity.ErrorMsg))
            {
                MessageService.ShowMessage(this._entity.ErrorMsg);
                return;
            }

            while (gridView1.Columns.Count > COL_NUM)
            {
                gridView1.Columns.RemoveAt(COL_NUM);
            }

            if (ds.Tables.Count > 0)
            {
                DataTable dt = ds.Tables[0];
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    DevExpress.XtraGrid.Columns.GridColumn gc = new DevExpress.XtraGrid.Columns.GridColumn();
                    gc.FieldName              = dt.Rows[i][2].ToString().Remove(2, 1);
                    gc.Caption                = dt.Rows[i][4].ToString();
                    gc.Visible                = true;
                    gc.Name                   = "col" + dt.Rows[i][2].ToString();
                    gc.VisibleIndex           = i + COL_NUM;
                    gc.OptionsColumn.ReadOnly = true;
                    gc.Width                  = 100;
                    gridView1.Columns.Add(gc);
                }
                gridView1.RefreshData();
            }
        }
示例#12
0
 /// <summary>
 /// 初始化gridView
 /// </summary>
 private void InitGridView()
 {
     this.gridView1.Columns.Clear();
     if (this.textCel != null && this.textCel != "")
     {
         DevExpress.XtraGrid.Columns.GridColumn gridColumn = new DevExpress.XtraGrid.Columns.GridColumn();
         gridColumn.Caption   = this.textCel;
         gridColumn.FieldName = this.textCel;
         gridColumn.Name      = "gridColumn";
         gridColumn.Visible   = true;
         this.gridView1.Columns.Add(gridColumn);
     }
     if (this.textCels != null && this.textCels.Length != 0)
     {
         foreach (string str in this.textCels)
         {
             DevExpress.XtraGrid.Columns.GridColumn gridColumn = new DevExpress.XtraGrid.Columns.GridColumn();
             gridColumn.Caption   = str;
             gridColumn.FieldName = str;
             gridColumn.Name      = str;
             gridColumn.Visible   = true;
             this.gridView1.Columns.Add(gridColumn);
         }
     }
 }
示例#13
0
        /// <summary>
        /// 工具柜表
        /// </summary>
        private void ShowInitBoxSelect()
        {
            DevExpress.XtraGrid.Columns.GridColumn Col1 = new DevExpress.XtraGrid.Columns.GridColumn();// ID,tvParent,tvChildId,PlaceName
            Col1.FieldName = "ID";
            Col1.Caption   = "ID";
            Col1.Visible   = false;
            gridView4.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "tvParent";
            Col1.Caption   = "tvParent";
            Col1.Visible   = false;
            gridView4.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "tvChildId";
            Col1.Caption   = "tvChildId";
            Col1.Visible   = false;
            gridView4.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "PlaceName";
            Col1.Caption   = "名称";
            Col1.Visible   = true;
            gridView4.Columns.Add(Col1);
        }
示例#14
0
        public void        LinkListToColumn(AppNonListEnum listName, DevExpress.XtraGrid.Columns.GridColumn col)
        {
            #region OldCost
            //switch (listName)
            //{
            //    case AppNonListEnum.MarkerSymbolImageList:
            //        col.ColumnEdit = symbolRIImageComboBox;
            //        break;
            //    case AppNonListEnum.ActiveByteCheckEdit:
            //        col.ColumnEdit = activeRICheckEdit;
            //        break;
            //    case AppNonListEnum.CalculatorColumn:
            //        col.ColumnEdit = calcRICalcEdit;
            //        break;
            //    case AppNonListEnum.DateColumn:
            //        col.ColumnEdit = dateRIDateEdit;
            //        break;
            //    case AppNonListEnum.DateTimeColumn:
            //        col.ColumnEdit = dateTimeRIDateEdit;
            //        break;

            //    default:
            //        break;
            //}
            #endregion

            col.ColumnEdit = FindList(listName);
        }
示例#15
0
        static public void gridviewCheckColumnAdd(DevExpress.XtraGrid.Views.Grid.GridView _view, String _caption, String _fild_name, int _width, bool _visible, DevExpress.Utils.HorzAlignment _text_align, bool _isSortable = true, bool _isEditable = false)
        {
            if (null != _view)
            {
                DevExpress.XtraGrid.Columns.GridColumn new_column = new DevExpress.XtraGrid.Columns.GridColumn();
                if (null != new_column)
                {
                    _view.Columns.Add(new_column);

                    new_column.Caption   = _caption;
                    new_column.FieldName = _fild_name;
                    new_column.Width     = _width;
                    new_column.Visible   = _visible;
                    new_column.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    new_column.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
                    new_column.AppearanceCell.TextOptions.HAlignment   = _text_align;
                    new_column.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;

                    new_column.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;

                    new_column.OptionsFilter.AllowFilter = false;
                    new_column.OptionsColumn.AllowEdit   = _isEditable;
                    new_column.OptionsColumn.AllowSort   = (_isSortable ? DefaultBoolean.True : DefaultBoolean.False);
                }
            }
        }
示例#16
0
        private void PrepareBSHMstHelpGrid()

        {
            HelpGridView.Columns.Clear();
            DevExpress.XtraGrid.Columns.GridColumn col1 = new DevExpress.XtraGrid.Columns.GridColumn

            {
                FieldName = "BSCode",

                Visible      = true,
                SortOrder    = (DevExpress.Data.ColumnSortOrder.Ascending),
                VisibleIndex = 0
            };
            col1.OptionsColumn.AllowEdit = false;
            HelpGridView.Columns.Add(col1);


            DevExpress.XtraGrid.Columns.GridColumn col2 = new DevExpress.XtraGrid.Columns.GridColumn
            {
                FieldName    = "BSDesc",
                Visible      = true,
                VisibleIndex = 1
            };
            col2.OptionsColumn.AllowEdit = false;
            HelpGridView.Columns.Add(col2);
            DevExpress.XtraGrid.Columns.GridColumn col3 = new DevExpress.XtraGrid.Columns.GridColumn
            {
                FieldName    = "Select",
                Visible      = true,
                VisibleIndex = 1,
            };
            col3.OptionsColumn.AllowEdit = true;
            HelpGridView.Columns.Add(col3);
        }
示例#17
0
        /// <summary>
        /// 生成表头
        /// </summary>
        /// <param name="fieldNameBefore"></param>
        /// <param name="nodeFieldCount"></param>
        /// <param name="colNames"></param>
        public void makeColumns(string fieldNameBefore, int nodeFieldCount, string[] colNames)
        {
            gcGrid.DataSource = null;
            gvDetail.Columns.Clear();
            DataTable dtTemp = BaseModuleController.getTempDataTable(fieldNameBefore, nodeFieldCount);

            int colIndexx = 0;

            DevExpress.XtraGrid.Columns.GridColumn colTemp = null;
            foreach (string cName in colNames)
            {
                colIndexx++;
                colTemp              = new DevExpress.XtraGrid.Columns.GridColumn();
                colTemp.Caption      = cName;
                colTemp.FieldName    = fieldNameBefore + colIndexx;
                colTemp.Name         = fieldNameBefore + colIndexx;
                colTemp.Visible      = true;
                colTemp.VisibleIndex = colIndexx;

                if (cName == "归一化单位")
                {
                    colTemp.OptionsColumn.AllowEdit = true;
                }
                else
                {
                    colTemp.OptionsColumn.AllowEdit = false;
                }

                gvDetail.Columns.Add(colTemp);
            }
        }
示例#18
0
        public void LinkListToColumn(DevExpress.XtraGrid.Columns.GridColumn col, Type tableType, string _valueMember = "", string gridFilterString = "")
        {
            XPClassInfo classInfo = AppListSession.GetClassInfo(tableType);

            DataMemberXPCollection = new XPCollection(AppListSession, classInfo);

            var lookupGrd     = new RepositoryItemSearchLookUpEdit();
            var lookupGrdView = new GridView();

            lookupGrd.BeginInit();
            lookupGrdView.BeginInit();
            SetupGridView(lookupGrdView, DataMemberXPCollection);
            lookupGrd.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
            });
            lookupGrd.Name          = "lookupGrd";
            lookupGrd.View          = lookupGrdView;
            lookupGrd.DataSource    = DataMemberXPCollection;
            lookupGrd.DisplayMember = DisplayMember;
            lookupGrd.ValueMember   = string.IsNullOrEmpty(_valueMember) ? ValueMember : _valueMember;
            //if (_valueMember.IsNotNull()) lookupGrd.KeyMember = _valueMember;
            col.ColumnEdit = lookupGrd;

            ActiveColumnLinks.Add(col);
            RetrieveRows(false); //Tell AppList to get its rows if it the first use
        }
示例#19
0
        protected override void Edit()
        {
            DevExpress.XtraGrid.Columns.GridColumn gc = this.gridView1.FocusedColumn;
            if (gc.FieldName.IndexOf("Y") < 0)
            {
                return;
            }

            Ps_Volume obj = null;

            foreach (Ps_Volume pv in list)
            {
                if (pv.Years == Convert.ToInt32(gc.FieldName.Replace("Y", "")))
                {
                    obj = pv; break;
                }
            }
            if (obj == null)
            {
                return;
            }

            //执行修改操作
            using (FrmPs_VolumeDialog dlg = new FrmPs_VolumeDialog())
            {
                dlg.Object = obj;   //绑定副本
                if (dlg.ShowDialog() != DialogResult.OK)
                {
                    return;
                }
            }
            InitData();
        }
示例#20
0
        /// <summary>
        /// 绑定一维表格(外挂表)
        /// </summary>
        /// <param name="columnNames">列名数组</param>
        /// <param name="columnIDs">数据字段数组</param>
        /// <param name="invisibleColumns">需要隐藏的数据字段数组</param>
        public void SetGridColumns(String[] columnNames, String[] columnIDs, String[] invisibleColumns)
        {
            _gridView.Columns.Clear();
            for (int i = 0; i < columnIDs.Length; i++)
            {
                DevExpress.XtraGrid.Columns.GridColumn myc = new DevExpress.XtraGrid.Columns.GridColumn()
                {
                    Name = columnIDs[i], Caption = columnNames[i], FieldName = columnIDs[i]
                };
                foreach (string s in invisibleColumns)
                {
                    if (columnIDs[i].Trim() == s.Trim())
                    {
                        myc.Visible                 = false;
                        myc.VisibleIndex            = -1;
                        myc.OptionsColumn.AllowEdit = true;
                    }
                    else
                    {
                        myc.VisibleIndex = i;
                    }
                    myc.OptionsColumn.AllowEdit = true;
                }

                _gridView.Columns.Add(myc);
            }
        }
示例#21
0
        private void InitAdressColumn()
        {
            DevExpress.XtraGrid.Columns.GridColumn markCol = gridView1.Columns.AddVisible("Adress");
            RepositoryItemMemoEdit riMemoEdit = gridControl1.RepositoryItems.Add("MemoEdit") as RepositoryItemMemoEdit;

            markCol.ColumnEdit = riMemoEdit;
        }
示例#22
0
        void addChkCol()
        {
            ((ISupportInitialize)grDM).BeginInit();
            ((ISupportInitialize)gvDM).BeginInit();
            if (gvDM.Columns["_Chk"] != null)
            {
                gvDM.Columns.Remove(gvDM.Columns.ColumnByFieldName("_Chk"));
            }
            DataColumn chkDC = new DataColumn("_Chk", typeof(Boolean));

            chkDC.DefaultValue = false;
            _Data.DsData.Tables[0].Columns.Add(chkDC);
            DevExpress.XtraGrid.Columns.GridColumn chkGC = new DevExpress.XtraGrid.Columns.GridColumn();
            chkGC.ColumnEdit   = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            chkGC.Caption      = " Quyền";
            chkGC.FieldName    = "_Chk";
            chkGC.VisibleIndex = 0;

            gvDM.Columns.Add(chkGC);
            DataView vDM = new DataView(_Data.DsData.Tables[0], (_Data as DataFactory.DataSingle).extraWS, "", DataViewRowState.CurrentRows);

            dbsDM.DataSource = vDM;
            ((ISupportInitialize)grDM).EndInit();
            ((ISupportInitialize)gvDM).EndInit();
        }
示例#23
0
        private void TableShowInit()//tb_SystemUser ID,UsersName,UsersPassWord,UsersPower,UsersRemark
        {
            DevExpress.XtraGrid.Columns.GridColumn Col1 = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "ID";
            Col1.Caption   = "ID";
            Col1.Visible   = false;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "UsersName";
            Col1.Caption   = "用户名";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "UsersPassWord";
            Col1.Caption   = "密码";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "UsersPower";
            Col1.Caption   = "用户权限";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "UsersRemark";
            Col1.Caption   = "备注";
            Col1.Visible   = true;
            gridView1.Columns.Add(Col1);
        }
示例#24
0
        public void AddColumn(string ColName, string Caption, string Caption2, string ResourceName)
        {
            try
            {
                RepositoryItemPictureEdit ri = new RepositoryItemPictureEdit();
                grdSalesProductList.RepositoryItems.Add(ri);
                DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                col.VisibleIndex = grvSalesProductList.Columns.Count;
                if (_remote.User.UserLanguage == "MN")
                {
                    col.Caption = Caption;
                }
                else
                {
                    col.Caption = Caption2;
                }

                col.FieldName              = string.Format(ColName);
                col.ColumnEdit             = ri;
                col.UnboundType            = DevExpress.Data.UnboundColumnType.Object;
                col.OptionsColumn.ReadOnly = true;
                col.Width   = 32;
                col.ToolTip = ResourceName;
                grvSalesProductList.Columns.Add(col);

                DataColumnRefresh();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message + ex.StackTrace + ex.StackTrace);
            }
        }
示例#25
0
        /// <summary>
        /// 根据列值条件设置行颜色
        /// </summary>
        /// <param name="color"></param>
        /// <param name="fieldName"></param>
        /// <param name="matchVlu"></param>
        private void SetRowBackColor(Color color, string fieldName, object matchVlu)
        {
            if (null == DefGridView)
            {
                return;
            }
            DevExpress.XtraGrid.Columns.GridColumn col = null;
            foreach (DevExpress.XtraGrid.Columns.GridColumn item in DefGridView.Columns)
            {
                if (string.Compare(fieldName, item.FieldName) == 0)
                {
                    col = item;
                    break;
                }
            }
            if (col == null)
            {
                return;
            }

            DevExpress.XtraGrid.StyleFormatCondition[] formats = new DevExpress.XtraGrid.StyleFormatCondition[1];
            DevExpress.XtraGrid.StyleFormatCondition   format  = new DevExpress.XtraGrid.StyleFormatCondition();
            format.Appearance.Options.UseBackColor = true;
            format.Appearance.BackColor            = color;
            format.ApplyToRow = true;
            format.Column     = col;
            format.Condition  = DevExpress.XtraGrid.FormatConditionEnum.Equal;
            format.Value1     = matchVlu;
            formats[0]        = format;
            DefGridView.FormatConditions.AddRange(formats);
        }
        /// <summary>
        /// 明细增加汇总信息
        /// </summary>
        private void CreateSummary()
        {
            GridView gridView1 = this.winGridView2.gridView1;

            if (gridView1 != null && gridView1.Columns.Count > 0)
            {
                gridView1.GroupSummary.Clear();

                gridView1.OptionsView.ColumnAutoWidth     = false;
                gridView1.OptionsView.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
                gridView1.OptionsView.ShowFooter          = true;
                gridView1.OptionsView.ShowGroupedColumns  = true;
                gridView1.OptionsView.ShowGroupPanel      = false;

                DevExpress.XtraGrid.Columns.GridColumn IDColumn = gridView1.Columns["HANDNO"];
                IDColumn.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
                    new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "HANDNO", "记录数:{0}")
                });

                DevExpress.XtraGrid.Columns.GridColumn StockQuantityColumn = gridView1.Columns["QUANTITY"];
                StockQuantityColumn.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
                    new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "QUANTITY", "总数量:{0}")
                });

                DevExpress.XtraGrid.Columns.GridColumn StockAmountColumn = gridView1.Columns["AMOUNT"];
                StockAmountColumn.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
                    new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "AMOUNT", "总金额:{0:C2}")
                });
            }
        }
示例#27
0
        private void InitializeSpecimenGridControlComponent()
        {
            this.SpecimenCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.SpecimenName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.DefaultTube  = new DevExpress.XtraGrid.Columns.GridColumn();

            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                this.SpecimenCode,
                this.DefaultTube,
                this.SpecimenName
            });
            this.gridView.GridControl = this.gridControlView;
            this.gridView.Name        = "gridView1";
            this.gridView.OptionsBehavior.Editable    = false;
            this.gridView.OptionsNavigation.UseTabKey = false;

            this.SpecimenCode.Caption      = "Code";
            this.SpecimenCode.FieldName    = "Code";
            this.SpecimenCode.Name         = "SpecimenCode";
            this.SpecimenCode.Visible      = true;
            this.SpecimenCode.VisibleIndex = 0;

            this.SpecimenName.Caption      = "Name";
            this.SpecimenName.FieldName    = "Name";
            this.SpecimenName.Name         = "SpecimenName";
            this.SpecimenName.Visible      = true;
            this.SpecimenName.VisibleIndex = 1;

            this.DefaultTube.Caption      = "Default Tube";
            this.DefaultTube.FieldName    = "DefaultTube.Name";
            this.DefaultTube.Name         = "DefaultTube";
            this.DefaultTube.Visible      = true;
            this.DefaultTube.VisibleIndex = 2;
            this.DefaultTube.Width        = 100;
        }
示例#28
0
        private void GroupDetailConfigButtonClicked(object sender, EventArgs e)
        {
            DevExpress.XtraGrid.Columns.GridColumn column = (sender as DevExpress.Utils.Menu.DXMenuItem).Tag as DevExpress.XtraGrid.Columns.GridColumn;
            if (column == null)
            {
                return;
            }
            CustomGroupStringBuildForm form;

            if (!this.myGroupEditForms.TryGetValue(column, out form))
            {
                form = new CustomGroupStringBuildForm();
                form.StartPosition = FormStartPosition.WindowsDefaultLocation;
                this.myGroupEditForms.Add(column, form);
            }
            if (form.ShowDialog() == DialogResult.Yes)
            {
                form.Tag = CustomGroupMaker.FormatBorder(form.result);
                if (form.Tag == null)
                {
                    column.SortMode = DevExpress.XtraGrid.ColumnSortMode.Default;
                }
                else
                {
                    column.SortMode = DevExpress.XtraGrid.ColumnSortMode.Custom;
                }
                this.RefreshData();
            }
        }
示例#29
0
        /// <summary>
        /// 用户表 选择后
        /// </summary>
        private void ShowInitUserSelect()
        {
            DevExpress.XtraGrid.Columns.GridColumn Col1 = new DevExpress.XtraGrid.Columns.GridColumn();// UserName,IcNo,CardNo
            Col1.FieldName = "tvChildId";
            Col1.Caption   = "tvChildId";
            Col1.Visible   = false;
            gridView3.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "UserName";
            Col1.Caption   = "姓名";
            Col1.Visible   = true;
            gridView3.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "IcNo";
            Col1.Caption   = "卡号";
            Col1.Visible   = true;
            gridView3.Columns.Add(Col1);

            Col1           = new DevExpress.XtraGrid.Columns.GridColumn();
            Col1.FieldName = "CardNo";
            Col1.Caption   = "编号";
            Col1.Visible   = true;
            gridView3.Columns.Add(Col1);
        }
示例#30
0
        private void LoadData()
        {
            int index = 0;

            foreach (DataColumn dataCol in dataTable.Columns)
            {
                DevExpress.XtraGrid.Columns.GridColumn column = new DevExpress.XtraGrid.Columns.GridColumn();

                column.AppearanceCell.Options.UseTextOptions = true;
                if (dataCol.DataType.Name.IndexOf("STRING", StringComparison.OrdinalIgnoreCase) != -1)
                {
                    column.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
                    column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.None;
                }
                else
                {
                    column.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
                    column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                }
                column.Caption      = dataCol.Caption;
                column.FieldName    = dataCol.ColumnName;
                column.Name         = "datacol" + index.ToString();
                column.Visible      = true;
                column.VisibleIndex = index;
                this.grdView.Columns.Add(column);
                index++;
            }

            grItems.DataSource = dataTable;

            if (selectedDataRow != null)
            {
                grdView.FocusedRowHandle = grdView.GetRowHandle(dataTable.Rows.IndexOf(selectedDataRow));
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.textBox1 = new System.Windows.Forms.TextBox();
     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.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();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 20F);
     this.labelControl1.Location = new System.Drawing.Point(2, 0);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(385, 33);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Near Expiry Batches Information";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.labelControl2.Location = new System.Drawing.Point(611, 8);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(96, 16);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "Near Expiry Days";
     //
     // textBox1
     //
     this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox1.Location = new System.Drawing.Point(712, 6);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 21);
     this.textBox1.TabIndex = 2;
     //
     // gridControl1
     //
     this.gridControl1.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.gridControl1.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridControl1.Location = new System.Drawing.Point(2, 33);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(810, 392);
     this.gridControl1.TabIndex = 3;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridView1.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.Caption = "P. ID";
     this.gridColumn1.FieldName = "P_ID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 54;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.Caption = "Product Name";
     this.gridColumn2.FieldName = "Product_Name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 158;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.Caption = "Pack";
     this.gridColumn3.FieldName = "Pack";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 69;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.Caption = "Type";
     this.gridColumn4.FieldName = "Type";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 69;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.Caption = "Batch No.";
     this.gridColumn5.FieldName = "Batch_No";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 71;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.Caption = "Expiry Date";
     this.gridColumn6.FieldName = "Exp_Date";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 82;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.Caption = "T.P";
     this.gridColumn7.FieldName = "T_P";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 69;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn8.AppearanceHeader.Options.UseFont = true;
     this.gridColumn8.Caption = "Balance";
     this.gridColumn8.FieldName = "Balance";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     this.gridColumn8.Width = 69;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn9.AppearanceHeader.Options.UseFont = true;
     this.gridColumn9.Caption = "Block";
     this.gridColumn9.FieldName = "Block";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn9.Width = 59;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
     this.gridColumn10.AppearanceHeader.Options.UseFont = true;
     this.gridColumn10.Caption = "Value @ T.P";
     this.gridColumn10.FieldName = "Value_TP";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     this.gridColumn10.Width = 92;
     //
     // frmNearExpiry
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(817, 458);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl1);
     this.Name = "frmNearExpiry";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Near Expiry Batches";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmNearExpiry_FormClosing);
     this.Load += new System.EventHandler(this.frmNearExpiry_Load);
     this.Resize += new System.EventHandler(this.frmNearExpiry_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.sp001BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colBankMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmantaMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.ccbeSarfType = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.cDSarfTypeedadBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.ccbeDof = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.tBLDofatSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tBLDofatSarfTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.TBLDofatSarfTableAdapter();
     this.dxvp = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.sp_001TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.sp_001TableAdapter();
     this.cDSarfTypeedadTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSarfTypeedadTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.sp001BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(12, 38);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditn2});
     this.gridControlData.Size = new System.Drawing.Size(914, 523);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // sp001BindingSource
     //
     this.sp001BindingSource.DataMember = "sp_001";
     this.sp001BindingSource.DataSource = this.dsQueries;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTotal,
     this.colBankMoney,
     this.colAmantaMoney,
     this.colMMashatId,
     this.colpersonName,
     this.colSyndicate,
     this.colSubCommitte});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colTotal
     //
     this.colTotal.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.Caption = "اجمالي الدفعات";
     this.colTotal.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal.FieldName = "Total";
     this.colTotal.Name = "colTotal";
     this.colTotal.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Total", "{0:0.##}")});
     this.colTotal.Visible = true;
     this.colTotal.VisibleIndex = 4;
     this.colTotal.Width = 91;
     //
     // repositoryItemTextEditn2
     //
     this.repositoryItemTextEditn2.AutoHeight = false;
     this.repositoryItemTextEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.Mask.EditMask = "n2";
     this.repositoryItemTextEditn2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditn2.Name = "repositoryItemTextEditn2";
     //
     // colBankMoney
     //
     this.colBankMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.Caption = "اجمالي البنك";
     this.colBankMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colBankMoney.FieldName = "BankMoney";
     this.colBankMoney.Name = "colBankMoney";
     this.colBankMoney.OptionsColumn.ReadOnly = true;
     this.colBankMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "BankMoney", "{0:0.##}")});
     this.colBankMoney.Visible = true;
     this.colBankMoney.VisibleIndex = 5;
     this.colBankMoney.Width = 79;
     //
     // colAmantaMoney
     //
     this.colAmantaMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.Caption = "اجمالي الامانات";
     this.colAmantaMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colAmantaMoney.FieldName = "AmantaMoney";
     this.colAmantaMoney.Name = "colAmantaMoney";
     this.colAmantaMoney.OptionsColumn.ReadOnly = true;
     this.colAmantaMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "AmantaMoney", "{0:0.##}")});
     this.colAmantaMoney.Visible = true;
     this.colAmantaMoney.VisibleIndex = 6;
     this.colAmantaMoney.Width = 90;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "MMashatName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 2;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "اللجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 3;
     //
     // btnSearch
     //
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.Image = global::RetirementCenter.Properties.Resources.apply_16x16;
     this.btnSearch.Location = new System.Drawing.Point(252, 12);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(114, 22);
     this.btnSearch.StyleController = this.layoutControl1;
     this.btnSearch.TabIndex = 4;
     this.btnSearch.Text = "تنفيذ";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.ccbeSarfType);
     this.layoutControl1.Controls.Add(this.ccbeDof);
     this.layoutControl1.Controls.Add(this.btnSearch);
     this.layoutControl1.Controls.Add(this.btnPrintExport);
     this.layoutControl1.Controls.Add(this.gridControlData);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(982, 382, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(938, 573);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // ccbeSarfType
     //
     this.ccbeSarfType.Location = new System.Drawing.Point(370, 12);
     this.ccbeSarfType.Name = "ccbeSarfType";
     this.ccbeSarfType.Properties.AllowMultiSelect = true;
     this.ccbeSarfType.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeSarfType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeSarfType.Properties.DataSource = this.cDSarfTypeedadBindingSource;
     this.ccbeSarfType.Properties.DisplayMember = "SarfTypeedad";
     this.ccbeSarfType.Properties.ValueMember = "SarfTypeedadId";
     this.ccbeSarfType.Size = new System.Drawing.Size(205, 20);
     this.ccbeSarfType.StyleController = this.layoutControl1;
     this.ccbeSarfType.TabIndex = 5;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeSarfType, conditionValidationRule1);
     this.ccbeSarfType.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // cDSarfTypeedadBindingSource
     //
     this.cDSarfTypeedadBindingSource.DataMember = "CDSarfTypeedad";
     this.cDSarfTypeedadBindingSource.DataSource = this.dsQueries;
     //
     // ccbeDof
     //
     this.ccbeDof.Location = new System.Drawing.Point(611, 12);
     this.ccbeDof.Name = "ccbeDof";
     this.ccbeDof.Properties.AllowMultiSelect = true;
     this.ccbeDof.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeDof.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeDof.Properties.DataSource = this.tBLDofatSarfBindingSource;
     this.ccbeDof.Properties.DisplayMember = "DofatSarf";
     this.ccbeDof.Properties.ValueMember = "DofatSarfId";
     this.ccbeDof.Size = new System.Drawing.Size(283, 20);
     this.ccbeDof.StyleController = this.layoutControl1;
     this.ccbeDof.TabIndex = 5;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeDof, conditionValidationRule2);
     this.ccbeDof.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // tBLDofatSarfBindingSource
     //
     this.tBLDofatSarfBindingSource.DataMember = "TBLDofatSarf";
     this.tBLDofatSarfBindingSource.DataSource = this.dsQueries;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Image = global::RetirementCenter.Properties.Resources.Print;
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(94, 22);
     this.btnPrintExport.StyleController = this.layoutControl1;
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem5,
     this.layoutControlItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(938, 573);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSearch;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(240, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(118, 26);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnPrintExport;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(98, 26);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.gridControlData;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(918, 527);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(98, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(142, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.layoutControlItem5.Control = this.ccbeDof;
     this.layoutControlItem5.CustomizationFormText = "الدفعة";
     this.layoutControlItem5.Location = new System.Drawing.Point(599, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(319, 26);
     this.layoutControlItem5.Text = "الدفعة";
     this.layoutControlItem5.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(29, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem1.Control = this.ccbeSarfType;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(358, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(241, 26);
     this.layoutControlItem1.Text = "النوع";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(29, 13);
     //
     // tBLDofatSarfTableAdapter
     //
     this.tBLDofatSarfTableAdapter.ClearBeforeFill = true;
     //
     // sp_001TableAdapter
     //
     this.sp_001TableAdapter.ClearBeforeFill = true;
     //
     // cDSarfTypeedadTableAdapter
     //
     this.cDSarfTypeedadTableAdapter.ClearBeforeFill = true;
     //
     // Qry101Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(938, 573);
     this.Controls.Add(this.layoutControl1);
     this.Name = "Qry101Frm";
     this.Text = "اجمالي الدفعات و الامانات و البنك - ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.xpCollection1 = new DevExpress.Xpo.XPCollection();
     this.tmrReload = new System.Windows.Forms.Timer(this.components);
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.bbtnClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnNewCard = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnDeleteCard = new DevExpress.XtraBars.BarButtonItem();
     this.rpGeneral = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colOid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardModel = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardRevision = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardSerialNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.clientPanel = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xpCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
     this.clientPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // xpCollection1
     //
     this.xpCollection1.BindingBehavior = DevExpress.Xpo.CollectionBindingBehavior.AllowRemove;
     this.xpCollection1.ObjectType = typeof(SSTCP.Database.Cards);
     //
     // tmrReload
     //
     this.tmrReload.Enabled = true;
     this.tmrReload.Interval = 500;
     this.tmrReload.Tick += new System.EventHandler(this.tmrReload_Tick);
     //
     // popupMenu1
     //
     this.popupMenu1.ItemLinks.Add(this.bbtnDeleteCard);
     this.popupMenu1.Name = "popupMenu1";
     this.popupMenu1.Ribbon = this.ribbon;
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbtnClose,
     this.bbtnNewCard,
     this.bbtnDeleteCard});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 4;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rpGeneral});
     this.ribbon.SelectedPage = this.rpGeneral;
     this.ribbon.Size = new System.Drawing.Size(793, 143);
     //
     // bbtnClose
     //
     this.bbtnClose.Caption = "Close";
     this.bbtnClose.Id = 1;
     this.bbtnClose.Name = "bbtnClose";
     this.bbtnClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnClose_ItemClick);
     //
     // bbtnNewCard
     //
     this.bbtnNewCard.Caption = "New Card";
     this.bbtnNewCard.Id = 2;
     this.bbtnNewCard.Name = "bbtnNewCard";
     this.bbtnNewCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnNewCard_ItemClick);
     //
     // bbtnDeleteCard
     //
     this.bbtnDeleteCard.Caption = "Delete Card";
     this.bbtnDeleteCard.Id = 3;
     this.bbtnDeleteCard.Name = "bbtnDeleteCard";
     //
     // rpGeneral
     //
     this.rpGeneral.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.rpGeneral.Name = "rpGeneral";
     this.rpGeneral.Text = "General";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnClose);
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnNewCard);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     this.ribbonPageGroup1.Text = "File";
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.xpCollection1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.MenuManager = this.ribbon;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(793, 380);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colOid,
     this.colCardModel,
     this.colCardRevision,
     this.colCardSerialNumber,
     this.colCardName,
     this.colCardDescription});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsBehavior.ReadOnly = true;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowColumnResizing = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView1.OptionsView.EnableAppearanceOddRow = true;
     this.gridView1.OptionsView.RowAutoHeight = true;
     this.gridView1.OptionsView.ShowGroupExpandCollapseButtons = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator = false;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colCardModel, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView1.ShowGridMenu += new DevExpress.XtraGrid.Views.Grid.GridMenuEventHandler(this.gridView1_ShowGridMenu);
     //
     // colOid
     //
     this.colOid.FieldName = "Oid";
     this.colOid.Name = "colOid";
     //
     // colCardModel
     //
     this.colCardModel.FieldName = "CardModel";
     this.colCardModel.Name = "colCardModel";
     this.colCardModel.SortMode = DevExpress.XtraGrid.ColumnSortMode.DisplayText;
     this.colCardModel.Visible = true;
     this.colCardModel.VisibleIndex = 0;
     //
     // colCardRevision
     //
     this.colCardRevision.FieldName = "CardRevision";
     this.colCardRevision.Name = "colCardRevision";
     this.colCardRevision.Visible = true;
     this.colCardRevision.VisibleIndex = 1;
     //
     // colCardSerialNumber
     //
     this.colCardSerialNumber.FieldName = "CardSerialNumber";
     this.colCardSerialNumber.Name = "colCardSerialNumber";
     this.colCardSerialNumber.Visible = true;
     this.colCardSerialNumber.VisibleIndex = 2;
     //
     // colCardName
     //
     this.colCardName.FieldName = "CardName";
     this.colCardName.Name = "colCardName";
     this.colCardName.Visible = true;
     this.colCardName.VisibleIndex = 3;
     //
     // colCardDescription
     //
     this.colCardDescription.FieldName = "CardDescription";
     this.colCardDescription.Name = "colCardDescription";
     this.colCardDescription.Visible = true;
     this.colCardDescription.VisibleIndex = 4;
     //
     // clientPanel
     //
     this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.clientPanel.Controls.Add(this.gridControl1);
     this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.clientPanel.Location = new System.Drawing.Point(0, 143);
     this.clientPanel.Name = "clientPanel";
     this.clientPanel.Size = new System.Drawing.Size(793, 380);
     this.clientPanel.TabIndex = 2;
     //
     // frmCards
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(793, 523);
     this.Controls.Add(this.clientPanel);
     this.Controls.Add(this.ribbon);
     this.Name = "frmCards";
     this.Ribbon = this.ribbon;
     this.Text = "Card Manager";
     this.Load += new System.EventHandler(this.frmCards_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xpCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
     this.clientPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(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);
 }
 /// <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.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.XPSCSData = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.UOWData = new DevExpress.Xpo.UnitOfWork(this.components);
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditremarks = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colBeandate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coldateremember = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldeleted = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colMMashatName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.tBLBeanWarsaTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLBeanWarsaTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPSCSData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UOWData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditremarks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.XPSCSData;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditremarks,
     this.repositoryItemDateEditDMY});
     this.gridControlData.Size = new System.Drawing.Size(1051, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // XPSCSData
     //
     this.XPSCSData.AllowEdit = true;
     this.XPSCSData.AllowNew = true;
     this.XPSCSData.AllowRemove = true;
     this.XPSCSData.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.vQry59DataTable);
     this.XPSCSData.Session = this.UOWData;
     //
     // UOWData
     //
     this.UOWData.TrackPropertiesModifications = false;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colBeandate,
     this.coldateremember,
     this.coldeleted,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colMMashatName1,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.FieldName = "DofatSarf";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.AllowEdit = false;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 0;
     this.colDofatSarfAId.Width = 128;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "اسم الوريث";
     this.colMMashatId.FieldName = "personName";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.AllowEdit = false;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 3;
     this.colMMashatId.Width = 150;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.ColumnEdit = this.repositoryItemMemoExEditremarks;
     this.colamanatrem.FieldName = "remarks";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 7;
     //
     // repositoryItemMemoExEditremarks
     //
     this.repositoryItemMemoExEditremarks.AutoHeight = false;
     this.repositoryItemMemoExEditremarks.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditremarks.Name = "repositoryItemMemoExEditremarks";
     //
     // colBeandate
     //
     this.colBeandate.AppearanceCell.Options.UseTextOptions = true;
     this.colBeandate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBeandate.AppearanceHeader.Options.UseTextOptions = true;
     this.colBeandate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBeandate.Caption = "التاريخ";
     this.colBeandate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colBeandate.FieldName = "Beandate";
     this.colBeandate.Name = "colBeandate";
     this.colBeandate.Visible = true;
     this.colBeandate.VisibleIndex = 8;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "d/M/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "d/M/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "d/M/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coldateremember
     //
     this.coldateremember.AppearanceCell.Options.UseTextOptions = true;
     this.coldateremember.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateremember.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateremember.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateremember.Caption = "تاريخ التذكير";
     this.coldateremember.FieldName = "dateremember";
     this.coldateremember.Name = "coldateremember";
     this.coldateremember.Visible = true;
     this.coldateremember.VisibleIndex = 9;
     //
     // coldeleted
     //
     this.coldeleted.AppearanceCell.Options.UseTextOptions = true;
     this.coldeleted.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldeleted.AppearanceHeader.Options.UseTextOptions = true;
     this.coldeleted.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldeleted.Caption = "منع";
     this.coldeleted.FieldName = "deleted";
     this.coldeleted.Name = "coldeleted";
     this.coldeleted.OptionsColumn.AllowEdit = false;
     this.coldeleted.Visible = true;
     this.coldeleted.VisibleIndex = 6;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "حفظ";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 10;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 11;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colMMashatName1
     //
     this.colMMashatName1.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName1.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName1.Caption = "اسم الاب";
     this.colMMashatName1.FieldName = "MMashatName";
     this.colMMashatName1.Name = "colMMashatName1";
     this.colMMashatName1.OptionsColumn.AllowEdit = false;
     this.colMMashatName1.Visible = true;
     this.colMMashatName1.VisibleIndex = 1;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.OptionsColumn.AllowEdit = false;
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 2;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "فرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.OptionsColumn.AllowEdit = false;
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 4;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "لجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.OptionsColumn.AllowEdit = false;
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 5;
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(1055, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(1055, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(850, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // tBLBeanWarsaTableAdapter
     //
     this.tBLBeanWarsaTableAdapter.ClearBeforeFill = true;
     //
     // TBLBeanWarsaFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1079, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TBLBeanWarsaFrm";
     this.Text = "بيان الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPSCSData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UOWData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditremarks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     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.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.comboBox1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.gridControl1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // comboBox1
     //
     this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(46, 12);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(404, 20);
     this.comboBox1.Sorted = true;
     this.comboBox1.TabIndex = 5;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // gridControl1
     //
     this.gridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(3, 3);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemRadioGroup1});
     this.gridControl1.Size = new System.Drawing.Size(456, 293);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.GroupPanelText = "设备";
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "设备ID";
     this.gridColumn1.FieldName = "A";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "设备名称";
     this.gridColumn2.FieldName = "B";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "是否选择";
     this.gridColumn3.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumn3.FieldName = "C";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem()});
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // frmDeviceList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDeviceList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择设备";
     this.Load += new System.EventHandler(this.frmDeviceList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
 }
示例#37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gcUnSub = new Ultra.Surface.Controls.GridControlEx();
     this.gvUnSub = 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.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gcSubed = new Ultra.Surface.Controls.GridControlEx();
     this.gvSubed = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gcPrinted = new Ultra.Surface.Controls.GridControlEx();
     this.gvPrinted = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.gcOrder = new Ultra.Surface.Controls.GridControlEx();
     this.gvOrder = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlDetail = new DevExpress.XtraEditors.PanelControl();
     this.collapsibleSplitter1 = new Ultra.Surface.Controls.CollapsibleSplitter();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gcUnSub)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvUnSub)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMain)).BeginInit();
     this.tabMain.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcSubed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSubed)).BeginInit();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcPrinted)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPrinted)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabDetail)).BeginInit();
     this.tabDetail.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlDetail)).BeginInit();
     this.pnlDetail.SuspendLayout();
     this.SuspendLayout();
     //
     // myBar
     //
     this.myBar.Size = new System.Drawing.Size(630, 60);
     //
     // gcUnSub
     //
     this.gcUnSub.ColorFieldName = null;
     this.gcUnSub.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcUnSub.Location = new System.Drawing.Point(0, 0);
     this.gcUnSub.MainView = this.gvUnSub;
     this.gcUnSub.Name = "gcUnSub";
     this.gcUnSub.ShowIndicator = true;
     this.gcUnSub.ShowRowNumber = true;
     this.gcUnSub.Size = new System.Drawing.Size(624, 227);
     this.gcUnSub.TabIndex = 4;
     this.gcUnSub.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvUnSub});
     this.gcUnSub.RowCellDoubleClick += new System.EventHandler<System.Windows.Forms.MouseEventArgs>(this.gridControlEx1_RowCellDoubleClick);
     //
     // gvUnSub
     //
     this.gvUnSub.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvUnSub.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvUnSub.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvUnSub.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvUnSub.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn24,
     this.gridColumn4});
     this.gvUnSub.GridControl = this.gcUnSub;
     this.gvUnSub.Name = "gvUnSub";
     this.gvUnSub.OptionsBehavior.Editable = false;
     this.gvUnSub.OptionsView.ColumnAutoWidth = false;
     this.gvUnSub.OptionsView.EnableAppearanceEvenRow = true;
     this.gvUnSub.OptionsView.EnableAppearanceOddRow = true;
     this.gvUnSub.OptionsView.ShowAutoFilterRow = true;
     this.gvUnSub.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "顾客姓名";
     this.gridColumn1.FieldName = "ReceiverName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "顾客电话";
     this.gridColumn2.FieldName = "ReceiverMobile";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "顾客地址";
     this.gridColumn3.FieldName = "ReceiverAddress";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "出单人";
     this.gridColumn24.FieldName = "Creator";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 3;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "创建时间";
     this.gridColumn4.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn4.FieldName = "CreateDate";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     //
     // tabMain
     //
     this.tabMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabMain.Location = new System.Drawing.Point(0, 60);
     this.tabMain.Name = "tabMain";
     this.tabMain.SelectedTabPage = this.xtraTabPage1;
     this.tabMain.Size = new System.Drawing.Size(630, 256);
     this.tabMain.TabIndex = 5;
     this.tabMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage4});
     this.tabMain.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabMain_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gcUnSub);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.ShowCloseButton = DevExpress.Utils.DefaultBoolean.True;
     this.xtraTabPage1.Size = new System.Drawing.Size(624, 227);
     this.xtraTabPage1.Text = "待审核";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gcSubed);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(624, 227);
     this.xtraTabPage2.Text = "已审核";
     //
     // gcSubed
     //
     this.gcSubed.ColorFieldName = null;
     this.gcSubed.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcSubed.Location = new System.Drawing.Point(0, 0);
     this.gcSubed.MainView = this.gvSubed;
     this.gcSubed.Name = "gcSubed";
     this.gcSubed.ShowRowNumber = true;
     this.gcSubed.Size = new System.Drawing.Size(624, 227);
     this.gcSubed.TabIndex = 5;
     this.gcSubed.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSubed});
     //
     // gvSubed
     //
     this.gvSubed.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvSubed.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvSubed.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvSubed.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvSubed.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn7,
     this.gridColumn9,
     this.gridColumn25,
     this.gridColumn10});
     this.gvSubed.GridControl = this.gcSubed;
     this.gvSubed.Name = "gvSubed";
     this.gvSubed.OptionsBehavior.Editable = false;
     this.gvSubed.OptionsView.ColumnAutoWidth = false;
     this.gvSubed.OptionsView.EnableAppearanceEvenRow = true;
     this.gvSubed.OptionsView.EnableAppearanceOddRow = true;
     this.gvSubed.OptionsView.ShowAutoFilterRow = true;
     this.gvSubed.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "顾客姓名";
     this.gridColumn5.FieldName = "ReceiverName";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "顾客电话";
     this.gridColumn7.FieldName = "ReceiverMobile";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "顾客地址";
     this.gridColumn9.FieldName = "ReceiverAddress";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 2;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "出单人";
     this.gridColumn25.FieldName = "Creator";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 3;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "创建时间";
     this.gridColumn10.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn10.FieldName = "CreateDate";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 4;
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gcPrinted);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(624, 227);
     this.xtraTabPage4.Text = "已打印";
     //
     // gcPrinted
     //
     this.gcPrinted.ColorFieldName = null;
     this.gcPrinted.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcPrinted.Location = new System.Drawing.Point(0, 0);
     this.gcPrinted.MainView = this.gvPrinted;
     this.gcPrinted.Name = "gcPrinted";
     this.gcPrinted.ShowRowNumber = true;
     this.gcPrinted.Size = new System.Drawing.Size(624, 227);
     this.gcPrinted.TabIndex = 6;
     this.gcPrinted.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPrinted});
     //
     // gvPrinted
     //
     this.gvPrinted.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvPrinted.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvPrinted.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvPrinted.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvPrinted.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn14,
     this.gridColumn26,
     this.gridColumn15,
     this.gridColumn27});
     this.gvPrinted.GridControl = this.gcPrinted;
     this.gvPrinted.Name = "gvPrinted";
     this.gvPrinted.OptionsBehavior.Editable = false;
     this.gvPrinted.OptionsView.ColumnAutoWidth = false;
     this.gvPrinted.OptionsView.EnableAppearanceEvenRow = true;
     this.gvPrinted.OptionsView.EnableAppearanceOddRow = true;
     this.gvPrinted.OptionsView.ShowAutoFilterRow = true;
     this.gvPrinted.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "顾客姓名";
     this.gridColumn11.FieldName = "ReceiverName";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "顾客电话";
     this.gridColumn12.FieldName = "ReceiverMobile";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "顾客地址";
     this.gridColumn14.FieldName = "ReceiverAddress";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "出单人";
     this.gridColumn26.FieldName = "Creator";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 3;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "创建时间";
     this.gridColumn15.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn15.FieldName = "CreateDate";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 4;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "打印次数";
     this.gridColumn27.FieldName = "PrintCnt";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 5;
     //
     // tabDetail
     //
     this.tabDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabDetail.Location = new System.Drawing.Point(2, 2);
     this.tabDetail.Name = "tabDetail";
     this.tabDetail.SelectedTabPage = this.xtraTabPage3;
     this.tabDetail.Size = new System.Drawing.Size(626, 157);
     this.tabDetail.TabIndex = 6;
     this.tabDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.gcOrder);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(620, 128);
     this.xtraTabPage3.Text = "商品信息";
     //
     // gcOrder
     //
     this.gcOrder.ColorFieldName = null;
     this.gcOrder.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcOrder.Location = new System.Drawing.Point(0, 0);
     this.gcOrder.MainView = this.gvOrder;
     this.gcOrder.Name = "gcOrder";
     this.gcOrder.ShowIndicator = true;
     this.gcOrder.ShowRowNumber = true;
     this.gcOrder.Size = new System.Drawing.Size(620, 128);
     this.gcOrder.TabIndex = 5;
     this.gcOrder.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvOrder});
     //
     // gvOrder
     //
     this.gvOrder.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvOrder.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvOrder.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvOrder.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvOrder.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn6,
     this.gridColumn18,
     this.gridColumn23,
     this.gridColumn22,
     this.gridColumn20});
     this.gvOrder.GridControl = this.gcOrder;
     this.gvOrder.Name = "gvOrder";
     this.gvOrder.OptionsBehavior.Editable = false;
     this.gvOrder.OptionsView.ColumnAutoWidth = false;
     this.gvOrder.OptionsView.EnableAppearanceEvenRow = true;
     this.gvOrder.OptionsView.EnableAppearanceOddRow = true;
     this.gvOrder.OptionsView.ShowAutoFilterRow = true;
     this.gvOrder.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "商品名称";
     this.gridColumn16.FieldName = "ItemName";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 0;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "商品编码";
     this.gridColumn17.FieldName = "ItemNo";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 1;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "售价";
     this.gridColumn18.FieldName = "Price";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 3;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "数量";
     this.gridColumn23.FieldName = "Num";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 4;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "总金额";
     this.gridColumn22.FieldName = "OrderPrice";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 5;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "创建时间";
     this.gridColumn20.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn20.FieldName = "CreateDate";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 7;
     //
     // pnlDetail
     //
     this.pnlDetail.Controls.Add(this.tabDetail);
     this.pnlDetail.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlDetail.Location = new System.Drawing.Point(0, 324);
     this.pnlDetail.Name = "pnlDetail";
     this.pnlDetail.Size = new System.Drawing.Size(630, 161);
     this.pnlDetail.TabIndex = 8;
     //
     // collapsibleSplitter1
     //
     this.collapsibleSplitter1.AnimationDelay = 20;
     this.collapsibleSplitter1.AnimationStep = 20;
     this.collapsibleSplitter1.BorderStyle3D = System.Windows.Forms.Border3DStyle.Flat;
     this.collapsibleSplitter1.ControlToHide = this.pnlDetail;
     this.collapsibleSplitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.collapsibleSplitter1.ExpandParentForm = true;
     this.collapsibleSplitter1.Location = new System.Drawing.Point(0, 316);
     this.collapsibleSplitter1.Name = "collapsibleSplitter1";
     this.collapsibleSplitter1.Size = new System.Drawing.Size(630, 8);
     this.collapsibleSplitter1.TabIndex = 9;
     this.collapsibleSplitter1.TabStop = false;
     this.collapsibleSplitter1.UseAnimations = false;
     this.collapsibleSplitter1.VisualStyle = Ultra.Surface.Controls.VisualStyles.Mozilla;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "成本";
     this.gridColumn6.FieldName = "CostPrice";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 2;
     //
     // MainView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(630, 485);
     this.Controls.Add(this.tabMain);
     this.Controls.Add(this.collapsibleSplitter1);
     this.Controls.Add(this.pnlDetail);
     this.Name = "MainView";
     this.Text = "收款";
     this.Load += new System.EventHandler(this.MainView_Load);
     this.Controls.SetChildIndex(this.myBar, 0);
     this.Controls.SetChildIndex(this.pnlDetail, 0);
     this.Controls.SetChildIndex(this.collapsibleSplitter1, 0);
     this.Controls.SetChildIndex(this.tabMain, 0);
     ((System.ComponentModel.ISupportInitialize)(this.gcUnSub)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvUnSub)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMain)).EndInit();
     this.tabMain.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcSubed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSubed)).EndInit();
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcPrinted)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPrinted)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabDetail)).EndInit();
     this.tabDetail.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlDetail)).EndInit();
     this.pnlDetail.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.patientDocBgWorker = new System.ComponentModel.BackgroundWorker();
     this.searchTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeBgWorker = new System.ComponentModel.BackgroundWorker();
     this.loadBarTimer = new System.Windows.Forms.Timer(this.components);
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.commentTextBox = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.removeClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.addClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.claimantListBox = new System.Windows.Forms.ListBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.MedicalConditionsComboBoxEdit = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.SmokerNoCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.SmokerYesCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.patientDetailsGroupBox = new System.Windows.Forms.GroupBox();
     this.claimNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.physioComboBox = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.dvaTextBox = new DevExpress.XtraEditors.TextEdit();
     this.findPostCodeBtn = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.TitleComboBox = new System.Windows.Forms.ComboBox();
     this.postCodeTextBox = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.stateTextBox = new DevExpress.XtraEditors.TextEdit();
     this.genderFemaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.genderMaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.suburbComboBox = new System.Windows.Forms.ComboBox();
     this.addressTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.doBDateEdit = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.givenNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.surnameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.applyBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchResultProgressBar = new System.Windows.Forms.ProgressBar();
     this.newPatientBtn = new DevExpress.XtraEditors.SimpleButton();
     this.cancelBtn = new DevExpress.XtraEditors.SimpleButton();
     this.okBtn = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.displayGridControl = new DevExpress.XtraGrid.GridControl();
     this.displayGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.goBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchFieldTextBox = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.homePhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.mobileTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.workPhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.emailTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).BeginInit();
     this.patientDetailsGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // patientDocBgWorker
     //
     this.patientDocBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PatientBgWorkerDoWork);
     this.patientDocBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PatientBgWorkerRunWorkerCompleted);
     //
     // searchTimer
     //
     this.searchTimer.Interval = 1500;
     this.searchTimer.Tick += new System.EventHandler(this.SearchTimerTick);
     //
     // postCodeTimer
     //
     this.postCodeTimer.Interval = 1500;
     this.postCodeTimer.Tick += new System.EventHandler(this.PostCodeTimerTick);
     //
     // postCodeBgWorker
     //
     this.postCodeBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PostCodeBgWorkerDoWork);
     this.postCodeBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PostCodeBgWorkerRunWorkerCompleted);
     //
     // loadBarTimer
     //
     this.loadBarTimer.Interval = 300;
     this.loadBarTimer.Tick += new System.EventHandler(this.LoadTimerTick);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.commentTextBox);
     this.groupBox4.Location = new System.Drawing.Point(2, 498);
     this.groupBox4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Size = new System.Drawing.Size(326, 81);
     this.groupBox4.TabIndex = 65;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Comments";
     //
     // commentTextBox
     //
     this.commentTextBox.Location = new System.Drawing.Point(9, 18);
     this.commentTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.commentTextBox.Multiline = true;
     this.commentTextBox.Name = "commentTextBox";
     this.commentTextBox.Size = new System.Drawing.Size(310, 59);
     this.commentTextBox.TabIndex = 21;
     this.commentTextBox.TextChanged += new System.EventHandler(this.CommentTextBoxTextChanged);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.removeClaimantBtn);
     this.groupBox3.Controls.Add(this.addClaimantBtn);
     this.groupBox3.Controls.Add(this.claimantListBox);
     this.groupBox3.Location = new System.Drawing.Point(341, 404);
     this.groupBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Size = new System.Drawing.Size(228, 176);
     this.groupBox3.TabIndex = 64;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Claimants";
     //
     // removeClaimantBtn
     //
     this.removeClaimantBtn.Location = new System.Drawing.Point(150, 152);
     this.removeClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.removeClaimantBtn.Name = "removeClaimantBtn";
     this.removeClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.removeClaimantBtn.TabIndex = 40;
     this.removeClaimantBtn.TabStop = false;
     this.removeClaimantBtn.Text = "Remove";
     this.removeClaimantBtn.Click += new System.EventHandler(this.RemoveClaimantBtnClick);
     //
     // addClaimantBtn
     //
     this.addClaimantBtn.Location = new System.Drawing.Point(81, 152);
     this.addClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addClaimantBtn.Name = "addClaimantBtn";
     this.addClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.addClaimantBtn.TabIndex = 39;
     this.addClaimantBtn.TabStop = false;
     this.addClaimantBtn.Text = "Add";
     this.addClaimantBtn.Click += new System.EventHandler(this.AddClaimantBtnClick);
     //
     // claimantListBox
     //
     this.claimantListBox.DisplayMember = "LastName";
     this.claimantListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.claimantListBox.FormattingEnabled = true;
     this.claimantListBox.Location = new System.Drawing.Point(5, 18);
     this.claimantListBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimantListBox.Name = "claimantListBox";
     this.claimantListBox.Size = new System.Drawing.Size(210, 134);
     this.claimantListBox.TabIndex = 38;
     this.claimantListBox.TabStop = false;
     this.claimantListBox.ValueMember = "ClaimantID";
     this.claimantListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ClaimantListBoxDrawItem);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.MedicalConditionsComboBoxEdit);
     this.groupBox2.Controls.Add(this.labelControl14);
     this.groupBox2.Controls.Add(this.labelControl13);
     this.groupBox2.Controls.Add(this.SmokerNoCheckEdit);
     this.groupBox2.Controls.Add(this.SmokerYesCheckEdit);
     this.groupBox2.Location = new System.Drawing.Point(2, 404);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Size = new System.Drawing.Size(326, 89);
     this.groupBox2.TabIndex = 63;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Patient Medical Details";
     //
     // MedicalConditionsComboBoxEdit
     //
     this.MedicalConditionsComboBoxEdit.EditValue = "";
     this.MedicalConditionsComboBoxEdit.Location = new System.Drawing.Point(154, 20);
     this.MedicalConditionsComboBoxEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.MedicalConditionsComboBoxEdit.Name = "MedicalConditionsComboBoxEdit";
     this.MedicalConditionsComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MedicalConditionsComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Cardiac Pacemaker"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Loss of Weight"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Heart Condition"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Dizziness"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Artificial joint"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Epilepsy"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Surgery in the past 3 months")});
     this.MedicalConditionsComboBoxEdit.Size = new System.Drawing.Size(165, 20);
     this.MedicalConditionsComboBoxEdit.TabIndex = 19;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(11, 25);
     this.labelControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(88, 13);
     this.labelControl14.TabIndex = 30;
     this.labelControl14.Text = "Medical Conditions";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 67);
     this.labelControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(117, 13);
     this.labelControl13.TabIndex = 29;
     this.labelControl13.Text = "Is the Patient a Smoker?";
     //
     // SmokerNoCheckEdit
     //
     this.SmokerNoCheckEdit.Location = new System.Drawing.Point(199, 66);
     this.SmokerNoCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerNoCheckEdit.Name = "SmokerNoCheckEdit";
     this.SmokerNoCheckEdit.Properties.Caption = "no";
     this.SmokerNoCheckEdit.Size = new System.Drawing.Size(38, 19);
     this.SmokerNoCheckEdit.TabIndex = 16;
     //
     // SmokerYesCheckEdit
     //
     this.SmokerYesCheckEdit.Location = new System.Drawing.Point(153, 66);
     this.SmokerYesCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerYesCheckEdit.Name = "SmokerYesCheckEdit";
     this.SmokerYesCheckEdit.Properties.Caption = "Yes";
     this.SmokerYesCheckEdit.Size = new System.Drawing.Size(41, 19);
     this.SmokerYesCheckEdit.TabIndex = 15;
     //
     // patientDetailsGroupBox
     //
     this.patientDetailsGroupBox.Controls.Add(this.claimNoTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl1);
     this.patientDetailsGroupBox.Controls.Add(this.physioComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl12);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl11);
     this.patientDetailsGroupBox.Controls.Add(this.dvaTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.findPostCodeBtn);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl17);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl19);
     this.patientDetailsGroupBox.Controls.Add(this.emailTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl18);
     this.patientDetailsGroupBox.Controls.Add(this.TitleComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.postCodeTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl2);
     this.patientDetailsGroupBox.Controls.Add(this.stateTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderFemaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderMaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.suburbComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.addressTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl10);
     this.patientDetailsGroupBox.Controls.Add(this.workPhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl9);
     this.patientDetailsGroupBox.Controls.Add(this.mobileTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl8);
     this.patientDetailsGroupBox.Controls.Add(this.homePhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl7);
     this.patientDetailsGroupBox.Controls.Add(this.doBDateEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl6);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl5);
     this.patientDetailsGroupBox.Controls.Add(this.givenNameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl4);
     this.patientDetailsGroupBox.Controls.Add(this.surnameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl3);
     this.patientDetailsGroupBox.Location = new System.Drawing.Point(2, 205);
     this.patientDetailsGroupBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Name = "patientDetailsGroupBox";
     this.patientDetailsGroupBox.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Size = new System.Drawing.Size(567, 194);
     this.patientDetailsGroupBox.TabIndex = 3;
     this.patientDetailsGroupBox.TabStop = false;
     this.patientDetailsGroupBox.Text = "Enter new Patient";
     //
     // claimNoTextEdit
     //
     this.claimNoTextEdit.Location = new System.Drawing.Point(449, 160);
     this.claimNoTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimNoTextEdit.Name = "claimNoTextEdit";
     this.claimNoTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.claimNoTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.claimNoTextEdit.Properties.Mask.PlaceHolder = '*';
     this.claimNoTextEdit.Size = new System.Drawing.Size(104, 20);
     this.claimNoTextEdit.TabIndex = 67;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(387, 163);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(36, 13);
     this.labelControl1.TabIndex = 66;
     this.labelControl1.Text = "Claim #";
     //
     // physioComboBox
     //
     this.physioComboBox.DisplayMember = "PhysioID";
     this.physioComboBox.FormattingEnabled = true;
     this.physioComboBox.Location = new System.Drawing.Point(433, 51);
     this.physioComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.physioComboBox.Name = "physioComboBox";
     this.physioComboBox.Size = new System.Drawing.Size(86, 21);
     this.physioComboBox.TabIndex = 14;
     this.physioComboBox.ValueMember = "PhysioID";
     this.physioComboBox.TextChanged += new System.EventHandler(this.PhysioComboBoxTextChanged);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(391, 56);
     this.labelControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(31, 13);
     this.labelControl12.TabIndex = 65;
     this.labelControl12.Text = "Physio";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(243, 163);
     this.labelControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(28, 13);
     this.labelControl11.TabIndex = 64;
     this.labelControl11.Text = "DVA#";
     //
     // dvaTextBox
     //
     this.dvaTextBox.Location = new System.Drawing.Point(285, 158);
     this.dvaTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.dvaTextBox.Name = "dvaTextBox";
     this.dvaTextBox.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.dvaTextBox.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.dvaTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.dvaTextBox.Properties.Mask.PlaceHolder = '*';
     this.dvaTextBox.Size = new System.Drawing.Size(86, 20);
     this.dvaTextBox.TabIndex = 18;
     this.dvaTextBox.EditValueChanged += new System.EventHandler(this.DvaTextBoxEditValueChanged);
     //
     // findPostCodeBtn
     //
     this.findPostCodeBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.findPostCodeBtn.Appearance.Options.UseFont = true;
     this.findPostCodeBtn.Location = new System.Drawing.Point(475, 104);
     this.findPostCodeBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.findPostCodeBtn.Name = "findPostCodeBtn";
     this.findPostCodeBtn.Size = new System.Drawing.Size(79, 19);
     this.findPostCodeBtn.TabIndex = 17;
     this.findPostCodeBtn.Text = "Find Post Code";
     this.findPostCodeBtn.Click += new System.EventHandler(this.FindPostCodeBtnClick);
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(185, 136);
     this.labelControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(85, 13);
     this.labelControl19.TabIndex = 62;
     this.labelControl19.Text = "State / Post Code";
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(235, 110);
     this.labelControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(34, 13);
     this.labelControl18.TabIndex = 60;
     this.labelControl18.Text = "Suburb";
     //
     // TitleComboBox
     //
     this.TitleComboBox.FormattingEnabled = true;
     this.TitleComboBox.Items.AddRange(new object[] {
     "Mr",
     "Ms",
     "Miss",
     "Mrs",
     "Doctor"});
     this.TitleComboBox.Location = new System.Drawing.Point(285, 25);
     this.TitleComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.TitleComboBox.Name = "TitleComboBox";
     this.TitleComboBox.Size = new System.Drawing.Size(86, 21);
     this.TitleComboBox.TabIndex = 10;
     this.TitleComboBox.TextChanged += new System.EventHandler(this.TitleComboBoxTextChanged);
     //
     // postCodeTextBox
     //
     this.postCodeTextBox.Location = new System.Drawing.Point(387, 132);
     this.postCodeTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.postCodeTextBox.Name = "postCodeTextBox";
     this.postCodeTextBox.Size = new System.Drawing.Size(86, 20);
     this.postCodeTextBox.TabIndex = 61;
     this.postCodeTextBox.TabStop = false;
     this.postCodeTextBox.EditValueChanged += new System.EventHandler(this.PostCodeTextBoxEditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(391, 29);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(35, 13);
     this.labelControl2.TabIndex = 56;
     this.labelControl2.Text = "Gender";
     //
     // stateTextBox
     //
     this.stateTextBox.EditValue = "";
     this.stateTextBox.Location = new System.Drawing.Point(285, 132);
     this.stateTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.stateTextBox.Name = "stateTextBox";
     this.stateTextBox.Size = new System.Drawing.Size(86, 20);
     this.stateTextBox.TabIndex = 60;
     this.stateTextBox.TabStop = false;
     this.stateTextBox.EditValueChanged += new System.EventHandler(this.StateTextBoxEditValueChanged);
     //
     // genderFemaleTickBox
     //
     this.genderFemaleTickBox.Location = new System.Drawing.Point(477, 28);
     this.genderFemaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderFemaleTickBox.Name = "genderFemaleTickBox";
     this.genderFemaleTickBox.Properties.Caption = "Female";
     this.genderFemaleTickBox.Size = new System.Drawing.Size(57, 19);
     this.genderFemaleTickBox.TabIndex = 12;
     this.genderFemaleTickBox.CheckedChanged += new System.EventHandler(this.GenderFemaleTickBoxCheckedChanged);
     //
     // genderMaleTickBox
     //
     this.genderMaleTickBox.Location = new System.Drawing.Point(431, 28);
     this.genderMaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderMaleTickBox.Name = "genderMaleTickBox";
     this.genderMaleTickBox.Properties.Caption = "Male";
     this.genderMaleTickBox.Size = new System.Drawing.Size(41, 19);
     this.genderMaleTickBox.TabIndex = 11;
     this.genderMaleTickBox.CheckedChanged += new System.EventHandler(this.GenderMaleTickBoxCheckedChanged);
     //
     // suburbComboBox
     //
     this.suburbComboBox.DisplayMember = "Location";
     this.suburbComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.suburbComboBox.FormattingEnabled = true;
     this.suburbComboBox.Location = new System.Drawing.Point(285, 104);
     this.suburbComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.suburbComboBox.Name = "suburbComboBox";
     this.suburbComboBox.Size = new System.Drawing.Size(187, 22);
     this.suburbComboBox.TabIndex = 16;
     this.suburbComboBox.ValueMember = "PostCodeID";
     this.suburbComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.SuburbComboBoxDrawItem);
     this.suburbComboBox.TextChanged += new System.EventHandler(this.SuburbComboBoxTextChanged);
     this.suburbComboBox.Leave += new System.EventHandler(this.SuburbComboBoxLeave);
     //
     // addressTextEdit
     //
     this.addressTextEdit.Location = new System.Drawing.Point(285, 79);
     this.addressTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addressTextEdit.Name = "addressTextEdit";
     this.addressTextEdit.Size = new System.Drawing.Size(268, 20);
     this.addressTextEdit.TabIndex = 15;
     this.addressTextEdit.EditValueChanged += new System.EventHandler(this.AddressTextEditEditValueChanged);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(231, 81);
     this.labelControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(39, 13);
     this.labelControl10.TabIndex = 48;
     this.labelControl10.Text = "Address";
     //
     // doBDateEdit
     //
     this.doBDateEdit.EditValue = null;
     this.doBDateEdit.Location = new System.Drawing.Point(285, 51);
     this.doBDateEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.doBDateEdit.Name = "doBDateEdit";
     this.doBDateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.doBDateEdit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.doBDateEdit.Size = new System.Drawing.Size(86, 20);
     this.doBDateEdit.TabIndex = 13;
     this.doBDateEdit.EditValueChanged += new System.EventHandler(this.DoBDateEditEditValueChanged);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(210, 56);
     this.labelControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(61, 13);
     this.labelControl6.TabIndex = 40;
     this.labelControl6.Text = "Date of Birth";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(249, 30);
     this.labelControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(20, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Title";
     //
     // givenNameTextEdit
     //
     this.givenNameTextEdit.Location = new System.Drawing.Point(89, 51);
     this.givenNameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.givenNameTextEdit.Name = "givenNameTextEdit";
     this.givenNameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.givenNameTextEdit.TabIndex = 5;
     this.givenNameTextEdit.EditValueChanged += new System.EventHandler(this.GivenNameTextEditEditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(9, 54);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 37;
     this.labelControl4.Text = "Given Names";
     //
     // surnameTextEdit
     //
     this.surnameTextEdit.Location = new System.Drawing.Point(89, 25);
     this.surnameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.surnameTextEdit.Name = "surnameTextEdit";
     this.surnameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.surnameTextEdit.TabIndex = 4;
     this.surnameTextEdit.EditValueChanged += new System.EventHandler(this.SurnameTextEditEditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(27, 30);
     this.labelControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 35;
     this.labelControl3.Text = "Surname";
     //
     // applyBtn
     //
     this.applyBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.applyBtn.Appearance.Options.UseFont = true;
     this.applyBtn.Location = new System.Drawing.Point(407, 586);
     this.applyBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.applyBtn.Name = "applyBtn";
     this.applyBtn.Size = new System.Drawing.Size(79, 19);
     this.applyBtn.TabIndex = 75;
     this.applyBtn.Text = "Apply(F12)";
     this.applyBtn.Click += new System.EventHandler(this.ApplyBtnClick);
     //
     // searchResultProgressBar
     //
     this.searchResultProgressBar.Location = new System.Drawing.Point(91, 586);
     this.searchResultProgressBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchResultProgressBar.Name = "searchResultProgressBar";
     this.searchResultProgressBar.Size = new System.Drawing.Size(198, 19);
     this.searchResultProgressBar.TabIndex = 74;
     //
     // newPatientBtn
     //
     this.newPatientBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.newPatientBtn.Appearance.Options.UseFont = true;
     this.newPatientBtn.Location = new System.Drawing.Point(2, 586);
     this.newPatientBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.newPatientBtn.Name = "newPatientBtn";
     this.newPatientBtn.Size = new System.Drawing.Size(80, 19);
     this.newPatientBtn.TabIndex = 73;
     this.newPatientBtn.TabStop = false;
     this.newPatientBtn.Text = "NEW(CTRL+N)";
     this.newPatientBtn.Click += new System.EventHandler(this.NewPatientBtnClick);
     //
     // cancelBtn
     //
     this.cancelBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.cancelBtn.Appearance.Options.UseFont = true;
     this.cancelBtn.Location = new System.Drawing.Point(491, 586);
     this.cancelBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cancelBtn.Name = "cancelBtn";
     this.cancelBtn.Size = new System.Drawing.Size(79, 19);
     this.cancelBtn.TabIndex = 72;
     this.cancelBtn.TabStop = false;
     this.cancelBtn.Text = "Cancel(ESC)";
     this.cancelBtn.Click += new System.EventHandler(this.BtnCancelClick);
     //
     // okBtn
     //
     this.okBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.okBtn.Appearance.Options.UseFont = true;
     this.okBtn.Location = new System.Drawing.Point(323, 586);
     this.okBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.okBtn.Name = "okBtn";
     this.okBtn.Size = new System.Drawing.Size(79, 19);
     this.okBtn.TabIndex = 71;
     this.okBtn.Text = "OK(F2)";
     this.okBtn.Click += new System.EventHandler(this.BtnOkClick);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.displayGridControl);
     this.groupBox5.Controls.Add(this.goBtn);
     this.groupBox5.Controls.Add(this.searchFieldTextBox);
     this.groupBox5.Controls.Add(this.label1);
     this.groupBox5.Location = new System.Drawing.Point(2, 2);
     this.groupBox5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Size = new System.Drawing.Size(567, 198);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select a Doctor";
     //
     // displayGridControl
     //
     this.displayGridControl.Location = new System.Drawing.Point(0, 33);
     this.displayGridControl.MainView = this.displayGridView;
     this.displayGridControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.displayGridControl.Name = "displayGridControl";
     this.displayGridControl.Size = new System.Drawing.Size(562, 162);
     this.displayGridControl.TabIndex = 2;
     this.displayGridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.displayGridView});
     this.displayGridControl.Click += new System.EventHandler(this.DisplayGridControlClick);
     //
     // displayGridView
     //
     this.displayGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.displayGridView.GridControl = this.displayGridControl;
     this.displayGridView.Name = "displayGridView";
     this.displayGridView.OptionsBehavior.Editable = false;
     this.displayGridView.OptionsBehavior.FocusLeaveOnTab = true;
     this.displayGridView.OptionsBehavior.ReadOnly = true;
     this.displayGridView.OptionsNavigation.UseTabKey = false;
     this.displayGridView.OptionsView.ShowGroupPanel = false;
     this.displayGridView.ViewCaption = "Results:";
     this.displayGridView.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.DisplayGridViewRowCellClick);
     this.displayGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DisplayGridViewKeyDown);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "First Name";
     this.gridColumn1.FieldName = "FirstNames";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Last Name";
     this.gridColumn2.FieldName = "LastName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Gender";
     this.gridColumn3.FieldName = "Sex";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "DVA #";
     this.gridColumn4.FieldName = "DVANumber";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // goBtn
     //
     this.goBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.goBtn.Appearance.Options.UseFont = true;
     this.goBtn.Location = new System.Drawing.Point(539, 9);
     this.goBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.goBtn.Name = "goBtn";
     this.goBtn.Size = new System.Drawing.Size(23, 19);
     this.goBtn.TabIndex = 0;
     this.goBtn.TabStop = false;
     this.goBtn.Text = "go";
     this.goBtn.Click += new System.EventHandler(this.GoBtnClick);
     //
     // searchFieldTextBox
     //
     this.searchFieldTextBox.Location = new System.Drawing.Point(279, 10);
     this.searchFieldTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchFieldTextBox.Name = "searchFieldTextBox";
     this.searchFieldTextBox.Size = new System.Drawing.Size(256, 21);
     this.searchFieldTextBox.TabIndex = 1;
     this.searchFieldTextBox.TextChanged += new System.EventHandler(this.SearchFieldTextBoxTextChanged);
     this.searchFieldTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchFieldTextBoxKeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(228, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 13);
     this.label1.TabIndex = 7;
     this.label1.Text = "Search";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(11, 81);
     this.labelControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(60, 13);
     this.labelControl7.TabIndex = 42;
     this.labelControl7.Text = "Home Phone";
     //
     // homePhoneTextEdit
     //
     this.homePhoneTextEdit.Location = new System.Drawing.Point(89, 79);
     this.homePhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.homePhoneTextEdit.Name = "homePhoneTextEdit";
     this.homePhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.homePhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.homePhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.homePhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.homePhoneTextEdit.TabIndex = 6;
     this.homePhoneTextEdit.EditValueChanged += new System.EventHandler(this.HomePhoneTextEditEditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 134);
     this.labelControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(30, 13);
     this.labelControl8.TabIndex = 44;
     this.labelControl8.Text = "Mobile";
     //
     // mobileTextEdit
     //
     this.mobileTextEdit.Location = new System.Drawing.Point(89, 129);
     this.mobileTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.mobileTextEdit.Name = "mobileTextEdit";
     this.mobileTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.mobileTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.mobileTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.mobileTextEdit.Properties.Mask.PlaceHolder = '*';
     this.mobileTextEdit.Size = new System.Drawing.Size(86, 20);
     this.mobileTextEdit.TabIndex = 8;
     this.mobileTextEdit.EditValueChanged += new System.EventHandler(this.MobileTextEditEditValueChanged);
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(14, 106);
     this.labelControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(58, 13);
     this.labelControl9.TabIndex = 46;
     this.labelControl9.Text = "Work Phone";
     //
     // workPhoneTextEdit
     //
     this.workPhoneTextEdit.Location = new System.Drawing.Point(89, 104);
     this.workPhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.workPhoneTextEdit.Name = "workPhoneTextEdit";
     this.workPhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.workPhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.workPhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.workPhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.workPhoneTextEdit.TabIndex = 7;
     this.workPhoneTextEdit.EditValueChanged += new System.EventHandler(this.WorkPhoneTextEditEditValueChanged);
     //
     // emailTextEdit
     //
     this.emailTextEdit.Location = new System.Drawing.Point(89, 156);
     this.emailTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.emailTextEdit.Name = "emailTextEdit";
     this.emailTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.emailTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.emailTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.emailTextEdit.Properties.Mask.PlaceHolder = '*';
     this.emailTextEdit.Size = new System.Drawing.Size(86, 20);
     this.emailTextEdit.TabIndex = 9;
     this.emailTextEdit.EditValueChanged += new System.EventHandler(this.EmailTextEditEditValueChanged);
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(46, 161);
     this.labelControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(24, 13);
     this.labelControl17.TabIndex = 59;
     this.labelControl17.Text = "Email";
     //
     // patientViewForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(571, 607);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.applyBtn);
     this.Controls.Add(this.searchResultProgressBar);
     this.Controls.Add(this.newPatientBtn);
     this.Controls.Add(this.cancelBtn);
     this.Controls.Add(this.okBtn);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.patientDetailsGroupBox);
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "patientViewForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "NewPatientViewForm";
     this.Load += new System.EventHandler(this.PatientViewFormLoad);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatientViewFormKeyDown);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).EndInit();
     this.patientDetailsGroupBox.ResumeLayout(false);
     this.patientDetailsGroupBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tBLSheekWaredBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dSFellowship = new Fellowship.DataSources.DSFellowship();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cDSyndicateBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEdaraId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cDEDARETBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSheekMony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSheekNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSheekDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.colEdaraSarfDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNkapaSarfDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEdaraMandopId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.tBLEdaraMandopBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditnkapaMandopId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.tBLNkapaMandopBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tableAdapterManager = new Fellowship.DataSources.DSFellowshipTableAdapters.TableAdapterManager();
     this.cDEDARETTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.CDEDARETTableAdapter();
     this.cDSyndicateTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.CDSyndicateTableAdapter();
     this.tBLEdaraMandopTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLEdaraMandopTableAdapter();
     this.tBLNkapaMandopTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLNkapaMandopTableAdapter();
     this.tBLSheekWaredTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLSheekWaredTableAdapter();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLSheekWaredBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSFellowship)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDEDARETBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraMandopId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLEdaraMandopBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditnkapaMandopId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLNkapaMandopBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tBLSheekWaredBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemGridLookUpEditEdaraId,
     this.repositoryItemGridLookUpEditEdaraMandopId,
     this.repositoryItemGridLookUpEditnkapaMandopId});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tBLSheekWaredBindingSource
     //
     this.tBLSheekWaredBindingSource.DataMember = "TBLSheekWared";
     this.tBLSheekWaredBindingSource.DataSource = this.dSFellowship;
     //
     // dSFellowship
     //
     this.dSFellowship.DataSetName = "DSFellowship";
     this.dSFellowship.Locale = new System.Globalization.CultureInfo("en-US");
     this.dSFellowship.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicateId,
     this.colEdaraId,
     this.colSheekMony,
     this.colSheekNo,
     this.colSheekDate,
     this.colEdaraSarfDate,
     this.colNkapaSarfDate,
     this.colEdaraMandopId,
     this.colnkapaMandopId,
     this.gridColumnSave,
     this.gridColumnDelete});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colSyndicateId
     //
     this.colSyndicateId.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.Caption = "الفرعيه";
     this.colSyndicateId.ColumnEdit = this.repositoryItemGridLookUpEditSyndicateId;
     this.colSyndicateId.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 0;
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DataSource = this.cDSyndicateBindingSource;
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     this.repositoryItemGridLookUpEditSyndicateId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditSyndicateId_ButtonClick);
     //
     // cDSyndicateBindingSource
     //
     this.cDSyndicateBindingSource.DataMember = "CDSyndicate";
     this.cDSyndicateBindingSource.DataSource = this.dSFellowship;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعيه";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // colEdaraId
     //
     this.colEdaraId.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraId.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraId.Caption = "الادارة";
     this.colEdaraId.ColumnEdit = this.repositoryItemGridLookUpEditEdaraId;
     this.colEdaraId.FieldName = "EdaraId";
     this.colEdaraId.Name = "colEdaraId";
     this.colEdaraId.Visible = true;
     this.colEdaraId.VisibleIndex = 1;
     //
     // repositoryItemGridLookUpEditEdaraId
     //
     this.repositoryItemGridLookUpEditEdaraId.AutoHeight = false;
     this.repositoryItemGridLookUpEditEdaraId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.repositoryItemGridLookUpEditEdaraId.DataSource = this.cDEDARETBindingSource;
     this.repositoryItemGridLookUpEditEdaraId.DisplayMember = "EDARET";
     this.repositoryItemGridLookUpEditEdaraId.Name = "repositoryItemGridLookUpEditEdaraId";
     this.repositoryItemGridLookUpEditEdaraId.NullText = "";
     this.repositoryItemGridLookUpEditEdaraId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEdaraId.ValueMember = "EdaraId";
     this.repositoryItemGridLookUpEditEdaraId.View = this.gridView1;
     this.repositoryItemGridLookUpEditEdaraId.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemGridLookUpEditEdaraId_QueryPopUp);
     this.repositoryItemGridLookUpEditEdaraId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditEdaraId_ButtonClick);
     //
     // cDEDARETBindingSource
     //
     this.cDEDARETBindingSource.DataMember = "CDEDARET";
     this.cDEDARETBindingSource.DataSource = this.dSFellowship;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "الادارة";
     this.gridColumn1.FieldName = "EDARET";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // colSheekMony
     //
     this.colSheekMony.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekMony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekMony.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekMony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekMony.Caption = "المبلغ";
     this.colSheekMony.ColumnEdit = this.repositoryItemCalcEditf2;
     this.colSheekMony.FieldName = "SheekMony";
     this.colSheekMony.Name = "colSheekMony";
     this.colSheekMony.Visible = true;
     this.colSheekMony.VisibleIndex = 2;
     this.colSheekMony.Width = 56;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // colSheekNo
     //
     this.colSheekNo.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekNo.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekNo.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekNo.Caption = "رقم الشيك";
     this.colSheekNo.FieldName = "SheekNo";
     this.colSheekNo.Name = "colSheekNo";
     this.colSheekNo.Visible = true;
     this.colSheekNo.VisibleIndex = 3;
     //
     // colSheekDate
     //
     this.colSheekDate.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekDate.Caption = "تاريخ الشيك";
     this.colSheekDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colSheekDate.FieldName = "SheekDate";
     this.colSheekDate.Name = "colSheekDate";
     this.colSheekDate.Visible = true;
     this.colSheekDate.VisibleIndex = 4;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // colEdaraSarfDate
     //
     this.colEdaraSarfDate.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraSarfDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraSarfDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraSarfDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraSarfDate.Caption = "تاريخ عمولة الادارة";
     this.colEdaraSarfDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colEdaraSarfDate.FieldName = "EdaraSarfDate";
     this.colEdaraSarfDate.Name = "colEdaraSarfDate";
     this.colEdaraSarfDate.Visible = true;
     this.colEdaraSarfDate.VisibleIndex = 5;
     this.colEdaraSarfDate.Width = 104;
     //
     // colNkapaSarfDate
     //
     this.colNkapaSarfDate.AppearanceCell.Options.UseTextOptions = true;
     this.colNkapaSarfDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNkapaSarfDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colNkapaSarfDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNkapaSarfDate.Caption = "تاريخ عمولة النقابه";
     this.colNkapaSarfDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colNkapaSarfDate.FieldName = "NkapaSarfDate";
     this.colNkapaSarfDate.Name = "colNkapaSarfDate";
     this.colNkapaSarfDate.Visible = true;
     this.colNkapaSarfDate.VisibleIndex = 6;
     this.colNkapaSarfDate.Width = 102;
     //
     // colEdaraMandopId
     //
     this.colEdaraMandopId.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopId.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopId.Caption = "مندوب الادارة";
     this.colEdaraMandopId.ColumnEdit = this.repositoryItemGridLookUpEditEdaraMandopId;
     this.colEdaraMandopId.FieldName = "EdaraMandopId";
     this.colEdaraMandopId.Name = "colEdaraMandopId";
     this.colEdaraMandopId.Visible = true;
     this.colEdaraMandopId.VisibleIndex = 7;
     this.colEdaraMandopId.Width = 109;
     //
     // repositoryItemGridLookUpEditEdaraMandopId
     //
     this.repositoryItemGridLookUpEditEdaraMandopId.AutoHeight = false;
     this.repositoryItemGridLookUpEditEdaraMandopId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.repositoryItemGridLookUpEditEdaraMandopId.DataSource = this.tBLEdaraMandopBindingSource;
     this.repositoryItemGridLookUpEditEdaraMandopId.DisplayMember = "EdaraMandopName";
     this.repositoryItemGridLookUpEditEdaraMandopId.Name = "repositoryItemGridLookUpEditEdaraMandopId";
     this.repositoryItemGridLookUpEditEdaraMandopId.NullText = "";
     this.repositoryItemGridLookUpEditEdaraMandopId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEdaraMandopId.ValueMember = "EdaraMandopId";
     this.repositoryItemGridLookUpEditEdaraMandopId.View = this.gridView3;
     this.repositoryItemGridLookUpEditEdaraMandopId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditEdaraMandopId_ButtonClick);
     //
     // tBLEdaraMandopBindingSource
     //
     this.tBLEdaraMandopBindingSource.DataMember = "TBLEdaraMandop";
     this.tBLEdaraMandopBindingSource.DataSource = this.dSFellowship;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "الاسم";
     this.gridColumn4.FieldName = "EdaraMandopName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // colnkapaMandopId
     //
     this.colnkapaMandopId.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopId.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopId.Caption = "مندوب النقابة";
     this.colnkapaMandopId.ColumnEdit = this.repositoryItemGridLookUpEditnkapaMandopId;
     this.colnkapaMandopId.FieldName = "nkapaMandopId";
     this.colnkapaMandopId.Name = "colnkapaMandopId";
     this.colnkapaMandopId.Visible = true;
     this.colnkapaMandopId.VisibleIndex = 8;
     this.colnkapaMandopId.Width = 80;
     //
     // repositoryItemGridLookUpEditnkapaMandopId
     //
     this.repositoryItemGridLookUpEditnkapaMandopId.AutoHeight = false;
     this.repositoryItemGridLookUpEditnkapaMandopId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemGridLookUpEditnkapaMandopId.DataSource = this.tBLNkapaMandopBindingSource;
     this.repositoryItemGridLookUpEditnkapaMandopId.DisplayMember = "nkapaMandopName";
     this.repositoryItemGridLookUpEditnkapaMandopId.Name = "repositoryItemGridLookUpEditnkapaMandopId";
     this.repositoryItemGridLookUpEditnkapaMandopId.NullText = "";
     this.repositoryItemGridLookUpEditnkapaMandopId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditnkapaMandopId.ValueMember = "nkapaMandopId";
     this.repositoryItemGridLookUpEditnkapaMandopId.View = this.gridView4;
     this.repositoryItemGridLookUpEditnkapaMandopId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditnkapaMandopId_ButtonClick);
     //
     // tBLNkapaMandopBindingSource
     //
     this.tBLNkapaMandopBindingSource.DataMember = "TBLNkapaMandop";
     this.tBLNkapaMandopBindingSource.DataSource = this.dSFellowship;
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "الاسم";
     this.gridColumn5.FieldName = "nkapaMandopName";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 9;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 10;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.CDEDARETTableAdapter = this.cDEDARETTableAdapter;
     this.tableAdapterManager.CDModereaTableAdapter = null;
     this.tableAdapterManager.CDStateTableAdapter = null;
     this.tableAdapterManager.CDSyndicateTableAdapter = this.cDSyndicateTableAdapter;
     this.tableAdapterManager.TBLEdaraMandopTableAdapter = this.tBLEdaraMandopTableAdapter;
     this.tableAdapterManager.TblMemberTableAdapter = null;
     this.tableAdapterManager.TBLNkapaMandopTableAdapter = this.tBLNkapaMandopTableAdapter;
     this.tableAdapterManager.TblSarfTableAdapter = null;
     this.tableAdapterManager.TBLSheekMonthTableAdapter = null;
     this.tableAdapterManager.TBLSheekWaredTableAdapter = this.tBLSheekWaredTableAdapter;
     this.tableAdapterManager.UpdateOrder = Fellowship.DataSources.DSFellowshipTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     this.tableAdapterManager.UsersTableAdapter = null;
     //
     // cDEDARETTableAdapter
     //
     this.cDEDARETTableAdapter.ClearBeforeFill = true;
     //
     // cDSyndicateTableAdapter
     //
     this.cDSyndicateTableAdapter.ClearBeforeFill = true;
     //
     // tBLEdaraMandopTableAdapter
     //
     this.tBLEdaraMandopTableAdapter.ClearBeforeFill = true;
     //
     // tBLNkapaMandopTableAdapter
     //
     this.tBLNkapaMandopTableAdapter.ClearBeforeFill = true;
     //
     // tBLSheekWaredTableAdapter
     //
     this.tBLSheekWaredTableAdapter.ClearBeforeFill = true;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::Fellowship.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // TBLSheekWaredFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TBLSheekWaredFrm";
     this.Text = "الشيكات الواردة";
     this.Load += new System.EventHandler(this.stu_nashatFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLSheekWaredBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSFellowship)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDEDARETBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraMandopId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLEdaraMandopBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditnkapaMandopId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLNkapaMandopBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#40
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(CustomInfoDefine));
			this.groupControl_CustomInfo = new DevExpress.XtraEditors.GroupControl();
			this.splitContainerControl_CustomInfo = new DevExpress.XtraEditors.SplitContainerControl();
			this.gridControl_TeaCustomInfo = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn_TeaPressKey = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn_TeaPressKeyInfo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.notePanel_TeaCustomInfo = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_SaveTea = new DevExpress.XtraEditors.SimpleButton();
			this.gridControl_StuCustomInfo = new DevExpress.XtraGrid.GridControl();
			this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn_StuPressKey = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn_StuPressKeyInfo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_StuCustomInfo = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_SaveStu = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_CustomInfo)).BeginInit();
			this.groupControl_CustomInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_CustomInfo)).BeginInit();
			this.splitContainerControl_CustomInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaCustomInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_StuCustomInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
			this.SuspendLayout();
			// 
			// groupControl_CustomInfo
			// 
			this.groupControl_CustomInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.groupControl_CustomInfo.Appearance.Options.UseBackColor = true;
			this.groupControl_CustomInfo.Controls.Add(this.splitContainerControl_CustomInfo);
			this.groupControl_CustomInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_CustomInfo.Location = new System.Drawing.Point(0, 0);
			this.groupControl_CustomInfo.Name = "groupControl_CustomInfo";
			this.groupControl_CustomInfo.Size = new System.Drawing.Size(688, 325);
			this.groupControl_CustomInfo.TabIndex = 0;
			this.groupControl_CustomInfo.Text = "自定义信息设置";
			// 
			// splitContainerControl_CustomInfo
			// 
			this.splitContainerControl_CustomInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.splitContainerControl_CustomInfo.Location = new System.Drawing.Point(3, 18);
			this.splitContainerControl_CustomInfo.Name = "splitContainerControl_CustomInfo";
			this.splitContainerControl_CustomInfo.Panel1.Controls.Add(this.simpleButton1);
			this.splitContainerControl_CustomInfo.Panel1.Controls.Add(this.gridControl_TeaCustomInfo);
			this.splitContainerControl_CustomInfo.Panel1.Controls.Add(this.notePanel_TeaCustomInfo);
			this.splitContainerControl_CustomInfo.Panel1.Controls.Add(this.simpleButton_SaveTea);
			this.splitContainerControl_CustomInfo.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl_CustomInfo.Panel2.Controls.Add(this.simpleButton2);
			this.splitContainerControl_CustomInfo.Panel2.Controls.Add(this.gridControl_StuCustomInfo);
			this.splitContainerControl_CustomInfo.Panel2.Controls.Add(this.notePanel_StuCustomInfo);
			this.splitContainerControl_CustomInfo.Panel2.Controls.Add(this.simpleButton_SaveStu);
			this.splitContainerControl_CustomInfo.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl_CustomInfo.Size = new System.Drawing.Size(682, 286);
			this.splitContainerControl_CustomInfo.SplitterPosition = 340;
			this.splitContainerControl_CustomInfo.TabIndex = 0;
			this.splitContainerControl_CustomInfo.Text = "splitContainerControl1";
			// 
			// gridControl_TeaCustomInfo
			// 
			// 
			// gridControl_TeaCustomInfo.EmbeddedNavigator
			// 
			this.gridControl_TeaCustomInfo.EmbeddedNavigator.Name = "";
			this.gridControl_TeaCustomInfo.Location = new System.Drawing.Point(0, 80);
			this.gridControl_TeaCustomInfo.MainView = this.gridView2;
			this.gridControl_TeaCustomInfo.Name = "gridControl_TeaCustomInfo";
			this.gridControl_TeaCustomInfo.Size = new System.Drawing.Size(332, 200);
			this.gridControl_TeaCustomInfo.TabIndex = 6;
			this.gridControl_TeaCustomInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView2,
																													 this.gridView1});
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn_TeaPressKey,
																							 this.gridColumn_TeaPressKeyInfo});
			this.gridView2.GridControl = this.gridControl_TeaCustomInfo;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsCustomization.AllowGroup = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowFooter = true;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn_TeaPressKey
			// 
			this.gridColumn_TeaPressKey.Caption = "按键值";
			this.gridColumn_TeaPressKey.FieldName = "teafs_state";
			this.gridColumn_TeaPressKey.Name = "gridColumn_TeaPressKey";
			this.gridColumn_TeaPressKey.OptionsColumn.AllowEdit = false;
			this.gridColumn_TeaPressKey.Visible = true;
			this.gridColumn_TeaPressKey.VisibleIndex = 0;
			// 
			// gridColumn_TeaPressKeyInfo
			// 
			this.gridColumn_TeaPressKeyInfo.Caption = "按键定义";
			this.gridColumn_TeaPressKeyInfo.FieldName = "teafs_name";
			this.gridColumn_TeaPressKeyInfo.Name = "gridColumn_TeaPressKeyInfo";
			this.gridColumn_TeaPressKeyInfo.Visible = true;
			this.gridColumn_TeaPressKeyInfo.VisibleIndex = 1;
			// 
			// gridView1
			// 
			this.gridView1.GridControl = this.gridControl_TeaCustomInfo;
			this.gridView1.Name = "gridView1";
			// 
			// notePanel_TeaCustomInfo
			// 
			this.notePanel_TeaCustomInfo.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_TeaCustomInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_TeaCustomInfo.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_TeaCustomInfo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaCustomInfo.Location = new System.Drawing.Point(0, 0);
			this.notePanel_TeaCustomInfo.MaxRows = 5;
			this.notePanel_TeaCustomInfo.Name = "notePanel_TeaCustomInfo";
			this.notePanel_TeaCustomInfo.ParentAutoHeight = true;
			this.notePanel_TeaCustomInfo.Size = new System.Drawing.Size(334, 38);
			this.notePanel_TeaCustomInfo.TabIndex = 5;
			this.notePanel_TeaCustomInfo.TabStop = false;
			this.notePanel_TeaCustomInfo.Text = "教师自定义:                                                             (最多定义18条,晨检下使用" +
				",键0默认为:\"外出归来\")";
			// 
			// simpleButton_SaveTea
			// 
			this.simpleButton_SaveTea.Location = new System.Drawing.Point(192, 48);
			this.simpleButton_SaveTea.Name = "simpleButton_SaveTea";
			this.simpleButton_SaveTea.Size = new System.Drawing.Size(56, 23);
			this.simpleButton_SaveTea.TabIndex = 1;
			this.simpleButton_SaveTea.Text = "保存";
			this.simpleButton_SaveTea.Click += new System.EventHandler(this.simpleButton_SaveTea_Click);
			// 
			// gridControl_StuCustomInfo
			// 
			// 
			// gridControl_StuCustomInfo.EmbeddedNavigator
			// 
			this.gridControl_StuCustomInfo.EmbeddedNavigator.Name = "";
			this.gridControl_StuCustomInfo.Location = new System.Drawing.Point(0, 80);
			this.gridControl_StuCustomInfo.MainView = this.gridView3;
			this.gridControl_StuCustomInfo.Name = "gridControl_StuCustomInfo";
			this.gridControl_StuCustomInfo.Size = new System.Drawing.Size(334, 200);
			this.gridControl_StuCustomInfo.TabIndex = 6;
			this.gridControl_StuCustomInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView3});
			// 
			// gridView3
			// 
			this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn_StuPressKey,
																							 this.gridColumn_StuPressKeyInfo});
			this.gridView3.GridControl = this.gridControl_StuCustomInfo;
			this.gridView3.Name = "gridView3";
			this.gridView3.OptionsCustomization.AllowFilter = false;
			this.gridView3.OptionsCustomization.AllowGroup = false;
			this.gridView3.OptionsView.ShowFilterPanel = false;
			this.gridView3.OptionsView.ShowFooter = true;
			this.gridView3.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn_StuPressKey
			// 
			this.gridColumn_StuPressKey.Caption = "按键值";
			this.gridColumn_StuPressKey.FieldName = "state_flowState";
			this.gridColumn_StuPressKey.Name = "gridColumn_StuPressKey";
			this.gridColumn_StuPressKey.OptionsColumn.AllowEdit = false;
			this.gridColumn_StuPressKey.Visible = true;
			this.gridColumn_StuPressKey.VisibleIndex = 0;
			// 
			// gridColumn_StuPressKeyInfo
			// 
			this.gridColumn_StuPressKeyInfo.Caption = "按键定义";
			this.gridColumn_StuPressKeyInfo.FieldName = "state_flowStateName";
			this.gridColumn_StuPressKeyInfo.Name = "gridColumn_StuPressKeyInfo";
			this.gridColumn_StuPressKeyInfo.Visible = true;
			this.gridColumn_StuPressKeyInfo.VisibleIndex = 1;
			// 
			// notePanel_StuCustomInfo
			// 
			this.notePanel_StuCustomInfo.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_StuCustomInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_StuCustomInfo.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_StuCustomInfo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_StuCustomInfo.Location = new System.Drawing.Point(0, 0);
			this.notePanel_StuCustomInfo.MaxRows = 5;
			this.notePanel_StuCustomInfo.Name = "notePanel_StuCustomInfo";
			this.notePanel_StuCustomInfo.ParentAutoHeight = true;
			this.notePanel_StuCustomInfo.Size = new System.Drawing.Size(332, 38);
			this.notePanel_StuCustomInfo.TabIndex = 5;
			this.notePanel_StuCustomInfo.TabStop = false;
			this.notePanel_StuCustomInfo.Text = "学生自定义                                                                   (最多定义18条," +
				"加餐为固定自定义键)";
			// 
			// simpleButton_SaveStu
			// 
			this.simpleButton_SaveStu.Location = new System.Drawing.Point(192, 48);
			this.simpleButton_SaveStu.Name = "simpleButton_SaveStu";
			this.simpleButton_SaveStu.Size = new System.Drawing.Size(56, 23);
			this.simpleButton_SaveStu.TabIndex = 1;
			this.simpleButton_SaveStu.Text = "保存";
			this.simpleButton_SaveStu.Click += new System.EventHandler(this.simpleButton_SaveStu_Click);
			// 
			// simpleButton1
			// 
			this.simpleButton1.Location = new System.Drawing.Point(256, 48);
			this.simpleButton1.Name = "simpleButton1";
			this.simpleButton1.Size = new System.Drawing.Size(64, 23);
			this.simpleButton1.TabIndex = 7;
			this.simpleButton1.Text = "全部清空";
			this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
			// 
			// simpleButton2
			// 
			this.simpleButton2.Location = new System.Drawing.Point(256, 48);
			this.simpleButton2.Name = "simpleButton2";
			this.simpleButton2.Size = new System.Drawing.Size(64, 23);
			this.simpleButton2.TabIndex = 8;
			this.simpleButton2.Text = "全部清空";
			this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
			// 
			// CustomInfoDefine
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
			this.ClientSize = new System.Drawing.Size(688, 325);
			this.Controls.Add(this.groupControl_CustomInfo);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.Name = "CustomInfoDefine";
			this.ShowInTaskbar = false;
			this.Text = "自定义信息维护";
			this.Load += new System.EventHandler(this.CustomInfoDefine_Load);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_CustomInfo)).EndInit();
			this.groupControl_CustomInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_CustomInfo)).EndInit();
			this.splitContainerControl_CustomInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaCustomInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_StuCustomInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
			this.ResumeLayout(false);

		}
示例#41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridClassDetail = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.txtDay = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridClassDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridClassDetail
     //
     this.gridClassDetail.DataMember = null;
     this.gridClassDetail.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridClassDetail.EmbeddedNavigator.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.gridClassDetail.EmbeddedNavigator.Enabled = false;
     this.gridClassDetail.EmbeddedNavigator.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridClassDetail.EmbeddedNavigator.Name = "";
     this.gridClassDetail.EmbeddedNavigator.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.None;
     this.gridClassDetail.EmbeddedNavigator.TextStringFormat = null;
     this.gridClassDetail.EmbeddedNavigator.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     this.gridClassDetail.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridClassDetail.Location = new System.Drawing.Point(0, 52);
     this.gridClassDetail.MainView = this.gridView1;
     this.gridClassDetail.Name = "gridClassDetail";
     this.gridClassDetail.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gridClassDetail.Size = new System.Drawing.Size(907, 417);
     this.gridClassDetail.TabIndex = 0;
     this.gridClassDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridView1.GridControl = this.gridClassDetail;
     this.gridView1.GroupFormat = "";
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "No. of Attendees";
     this.gridColumn3.FieldName = "AttendanceNo";
     this.gridColumn3.ImageIndex = 0;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.ToolTip = null;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 20;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.ImageIndex = 0;
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.ToolTip = null;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 20;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Instructor Name";
     this.gridColumn4.FieldName = "Instructor";
     this.gridColumn4.ImageIndex = 0;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.ToolTip = null;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 20;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.ImageIndex = 0;
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.ToolTip = null;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 20;
     //
     // label2
     //
     this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label2.Enabled = false;
     this.label2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label2.Location = new System.Drawing.Point(453, 234);
     this.label2.Name = "label2";
     this.label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label2.Size = new System.Drawing.Size(0, 0);
     this.label2.TabIndex = 0;
     //
     // label1
     //
     this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label1.Enabled = false;
     this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name = "label1";
     this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label1.Size = new System.Drawing.Size(55, 22);
     this.label1.TabIndex = 0;
     this.label1.Text = "Branch";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbBranch.Enabled = false;
     this.cmbBranch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.cmbBranch.Location = new System.Drawing.Point(73, 7);
     this.cmbBranch.Name = "cmbBranch";
     this.cmbBranch.Properties.AutoHeight = false;
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Properties.Mask.EditMask = null;
     this.cmbBranch.Properties.Mask.IgnoreMaskBlank = false;
     this.cmbBranch.Properties.Mask.SaveLiteral = false;
     this.cmbBranch.Properties.Mask.ShowPlaceHolders = false;
     this.cmbBranch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbBranch.Size = new System.Drawing.Size(105, 22);
     this.cmbBranch.TabIndex = 0;
     this.cmbBranch.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     this.cmbBranch.SelectedIndexChanged += new System.EventHandler(this.cmbBranch_SelectedIndexChanged);
     //
     // txtDay
     //
     this.txtDay.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDay.Enabled = false;
     this.txtDay.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.txtDay.Location = new System.Drawing.Point(459, 8);
     this.txtDay.Name = "txtDay";
     this.txtDay.Properties.AutoHeight = false;
     this.txtDay.Properties.Mask.EditMask = null;
     this.txtDay.Properties.Mask.IgnoreMaskBlank = false;
     this.txtDay.Properties.Mask.SaveLiteral = false;
     this.txtDay.Properties.Mask.ShowPlaceHolders = false;
     this.txtDay.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtDay.Size = new System.Drawing.Size(100, 22);
     this.txtDay.TabIndex = 0;
     this.txtDay.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     //
     // label3
     //
     this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label3.Enabled = false;
     this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label3.Location = new System.Drawing.Point(420, 10);
     this.label3.Name = "label3";
     this.label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label3.Size = new System.Drawing.Size(33, 22);
     this.label3.TabIndex = 1;
     this.label3.Text = "Day";
     //
     // RPClassDetail
     //
     this.ClientSize = new System.Drawing.Size(907, 469);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtDay);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbBranch);
     this.Controls.Add(this.gridClassDetail);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "RPClassDetail";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Class Detail";
     this.TopMost = true;
     this.Load += new System.EventHandler(this.RPClassDetail_Load);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.RPClassDetail_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.gridClassDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#42
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Grid));
     this.btn_simpleCancelSum = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏分组面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏过滤面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Export = new DevExpress.XtraEditors.SimpleButton();
     this.btnshow = new DevExpress.XtraEditors.PictureEdit();
     this.btn_合并取消合并表格 = new DevExpress.XtraEditors.SimpleButton();
     this._panelControl = new DevExpress.XtraEditors.PanelControl();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btn_ReduceRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_AddRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_执行命令1 = new DevExpress.XtraEditors.SimpleButton();
     this.采集模块 = new System.Windows.Forms.Panel();
     this.分钟 = new System.Windows.Forms.Label();
     this.采集频率 = new System.Windows.Forms.Label();
     this.采集频率1 = new System.Windows.Forms.ComboBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this._gridControl = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this._gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this._saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this._contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.复制当前列ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制当前字段ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.报表导出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.打印预览ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).BeginInit();
     this._panelControl.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.采集模块.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).BeginInit();
     this._contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // btn_simpleCancelSum
     //
     this.btn_simpleCancelSum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_simpleCancelSum.Image = ((System.Drawing.Image)(resources.GetObject("btn_simpleCancelSum.Image")));
     this.btn_simpleCancelSum.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_simpleCancelSum.Location = new System.Drawing.Point(501, 3);
     this.btn_simpleCancelSum.Name = "btn_simpleCancelSum";
     this.btn_simpleCancelSum.Size = new System.Drawing.Size(80, 27);
     this.btn_simpleCancelSum.TabIndex = 4;
     this.btn_simpleCancelSum.Text = "合计底栏";
     this.btn_simpleCancelSum.Visible = false;
     this.btn_simpleCancelSum.Click += new System.EventHandler(this.btn_simpleCancelSum_Click);
     //
     // btn_显示隐藏分组面板
     //
     this.btn_显示隐藏分组面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏分组面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏分组面板.Image")));
     this.btn_显示隐藏分组面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏分组面板.Location = new System.Drawing.Point(587, 3);
     this.btn_显示隐藏分组面板.Name = "btn_显示隐藏分组面板";
     this.btn_显示隐藏分组面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏分组面板.TabIndex = 2;
     this.btn_显示隐藏分组面板.Text = "分组面板";
     this.btn_显示隐藏分组面板.Visible = false;
     this.btn_显示隐藏分组面板.Click += new System.EventHandler(this.btn_显示隐藏分组面板_Click);
     //
     // btn_显示隐藏过滤面板
     //
     this.btn_显示隐藏过滤面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏过滤面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏过滤面板.Image")));
     this.btn_显示隐藏过滤面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏过滤面板.Location = new System.Drawing.Point(673, 3);
     this.btn_显示隐藏过滤面板.Name = "btn_显示隐藏过滤面板";
     this.btn_显示隐藏过滤面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏过滤面板.TabIndex = 0;
     this.btn_显示隐藏过滤面板.Text = "查找记录";
     this.btn_显示隐藏过滤面板.Visible = false;
     this.btn_显示隐藏过滤面板.Click += new System.EventHandler(this.btn_TotleLocation_Click);
     //
     // btn_Export
     //
     this.btn_Export.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_Export.Image = ((System.Drawing.Image)(resources.GetObject("btn_Export.Image")));
     this.btn_Export.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_Export.Location = new System.Drawing.Point(845, 3);
     this.btn_Export.Name = "btn_Export";
     this.btn_Export.Size = new System.Drawing.Size(80, 27);
     this.btn_Export.TabIndex = 1;
     this.btn_Export.Text = "导出表格";
     this.btn_Export.Visible = false;
     this.btn_Export.Click += new System.EventHandler(this.btn_Export_Click);
     //
     // btnshow
     //
     this.btnshow.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnshow.EditValue = ((object)(resources.GetObject("btnshow.EditValue")));
     this.btnshow.Location = new System.Drawing.Point(2, 2);
     this.btnshow.Name = "btnshow";
     this.btnshow.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.btnshow.Properties.Appearance.Options.UseBackColor = true;
     this.btnshow.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.btnshow.Size = new System.Drawing.Size(22, 18);
     this.btnshow.TabIndex = 10;
     this.btnshow.Visible = false;
     this.btnshow.Click += new System.EventHandler(this.btnshow_Click);
     //
     // btn_合并取消合并表格
     //
     this.btn_合并取消合并表格.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_合并取消合并表格.Image = ((System.Drawing.Image)(resources.GetObject("btn_合并取消合并表格.Image")));
     this.btn_合并取消合并表格.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_合并取消合并表格.Location = new System.Drawing.Point(759, 3);
     this.btn_合并取消合并表格.Name = "btn_合并取消合并表格";
     this.btn_合并取消合并表格.Size = new System.Drawing.Size(80, 27);
     this.btn_合并取消合并表格.TabIndex = 10;
     this.btn_合并取消合并表格.Text = "合并列值";
     this.btn_合并取消合并表格.Visible = false;
     this.btn_合并取消合并表格.Click += new System.EventHandler(this.btn_合并取消合并表格_Click);
     //
     // _panelControl
     //
     this._panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this._panelControl.Controls.Add(this.flowLayoutPanel1);
     this._panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this._panelControl.Location = new System.Drawing.Point(0, 0);
     this._panelControl.Name = "_panelControl";
     this._panelControl.Size = new System.Drawing.Size(928, 33);
     this._panelControl.TabIndex = 2;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btn_Export);
     this.flowLayoutPanel1.Controls.Add(this.btn_合并取消合并表格);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏过滤面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏分组面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_simpleCancelSum);
     this.flowLayoutPanel1.Controls.Add(this.btn_ReduceRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_AddRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_执行命令1);
     this.flowLayoutPanel1.Controls.Add(this.采集模块);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.flowLayoutPanel1.Size = new System.Drawing.Size(928, 33);
     this.flowLayoutPanel1.TabIndex = 15;
     //
     // btn_ReduceRow
     //
     this.btn_ReduceRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_ReduceRow.Image = global::控件库.Properties.Resources.suoxiao;
     this.btn_ReduceRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_ReduceRow.Location = new System.Drawing.Point(415, 3);
     this.btn_ReduceRow.Name = "btn_ReduceRow";
     this.btn_ReduceRow.Size = new System.Drawing.Size(80, 27);
     this.btn_ReduceRow.TabIndex = 13;
     this.btn_ReduceRow.Text = "删除记录";
     this.btn_ReduceRow.Click += new System.EventHandler(this.btn_ReduceRow_Click);
     this.btn_ReduceRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_ReduceRow_MouseDown);
     //
     // btn_AddRow
     //
     this.btn_AddRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_AddRow.Image = global::控件库.Properties.Resources.kuoda;
     this.btn_AddRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_AddRow.Location = new System.Drawing.Point(329, 3);
     this.btn_AddRow.Name = "btn_AddRow";
     this.btn_AddRow.Size = new System.Drawing.Size(80, 27);
     this.btn_AddRow.TabIndex = 14;
     this.btn_AddRow.Text = "新增记录";
     this.btn_AddRow.Click += new System.EventHandler(this.btn_AddRow_Click);
     this.btn_AddRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_AddRow_MouseDown);
     //
     // btn_执行命令1
     //
     this.btn_执行命令1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_执行命令1.Image = global::控件库.Properties.Resources.Action_SaveScript;
     this.btn_执行命令1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_执行命令1.Location = new System.Drawing.Point(243, 3);
     this.btn_执行命令1.Name = "btn_执行命令1";
     this.btn_执行命令1.Size = new System.Drawing.Size(80, 27);
     this.btn_执行命令1.TabIndex = 14;
     this.btn_执行命令1.Text = "保存";
     this.btn_执行命令1.Visible = false;
     this.btn_执行命令1.Click += new System.EventHandler(this.btn_执行命令1_Click);
     this.btn_执行命令1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_执行命令1_MouseDown);
     //
     // 采集模块
     //
     this.采集模块.Controls.Add(this.分钟);
     this.采集模块.Controls.Add(this.采集频率);
     this.采集模块.Controls.Add(this.采集频率1);
     this.采集模块.Location = new System.Drawing.Point(86, 2);
     this.采集模块.Margin = new System.Windows.Forms.Padding(2);
     this.采集模块.Name = "采集模块";
     this.采集模块.Size = new System.Drawing.Size(152, 29);
     this.采集模块.TabIndex = 15;
     this.采集模块.Visible = false;
     //
     // 分钟
     //
     this.分钟.AutoSize = true;
     this.分钟.Location = new System.Drawing.Point(131, 7);
     this.分钟.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.分钟.Name = "分钟";
     this.分钟.Size = new System.Drawing.Size(19, 14);
     this.分钟.TabIndex = 2;
     this.分钟.Text = "秒";
     //
     // 采集频率
     //
     this.采集频率.AutoSize = true;
     this.采集频率.Location = new System.Drawing.Point(3, 7);
     this.采集频率.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.采集频率.Name = "采集频率";
     this.采集频率.Size = new System.Drawing.Size(55, 14);
     this.采集频率.TabIndex = 1;
     this.采集频率.Text = "采集频率";
     //
     // 采集频率1
     //
     this.采集频率1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.采集频率1.FormattingEnabled = true;
     this.采集频率1.Items.AddRange(new object[] {
     "60",
     "300",
     "600",
     "900",
     "1200"});
     this.采集频率1.Location = new System.Drawing.Point(58, 4);
     this.采集频率1.Margin = new System.Windows.Forms.Padding(2);
     this.采集频率1.Name = "采集频率1";
     this.采集频率1.Size = new System.Drawing.Size(73, 22);
     this.采集频率1.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnshow);
     this.panel1.Controls.Add(this._gridControl);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 33);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(928, 485);
     this.panel1.TabIndex = 3;
     //
     // _gridControl
     //
     this._gridControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this._gridControl.Location = new System.Drawing.Point(0, 0);
     this._gridControl.MainView = this.bandedGridView1;
     this._gridControl.Name = "_gridControl";
     this._gridControl.Size = new System.Drawing.Size(928, 485);
     this._gridControl.TabIndex = 6;
     this._gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1,
     this._gridView});
     this._gridControl.MouseLeave += new System.EventHandler(this._gridControl_MouseLeave);
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand3,
     this.gridBand4});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.bandedGridColumn14,
     this.bandedGridColumn15,
     this.bandedGridColumn21,
     this.bandedGridColumn16,
     this.bandedGridColumn17,
     this.bandedGridColumn18,
     this.bandedGridColumn22,
     this.bandedGridColumn23,
     this.bandedGridColumn24,
     this.bandedGridColumn25,
     this.bandedGridColumn26,
     this.bandedGridColumn1,
     this.bandedGridColumn2,
     this.bandedGridColumn3,
     this.bandedGridColumn4});
     this.bandedGridView1.GridControl = this._gridControl;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsCustomization.AllowChangeColumnParent = true;
     this.bandedGridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.bandedGridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.bandedGridView1.OptionsView.EnableAppearanceOddRow = true;
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand3
     //
     this.gridBand3.Caption = "实测转速下数据";
     this.gridBand3.Columns.Add(this.bandedGridColumn4);
     this.gridBand3.Columns.Add(this.bandedGridColumn3);
     this.gridBand3.Columns.Add(this.bandedGridColumn14);
     this.gridBand3.Columns.Add(this.bandedGridColumn15);
     this.gridBand3.Columns.Add(this.bandedGridColumn21);
     this.gridBand3.Columns.Add(this.bandedGridColumn16);
     this.gridBand3.Columns.Add(this.bandedGridColumn17);
     this.gridBand3.Columns.Add(this.bandedGridColumn1);
     this.gridBand3.Columns.Add(this.bandedGridColumn2);
     this.gridBand3.Columns.Add(this.bandedGridColumn18);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.OptionsBand.AllowMove = false;
     this.gridBand3.Width = 675;
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.Caption = "ID";
     this.bandedGridColumn4.FieldName = "id";
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.Caption = "时间";
     this.bandedGridColumn3.FieldName = "时间值";
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     this.bandedGridColumn3.OptionsColumn.AllowMove = false;
     this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn3.Visible = true;
     //
     // bandedGridColumn14
     //
     this.bandedGridColumn14.Caption = "序号";
     this.bandedGridColumn14.FieldName = "序列2";
     this.bandedGridColumn14.Name = "bandedGridColumn14";
     this.bandedGridColumn14.OptionsColumn.AllowMove = false;
     this.bandedGridColumn14.Visible = true;
     //
     // bandedGridColumn15
     //
     this.bandedGridColumn15.Caption = "流量(m3/h)";
     this.bandedGridColumn15.FieldName = "流量";
     this.bandedGridColumn15.Name = "bandedGridColumn15";
     this.bandedGridColumn15.OptionsColumn.AllowMove = false;
     this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn15.Visible = true;
     //
     // bandedGridColumn21
     //
     this.bandedGridColumn21.Caption = "扬程(m)";
     this.bandedGridColumn21.FieldName = "扬程";
     this.bandedGridColumn21.Name = "bandedGridColumn21";
     this.bandedGridColumn21.OptionsColumn.AllowMove = false;
     this.bandedGridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn21.Visible = true;
     //
     // bandedGridColumn16
     //
     this.bandedGridColumn16.Caption = "输入功率(kW)";
     this.bandedGridColumn16.FieldName = "输入功率";
     this.bandedGridColumn16.Name = "bandedGridColumn16";
     this.bandedGridColumn16.OptionsColumn.AllowMove = false;
     this.bandedGridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn16.Visible = true;
     //
     // bandedGridColumn17
     //
     this.bandedGridColumn17.Caption = "转速(r/min)";
     this.bandedGridColumn17.FieldName = "转速";
     this.bandedGridColumn17.Name = "bandedGridColumn17";
     this.bandedGridColumn17.OptionsColumn.AllowMove = false;
     this.bandedGridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn17.Visible = true;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.Caption = "电压(V)";
     this.bandedGridColumn1.FieldName = "电压";
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     this.bandedGridColumn1.OptionsColumn.AllowMove = false;
     this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn1.Visible = true;
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.Caption = "电流(A)";
     this.bandedGridColumn2.FieldName = "电流";
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     this.bandedGridColumn2.OptionsColumn.AllowMove = false;
     this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn2.Visible = true;
     //
     // bandedGridColumn18
     //
     this.bandedGridColumn18.Caption = "轴功率(kW)";
     this.bandedGridColumn18.FieldName = "轴功率";
     this.bandedGridColumn18.Name = "bandedGridColumn18";
     this.bandedGridColumn18.OptionsColumn.AllowMove = false;
     this.bandedGridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn18.Visible = true;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "额定转速下数据";
     this.gridBand4.Columns.Add(this.bandedGridColumn22);
     this.gridBand4.Columns.Add(this.bandedGridColumn23);
     this.gridBand4.Columns.Add(this.bandedGridColumn24);
     this.gridBand4.Columns.Add(this.bandedGridColumn25);
     this.gridBand4.Columns.Add(this.bandedGridColumn26);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 375;
     //
     // bandedGridColumn22
     //
     this.bandedGridColumn22.Caption = "流量(m3/h)";
     this.bandedGridColumn22.FieldName = "额定转速下_流量";
     this.bandedGridColumn22.Name = "bandedGridColumn22";
     this.bandedGridColumn22.OptionsColumn.AllowMove = false;
     this.bandedGridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn22.Visible = true;
     //
     // bandedGridColumn23
     //
     this.bandedGridColumn23.Caption = "扬程(m)";
     this.bandedGridColumn23.FieldName = "额定转速下_扬程";
     this.bandedGridColumn23.Name = "bandedGridColumn23";
     this.bandedGridColumn23.OptionsColumn.AllowMove = false;
     this.bandedGridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn23.Visible = true;
     //
     // bandedGridColumn24
     //
     this.bandedGridColumn24.Caption = "轴功率(kW)";
     this.bandedGridColumn24.FieldName = "额定转速下_轴功率";
     this.bandedGridColumn24.Name = "bandedGridColumn24";
     this.bandedGridColumn24.OptionsColumn.AllowMove = false;
     this.bandedGridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn24.Visible = true;
     //
     // bandedGridColumn25
     //
     this.bandedGridColumn25.Caption = "泵效率(%)";
     this.bandedGridColumn25.FieldName = "额定转速下_泵效率";
     this.bandedGridColumn25.Name = "bandedGridColumn25";
     this.bandedGridColumn25.OptionsColumn.AllowMove = false;
     this.bandedGridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn25.Visible = true;
     //
     // bandedGridColumn26
     //
     this.bandedGridColumn26.Caption = "机组效率(%)";
     this.bandedGridColumn26.FieldName = "额定转速下_机组效率";
     this.bandedGridColumn26.Name = "bandedGridColumn26";
     this.bandedGridColumn26.OptionsColumn.AllowMove = false;
     this.bandedGridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn26.Visible = true;
     //
     // _gridView
     //
     this._gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this._gridView.GridControl = this._gridControl;
     this._gridView.Name = "_gridView";
     this._gridView.OptionsBehavior.Editable = false;
     this._gridView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this._gridView.OptionsView.EnableAppearanceEvenRow = true;
     this._gridView.OptionsView.EnableAppearanceOddRow = true;
     this._gridView.OptionsView.ShowGroupPanel = false;
     this._gridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this._gridView_FocusedRowChanged);
     this._gridView.DoubleClick += new System.EventHandler(this._gridView_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "序号";
     this.gridColumn1.FieldName = "序列3";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "流量(m3/h)";
     this.gridColumn2.FieldName = "流量";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "输入功率(kW)";
     this.gridColumn3.FieldName = "输入功率";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "转速(r/min)";
     this.gridColumn4.FieldName = "转速";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMove = false;
     this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "轴功率(kW)";
     this.gridColumn5.FieldName = "轴功率";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "进口压力(KPa)";
     this.gridColumn6.FieldName = "进口压力";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "出口压力(KPa)";
     this.gridColumn7.FieldName = "出口压力";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "扬程(m)";
     this.gridColumn8.FieldName = "扬程";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMove = false;
     this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "流量(m3/h)";
     this.gridColumn9.FieldName = "额定流量";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMove = false;
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "扬程(m)";
     this.gridColumn10.FieldName = "额定扬程";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMove = false;
     this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "轴功率(kW)";
     this.gridColumn11.FieldName = "额定轴功率";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowMove = false;
     this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "泵效率(%)";
     this.gridColumn12.FieldName = "泵效率";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMove = false;
     this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "机组效率(%)";
     this.gridColumn13.FieldName = "机组效率";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowMove = false;
     this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 12;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // _contextMenuStrip
     //
     this._contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前列ToolStripMenuItem,
     this.报表导出ToolStripMenuItem,
     this.打印预览ToolStripMenuItem});
     this._contextMenuStrip.Name = "contextMenuStrip1";
     this._contextMenuStrip.Size = new System.Drawing.Size(189, 88);
     //
     // 复制当前列ToolStripMenuItem
     //
     this.复制当前列ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前字段ToolStripMenuItem});
     this.复制当前列ToolStripMenuItem.Name = "复制当前列ToolStripMenuItem";
     this.复制当前列ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.复制当前列ToolStripMenuItem.Text = "复制到剪贴板";
     //
     // 复制当前字段ToolStripMenuItem
     //
     this.复制当前字段ToolStripMenuItem.Name = "复制当前字段ToolStripMenuItem";
     this.复制当前字段ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.复制当前字段ToolStripMenuItem.Text = "复制当前字段";
     //
     // 报表导出ToolStripMenuItem
     //
     this.报表导出ToolStripMenuItem.Name = "报表导出ToolStripMenuItem";
     this.报表导出ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.报表导出ToolStripMenuItem.Text = "数据导出";
     //
     // 打印预览ToolStripMenuItem
     //
     this.打印预览ToolStripMenuItem.Name = "打印预览ToolStripMenuItem";
     this.打印预览ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.打印预览ToolStripMenuItem.Text = "打印预览";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // Grid
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this._panelControl);
     this.Name = "Grid";
     this.Size = new System.Drawing.Size(928, 518);
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).EndInit();
     this._panelControl.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.采集模块.ResumeLayout(false);
     this.采集模块.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).EndInit();
     this._contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPostMasterSearchQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
     this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NguoiNhap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.MaCT = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.label1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_PM_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_MaChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TenTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TienDo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanelAdvance.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     this.dockPanelSimple.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
     this.groupControlPM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barSubItemCotHienThi,
     this.barSubItemInNhan,
     this.barButtonItemInBeatcamTrong,
     this.barButtonItemInBeatacamNgoai,
     this.barCheckItemNangCao,
     this.barCheckItemDonGian,
     this.barButtonItemThongKe});
     this.barManager1.MaxItemId = 43;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barSubItemInNhan
     //
     this.barSubItemInNhan.Caption = "In n&hãn";
     this.barSubItemInNhan.Id = 37;
     this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
     this.barSubItemInNhan.Name = "barSubItemInNhan";
     //
     // barButtonItemInBeatcamTrong
     //
     this.barButtonItemInBeatcamTrong.Caption = "In betacam t&rong";
     this.barButtonItemInBeatcamTrong.Id = 38;
     this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
     this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
     //
     // barButtonItemInBeatacamNgoai
     //
     this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&goài";
     this.barButtonItemInBeatacamNgoai.Id = 39;
     this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
     this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick);
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barCheckItemNangCao
     //
     this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
     this.barCheckItemNangCao.Id = 40;
     this.barCheckItemNangCao.Name = "barCheckItemNangCao";
     //
     // barCheckItemDonGian
     //
     this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
     this.barCheckItemDonGian.Id = 41;
     this.barCheckItemDonGian.Name = "barCheckItemDonGian";
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemThongKe
     //
     this.barButtonItemThongKe.Caption = "&Thống kê";
     this.barButtonItemThongKe.Id = 42;
     this.barButtonItemThongKe.Name = "barButtonItemThongKe";
     this.barButtonItemThongKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 36;
     this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1008, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1008, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1008, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.DockingOptions.ShowCloseButton = false;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanelAdvance,
     this.dockPanelSimple});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanelAdvance
     //
     this.dockPanelAdvance.Controls.Add(this.controlContainer1);
     this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.ID = new System.Guid("44e36ae0-214f-42cd-8bee-8c8105129b29");
     this.dockPanelAdvance.Location = new System.Drawing.Point(0, 24);
     this.dockPanelAdvance.Name = "dockPanelAdvance";
     this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelAdvance.Size = new System.Drawing.Size(200, 521);
     this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.filterControl1);
     this.controlContainer1.Location = new System.Drawing.Point(3, 25);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(194, 493);
     this.controlContainer1.TabIndex = 0;
     //
     // filterControl1
     //
     this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.filterControl1.Location = new System.Drawing.Point(0, 0);
     this.filterControl1.Name = "filterControl1";
     this.filterControl1.Size = new System.Drawing.Size(194, 493);
     this.filterControl1.TabIndex = 11;
     this.filterControl1.Text = "filterControl1";
     //
     // dockPanelSimple
     //
     this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
     this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanelSimple.FloatVertical = true;
     this.dockPanelSimple.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanelSimple.Location = new System.Drawing.Point(200, 24);
     this.dockPanelSimple.Name = "dockPanelSimple";
     this.dockPanelSimple.Options.AllowDockLeft = false;
     this.dockPanelSimple.Options.AllowDockRight = false;
     this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 111);
     this.dockPanelSimple.Size = new System.Drawing.Size(808, 111);
     this.dockPanelSimple.Text = "Điều kiện tìm kiếm đơn giản";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(802, 83);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NguoiNhap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.MaCT);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.PostMaster);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(802, 83);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // TenTap
     //
     this.TenTap._DataSource = null;
     this.TenTap._GetField = null;
     this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TenTap.Location = new System.Drawing.Point(750, 60);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(606, 20);
     this.TenTap.TabIndex = 222;
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(693, 63);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(37, 13);
     this.plLabel5.TabIndex = 240;
     this.plLabel5.Text = "Tên tập";
     //
     // TapSoDen
     //
     this.TapSoDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(953, 35);
     this.TapSoDen.Name = "TapSoDen";
     this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoDen.Size = new System.Drawing.Size(606, 20);
     this.TapSoDen.TabIndex = 241;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(875, 35);
     this.TapSoTu.Name = "TapSoTu";
     this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoTu.Size = new System.Drawing.Size(42, 20);
     this.TapSoTu.TabIndex = 242;
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(923, 39);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 239;
     this.plLabel15.Text = "đến";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(811, 38);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(32, 13);
     this.plLabel12.TabIndex = 240;
     this.plLabel12.Text = "Tập số";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(811, 8);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(59, 13);
     this.plLabel3.TabIndex = 229;
     this.plLabel3.Text = "Số ĐKCB HD";
     this.plLabel3.ToolTip = "Số đăng ký cá biệt HD";
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(875, 5);
     this.SoDKCBHD.Name = "SoDKCBHD";
     this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKCBHD.Size = new System.Drawing.Size(606, 20);
     this.SoDKCBHD.TabIndex = 228;
     this.SoDKCBHD.ValueField = null;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(338, 32);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(187, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NguoiNhap
     //
     this.NguoiNhap.DataSource = null;
     this.NguoiNhap.DisplayField = null;
     this.NguoiNhap.Location = new System.Drawing.Point(338, 8);
     this.NguoiNhap.Name = "NguoiNhap";
     this.NguoiNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NguoiNhap.Size = new System.Drawing.Size(187, 20);
     this.NguoiNhap.TabIndex = 227;
     this.NguoiNhap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 22/03/2012 đến ngày 29/03/2012";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.FirstTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.FromDate = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.Location = new System.Drawing.Point(338, 57);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.SecondTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(285, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // MaCT
     //
     this.MaCT.Location = new System.Drawing.Point(48, 8);
     this.MaCT.Name = "MaCT";
     this.MaCT.Size = new System.Drawing.Size(214, 20);
     this.MaCT.TabIndex = 223;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 32);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(214, 20);
     this.NoiDung.TabIndex = 222;
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(608, 32);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 220;
     this.LoaiLuuTru.ValueField = null;
     //
     // PostMaster
     //
     this.PostMaster.DataSource = null;
     this.PostMaster.DisplayField = null;
     this.PostMaster.Location = new System.Drawing.Point(608, 8);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.PostMaster.Size = new System.Drawing.Size(185, 20);
     this.PostMaster.TabIndex = 220;
     this.PostMaster.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 56);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(214, 20);
     this.TietMuc.TabIndex = 216;
     this.TietMuc.ValueField = null;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(544, 38);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(55, 13);
     this.plLabel2.TabIndex = 213;
     this.plLabel2.Text = "Loại lưu trữ";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(544, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(58, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Post/Master";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(30, 13);
     this.label1.TabIndex = 214;
     this.label1.Text = "Mã CT";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(275, 12);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(55, 13);
     this.plLabel4.TabIndex = 217;
     this.plLabel4.Text = "Người nhập";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(275, 36);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(274, 59);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 36);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(34, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 135);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.groupControlPM);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(808, 410);
     this.splitContainerControl1.SplitterPosition = 627;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // groupControlPM
     //
     this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupControlPM.Appearance.Options.UseBorderColor = true;
     this.groupControlPM.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControlPM.Controls.Add(this.gridControlMaster);
     this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlPM.Location = new System.Drawing.Point(0, 0);
     this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlPM.Name = "groupControlPM";
     this.groupControlPM.ShowCaption = false;
     this.groupControlPM.Size = new System.Drawing.Size(627, 410);
     this.groupControlPM.TabIndex = 236;
     this.groupControlPM.Text = "groupControl7";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(2, 2);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(623, 406);
     this.gridControlMaster.TabIndex = 10;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandChuongTrinh,
     this.gridBandPostMaster});
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_PM_MaChuongTrinh,
     this.Col_PM_TenChuongTrinh,
     this.Col_PM_TietMuc,
     this.Col_PM_PostMaster,
     this.Col_PM_ThanhLy,
     this.Col_PM_LoaiLuu,
     this.Col_PM_TongTap,
     this.Col_PM_Ke,
     this.Col_PM_Ngan,
     this.Col_PM_Tang,
     this.Col_PM_PopUp,
     this.Col_PM_TTDinhKem,
     this.Col_PM_NgayNhapKho,
     this.Col_PM_DVDNgayDuyet,
     this.Col_PM_DVDNgayHoanTat,
     this.Col_PM_TTHD,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_Category,
     this.Col_PM_TienDo});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 1;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     this.gridViewMaster.OptionsView.ShowViewCaption = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_Category, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewMaster.ViewCaption = "Post/Master (Cấp 2)";
     //
     // Col_PM_Category
     //
     this.Col_PM_Category.Caption = "Category";
     this.Col_PM_Category.Name = "Col_PM_Category";
     this.Col_PM_Category.Visible = true;
     //
     // Col_PM_MaChuongTrinh
     //
     this.Col_PM_MaChuongTrinh.Caption = "Mã chương trình";
     this.Col_PM_MaChuongTrinh.Name = "Col_PM_MaChuongTrinh";
     this.Col_PM_MaChuongTrinh.Visible = true;
     this.Col_PM_MaChuongTrinh.Width = 90;
     //
     // Col_PM_TenChuongTrinh
     //
     this.Col_PM_TenChuongTrinh.Caption = "Tên chương trình";
     this.Col_PM_TenChuongTrinh.Name = "Col_PM_TenChuongTrinh";
     this.Col_PM_TenChuongTrinh.Visible = true;
     this.Col_PM_TenChuongTrinh.Width = 94;
     //
     // Col_PM_TietMuc
     //
     this.Col_PM_TietMuc.Caption = " Tiết mục";
     this.Col_PM_TietMuc.Name = "Col_PM_TietMuc";
     this.Col_PM_TietMuc.Visible = true;
     this.Col_PM_TietMuc.Width = 55;
     //
     // Col_PM_PostMaster
     //
     this.Col_PM_PostMaster.Caption = "Post/Master";
     this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
     this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
     this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
     this.Col_PM_PostMaster.Visible = true;
     this.Col_PM_PostMaster.Width = 70;
     //
     // Col_PM_TongTap
     //
     this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
     this.Col_PM_TongTap.Name = "Col_PM_TongTap";
     this.Col_PM_TongTap.Visible = true;
     this.Col_PM_TongTap.Width = 82;
     //
     // Col_PM_LoaiLuu
     //
     this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
     this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
     this.Col_PM_LoaiLuu.Visible = true;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // Col_PM_PopUp
     //
     this.Col_PM_PopUp.Caption = "Pop Up";
     this.Col_PM_PopUp.Name = "Col_PM_PopUp";
     this.Col_PM_PopUp.Visible = true;
     this.Col_PM_PopUp.Width = 46;
     //
     // Col_PM_ThoiLuongChung
     //
     this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
     this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
     this.Col_PM_ThoiLuongChung.Visible = true;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // Col_PM_TTDinhKem
     //
     this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
     this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
     this.Col_PM_TTDinhKem.Visible = true;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // Col_PM_ThanhLy
     //
     this.Col_PM_ThanhLy.Caption = "Thanh lý";
     this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
     this.Col_PM_ThanhLy.Visible = true;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // Col_PM_NgayNhapKho
     //
     this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
     this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
     this.Col_PM_NgayNhapKho.Visible = true;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // Col_PM_Ke
     //
     this.Col_PM_Ke.Caption = "Kệ";
     this.Col_PM_Ke.Name = "Col_PM_Ke";
     this.Col_PM_Ke.Visible = true;
     this.Col_PM_Ke.Width = 24;
     //
     // Col_PM_Ngan
     //
     this.Col_PM_Ngan.Caption = "Ngăn";
     this.Col_PM_Ngan.Name = "Col_PM_Ngan";
     this.Col_PM_Ngan.Visible = true;
     this.Col_PM_Ngan.Width = 37;
     //
     // Col_PM_Tang
     //
     this.Col_PM_Tang.Caption = "Tầng";
     this.Col_PM_Tang.Name = "Col_PM_Tang";
     this.Col_PM_Tang.Visible = true;
     this.Col_PM_Tang.Width = 36;
     //
     // Col_PM_TTHD
     //
     this.Col_PM_TTHD.Caption = "Thông tin HD";
     this.Col_PM_TTHD.Name = "Col_PM_TTHD";
     this.Col_PM_TTHD.Visible = true;
     this.Col_PM_TTHD.Width = 74;
     //
     // Col_PM_DVDNgayDuyet
     //
     this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
     this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
     this.Col_PM_DVDNgayDuyet.Visible = true;
     this.Col_PM_DVDNgayDuyet.Width = 90;
     //
     // Col_PM_DVDNgayHoanTat
     //
     this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
     this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
     this.Col_PM_DVDNgayHoanTat.Visible = true;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
     this.xtraTabControlDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.xtraTabControlDetail.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(175, 410);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(173, 408);
     this.xtraTabPageDetail.Text = "Danh sách biên mục";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.MenuManager = this.barManager1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(173, 408);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_BM_ThanhLy,
     this.Col_BM_MaBang,
     this.Col_BM_TapSo,
     this.Col_BM_TenTap,
     this.Col_BM_SoBang,
     this.Col_BM_ThongSo,
     this.Col_BM_ThoiLuong,
     this.Col_BM_SoDKCBHD,
     this.Col_BM_NoiLuuTru});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.Editable = false;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsSelection.MultiSelect = true;
     this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     this.gridViewDetail.OptionsView.ShowViewCaption = true;
     this.gridViewDetail.ViewCaption = "Biên mục (Cấp 3)";
     //
     // Col_BM_ThanhLy
     //
     this.Col_BM_ThanhLy.Caption = "Thanh lý";
     this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
     this.Col_BM_ThanhLy.Visible = true;
     this.Col_BM_ThanhLy.VisibleIndex = 0;
     this.Col_BM_ThanhLy.Width = 53;
     //
     // Col_BM_MaBang
     //
     this.Col_BM_MaBang.Caption = "Mã băng";
     this.Col_BM_MaBang.Name = "Col_BM_MaBang";
     this.Col_BM_MaBang.Visible = true;
     this.Col_BM_MaBang.VisibleIndex = 1;
     this.Col_BM_MaBang.Width = 53;
     //
     // Col_BM_TapSo
     //
     this.Col_BM_TapSo.Caption = "Tập số";
     this.Col_BM_TapSo.Name = "Col_BM_TapSo";
     this.Col_BM_TapSo.Visible = true;
     this.Col_BM_TapSo.VisibleIndex = 2;
     this.Col_BM_TapSo.Width = 44;
     //
     // Col_BM_TenTap
     //
     this.Col_BM_TenTap.Caption = "Tên tập";
     this.Col_BM_TenTap.Name = "Col_BM_TenTap";
     this.Col_BM_TenTap.Visible = true;
     this.Col_BM_TenTap.VisibleIndex = 3;
     this.Col_BM_TenTap.Width = 49;
     //
     // Col_BM_SoBang
     //
     this.Col_BM_SoBang.Caption = "Số băng";
     this.Col_BM_SoBang.Name = "Col_BM_SoBang";
     this.Col_BM_SoBang.Visible = true;
     this.Col_BM_SoBang.VisibleIndex = 4;
     this.Col_BM_SoBang.Width = 51;
     //
     // Col_BM_ThongSo
     //
     this.Col_BM_ThongSo.Caption = "Thông số";
     this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
     this.Col_BM_ThongSo.Visible = true;
     this.Col_BM_ThongSo.VisibleIndex = 5;
     this.Col_BM_ThongSo.Width = 56;
     //
     // Col_BM_ThoiLuong
     //
     this.Col_BM_ThoiLuong.Caption = "Thời lượng";
     this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
     this.Col_BM_ThoiLuong.Visible = true;
     this.Col_BM_ThoiLuong.VisibleIndex = 6;
     this.Col_BM_ThoiLuong.Width = 62;
     //
     // Col_BM_SoDKCBHD
     //
     this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD";
     this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
     this.Col_BM_SoDKCBHD.Visible = true;
     this.Col_BM_SoDKCBHD.VisibleIndex = 7;
     this.Col_BM_SoDKCBHD.Width = 71;
     //
     // Col_BM_NoiLuuTru
     //
     this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
     this.Col_BM_NoiLuuTru.Visible = true;
     this.Col_BM_NoiLuuTru.VisibleIndex = 8;
     this.Col_BM_NoiLuuTru.Width = 63;
     //
     // Col_PM_TienDo
     //
     this.Col_PM_TienDo.Caption = "Tiến độ hậu kỳ";
     this.Col_PM_TienDo.Name = "Col_PM_TienDo";
     this.Col_PM_TienDo.Visible = true;
     //
     // gridBandChuongTrinh
     //
     this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_Category);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_MaChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TenChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TietMuc);
     this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
     this.gridBandChuongTrinh.Width = 314;
     //
     // gridBandPostMaster
     //
     this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandPostMaster.Caption = "Thông tin Post/Master";
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PostMaster);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TongTap);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TienDo);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiLuu);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PopUp);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThoiLuongChung);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTDinhKem);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThanhLy);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_NgayNhapKho);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ke);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ngan);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Tang);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTHD);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayDuyet);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayHoanTat);
     this.gridBandPostMaster.Name = "gridBandPostMaster";
     this.gridBandPostMaster.Width = 1007;
     //
     // frmPostMasterSearchQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanelSimple);
     this.Controls.Add(this.dockPanelAdvance);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmPostMasterSearchQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý Post/Master";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanelAdvance.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     this.dockPanelSimple.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
     this.groupControlPM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatNId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEndworkReson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colfiledate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMashHala = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashataddres = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatMobil = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWorkeEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colKideNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.LSMS;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY});
     this.gridControlData.Size = new System.Drawing.Size(734, 406);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLMashat);
     this.LSMS.KeyExpression = "MMashatId";
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatNId,
     this.colMMashatName,
     this.colsarfnumber,
     this.coldatein,
     this.colyasref,
     this.colRealName,
     this.colSubCommitte,
     this.colSyndicate,
     this.colEndworkReson,
     this.colfiledate,
     this.colMashHala,
     this.colMMashataddres,
     this.colMMashatMobil,
     this.colWorkeEndDate,
     this.colKideNumber,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colMMashatId,
     this.colvisa});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colMMashatNId
     //
     this.colMMashatNId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.Caption = "الرقم القومي";
     this.colMMashatNId.FieldName = "MMashatNId";
     this.colMMashatNId.Name = "colMMashatNId";
     this.colMMashatNId.Visible = true;
     this.colMMashatNId.VisibleIndex = 2;
     this.colMMashatNId.Width = 80;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاسم";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 1;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم الصرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 4;
     //
     // colyasref
     //
     this.colyasref.AppearanceCell.Options.UseTextOptions = true;
     this.colyasref.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.AppearanceHeader.Options.UseTextOptions = true;
     this.colyasref.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.Caption = "يصرف";
     this.colyasref.FieldName = "yasref";
     this.colyasref.Name = "colyasref";
     this.colyasref.Visible = true;
     this.colyasref.VisibleIndex = 5;
     this.colyasref.Width = 42;
     //
     // colRealName
     //
     this.colRealName.AppearanceCell.Options.UseTextOptions = true;
     this.colRealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colRealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.Caption = "مدخل البيان";
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 6;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "الجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 7;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 8;
     //
     // colEndworkReson
     //
     this.colEndworkReson.AppearanceCell.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.AppearanceHeader.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.Caption = "سبب نهاية العمل";
     this.colEndworkReson.FieldName = "EndworkReson";
     this.colEndworkReson.Name = "colEndworkReson";
     this.colEndworkReson.Visible = true;
     this.colEndworkReson.VisibleIndex = 9;
     this.colEndworkReson.Width = 98;
     //
     // colfiledate
     //
     this.colfiledate.AppearanceCell.Options.UseTextOptions = true;
     this.colfiledate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.AppearanceHeader.Options.UseTextOptions = true;
     this.colfiledate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.Caption = "تاريخ ورود الملف";
     this.colfiledate.FieldName = "filedate";
     this.colfiledate.Name = "colfiledate";
     this.colfiledate.Visible = true;
     this.colfiledate.VisibleIndex = 10;
     this.colfiledate.Width = 92;
     //
     // colMashHala
     //
     this.colMashHala.AppearanceCell.Options.UseTextOptions = true;
     this.colMashHala.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.AppearanceHeader.Options.UseTextOptions = true;
     this.colMashHala.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.Caption = "الحالة";
     this.colMashHala.FieldName = "MashHala";
     this.colMashHala.Name = "colMashHala";
     this.colMashHala.Visible = true;
     this.colMashHala.VisibleIndex = 11;
     //
     // colMMashataddres
     //
     this.colMMashataddres.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.Caption = "العنوان";
     this.colMMashataddres.FieldName = "MMashataddres";
     this.colMMashataddres.Name = "colMMashataddres";
     this.colMMashataddres.Visible = true;
     this.colMMashataddres.VisibleIndex = 12;
     //
     // colMMashatMobil
     //
     this.colMMashatMobil.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.Caption = "الموبيل";
     this.colMMashatMobil.FieldName = "MMashatMobil";
     this.colMMashatMobil.Name = "colMMashatMobil";
     this.colMMashatMobil.Visible = true;
     this.colMMashatMobil.VisibleIndex = 13;
     //
     // colWorkeEndDate
     //
     this.colWorkeEndDate.AppearanceCell.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.Caption = "تاريخ نهاية العمل";
     this.colWorkeEndDate.FieldName = "WorkeEndDate";
     this.colWorkeEndDate.Name = "colWorkeEndDate";
     this.colWorkeEndDate.Visible = true;
     this.colWorkeEndDate.VisibleIndex = 14;
     this.colWorkeEndDate.Width = 94;
     //
     // colKideNumber
     //
     this.colKideNumber.AppearanceCell.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.Caption = "رقم القيد";
     this.colKideNumber.FieldName = "KideNumber";
     this.colKideNumber.Name = "colKideNumber";
     this.colKideNumber.Visible = true;
     this.colKideNumber.VisibleIndex = 15;
     //
     // colSyndicateId
     //
     this.colSyndicateId.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.Caption = "كود الفرعية";
     this.colSyndicateId.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 17;
     //
     // colSubCommitteId
     //
     this.colSubCommitteId.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.Caption = "كود اللجنة";
     this.colSubCommitteId.FieldName = "SubCommitteId";
     this.colSubCommitteId.Name = "colSubCommitteId";
     this.colSubCommitteId.Visible = true;
     this.colSubCommitteId.VisibleIndex = 18;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 16;
     //
     // colvisa
     //
     this.colvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.Caption = "فيزا";
     this.colvisa.FieldName = "visa";
     this.colvisa.Name = "colvisa";
     this.colvisa.Visible = true;
     this.colvisa.VisibleIndex = 0;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Visible = false;
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // Qry04Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry04Frm";
     this.Text = " الاعضاء";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.QryTblAhteatyFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLst_Companies));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.viewAvailableCompanies = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnSelectIDCompanies = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.dgvAvailableCompanies = new DevExpress.XtraGrid.GridControl();
     this.repositoryItemCalcEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrinting = new DevExpress.XtraEditors.SimpleButton();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bt_Edit_BookingRooms_Services = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.bt_Delete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCompanies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectIDCompanies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCompanies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit1)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bt_Edit_BookingRooms_Services)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bt_Delete)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn8.AppearanceHeader.Options.UseFont = true;
     this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn8.Caption = "Địa chỉ";
     this.gridColumn8.FieldName = "Address";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.AllowFocus = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn10.AppearanceHeader.Options.UseFont = true;
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn10.Caption = "Email";
     this.gridColumn10.FieldName = "Email";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.AllowFocus = false;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     //
     // viewAvailableCompanies
     //
     this.viewAvailableCompanies.ColumnPanelRowHeight = 30;
     this.viewAvailableCompanies.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn13,
     this.gridColumn9,
     this.gridColumn17,
     this.gridColumn16,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn14});
     this.viewAvailableCompanies.GridControl = this.dgvAvailableCompanies;
     this.viewAvailableCompanies.Name = "viewAvailableCompanies";
     this.viewAvailableCompanies.OptionsFind.AlwaysVisible = true;
     this.viewAvailableCompanies.OptionsView.EnableAppearanceEvenRow = true;
     this.viewAvailableCompanies.OptionsView.ShowGroupPanel = false;
     this.viewAvailableCompanies.OptionsView.ShowIndicator = false;
     this.viewAvailableCompanies.RowHeight = 25;
     //
     // gridColumn15
     //
     this.gridColumn15.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridColumn15.AppearanceHeader.Options.UseFont = true;
     this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn15.Caption = "Xóa";
     this.gridColumn15.ColumnEdit = this.btnDelete;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 47;
     //
     // btnDelete
     //
     this.btnDelete.AutoHeight = false;
     this.btnDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnDelete.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnDelete_ButtonClick);
     //
     // gridColumn13
     //
     this.gridColumn13.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridColumn13.AppearanceHeader.Options.UseFont = true;
     this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn13.Caption = "Sửa";
     this.gridColumn13.ColumnEdit = this.btnEdit;
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 47;
     //
     // btnEdit
     //
     this.btnEdit.AutoHeight = false;
     this.btnEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnEdit.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnEdit.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnEdit_ButtonClick);
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceCell.TextOptions.Trimming = DevExpress.Utils.Trimming.Character;
     this.gridColumn9.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.gridColumn9.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn9.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn9.AppearanceHeader.Options.UseFont = true;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn9.Caption = "Tên công ty";
     this.gridColumn9.FieldName = "Name";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.AllowFocus = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 2;
     this.gridColumn9.Width = 141;
     //
     // gridColumn17
     //
     this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn17.AppearanceHeader.Options.UseFont = true;
     this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.Caption = "Mã số thuế";
     this.gridColumn17.FieldName = "TaxNumberCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     this.gridColumn17.OptionsColumn.AllowFocus = false;
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 3;
     this.gridColumn17.Width = 84;
     //
     // gridColumn16
     //
     this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn16.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn16.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn16.AppearanceHeader.Options.UseFont = true;
     this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn16.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn16.Caption = "Địa chỉ";
     this.gridColumn16.FieldName = "Address";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.OptionsColumn.AllowFocus = false;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     this.gridColumn16.Width = 112;
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn11.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn11.AppearanceHeader.Options.UseFont = true;
     this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn11.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn11.Caption = "Loại";
     this.gridColumn11.FieldName = "Type";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsColumn.AllowFocus = false;
     this.gridColumn11.OptionsColumn.ReadOnly = true;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 5;
     //
     // gridColumn12
     //
     this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn12.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn12.AppearanceHeader.Options.UseFont = true;
     this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn12.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn12.Caption = "Trạng thái";
     this.gridColumn12.FieldName = "Status";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.OptionsColumn.AllowFocus = false;
     this.gridColumn12.OptionsColumn.ReadOnly = true;
     this.gridColumn12.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 6;
     this.gridColumn12.Width = 80;
     //
     // gridColumn14
     //
     this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn14.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn14.AppearanceHeader.Options.UseFont = true;
     this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn14.Caption = "Chọn";
     this.gridColumn14.ColumnEdit = this.btnSelectIDCompanies;
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 7;
     this.gridColumn14.Width = 52;
     //
     // btnSelectIDCompanies
     //
     this.btnSelectIDCompanies.AutoHeight = false;
     this.btnSelectIDCompanies.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnSelectIDCompanies.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.btnSelectIDCompanies.Name = "btnSelectIDCompanies";
     this.btnSelectIDCompanies.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnSelectIDCompanies.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnSelectIDCompanies_ButtonClick);
     //
     // dgvAvailableCompanies
     //
     this.dgvAvailableCompanies.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvAvailableCompanies.Location = new System.Drawing.Point(3, 3);
     this.dgvAvailableCompanies.MainView = this.viewAvailableCompanies;
     this.dgvAvailableCompanies.Name = "dgvAvailableCompanies";
     this.dgvAvailableCompanies.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.btnSelectIDCompanies,
     this.btnDelete,
     this.btnEdit,
     this.repositoryItemCalcEdit1});
     this.dgvAvailableCompanies.Size = new System.Drawing.Size(618, 281);
     this.dgvAvailableCompanies.TabIndex = 11;
     this.dgvAvailableCompanies.UseEmbeddedNavigator = true;
     this.dgvAvailableCompanies.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.viewAvailableCompanies});
     //
     // repositoryItemCalcEdit1
     //
     this.repositoryItemCalcEdit1.AutoHeight = false;
     this.repositoryItemCalcEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEdit1.Name = "repositoryItemCalcEdit1";
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.Controls.Add(this.dgvAvailableCompanies, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 42);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(624, 287);
     this.tableLayoutPanel3.TabIndex = 14;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel5, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.04972F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 81.76796F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(630, 358);
     this.tableLayoutPanel1.TabIndex = 16;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.tableLayoutPanel5.ColumnCount = 4;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel5.Controls.Add(this.btnAdd, 3, 0);
     this.tableLayoutPanel5.Controls.Add(this.btnPrinting, 2, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(630, 39);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Appearance.Options.UseFont = true;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.Location = new System.Drawing.Point(474, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(116, 23);
     this.btnAdd.TabIndex = 3;
     this.btnAdd.Text = "Thêm mới";
     this.btnAdd.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // btnPrinting
     //
     this.btnPrinting.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPrinting.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnPrinting.Appearance.Options.UseFont = true;
     this.btnPrinting.Location = new System.Drawing.Point(327, 7);
     this.btnPrinting.Name = "btnPrinting";
     this.btnPrinting.Size = new System.Drawing.Size(131, 24);
     this.btnPrinting.TabIndex = 4;
     this.btnPrinting.Text = "In danh sách công ty";
     this.btnPrinting.Click += new System.EventHandler(this.btnPrinting_Click);
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn7.Caption = "Số điện thoại";
     this.gridColumn7.FieldName = "Tel";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 7;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn6.Caption = "Ngày sinh";
     this.gridColumn6.FieldName = "Birthday";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.AllowFocus = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 6;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn5.Caption = "Quốc tịch";
     this.gridColumn5.FieldName = "Nationality";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 5;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.Caption = "aa";
     this.gridColumn4.FieldName = "Identifier3";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowFocus = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn3.Caption = "Hộ chiếu";
     this.gridColumn3.FieldName = "Identifier2";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn2.Caption = "Số CMND";
     this.gridColumn2.FieldName = "Identifier1";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn1.Caption = "Tên khách hàng";
     this.gridColumn1.FieldName = "Names";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // bt_Edit_BookingRooms_Services
     //
     this.bt_Edit_BookingRooms_Services.AutoHeight = false;
     this.bt_Edit_BookingRooms_Services.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("bt_Edit_BookingRooms_Services.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.bt_Edit_BookingRooms_Services.Name = "bt_Edit_BookingRooms_Services";
     this.bt_Edit_BookingRooms_Services.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // bt_Delete
     //
     this.bt_Delete.AutoHeight = false;
     this.bt_Delete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("bt_Delete.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
     this.bt_Delete.Name = "bt_Delete";
     this.bt_Delete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // frmLst_Companies
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(630, 358);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Location = new System.Drawing.Point(600, 150);
     this.Name = "frmLst_Companies";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Danh sách công ty";
     this.Load += new System.EventHandler(this.frmLst_Companies_Load);
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCompanies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectIDCompanies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCompanies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit1)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bt_Edit_BookingRooms_Services)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bt_Delete)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLst_CustomerGroups_2));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerGroupName = new DevExpress.XtraEditors.TextEdit();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.lblCheckIn = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.lblCheckOut = new DevExpress.XtraEditors.LabelControl();
     this.btnAddNew = new DevExpress.XtraEditors.SimpleButton();
     this.dgvCustomerMember = new DevExpress.XtraGrid.GridControl();
     this.viewSelectCustomers = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnRemoveSelectCustomers = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.dgvAvailableCustomerGroups = new DevExpress.XtraGrid.GridControl();
     this.viewAvailableCustomerGroups = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colEdit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnSelectIDCustomerGroups = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.lueFilterCompany = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerGroupName.Properties)).BeginInit();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewSelectCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRemoveSelectCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCustomerGroups)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCustomerGroups)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectIDCustomerGroups)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueFilterCompany.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.26612F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 85.73388F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel4.Controls.Add(this.labelControl13, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.labelControl1, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.txtCustomerGroupName, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel2, 1, 1);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(443, 3);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(780, 62);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl13.Location = new System.Drawing.Point(3, 7);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl13.Size = new System.Drawing.Size(72, 16);
     this.labelControl13.TabIndex = 2;
     this.labelControl13.Text = "Tên nhóm";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(30, 38);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl1.Size = new System.Drawing.Size(33, 17);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "Từ ";
     //
     // txtCustomerGroupName
     //
     this.txtCustomerGroupName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCustomerGroupName.Location = new System.Drawing.Point(114, 5);
     this.txtCustomerGroupName.Name = "txtCustomerGroupName";
     this.txtCustomerGroupName.Size = new System.Drawing.Size(596, 20);
     this.txtCustomerGroupName.TabIndex = 7;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 3;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 32.31018F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20.19386F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 47.33441F));
     this.tableLayoutPanel2.Controls.Add(this.lblCheckIn, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.labelControl4, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.lblCheckOut, 0, 0);
     this.tableLayoutPanel2.Location = new System.Drawing.Point(114, 34);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(622, 25);
     this.tableLayoutPanel2.TabIndex = 8;
     //
     // lblCheckIn
     //
     this.lblCheckIn.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblCheckIn.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCheckIn.Location = new System.Drawing.Point(30, 4);
     this.lblCheckIn.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.lblCheckIn.Name = "lblCheckIn";
     this.lblCheckIn.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.lblCheckIn.Size = new System.Drawing.Size(28, 16);
     this.lblCheckIn.TabIndex = 9;
     this.lblCheckIn.Text = "---";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl4.Location = new System.Drawing.Point(231, 4);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl4.Size = new System.Drawing.Size(38, 17);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "Đến";
     //
     // lblCheckOut
     //
     this.lblCheckOut.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblCheckOut.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCheckOut.Location = new System.Drawing.Point(356, 4);
     this.lblCheckOut.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
     this.lblCheckOut.Name = "lblCheckOut";
     this.lblCheckOut.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.lblCheckOut.Size = new System.Drawing.Size(28, 16);
     this.lblCheckOut.TabIndex = 7;
     this.lblCheckOut.Text = "---";
     //
     // btnAddNew
     //
     this.btnAddNew.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnAddNew.Appearance.Options.UseFont = true;
     this.btnAddNew.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnAddNew.Image = ((System.Drawing.Image)(resources.GetObject("btnAddNew.Image")));
     this.btnAddNew.Location = new System.Drawing.Point(446, 459);
     this.btnAddNew.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.btnAddNew.Name = "btnAddNew";
     this.btnAddNew.Size = new System.Drawing.Size(122, 32);
     this.btnAddNew.TabIndex = 13;
     this.btnAddNew.Text = "In danh sách";
     this.btnAddNew.Click += new System.EventHandler(this.btnAddNew_Click);
     //
     // dgvCustomerMember
     //
     this.dgvCustomerMember.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvCustomerMember.Location = new System.Drawing.Point(443, 71);
     this.dgvCustomerMember.MainView = this.viewSelectCustomers;
     this.dgvCustomerMember.Name = "dgvCustomerMember";
     this.dgvCustomerMember.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.btnRemoveSelectCustomers});
     this.dgvCustomerMember.Size = new System.Drawing.Size(780, 378);
     this.dgvCustomerMember.TabIndex = 14;
     this.dgvCustomerMember.UseEmbeddedNavigator = true;
     this.dgvCustomerMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.viewSelectCustomers});
     //
     // viewSelectCustomers
     //
     this.viewSelectCustomers.ColumnPanelRowHeight = 45;
     this.viewSelectCustomers.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn10});
     this.viewSelectCustomers.GridControl = this.dgvCustomerMember;
     this.viewSelectCustomers.Name = "viewSelectCustomers";
     this.viewSelectCustomers.OptionsView.EnableAppearanceEvenRow = true;
     this.viewSelectCustomers.OptionsView.ShowFooter = true;
     this.viewSelectCustomers.OptionsView.ShowGroupPanel = false;
     this.viewSelectCustomers.OptionsView.ShowIndicator = false;
     this.viewSelectCustomers.RowHeight = 25;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn1.Caption = "Tên";
     this.gridColumn1.FieldName = "Customers_Name";
     this.gridColumn1.MinWidth = 15;
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 167;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn2.Caption = "Ngày sinh";
     this.gridColumn2.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "Customers_Birthday";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     this.gridColumn2.Width = 113;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn3.Caption = "CMT/PAS";
     this.gridColumn3.FieldName = "Customers_Identifier1";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 110;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn5.Caption = "CI";
     this.gridColumn5.DisplayFormat.FormatString = "d";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "BookingRooms_CheckInActual";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 77;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn6.Caption = "CO";
     this.gridColumn6.DisplayFormat.FormatString = "d";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "BookingRooms_CheckOutActual";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 85;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn7.Caption = "P";
     this.gridColumn7.FieldName = "Rooms_Sku";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 80;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn10.AppearanceHeader.Options.UseFont = true;
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn10.Caption = "ID BookingRoom";
     this.gridColumn10.CustomizationCaption = "BookingRooms_ID";
     this.gridColumn10.FieldName = "BookingRooms_ID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     this.gridColumn10.Width = 95;
     //
     // btnRemoveSelectCustomers
     //
     this.btnRemoveSelectCustomers.AutoHeight = false;
     this.btnRemoveSelectCustomers.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnRemoveSelectCustomers.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.btnRemoveSelectCustomers.Name = "btnRemoveSelectCustomers";
     this.btnRemoveSelectCustomers.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // dgvAvailableCustomerGroups
     //
     this.dgvAvailableCustomerGroups.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvAvailableCustomerGroups.Location = new System.Drawing.Point(3, 71);
     this.dgvAvailableCustomerGroups.MainView = this.viewAvailableCustomerGroups;
     this.dgvAvailableCustomerGroups.Name = "dgvAvailableCustomerGroups";
     this.dgvAvailableCustomerGroups.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.btnSelectIDCustomerGroups,
     this.btnDelete,
     this.btnEdit});
     this.dgvAvailableCustomerGroups.Size = new System.Drawing.Size(434, 378);
     this.dgvAvailableCustomerGroups.TabIndex = 3;
     this.dgvAvailableCustomerGroups.UseEmbeddedNavigator = true;
     this.dgvAvailableCustomerGroups.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.viewAvailableCustomerGroups});
     //
     // viewAvailableCustomerGroups
     //
     this.viewAvailableCustomerGroups.ColumnPanelRowHeight = 30;
     this.viewAvailableCustomerGroups.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDelete,
     this.colEdit,
     this.gridColumn4,
     this.gridColumn9});
     this.viewAvailableCustomerGroups.GridControl = this.dgvAvailableCustomerGroups;
     this.viewAvailableCustomerGroups.Name = "viewAvailableCustomerGroups";
     this.viewAvailableCustomerGroups.OptionsBehavior.AllowPixelScrolling = DevExpress.Utils.DefaultBoolean.True;
     this.viewAvailableCustomerGroups.OptionsFind.AlwaysVisible = true;
     this.viewAvailableCustomerGroups.OptionsView.EnableAppearanceEvenRow = true;
     this.viewAvailableCustomerGroups.OptionsView.ShowFooter = true;
     this.viewAvailableCustomerGroups.OptionsView.ShowGroupPanel = false;
     this.viewAvailableCustomerGroups.OptionsView.ShowIndicator = false;
     this.viewAvailableCustomerGroups.RowHeight = 25;
     this.viewAvailableCustomerGroups.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.viewAvailableCustomerGroups_RowCellClick);
     //
     // colDelete
     //
     this.colDelete.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.colDelete.AppearanceHeader.Options.UseFont = true;
     this.colDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.colDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDelete.ColumnEdit = this.btnDelete;
     this.colDelete.Name = "colDelete";
     this.colDelete.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colDelete.Visible = true;
     this.colDelete.VisibleIndex = 0;
     this.colDelete.Width = 33;
     //
     // btnDelete
     //
     this.btnDelete.AutoHeight = false;
     this.btnDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnDelete.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // colEdit
     //
     this.colEdit.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.colEdit.AppearanceHeader.Options.UseFont = true;
     this.colEdit.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdit.ColumnEdit = this.btnEdit;
     this.colEdit.Name = "colEdit";
     this.colEdit.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colEdit.Visible = true;
     this.colEdit.VisibleIndex = 1;
     this.colEdit.Width = 39;
     //
     // btnEdit
     //
     this.btnEdit.AutoHeight = false;
     this.btnEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnEdit.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.Caption = "ID";
     this.gridColumn4.FieldName = "ID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 41;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn9.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridColumn9.AppearanceHeader.Options.UseFont = true;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn9.Caption = "Tên";
     this.gridColumn9.FieldName = "Name";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.AllowFocus = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     this.gridColumn9.Width = 319;
     //
     // btnSelectIDCustomerGroups
     //
     this.btnSelectIDCustomerGroups.AutoHeight = false;
     this.btnSelectIDCustomerGroups.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("btnSelectIDCustomerGroups.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.btnSelectIDCustomerGroups.Name = "btnSelectIDCustomerGroups";
     this.btnSelectIDCustomerGroups.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 35.97063F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 64.02937F));
     this.tableLayoutPanel3.Controls.Add(this.btnAddNew, 1, 2);
     this.tableLayoutPanel3.Controls.Add(this.dgvAvailableCustomerGroups, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.dgvCustomerMember, 1, 1);
     this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel4, 1, 0);
     this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel1, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 3;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 15.04425F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 84.95575F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(1226, 498);
     this.tableLayoutPanel3.TabIndex = 3;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 26.80115F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 73.19884F));
     this.tableLayoutPanel1.Controls.Add(this.lueFilterCompany, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControl3, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 2);
     this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 27.61194F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(434, 64);
     this.tableLayoutPanel1.TabIndex = 15;
     //
     // lueFilterCompany
     //
     this.lueFilterCompany.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueFilterCompany.Location = new System.Drawing.Point(119, 22);
     this.lueFilterCompany.Name = "lueFilterCompany";
     this.lueFilterCompany.Properties.Appearance.Options.UseTextOptions = true;
     this.lueFilterCompany.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueFilterCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueFilterCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Name")});
     this.lueFilterCompany.Properties.NullText = "";
     this.lueFilterCompany.Size = new System.Drawing.Size(312, 20);
     this.lueFilterCompany.TabIndex = 6;
     this.lueFilterCompany.EditValueChanged += new System.EventHandler(this.lueFilterCompany_EditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(3, 24);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl3.Size = new System.Drawing.Size(60, 16);
     this.labelControl3.TabIndex = 5;
     this.labelControl3.Text = "Công ty";
     //
     // frmLst_CustomerGroups_2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1226, 498);
     this.Controls.Add(this.tableLayoutPanel3);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Location = new System.Drawing.Point(600, 150);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmLst_CustomerGroups_2";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Thêm mới nhóm khách hàng";
     this.Load += new System.EventHandler(this.frmIns_CustomerGroups_Load);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerGroupName.Properties)).EndInit();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCustomerMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewSelectCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRemoveSelectCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCustomerGroups)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewAvailableCustomerGroups)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSelectIDCustomerGroups)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueFilterCompany.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlItem = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.item_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_price_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_price_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_vat_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.item_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_type_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_vat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlAddittional = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.panelEnable = new DevExpress.XtraEditors.PanelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
     this.labelBasicinfoType = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoName = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoPriceMonthly = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoPriceDaily = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoDetail = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoVat = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemPriceMonthly = new DevExpress.XtraEditors.TextEdit();
     this.memoEditItemDetail = new DevExpress.XtraEditors.MemoEdit();
     this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.texthiddenAction = new DevExpress.XtraEditors.TextEdit();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.labelBasicinfoID = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemID = new DevExpress.XtraEditors.TextEdit();
     this.textEditCheckEvent = new DevExpress.XtraEditors.TextEdit();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.textEditItemPriceDaily = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).BeginInit();
     this.groupControlList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAddittional)).BeginInit();
     this.groupControlAddittional.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelEnable)).BeginInit();
     this.panelEnable.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceMonthly.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditItemDetail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.texthiddenAction.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckEvent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceDaily.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(7, 7);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1079, 614);
     this.panelControl2.TabIndex = 20;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1079, 614);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 22;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlList
     //
     this.groupControlList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlList.AppearanceCaption.Options.UseFont = true;
     this.groupControlList.Controls.Add(this.gridControlItem);
     this.groupControlList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlList.Location = new System.Drawing.Point(0, 0);
     this.groupControlList.Name = "groupControlList";
     this.groupControlList.Size = new System.Drawing.Size(500, 614);
     this.groupControlList.TabIndex = 0;
     this.groupControlList.Text = "รายการค่าใช้จ่ายเพิ่มเติม";
     //
     // gridControlItem
     //
     this.gridControlItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlItem.Location = new System.Drawing.Point(2, 22);
     this.gridControlItem.MainView = this.gridView3;
     this.gridControlItem.Name = "gridControlItem";
     this.gridControlItem.Size = new System.Drawing.Size(496, 590);
     this.gridControlItem.TabIndex = 18;
     this.gridControlItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3,
     this.gridView2,
     this.gridView1});
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.item_id,
     this.grid_name,
     this.grid_price_monthly,
     this.grid_price_daily,
     this.grid_vat_text,
     this.item_type,
     this.grid_type_text,
     this.grid_vat});
     this.gridView3.GridControl = this.gridControlItem;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView3.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView3.OptionsBehavior.Editable = false;
     this.gridView3.OptionsBehavior.ReadOnly = true;
     this.gridView3.OptionsFind.AlwaysVisible = true;
     this.gridView3.OptionsFind.ShowCloseButton = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // item_id
     //
     this.item_id.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.item_id.AppearanceHeader.Options.UseFont = true;
     this.item_id.Caption = "รหัสค่าใช่จ่ายเพิ่มเติม";
     this.item_id.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.item_id.FieldName = "item_id";
     this.item_id.Name = "item_id";
     this.item_id.OptionsColumn.AllowEdit = false;
     this.item_id.OptionsColumn.AllowFocus = false;
     this.item_id.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.item_id.OptionsColumn.AllowMove = false;
     this.item_id.Width = 161;
     //
     // grid_name
     //
     this.grid_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_name.AppearanceHeader.Options.UseFont = true;
     this.grid_name.Caption = "ชื่อรายการค่าใช้จ่าย";
     this.grid_name.FieldName = "item_name";
     this.grid_name.Name = "grid_name";
     this.grid_name.OptionsColumn.AllowEdit = false;
     this.grid_name.OptionsColumn.AllowFocus = false;
     this.grid_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_name.OptionsColumn.AllowMove = false;
     this.grid_name.Visible = true;
     this.grid_name.VisibleIndex = 0;
     this.grid_name.Width = 114;
     //
     // grid_price_monthly
     //
     this.grid_price_monthly.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_price_monthly.AppearanceHeader.Options.UseFont = true;
     this.grid_price_monthly.Caption = "ราคารายเดือน";
     this.grid_price_monthly.DisplayFormat.FormatString = "{0:n2}";
     this.grid_price_monthly.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.grid_price_monthly.FieldName = "item_price_monthly";
     this.grid_price_monthly.Name = "grid_price_monthly";
     this.grid_price_monthly.OptionsColumn.AllowEdit = false;
     this.grid_price_monthly.OptionsColumn.AllowFocus = false;
     this.grid_price_monthly.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_price_monthly.OptionsColumn.AllowMove = false;
     this.grid_price_monthly.Visible = true;
     this.grid_price_monthly.VisibleIndex = 2;
     this.grid_price_monthly.Width = 107;
     //
     // grid_price_daily
     //
     this.grid_price_daily.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_price_daily.AppearanceHeader.Options.UseFont = true;
     this.grid_price_daily.Caption = "ราคารายวัน";
     this.grid_price_daily.DisplayFormat.FormatString = "{0:n2}";
     this.grid_price_daily.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.grid_price_daily.FieldName = "item_price_daily";
     this.grid_price_daily.Name = "grid_price_daily";
     this.grid_price_daily.OptionsColumn.AllowEdit = false;
     this.grid_price_daily.OptionsColumn.AllowFocus = false;
     this.grid_price_daily.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_price_daily.OptionsColumn.AllowMove = false;
     this.grid_price_daily.Visible = true;
     this.grid_price_daily.VisibleIndex = 3;
     this.grid_price_daily.Width = 97;
     //
     // grid_vat_text
     //
     this.grid_vat_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_vat_text.AppearanceHeader.Options.UseFont = true;
     this.grid_vat_text.Caption = "การคิดภาษี";
     this.grid_vat_text.FieldName = "item_vat_text";
     this.grid_vat_text.Name = "grid_vat_text";
     this.grid_vat_text.OptionsColumn.AllowEdit = false;
     this.grid_vat_text.OptionsColumn.AllowFocus = false;
     this.grid_vat_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_vat_text.OptionsColumn.AllowMove = false;
     this.grid_vat_text.Visible = true;
     this.grid_vat_text.VisibleIndex = 4;
     this.grid_vat_text.Width = 70;
     //
     // item_type
     //
     this.item_type.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.item_type.AppearanceHeader.Options.UseFont = true;
     this.item_type.Name = "item_type";
     //
     // grid_type_text
     //
     this.grid_type_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_type_text.AppearanceHeader.Options.UseFont = true;
     this.grid_type_text.Caption = "รูปแบบค่าใช้จ่าย";
     this.grid_type_text.FieldName = "item_type_text";
     this.grid_type_text.Name = "grid_type_text";
     this.grid_type_text.OptionsColumn.AllowEdit = false;
     this.grid_type_text.OptionsColumn.AllowFocus = false;
     this.grid_type_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_type_text.OptionsColumn.AllowMove = false;
     this.grid_type_text.Visible = true;
     this.grid_type_text.VisibleIndex = 1;
     this.grid_type_text.Width = 92;
     //
     // grid_vat
     //
     this.grid_vat.Caption = "gridColumn1";
     this.grid_vat.FieldName = "item_vat";
     this.grid_vat.Name = "grid_vat";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControlItem;
     this.gridView2.Name = "gridView2";
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlItem;
     this.gridView1.Name = "gridView1";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlAddittional);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(574, 548);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlAddittional
     //
     this.groupControlAddittional.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAddittional.AppearanceCaption.Options.UseFont = true;
     this.groupControlAddittional.Controls.Add(this.xtraScrollableControl1);
     this.groupControlAddittional.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAddittional.Location = new System.Drawing.Point(0, 0);
     this.groupControlAddittional.Name = "groupControlAddittional";
     this.groupControlAddittional.Size = new System.Drawing.Size(574, 548);
     this.groupControlAddittional.TabIndex = 3;
     this.groupControlAddittional.Text = "ข้อมูลค่าใช้จ่ายเพิ่มเติม";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.panelEnable);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(570, 524);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // panelEnable
     //
     this.panelEnable.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.panelEnable.Appearance.Options.UseBackColor = true;
     this.panelEnable.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelEnable.Controls.Add(this.textEditItemPriceDaily);
     this.panelEnable.Controls.Add(this.labelControlRequired);
     this.panelEnable.Controls.Add(this.labelControl4);
     this.panelEnable.Controls.Add(this.labelControl1);
     this.panelEnable.Controls.Add(this.labelControl12);
     this.panelEnable.Controls.Add(this.lookUpEditPayType);
     this.panelEnable.Controls.Add(this.lookUpEditVatType);
     this.panelEnable.Controls.Add(this.labelBasicinfoType);
     this.panelEnable.Controls.Add(this.labelBasicinfoName);
     this.panelEnable.Controls.Add(this.labelBasicinfoPriceMonthly);
     this.panelEnable.Controls.Add(this.labelBasicinfoPriceDaily);
     this.panelEnable.Controls.Add(this.labelBasicinfoDetail);
     this.panelEnable.Controls.Add(this.labelControlBaht2);
     this.panelEnable.Controls.Add(this.labelControlBaht);
     this.panelEnable.Controls.Add(this.labelBasicinfoVat);
     this.panelEnable.Controls.Add(this.textEditItemPriceMonthly);
     this.panelEnable.Controls.Add(this.memoEditItemDetail);
     this.panelEnable.Controls.Add(this.textEditItemName);
     this.panelEnable.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelEnable.Location = new System.Drawing.Point(0, 0);
     this.panelEnable.Name = "panelEnable";
     this.panelEnable.Size = new System.Drawing.Size(570, 243);
     this.panelEnable.TabIndex = 267;
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(9, 227);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 413;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl4.Location = new System.Drawing.Point(9, 121);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(6, 13);
     this.labelControl4.TabIndex = 317;
     this.labelControl4.Text = "*";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl1.Location = new System.Drawing.Point(9, 47);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(6, 13);
     this.labelControl1.TabIndex = 317;
     this.labelControl1.Text = "*";
     //
     // labelControl12
     //
     this.labelControl12.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl12.Location = new System.Drawing.Point(9, 17);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(6, 13);
     this.labelControl12.TabIndex = 317;
     this.labelControl12.Text = "*";
     //
     // lookUpEditPayType
     //
     this.lookUpEditPayType.Location = new System.Drawing.Point(174, 36);
     this.lookUpEditPayType.Name = "lookUpEditPayType";
     this.lookUpEditPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("paytype_label", " ")});
     this.lookUpEditPayType.Size = new System.Drawing.Size(241, 20);
     this.lookUpEditPayType.TabIndex = 2;
     //
     // lookUpEditVatType
     //
     this.lookUpEditVatType.Location = new System.Drawing.Point(174, 115);
     this.lookUpEditVatType.Name = "lookUpEditVatType";
     this.lookUpEditVatType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditVatType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vattype_label", " ")});
     this.lookUpEditVatType.Size = new System.Drawing.Size(241, 20);
     this.lookUpEditVatType.TabIndex = 5;
     //
     // labelBasicinfoType
     //
     this.labelBasicinfoType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoType.Location = new System.Drawing.Point(32, 41);
     this.labelBasicinfoType.Name = "labelBasicinfoType";
     this.labelBasicinfoType.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoType.TabIndex = 262;
     this.labelBasicinfoType.Text = "รูปแบบค่าใช้จ่าย :";
     //
     // labelBasicinfoName
     //
     this.labelBasicinfoName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoName.Location = new System.Drawing.Point(32, 13);
     this.labelBasicinfoName.Name = "labelBasicinfoName";
     this.labelBasicinfoName.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoName.TabIndex = 72;
     this.labelBasicinfoName.Text = "ชื่อรายการค่าใช้จ่าย :";
     //
     // labelBasicinfoPriceMonthly
     //
     this.labelBasicinfoPriceMonthly.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoPriceMonthly.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoPriceMonthly.Location = new System.Drawing.Point(32, 66);
     this.labelBasicinfoPriceMonthly.Name = "labelBasicinfoPriceMonthly";
     this.labelBasicinfoPriceMonthly.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoPriceMonthly.TabIndex = 73;
     this.labelBasicinfoPriceMonthly.Text = "ราคารายเดือน :";
     //
     // labelBasicinfoPriceDaily
     //
     this.labelBasicinfoPriceDaily.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoPriceDaily.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoPriceDaily.Location = new System.Drawing.Point(32, 92);
     this.labelBasicinfoPriceDaily.Name = "labelBasicinfoPriceDaily";
     this.labelBasicinfoPriceDaily.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoPriceDaily.TabIndex = 75;
     this.labelBasicinfoPriceDaily.Text = "ราคารายวัน :";
     //
     // labelBasicinfoDetail
     //
     this.labelBasicinfoDetail.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoDetail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoDetail.Location = new System.Drawing.Point(26, 142);
     this.labelBasicinfoDetail.Name = "labelBasicinfoDetail";
     this.labelBasicinfoDetail.Size = new System.Drawing.Size(128, 13);
     this.labelBasicinfoDetail.TabIndex = 251;
     this.labelBasicinfoDetail.Text = "รายละเอียดเพิ่มเติม :";
     //
     // labelControlBaht2
     //
     this.labelControlBaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht2.Location = new System.Drawing.Point(421, 91);
     this.labelControlBaht2.Name = "labelControlBaht2";
     this.labelControlBaht2.Size = new System.Drawing.Size(81, 13);
     this.labelControlBaht2.TabIndex = 76;
     this.labelControlBaht2.Text = "บาท";
     //
     // labelControlBaht
     //
     this.labelControlBaht.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht.Location = new System.Drawing.Point(421, 65);
     this.labelControlBaht.Name = "labelControlBaht";
     this.labelControlBaht.Size = new System.Drawing.Size(81, 13);
     this.labelControlBaht.TabIndex = 76;
     this.labelControlBaht.Text = "บาท";
     //
     // labelBasicinfoVat
     //
     this.labelBasicinfoVat.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoVat.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoVat.Location = new System.Drawing.Point(32, 118);
     this.labelBasicinfoVat.Name = "labelBasicinfoVat";
     this.labelBasicinfoVat.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoVat.TabIndex = 76;
     this.labelBasicinfoVat.Text = "การคิดภาษี :";
     //
     // textEditItemPriceMonthly
     //
     this.textEditItemPriceMonthly.EditValue = "1000000.00";
     this.textEditItemPriceMonthly.Location = new System.Drawing.Point(174, 62);
     this.textEditItemPriceMonthly.Name = "textEditItemPriceMonthly";
     this.textEditItemPriceMonthly.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditItemPriceMonthly.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditItemPriceMonthly.Properties.DisplayFormat.FormatString = "{n2}";
     this.textEditItemPriceMonthly.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceMonthly.Properties.EditFormat.FormatString = "{n2}";
     this.textEditItemPriceMonthly.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceMonthly.Properties.Mask.BeepOnError = true;
     this.textEditItemPriceMonthly.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditItemPriceMonthly.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemPriceMonthly.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemPriceMonthly.Properties.Mask.ShowPlaceHolders = false;
     this.textEditItemPriceMonthly.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemPriceMonthly.Properties.MaxLength = 7;
     this.textEditItemPriceMonthly.Size = new System.Drawing.Size(241, 20);
     this.textEditItemPriceMonthly.TabIndex = 3;
     //
     // memoEditItemDetail
     //
     this.memoEditItemDetail.Location = new System.Drawing.Point(174, 143);
     this.memoEditItemDetail.Name = "memoEditItemDetail";
     this.memoEditItemDetail.Properties.MaxLength = 500;
     this.memoEditItemDetail.Size = new System.Drawing.Size(241, 72);
     this.memoEditItemDetail.TabIndex = 6;
     //
     // textEditItemName
     //
     this.textEditItemName.Location = new System.Drawing.Point(174, 10);
     this.textEditItemName.Name = "textEditItemName";
     this.textEditItemName.Properties.Mask.BeepOnError = true;
     this.textEditItemName.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,50}";
     this.textEditItemName.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemName.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemName.Properties.MaxLength = 50;
     this.textEditItemName.Size = new System.Drawing.Size(241, 20);
     this.textEditItemName.TabIndex = 1;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.texthiddenAction);
     this.panelControl1.Controls.Add(this.bttDelete);
     this.panelControl1.Controls.Add(this.labelBasicinfoID);
     this.panelControl1.Controls.Add(this.textEditItemID);
     this.panelControl1.Controls.Add(this.textEditCheckEvent);
     this.panelControl1.Controls.Add(this.bttAdd);
     this.panelControl1.Controls.Add(this.bttEdit);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 548);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(574, 66);
     this.panelControl1.TabIndex = 13;
     //
     // texthiddenAction
     //
     this.texthiddenAction.Location = new System.Drawing.Point(11, 35);
     this.texthiddenAction.Name = "texthiddenAction";
     this.texthiddenAction.Size = new System.Drawing.Size(100, 20);
     this.texthiddenAction.TabIndex = 264;
     this.texthiddenAction.Visible = false;
     //
     // bttDelete
     //
     this.bttDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttDelete.Image = global::DXWindowsApplication2.Properties.Resources.delete;
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(347, 5);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 20;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // labelBasicinfoID
     //
     this.labelBasicinfoID.Location = new System.Drawing.Point(17, 6);
     this.labelBasicinfoID.Name = "labelBasicinfoID";
     this.labelBasicinfoID.Padding = new System.Windows.Forms.Padding(10);
     this.labelBasicinfoID.Size = new System.Drawing.Size(46, 33);
     this.labelBasicinfoID.TabIndex = 71;
     this.labelBasicinfoID.Text = "รหัส :";
     this.labelBasicinfoID.Visible = false;
     //
     // textEditItemID
     //
     this.textEditItemID.Location = new System.Drawing.Point(69, 13);
     this.textEditItemID.Name = "textEditItemID";
     this.textEditItemID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.textEditItemID.Properties.Appearance.Options.UseFont = true;
     this.textEditItemID.Properties.ReadOnly = true;
     this.textEditItemID.Size = new System.Drawing.Size(18, 20);
     this.textEditItemID.TabIndex = 248;
     this.textEditItemID.Visible = false;
     //
     // textEditCheckEvent
     //
     this.textEditCheckEvent.EditValue = "";
     this.textEditCheckEvent.Location = new System.Drawing.Point(93, 13);
     this.textEditCheckEvent.Name = "textEditCheckEvent";
     this.textEditCheckEvent.Properties.Mask.BeepOnError = true;
     this.textEditCheckEvent.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditCheckEvent.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditCheckEvent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditCheckEvent.Properties.MaxLength = 10;
     this.textEditCheckEvent.Size = new System.Drawing.Size(18, 20);
     this.textEditCheckEvent.TabIndex = 258;
     this.textEditCheckEvent.Visible = false;
     //
     // bttAdd
     //
     this.bttAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttAdd.Image = global::DXWindowsApplication2.Properties.Resources.Add;
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(195, 5);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 18;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(271, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(499, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.save;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(423, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // textEditItemPriceDaily
     //
     this.textEditItemPriceDaily.EditValue = "1000000.00";
     this.textEditItemPriceDaily.Location = new System.Drawing.Point(174, 88);
     this.textEditItemPriceDaily.Name = "textEditItemPriceDaily";
     this.textEditItemPriceDaily.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditItemPriceDaily.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditItemPriceDaily.Properties.DisplayFormat.FormatString = "{n2}";
     this.textEditItemPriceDaily.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceDaily.Properties.EditFormat.FormatString = "{n2}";
     this.textEditItemPriceDaily.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceDaily.Properties.Mask.BeepOnError = true;
     this.textEditItemPriceDaily.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditItemPriceDaily.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemPriceDaily.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemPriceDaily.Properties.Mask.ShowPlaceHolders = false;
     this.textEditItemPriceDaily.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemPriceDaily.Properties.MaxLength = 7;
     this.textEditItemPriceDaily.Size = new System.Drawing.Size(241, 20);
     this.textEditItemPriceDaily.TabIndex = 414;
     //
     // BasicInfoAdditionItem
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.panelControl2);
     this.Name = "BasicInfoAdditionItem";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1093, 628);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).EndInit();
     this.groupControlList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAddittional)).EndInit();
     this.groupControlAddittional.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelEnable)).EndInit();
     this.panelEnable.ResumeLayout(false);
     this.panelEnable.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceMonthly.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditItemDetail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.texthiddenAction.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckEvent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceDaily.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.dbHoliday = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     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.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnOut = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bar2 = new DevExpress.XtraBars.Bar();
     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();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbHoliday)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.panelControl3);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(803, 653);
     this.panelControl1.TabIndex = 0;
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.panelControl4);
     this.panelControl3.Controls.Add(this.panelControl2);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(803, 653);
     this.panelControl3.TabIndex = 1;
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.dbHoliday);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 66);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(803, 560);
     this.panelControl4.TabIndex = 2;
     //
     // dbHoliday
     //
     this.dbHoliday.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbHoliday.Location = new System.Drawing.Point(0, 0);
     this.dbHoliday.MainView = this.gridView1;
     this.dbHoliday.Name = "dbHoliday";
     this.dbHoliday.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1,
     this.repositoryItemLookUpEdit2});
     this.dbHoliday.Size = new System.Drawing.Size(803, 560);
     this.dbHoliday.TabIndex = 2;
     this.dbHoliday.Tag = "@db=����������";
     this.dbHoliday.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.gridView2});
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridView1.GridControl = this.dbHoliday;
     this.gridView1.GroupPanelText = "��������";
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "����";
     this.gridColumn1.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumn1.FieldName = "����";
     this.gridColumn1.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.DisplayText;
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Object;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AccessibleRole = System.Windows.Forms.AccessibleRole.ScrollBar;
     this.repositoryItemLookUpEdit1.AllowFocused = false;
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "";
     this.repositoryItemLookUpEdit1.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Simple;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "��ʼ����";
     this.gridColumn2.FieldName = "��ʼ����";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "�ݼ�";
     this.gridColumn3.FieldName = "�ݼ�";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "ID";
     this.gridColumn4.FieldName = "ID";
     this.gridColumn4.Name = "gridColumn4";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "��������";
     this.gridColumn5.FieldName = "��������";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // 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";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.dbHoliday;
     this.gridView2.Name = "gridView2";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.groupControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(803, 66);
     this.panelControl2.TabIndex = 1;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btnOut);
     this.groupControl1.Controls.Add(this.btnSave);
     this.groupControl1.Controls.Add(this.btnDel);
     this.groupControl1.Controls.Add(this.btnAdd);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(803, 66);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "����������";
     //
     // btnOut
     //
     this.btnOut.Location = new System.Drawing.Point(515, 26);
     this.btnOut.Name = "btnOut";
     this.btnOut.Size = new System.Drawing.Size(81, 29);
     this.btnOut.TabIndex = 8;
     this.btnOut.Text = "�˳�";
     this.btnOut.Click += new System.EventHandler(this.btnOut_Click);
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(392, 26);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(81, 29);
     this.btnSave.TabIndex = 7;
     this.btnSave.Text = "����";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDel
     //
     this.btnDel.Location = new System.Drawing.Point(271, 26);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(81, 29);
     this.btnDel.TabIndex = 6;
     this.btnDel.Text = "ɾ��";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(159, 26);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(81, 29);
     this.btnAdd.TabIndex = 5;
     this.btnAdd.Text = "���";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.FloatLocation = new System.Drawing.Point(237, 270);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 0;
     //
     // FrmHolidaySet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(803, 653);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmHolidaySet";
     this.Text = "��������";
     this.Load += new System.EventHandler(this.FrmHolidaySet_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbHoliday)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.ResumeLayout(false);
 }
示例#49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmClass));
     this.grpMDClass = new DevExpress.XtraEditors.GroupControl();
     this.btnClass_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btnClass_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_ClassType = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_ClassType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMD_Class = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Class = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RPClassType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ClassType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ClassType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMD_Class)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Class)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDClass.Controls.Add(this.btnClass_Add);
     this.grpMDClass.Controls.Add(this.btnClass_Del);
     this.grpMDClass.Controls.Add(this.btn_Add);
     this.grpMDClass.Controls.Add(this.btn_Del);
     this.grpMDClass.Controls.Add(this.groupControl2);
     this.grpMDClass.Controls.Add(this.groupControl1);
     this.grpMDClass.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location = new System.Drawing.Point(8, 0);
     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(970, 560);
     this.grpMDClass.TabIndex = 33;
     this.grpMDClass.Text = "Class";
     //
     // btnClass_Add
     //
     this.btnClass_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClass_Add.Appearance.Options.UseFont = true;
     this.btnClass_Add.Appearance.Options.UseTextOptions = true;
     this.btnClass_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnClass_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnClass_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnClass_Add.ImageIndex = 0;
     this.btnClass_Add.ImageList = this.imageList1;
     this.btnClass_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnClass_Add.Location = new System.Drawing.Point(8, 272);
     this.btnClass_Add.Name = "btnClass_Add";
     this.btnClass_Add.Size = new System.Drawing.Size(38, 16);
     this.btnClass_Add.TabIndex = 134;
     this.btnClass_Add.Click += new System.EventHandler(this.btnClass_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;
     //
     // btnClass_Del
     //
     this.btnClass_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClass_Del.Appearance.Options.UseFont = true;
     this.btnClass_Del.Appearance.Options.UseTextOptions = true;
     this.btnClass_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnClass_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnClass_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnClass_Del.ImageIndex = 1;
     this.btnClass_Del.ImageList = this.imageList1;
     this.btnClass_Del.Location = new System.Drawing.Point(48, 272);
     this.btnClass_Del.Name = "btnClass_Del";
     this.btnClass_Del.Size = new System.Drawing.Size(38, 16);
     this.btnClass_Del.TabIndex = 133;
     this.btnClass_Del.Click += new System.EventHandler(this.btnClass_Del_Click);
     //
     // 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);
     //
     // 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);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControlMd_ClassType);
     this.groupControl2.Location = new System.Drawing.Point(0, 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(968, 216);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Class Type";
     //
     // gridControlMd_ClassType
     //
     this.gridControlMd_ClassType.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ClassType.EmbeddedNavigator
     //
     this.gridControlMd_ClassType.EmbeddedNavigator.Name = "";
     this.gridControlMd_ClassType.Location = new System.Drawing.Point(2, 20);
     this.gridControlMd_ClassType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ClassType.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ClassType.MainView = this.gridViewMd_ClassType;
     this.gridControlMd_ClassType.Name = "gridControlMd_ClassType";
     this.gridControlMd_ClassType.Size = new System.Drawing.Size(964, 194);
     this.gridControlMd_ClassType.TabIndex = 126;
     this.gridControlMd_ClassType.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gridViewMd_ClassType});
     //
     // gridViewMd_ClassType
     //
     this.gridViewMd_ClassType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumn3,
                                                                                                 this.gridColumn4});
     this.gridViewMd_ClassType.GridControl = this.gridControlMd_ClassType;
     this.gridViewMd_ClassType.Name = "gridViewMd_ClassType";
     this.gridViewMd_ClassType.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ClassType.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_ClassType.OptionsCustomization.AllowSort = false;
     this.gridViewMd_ClassType.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_ClassType.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_ClassType_FocusedRowChanged);
     this.gridViewMd_ClassType.LostFocus += new System.EventHandler(this.gridViewMd_ClassType_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Class Type Id";
     this.gridColumn3.FieldName = "nClassTypeID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Description";
     this.gridColumn4.FieldName = "strDescription";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControlMD_Class);
     this.groupControl1.Location = new System.Drawing.Point(0, 296);
     this.groupControl1.LookAndFeel.SkinName = "The Asphalt World";
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(968, 256);
     this.groupControl1.TabIndex = 127;
     this.groupControl1.Text = "Class";
     //
     // gridControlMD_Class
     //
     this.gridControlMD_Class.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMD_Class.EmbeddedNavigator
     //
     this.gridControlMD_Class.EmbeddedNavigator.Name = "";
     this.gridControlMD_Class.Location = new System.Drawing.Point(2, 20);
     this.gridControlMD_Class.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMD_Class.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMD_Class.MainView = this.gridViewMd_Class;
     this.gridControlMD_Class.Name = "gridControlMD_Class";
     this.gridControlMD_Class.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                  this.lk_RPClassType});
     this.gridControlMD_Class.Size = new System.Drawing.Size(964, 250);
     this.gridControlMD_Class.TabIndex = 127;
     this.gridControlMD_Class.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                        this.gridViewMd_Class});
     //
     // gridViewMd_Class
     //
     this.gridViewMd_Class.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gridColumn1,
                                                                                             this.gridColumn2});
     this.gridViewMd_Class.GridControl = this.gridControlMD_Class;
     this.gridViewMd_Class.Name = "gridViewMd_Class";
     this.gridViewMd_Class.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Class.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Class.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Class.LostFocus += new System.EventHandler(this.gridViewMd_Class_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Class Code";
     this.gridColumn1.FieldName = "strClassCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // lk_RPClassType
     //
     this.lk_RPClassType.AutoHeight = false;
     this.lk_RPClassType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RPClassType.Name = "lk_RPClassType";
     //
     // frmClass
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(990, 560);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmClass";
     this.Text = "frmClass";
     this.Load += new System.EventHandler(this.frmClass_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ClassType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ClassType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMD_Class)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Class)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).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(frmXuatNhapTon));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = 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.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtKhoHang = new DevExpress.XtraEditors.GridLookUpEdit();
     this.kHOHANGBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsKho = new Do_An_Quan_Ly_Kho.Kho.DS.dsKho();
     this.txtKhoHang_View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDien_Thoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDi_Dong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThu_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.xuatNhapTonTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsXuatNhapTon = new Do_An_Quan_Ly_Kho.XuatNhapTon.DataSet.dsXuatNhapTon();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Hang_Hoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDon_Vi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Kho_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSo_Luong_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Nhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.kHO_HANGTableAdapter = new Do_An_Quan_Ly_Kho.Kho.DS.dsKhoTableAdapters.KHO_HANGTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "document-excel-icon.png");
     this.img.Images.SetKeyName(55, "Excel-icon (1).png");
     this.img.Images.SetKeyName(56, "Excel-icon (2).png");
     this.img.Images.SetKeyName(57, "Excel-icon.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiSua, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiXoa, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiXuatExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXoa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 55;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     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, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtKhoHang);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtKhoHang
     //
     this.txtKhoHang.EditValue = "";
     this.txtKhoHang.Location = new System.Drawing.Point(55, 2);
     this.txtKhoHang.MenuManager = this.bm;
     this.txtKhoHang.Name = "txtKhoHang";
     this.txtKhoHang.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.txtKhoHang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtKhoHang.Properties.DataSource = this.kHOHANGBindingSource;
     this.txtKhoHang.Properties.DisplayMember = "Ten_Kho";
     this.txtKhoHang.Properties.NullText = "";
     this.txtKhoHang.Properties.NullValuePrompt = "(Kho Hàng)";
     this.txtKhoHang.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtKhoHang.Properties.ValueMember = "Ma_Kho";
     this.txtKhoHang.Properties.View = this.txtKhoHang_View;
     this.txtKhoHang.Size = new System.Drawing.Size(121, 20);
     this.txtKhoHang.StyleController = this.layoutControl1;
     this.txtKhoHang.TabIndex = 9;
     this.txtKhoHang.EditValueChanged += new System.EventHandler(this.txtKhoHang_EditValueChanged);
     //
     // kHOHANGBindingSource
     //
     this.kHOHANGBindingSource.DataMember = "KHO_HANG";
     this.kHOHANGBindingSource.DataSource = this.dsKho;
     //
     // dsKho
     //
     this.dsKho.DataSetName = "dsKho";
     this.dsKho.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtKhoHang_View
     //
     this.txtKhoHang_View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Kho,
     this.colTen_Kho1,
     this.colDia_Chi,
     this.colEmail,
     this.colDien_Thoai,
     this.colFax,
     this.colDi_Dong,
     this.colThu_Kho,
     this.colGhi_Chu});
     this.txtKhoHang_View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.txtKhoHang_View.Name = "txtKhoHang_View";
     this.txtKhoHang_View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.txtKhoHang_View.OptionsView.ShowAutoFilterRow = true;
     this.txtKhoHang_View.OptionsView.ShowGroupPanel = false;
     //
     // colMa_Kho
     //
     this.colMa_Kho.Caption = "Mã Kho";
     this.colMa_Kho.FieldName = "Ma_Kho";
     this.colMa_Kho.Name = "colMa_Kho";
     this.colMa_Kho.OptionsColumn.ReadOnly = true;
     this.colMa_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Kho.Visible = true;
     this.colMa_Kho.VisibleIndex = 0;
     //
     // colTen_Kho1
     //
     this.colTen_Kho1.Caption = "Tên Kho";
     this.colTen_Kho1.FieldName = "Ten_Kho";
     this.colTen_Kho1.Name = "colTen_Kho1";
     this.colTen_Kho1.OptionsColumn.ReadOnly = true;
     this.colTen_Kho1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho1.Visible = true;
     this.colTen_Kho1.VisibleIndex = 1;
     //
     // colDia_Chi
     //
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     this.colDia_Chi.VisibleIndex = 2;
     //
     // colEmail
     //
     this.colEmail.Caption = "Email";
     this.colEmail.FieldName = "Email";
     this.colEmail.Name = "colEmail";
     this.colEmail.OptionsColumn.ReadOnly = true;
     this.colEmail.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colEmail.Visible = true;
     this.colEmail.VisibleIndex = 3;
     //
     // colDien_Thoai
     //
     this.colDien_Thoai.Caption = "Điện Thoại";
     this.colDien_Thoai.FieldName = "Dien_Thoai";
     this.colDien_Thoai.Name = "colDien_Thoai";
     this.colDien_Thoai.OptionsColumn.ReadOnly = true;
     this.colDien_Thoai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDien_Thoai.Visible = true;
     this.colDien_Thoai.VisibleIndex = 4;
     //
     // colFax
     //
     this.colFax.Caption = "Fax";
     this.colFax.FieldName = "Fax";
     this.colFax.Name = "colFax";
     this.colFax.OptionsColumn.ReadOnly = true;
     this.colFax.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colFax.Visible = true;
     this.colFax.VisibleIndex = 5;
     //
     // colDi_Dong
     //
     this.colDi_Dong.Caption = "Di Động";
     this.colDi_Dong.FieldName = "Di_Dong";
     this.colDi_Dong.Name = "colDi_Dong";
     this.colDi_Dong.OptionsColumn.ReadOnly = true;
     this.colDi_Dong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDi_Dong.Visible = true;
     this.colDi_Dong.VisibleIndex = 6;
     //
     // colThu_Kho
     //
     this.colThu_Kho.Caption = "Thủ Kho";
     this.colThu_Kho.FieldName = "Thu_Kho";
     this.colThu_Kho.Name = "colThu_Kho";
     this.colThu_Kho.OptionsColumn.ReadOnly = true;
     this.colThu_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThu_Kho.Visible = true;
     this.colThu_Kho.VisibleIndex = 7;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     this.colGhi_Chu.VisibleIndex = 8;
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(613, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(487, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(487, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(523, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(86, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(383, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(83, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(235, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.xuatNhapTonTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh});
     this.gcList.Size = new System.Drawing.Size(1098, 364);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // xuatNhapTonTheoNgayBindingSource
     //
     this.xuatNhapTonTheoNgayBindingSource.DataMember = "Xuat_Nhap_Ton_Theo_Ngay";
     this.xuatNhapTonTheoNgayBindingSource.DataSource = this.dsXuatNhapTon;
     //
     // dsXuatNhapTon
     //
     this.dsXuatNhapTon.DataSetName = "dsXuatNhapTon";
     this.dsXuatNhapTon.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Hang_Hoa,
     this.colTen_Hang,
     this.colDon_Vi,
     this.colMa_Kho_Hang,
     this.colTen_Kho,
     this.colSo_Luong_Dau_Ky,
     this.colSo_Luong_Nhap_Trong_Ky,
     this.colSo_Luong_Xuat_Trong_Ky,
     this.colSo_Luong_Cuoi_Ky,
     this.colThanh_Tien_Dau_Ky,
     this.colThanh_Tien_Nhap_Trong_Ky,
     this.colThanh_Tien_Xuat_Trong_Ky,
     this.colThanh_Tien_Cuoi_Ky,
     this.colNhom_Hang,
     this.colTen_Nhom_Hang});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupCount = 1;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", this.colSo_Luong_Dau_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", this.colSo_Luong_Nhap_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", this.colSo_Luong_Xuat_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", this.colSo_Luong_Cuoi_Ky, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ColumnHeaderAutoHeight = DevExpress.Utils.DefaultBoolean.True;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTen_Nhom_Hang, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colMa_Hang_Hoa
     //
     this.colMa_Hang_Hoa.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hang_Hoa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hang_Hoa.Caption = "Mã Hàng Hóa";
     this.colMa_Hang_Hoa.FieldName = "Ma_Hang_Hoa";
     this.colMa_Hang_Hoa.Name = "colMa_Hang_Hoa";
     this.colMa_Hang_Hoa.OptionsColumn.ReadOnly = true;
     this.colMa_Hang_Hoa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hang_Hoa.Visible = true;
     this.colMa_Hang_Hoa.VisibleIndex = 0;
     this.colMa_Hang_Hoa.Width = 89;
     //
     // colTen_Hang
     //
     this.colTen_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Hang.Caption = "Tên Hàng";
     this.colTen_Hang.FieldName = "Ten_Hang";
     this.colTen_Hang.Name = "colTen_Hang";
     this.colTen_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Hang.Visible = true;
     this.colTen_Hang.VisibleIndex = 1;
     //
     // colDon_Vi
     //
     this.colDon_Vi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDon_Vi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDon_Vi.Caption = "Đơn Vị";
     this.colDon_Vi.FieldName = "Don_Vi";
     this.colDon_Vi.Name = "colDon_Vi";
     this.colDon_Vi.OptionsColumn.ReadOnly = true;
     this.colDon_Vi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDon_Vi.Visible = true;
     this.colDon_Vi.VisibleIndex = 2;
     //
     // colMa_Kho_Hang
     //
     this.colMa_Kho_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Kho_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Kho_Hang.FieldName = "Ma_Kho_Hang";
     this.colMa_Kho_Hang.Name = "colMa_Kho_Hang";
     this.colMa_Kho_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Kho_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Kho
     //
     this.colTen_Kho.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Kho.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Kho.Caption = "Kho Hàng";
     this.colTen_Kho.FieldName = "Ten_Kho";
     this.colTen_Kho.Name = "colTen_Kho";
     this.colTen_Kho.OptionsColumn.ReadOnly = true;
     this.colTen_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho.Visible = true;
     this.colTen_Kho.VisibleIndex = 3;
     //
     // colSo_Luong_Dau_Ky
     //
     this.colSo_Luong_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Dau_Ky.Caption = "Đầu Kỳ / Số Lượng";
     this.colSo_Luong_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Dau_Ky.FieldName = "So_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.Name = "colSo_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Dau_Ky.Visible = true;
     this.colSo_Luong_Dau_Ky.VisibleIndex = 4;
     this.colSo_Luong_Dau_Ky.Width = 109;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colSo_Luong_Nhap_Trong_Ky
     //
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Nhap_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Nhập";
     this.colSo_Luong_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Nhap_Trong_Ky.FieldName = "So_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.Name = "colSo_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Nhap_Trong_Ky.Visible = true;
     this.colSo_Luong_Nhap_Trong_Ky.VisibleIndex = 5;
     this.colSo_Luong_Nhap_Trong_Ky.Width = 149;
     //
     // colSo_Luong_Xuat_Trong_Ky
     //
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Xuat_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Xuât";
     this.colSo_Luong_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Xuat_Trong_Ky.FieldName = "So_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.Name = "colSo_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Xuat_Trong_Ky.Visible = true;
     this.colSo_Luong_Xuat_Trong_Ky.VisibleIndex = 6;
     this.colSo_Luong_Xuat_Trong_Ky.Width = 146;
     //
     // colSo_Luong_Cuoi_Ky
     //
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Cuoi_Ky.Caption = "Cuối Kỳ / Số Lượng";
     this.colSo_Luong_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Cuoi_Ky.FieldName = "So_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.Name = "colSo_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Cuoi_Ky.Visible = true;
     this.colSo_Luong_Cuoi_Ky.VisibleIndex = 7;
     this.colSo_Luong_Cuoi_Ky.Width = 111;
     //
     // colThanh_Tien_Dau_Ky
     //
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Dau_Ky.FieldName = "Thanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.Name = "colThanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Dau_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Nhap_Trong_Ky
     //
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Nhap_Trong_Ky.FieldName = "Thanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.Name = "colThanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Nhap_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Xuat_Trong_Ky
     //
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Xuat_Trong_Ky.FieldName = "Thanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.Name = "colThanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Xuat_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Cuoi_Ky
     //
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Cuoi_Ky.FieldName = "Thanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.Name = "colThanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Cuoi_Ky", "{0:##,##0.###}")});
     //
     // colNhom_Hang
     //
     this.colNhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colNhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNhom_Hang.FieldName = "Nhom_Hang";
     this.colNhom_Hang.Name = "colNhom_Hang";
     this.colNhom_Hang.OptionsColumn.ReadOnly = true;
     this.colNhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Nhom_Hang
     //
     this.colTen_Nhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Nhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Nhom_Hang.Caption = "Nhóm Hàng";
     this.colTen_Nhom_Hang.FieldName = "Ten_Nhom_Hang";
     this.colTen_Nhom_Hang.Name = "colTen_Nhom_Hang";
     this.colTen_Nhom_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Nhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Nhom_Hang.Visible = true;
     this.colTen_Nhom_Hang.VisibleIndex = 4;
     this.colTen_Nhom_Hang.Width = 101;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 368);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(178, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(328, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(140, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(143, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(611, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(491, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.txtKhoHang;
     this.layoutControlItem6.CustomizationFormText = "Kho Hàng:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(178, 24);
     this.layoutControlItem6.Text = "Kho Hàng:";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(50, 13);
     //
     // kHO_HANGTableAdapter
     //
     this.kHO_HANGTableAdapter.ClearBeforeFill = true;
     //
     // frmXuatNhapTon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmXuatNhapTon";
     this.Text = "Xuất Nhập Tồn";
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repositoryItemLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry46BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vQry46TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry46TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vQry46BindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.vQry46BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEdituserin});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate,
     this.colNum});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 1;
     //
     // colNum
     //
     this.colNum.AppearanceCell.Options.UseTextOptions = true;
     this.colNum.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.AppearanceHeader.Options.UseTextOptions = true;
     this.colNum.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.Caption = "العدد";
     this.colNum.FieldName = "Num";
     this.colNum.Name = "colNum";
     this.colNum.OptionsColumn.ReadOnly = true;
     this.colNum.Visible = true;
     this.colNum.VisibleIndex = 3;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // 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";
     //
     // repositoryItemLookUpEdituserin
     //
     this.repositoryItemLookUpEdituserin.AutoHeight = false;
     this.repositoryItemLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemLookUpEdituserin.Name = "repositoryItemLookUpEdituserin";
     this.repositoryItemLookUpEdituserin.NullText = "";
     this.repositoryItemLookUpEdituserin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEdituserin.ValueMember = "UserID";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry46BindingSource
     //
     this.vQry46BindingSource.DataMember = "vQry46";
     this.vQry46BindingSource.DataSource = this.dsQueries;
     //
     // vQry46TableAdapter
     //
     this.vQry46TableAdapter.ClearBeforeFill = true;
     //
     // Qry46Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry46Frm";
     this.Text = "البيانات المصدرة للبنك - احصاء 2";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vQry46BindingSource)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tblWarasaAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditDofatSarfAId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfA = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPersonId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditamanatrem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colaccReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmostahek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsefa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluseracc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamantvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfcheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDofatSarfId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanattypeid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditamanattypeid = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMScd_amanattype = new DevExpress.Data.Linq.LinqServerModeSource();
     this.coldateReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn0 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemCheckEditCardType = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.tblWarasaAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TblWarasaAmanatTableAdapter();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tblWarasaAmanatBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemCalcEditn0,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditamanatrem,
     this.repositoryItemCheckEditCardType,
     this.repositoryItemGridLookUpEditPersonId,
     this.repositoryItemGridLookUpEditDofatSarfAId,
     this.repositoryItemLookUpEditDofatSarfId,
     this.repositoryItemLookUpEditamanattypeid});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tblWarasaAmanatBindingSource
     //
     this.tblWarasaAmanatBindingSource.DataMember = "TblWarasaAmanat";
     this.tblWarasaAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonId,
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colamanatmony,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colaccReview,
     this.colestktaa,
     this.colmostahek,
     this.colsefa,
     this.coluseracc,
     this.colamantvisa,
     this.colsarfcheek,
     this.colDofatSarfId,
     this.gridColumn1,
     this.gridColumn3,
     this.colDofatSarfAId1,
     this.colamanattypeid,
     this.coldateReview,
     this.gridColumn4});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colPersonId
     //
     this.colPersonId.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.Caption = "كود";
     this.colPersonId.FieldName = "PersonId";
     this.colPersonId.Name = "colPersonId";
     this.colPersonId.Visible = true;
     this.colPersonId.VisibleIndex = 1;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.ColumnEdit = this.repositoryItemGridLookUpEditDofatSarfAId;
     this.colDofatSarfAId.FieldName = "DofatSarfAId";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.ReadOnly = true;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 3;
     this.colDofatSarfAId.Width = 128;
     //
     // repositoryItemGridLookUpEditDofatSarfAId
     //
     this.repositoryItemGridLookUpEditDofatSarfAId.AutoHeight = false;
     this.repositoryItemGridLookUpEditDofatSarfAId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditDofatSarfAId.DataSource = this.cdDofaatAmanatBindingSource;
     this.repositoryItemGridLookUpEditDofatSarfAId.DisplayMember = "DofatSarfA";
     this.repositoryItemGridLookUpEditDofatSarfAId.Name = "repositoryItemGridLookUpEditDofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.ValueMember = "DofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.View = this.gridView3;
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfA});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarfA
     //
     this.colDofatSarfA.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.Caption = "الاسم";
     this.colDofatSarfA.FieldName = "DofatSarfA";
     this.colDofatSarfA.Name = "colDofatSarfA";
     this.colDofatSarfA.Visible = true;
     this.colDofatSarfA.VisibleIndex = 0;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "الاسم";
     this.colMMashatId.ColumnEdit = this.repositoryItemGridLookUpEditPersonId;
     this.colMMashatId.FieldName = "PersonId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.ReadOnly = true;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 4;
     this.colMMashatId.Width = 150;
     //
     // repositoryItemGridLookUpEditPersonId
     //
     this.repositoryItemGridLookUpEditPersonId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPersonId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPersonId.DataSource = this.LSMSTBLWarasa;
     this.repositoryItemGridLookUpEditPersonId.DisplayMember = "personName";
     this.repositoryItemGridLookUpEditPersonId.Name = "repositoryItemGridLookUpEditPersonId";
     this.repositoryItemGridLookUpEditPersonId.ValueMember = "PersonId";
     this.repositoryItemGridLookUpEditPersonId.View = this.gridView1;
     //
     // LSMSTBLWarasa
     //
     this.LSMSTBLWarasa.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLWarasa_TBLMashat);
     this.LSMSTBLWarasa.KeyExpression = "PersonId";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatName,
     this.colPersonId1,
     this.colpersonName,
     this.colsarfnumber,
     this.colSyndicate1,
     this.colSubCommitte});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاب";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 0;
     //
     // colPersonId1
     //
     this.colPersonId1.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.Caption = "كود";
     this.colPersonId1.FieldName = "PersonId";
     this.colPersonId1.Name = "colPersonId1";
     this.colPersonId1.Visible = true;
     this.colPersonId1.VisibleIndex = 1;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 2;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // colSyndicate1
     //
     this.colSyndicate1.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.Caption = "فرعية";
     this.colSyndicate1.FieldName = "Syndicate";
     this.colSyndicate1.Name = "colSyndicate1";
     this.colSyndicate1.Visible = true;
     this.colSyndicate1.VisibleIndex = 4;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "لجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 5;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.ColumnEdit = this.repositoryItemMemoExEditamanatrem;
     this.colamanatrem.FieldName = "amanatrem";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.OptionsColumn.ReadOnly = true;
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 5;
     //
     // repositoryItemMemoExEditamanatrem
     //
     this.repositoryItemMemoExEditamanatrem.AutoHeight = false;
     this.repositoryItemMemoExEditamanatrem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditamanatrem.Name = "repositoryItemMemoExEditamanatrem";
     //
     // colamanatmony
     //
     this.colamanatmony.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.Caption = "المبلغ";
     this.colamanatmony.FieldName = "amanatmony";
     this.colamanatmony.Name = "colamanatmony";
     this.colamanatmony.OptionsColumn.ReadOnly = true;
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 6;
     this.colamanatmony.Width = 81;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.OptionsColumn.ReadOnly = true;
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 11;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.OptionsColumn.ReadOnly = true;
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 12;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 21;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 22;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colaccReview
     //
     this.colaccReview.AppearanceCell.Options.UseTextOptions = true;
     this.colaccReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.AppearanceHeader.Options.UseTextOptions = true;
     this.colaccReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.Caption = "مراجعة (حسابات)";
     this.colaccReview.FieldName = "accReview";
     this.colaccReview.Name = "colaccReview";
     this.colaccReview.OptionsColumn.ReadOnly = true;
     this.colaccReview.Visible = true;
     this.colaccReview.VisibleIndex = 7;
     this.colaccReview.Width = 100;
     //
     // colestktaa
     //
     this.colestktaa.AppearanceCell.Options.UseTextOptions = true;
     this.colestktaa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.AppearanceHeader.Options.UseTextOptions = true;
     this.colestktaa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.Caption = "استقطاع";
     this.colestktaa.FieldName = "estktaa";
     this.colestktaa.Name = "colestktaa";
     this.colestktaa.OptionsColumn.ReadOnly = true;
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 8;
     //
     // colmostahek
     //
     this.colmostahek.AppearanceCell.Options.UseTextOptions = true;
     this.colmostahek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostahek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.Caption = "مستحق";
     this.colmostahek.FieldName = "mostahek";
     this.colmostahek.Name = "colmostahek";
     this.colmostahek.OptionsColumn.ReadOnly = true;
     this.colmostahek.Visible = true;
     this.colmostahek.VisibleIndex = 9;
     //
     // colsefa
     //
     this.colsefa.AppearanceCell.Options.UseTextOptions = true;
     this.colsefa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.AppearanceHeader.Options.UseTextOptions = true;
     this.colsefa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.Caption = "صفة";
     this.colsefa.FieldName = "sefa";
     this.colsefa.Name = "colsefa";
     this.colsefa.OptionsColumn.ReadOnly = true;
     this.colsefa.Visible = true;
     this.colsefa.VisibleIndex = 10;
     //
     // coluseracc
     //
     this.coluseracc.AppearanceCell.Options.UseTextOptions = true;
     this.coluseracc.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.AppearanceHeader.Options.UseTextOptions = true;
     this.coluseracc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.Caption = "مسئول الادخال (حسابات)";
     this.coluseracc.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluseracc.FieldName = "useracc";
     this.coluseracc.Name = "coluseracc";
     this.coluseracc.OptionsColumn.ReadOnly = true;
     this.coluseracc.Visible = true;
     this.coluseracc.VisibleIndex = 13;
     this.coluseracc.Width = 136;
     //
     // colamantvisa
     //
     this.colamantvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.Caption = "امانات فيزا";
     this.colamantvisa.FieldName = "amantvisa";
     this.colamantvisa.Name = "colamantvisa";
     this.colamantvisa.Visible = true;
     this.colamantvisa.VisibleIndex = 15;
     //
     // colsarfcheek
     //
     this.colsarfcheek.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.Caption = "تصرف بشيك";
     this.colsarfcheek.FieldName = "sarfcheek";
     this.colsarfcheek.Name = "colsarfcheek";
     this.colsarfcheek.Visible = true;
     this.colsarfcheek.VisibleIndex = 16;
     this.colsarfcheek.Width = 77;
     //
     // colDofatSarfId
     //
     this.colDofatSarfId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.Caption = "الدفعة المستحقه";
     this.colDofatSarfId.ColumnEdit = this.repositoryItemLookUpEditDofatSarfId;
     this.colDofatSarfId.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     this.colDofatSarfId.Visible = true;
     this.colDofatSarfId.VisibleIndex = 17;
     this.colDofatSarfId.Width = 99;
     //
     // repositoryItemLookUpEditDofatSarfId
     //
     this.repositoryItemLookUpEditDofatSarfId.AutoHeight = false;
     this.repositoryItemLookUpEditDofatSarfId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDofatSarfId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditDofatSarfId.DataSource = this.LSMSDofatSarfId;
     this.repositoryItemLookUpEditDofatSarfId.DisplayMember = "DofatSarf";
     this.repositoryItemLookUpEditDofatSarfId.Name = "repositoryItemLookUpEditDofatSarfId";
     this.repositoryItemLookUpEditDofatSarfId.NullText = "";
     this.repositoryItemLookUpEditDofatSarfId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditDofatSarfId.ValueMember = "DofatSarfId";
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfId]";
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "رقم صرف";
     this.gridColumn1.FieldName = "sarfnumber";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 18;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "كود الاب";
     this.gridColumn3.FieldName = "MMashatId";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 19;
     //
     // colDofatSarfAId1
     //
     this.colDofatSarfAId1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.Caption = "كود الدفعة";
     this.colDofatSarfAId1.FieldName = "DofatSarfAId";
     this.colDofatSarfAId1.Name = "colDofatSarfAId1";
     this.colDofatSarfAId1.Visible = true;
     this.colDofatSarfAId1.VisibleIndex = 2;
     //
     // colamanattypeid
     //
     this.colamanattypeid.AppearanceCell.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.Caption = "نوع الامانات";
     this.colamanattypeid.ColumnEdit = this.repositoryItemLookUpEditamanattypeid;
     this.colamanattypeid.FieldName = "amanattypeid";
     this.colamanattypeid.Name = "colamanattypeid";
     this.colamanattypeid.Visible = true;
     this.colamanattypeid.VisibleIndex = 20;
     //
     // repositoryItemLookUpEditamanattypeid
     //
     this.repositoryItemLookUpEditamanattypeid.AutoHeight = false;
     this.repositoryItemLookUpEditamanattypeid.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditamanattypeid.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("amanattype", "الاسم", 68, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditamanattypeid.DataSource = this.LSMScd_amanattype;
     this.repositoryItemLookUpEditamanattypeid.DisplayMember = "amanattype";
     this.repositoryItemLookUpEditamanattypeid.Name = "repositoryItemLookUpEditamanattypeid";
     this.repositoryItemLookUpEditamanattypeid.NullText = "";
     this.repositoryItemLookUpEditamanattypeid.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditamanattypeid.ValueMember = "amanattypeid";
     //
     // LSMScd_amanattype
     //
     this.LSMScd_amanattype.ElementType = typeof(RetirementCenter.DataSources.Linq.cd_amanattype);
     this.LSMScd_amanattype.KeyExpression = "[amanattypeid]";
     //
     // coldateReview
     //
     this.coldateReview.AppearanceCell.Options.UseTextOptions = true;
     this.coldateReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.Caption = "تاريخ مراجعة حسابات";
     this.coldateReview.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldateReview.FieldName = "dateReview";
     this.coldateReview.Name = "coldateReview";
     this.coldateReview.Visible = true;
     this.coldateReview.VisibleIndex = 14;
     this.coldateReview.Width = 116;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعيه";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // repositoryItemCalcEditn0
     //
     this.repositoryItemCalcEditn0.AutoHeight = false;
     this.repositoryItemCalcEditn0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn0.DisplayFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.EditFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.Mask.EditMask = "n0";
     this.repositoryItemCalcEditn0.Name = "repositoryItemCalcEditn0";
     //
     // repositoryItemCheckEditCardType
     //
     this.repositoryItemCheckEditCardType.AutoHeight = false;
     this.repositoryItemCheckEditCardType.Name = "repositoryItemCheckEditCardType";
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // tblWarasaAmanatTableAdapter
     //
     this.tblWarasaAmanatTableAdapter.ClearBeforeFill = true;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "كود 60";
     this.gridColumn4.FieldName = "code60";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // TblWarasaAmanatFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TblWarasaAmanatFrm";
     this.Text = "امانات الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop = new DevExpress.XtraEditors.PanelControl();
     this.calcEdit1 = new DevExpress.XtraEditors.CalcEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.pnlCtrlCenter = new DevExpress.XtraEditors.PanelControl();
     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.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     this.pnlCtrlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Controls.Add(this.calcEdit1);
     this.pnlCtrlTop.Controls.Add(this.label1);
     this.pnlCtrlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name = "pnlCtrlTop";
     this.pnlCtrlTop.Size = new System.Drawing.Size(590, 36);
     this.pnlCtrlTop.TabIndex = 0;
     this.pnlCtrlTop.Text = "panelControl1";
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(234, 8);
     this.calcEdit1.Name = "calcEdit1";
     //
     // calcEdit1.Properties
     //
     this.calcEdit1.Properties.Mask.EditMask = "d2";
     this.calcEdit1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.calcEdit1.Properties.MaxLength = 3;
     this.calcEdit1.Properties.Precision = 0;
     this.calcEdit1.Size = new System.Drawing.Size(106, 20);
     this.calcEdit1.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(18, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(208, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Month(s) To Extend:";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.gridControl1);
     this.pnlCtrlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 36);
     this.pnlCtrlCenter.Name = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size = new System.Drawing.Size(590, 216);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text = "panelControl2";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemDateEdit1});
     this.gridControl1.Size = new System.Drawing.Size(590, 216);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5,
                                                                                      this.gridColumn6,
                                                                                      this.gridColumn7});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Branch Code";
     this.gridColumn1.FieldName = "strBranchCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 93;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Locker No";
     this.gridColumn2.FieldName = "nLockerNo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 74;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Membership ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn3.OptionsFilter.AllowFilter = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Receipt No";
     this.gridColumn4.FieldName = "strReceiptNo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsFilter.AllowFilter = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 113;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Status ID";
     this.gridColumn5.FieldName = "nStatusID";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.Width = 112;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Expiry Date";
     this.gridColumn6.ColumnEdit = this.repositoryItemDateEdit1;
     this.gridColumn6.FieldName = "dtExpiry";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     this.gridColumn6.Width = 114;
     //
     // repositoryItemDateEdit1
     //
     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.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit1.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Remark";
     this.gridColumn7.FieldName = "strRemarks";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     this.gridColumn7.Width = 182;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 252);
     this.pnlCtrlBottom.Name = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size = new System.Drawing.Size(590, 44);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(504, 12);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 8;
     this.simpleButtonCancel.Text = "Cancel";
     this.simpleButtonCancel.Click += new System.EventHandler(this.simpleButtonCancel_Click);
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(418, 12);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 7;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormExtendLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(590, 296);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormExtendLocker";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Extend Locker";
     this.Load += new System.EventHandler(this.FormNew_ExtendLocker_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     this.pnlCtrlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#54
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(RealtimeInfo));
			this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl1_Realtime_Graphic = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_RealtimeStat_Graphic = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Realtime_GraphicState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_GraphicState = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Realtime_GraphicClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_Realtime_GraphicGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_GraphicGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Realtime_GraphicClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Realtime_Graphic = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_Realtime_GraphicShow = new DevExpress.XtraEditors.GroupControl();
			this.panelControl_Realtime_GraphicShow = new DevExpress.XtraEditors.PanelControl();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_RealTimeQuery_Graphic = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_Realtime_GraphicPrint = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_RealTime = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_RealTimeStat = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_RealTimeOption = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_RealTimeOption = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_RealTimeClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_RealTimeGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel1_RealTimeGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel1_RealTimeClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_RealTime = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_RealTimeMorning = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridControl_RealTimeBack = 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.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_RealTimeQuery = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_RealTimePrint = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_RealtimeInfo_Student = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
			this.splitContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1_Realtime_Graphic)).BeginInit();
			this.groupControl1_Realtime_Graphic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealtimeStat_Graphic)).BeginInit();
			this.groupControl_RealtimeStat_Graphic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicShow)).BeginInit();
			this.groupControl_Realtime_GraphicShow.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Realtime_GraphicShow)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			this.xtraTabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTime)).BeginInit();
			this.groupControl_RealTime.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTimeStat)).BeginInit();
			this.groupControl_RealTimeStat.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeOption.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeMorning)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeBack)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl1.Appearance.Options.UseBackColor = true;
			this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage2;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage1,
																							this.xtraTabPage2});
			// 
			// xtraTabPage1
			// 
			this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage1.Controls.Add(this.splitContainerControl2);
			this.xtraTabPage1.Name = "xtraTabPage1";
			this.xtraTabPage1.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage1.Text = "图形统计";
			// 
			// splitContainerControl2
			// 
			this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl2.Name = "splitContainerControl2";
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl1_Realtime_Graphic);
			this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl2.Panel2.Controls.Add(this.groupControl_Realtime_GraphicShow);
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl2.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl2.SplitterPosition = 207;
			this.splitContainerControl2.TabIndex = 0;
			this.splitContainerControl2.Text = "splitContainerControl2";
			this.splitContainerControl2.SizeChanged += new System.EventHandler(this.splitContainerControl2_SizeChanged);
			// 
			// groupControl1_Realtime_Graphic
			// 
			this.groupControl1_Realtime_Graphic.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1_Realtime_Graphic.Appearance.Options.UseFont = true;
			this.groupControl1_Realtime_Graphic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1_Realtime_Graphic.AppearanceCaption.Options.UseFont = true;
			this.groupControl1_Realtime_Graphic.Controls.Add(this.groupControl_RealtimeStat_Graphic);
			this.groupControl1_Realtime_Graphic.Controls.Add(this.notePanel_Realtime_Graphic);
			this.groupControl1_Realtime_Graphic.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl1_Realtime_Graphic.Location = new System.Drawing.Point(0, 0);
			this.groupControl1_Realtime_Graphic.Name = "groupControl1_Realtime_Graphic";
			this.groupControl1_Realtime_Graphic.Size = new System.Drawing.Size(201, 509);
			this.groupControl1_Realtime_Graphic.TabIndex = 1;
			this.groupControl1_Realtime_Graphic.Text = "实时窗口统计";
			// 
			// groupControl_RealtimeStat_Graphic
			// 
			this.groupControl_RealtimeStat_Graphic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealtimeStat_Graphic.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.comboBoxEdit_Realtime_GraphicState);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.notePanel_Realtime_GraphicState);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.comboBoxEdit_Realtime_GraphicClass);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.comboBoxEdit_Realtime_GraphicGrade);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.notePanel_Realtime_GraphicGrade);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.notePanel_Realtime_GraphicClass);
			this.groupControl_RealtimeStat_Graphic.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RealtimeStat_Graphic.Location = new System.Drawing.Point(3, 41);
			this.groupControl_RealtimeStat_Graphic.Name = "groupControl_RealtimeStat_Graphic";
			this.groupControl_RealtimeStat_Graphic.Size = new System.Drawing.Size(195, 143);
			this.groupControl_RealtimeStat_Graphic.TabIndex = 7;
			this.groupControl_RealtimeStat_Graphic.Text = "统计状态和班级信息";
			// 
			// comboBoxEdit_Realtime_GraphicState
			// 
			this.comboBoxEdit_Realtime_GraphicState.EditValue = "晨检";
			this.comboBoxEdit_Realtime_GraphicState.Location = new System.Drawing.Point(88, 96);
			this.comboBoxEdit_Realtime_GraphicState.Name = "comboBoxEdit_Realtime_GraphicState";
			// 
			// comboBoxEdit_Realtime_GraphicState.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicState.Properties.Items.AddRange(new object[] {
																							   "晨检",
																							   "晚接"});
			this.comboBoxEdit_Realtime_GraphicState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicState.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicState.TabIndex = 24;
			this.comboBoxEdit_Realtime_GraphicState.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicState_SelectedIndexChanged);
			// 
			// notePanel_Realtime_GraphicState
			// 
			this.notePanel_Realtime_GraphicState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicState.Location = new System.Drawing.Point(16, 96);
			this.notePanel_Realtime_GraphicState.MaxRows = 5;
			this.notePanel_Realtime_GraphicState.Name = "notePanel_Realtime_GraphicState";
			this.notePanel_Realtime_GraphicState.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicState.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicState.TabIndex = 23;
			this.notePanel_Realtime_GraphicState.TabStop = false;
			this.notePanel_Realtime_GraphicState.Text = "类  型:";
			// 
			// comboBoxEdit_Realtime_GraphicClass
			// 
			this.comboBoxEdit_Realtime_GraphicClass.EditValue = "全部";
			this.comboBoxEdit_Realtime_GraphicClass.Location = new System.Drawing.Point(88, 64);
			this.comboBoxEdit_Realtime_GraphicClass.Name = "comboBoxEdit_Realtime_GraphicClass";
			// 
			// comboBoxEdit_Realtime_GraphicClass.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicClass.Properties.Items.AddRange(new object[] {
																							   "全部"});
			this.comboBoxEdit_Realtime_GraphicClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicClass.TabIndex = 22;
			this.comboBoxEdit_Realtime_GraphicClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_Realtime_GraphicGrade
			// 
			this.comboBoxEdit_Realtime_GraphicGrade.EditValue = "全部";
			this.comboBoxEdit_Realtime_GraphicGrade.Location = new System.Drawing.Point(88, 32);
			this.comboBoxEdit_Realtime_GraphicGrade.Name = "comboBoxEdit_Realtime_GraphicGrade";
			// 
			// comboBoxEdit_Realtime_GraphicGrade.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicGrade.Properties.Items.AddRange(new object[] {
																							   "全部"});
			this.comboBoxEdit_Realtime_GraphicGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicGrade.TabIndex = 21;
			this.comboBoxEdit_Realtime_GraphicGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicGrade_SelectedIndexChanged);
			// 
			// notePanel_Realtime_GraphicGrade
			// 
			this.notePanel_Realtime_GraphicGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicGrade.Location = new System.Drawing.Point(16, 32);
			this.notePanel_Realtime_GraphicGrade.MaxRows = 5;
			this.notePanel_Realtime_GraphicGrade.Name = "notePanel_Realtime_GraphicGrade";
			this.notePanel_Realtime_GraphicGrade.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicGrade.TabIndex = 19;
			this.notePanel_Realtime_GraphicGrade.TabStop = false;
			this.notePanel_Realtime_GraphicGrade.Text = "年  级:";
			// 
			// notePanel_Realtime_GraphicClass
			// 
			this.notePanel_Realtime_GraphicClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicClass.Location = new System.Drawing.Point(16, 64);
			this.notePanel_Realtime_GraphicClass.MaxRows = 5;
			this.notePanel_Realtime_GraphicClass.Name = "notePanel_Realtime_GraphicClass";
			this.notePanel_Realtime_GraphicClass.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicClass.TabIndex = 20;
			this.notePanel_Realtime_GraphicClass.TabStop = false;
			this.notePanel_Realtime_GraphicClass.Text = "班  级:";
			// 
			// notePanel_Realtime_Graphic
			// 
			this.notePanel_Realtime_Graphic.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Realtime_Graphic.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Realtime_Graphic.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel_Realtime_Graphic.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Realtime_Graphic.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_Graphic.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Realtime_Graphic.MaxRows = 5;
			this.notePanel_Realtime_Graphic.Name = "notePanel_Realtime_Graphic";
			this.notePanel_Realtime_Graphic.ParentAutoHeight = true;
			this.notePanel_Realtime_Graphic.Size = new System.Drawing.Size(195, 23);
			this.notePanel_Realtime_Graphic.TabIndex = 6;
			this.notePanel_Realtime_Graphic.TabStop = false;
			this.notePanel_Realtime_Graphic.Text = "搜索条件";
			// 
			// groupControl_Realtime_GraphicShow
			// 
			this.groupControl_Realtime_GraphicShow.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.groupControl_Realtime_GraphicShow.Appearance.Options.UseBackColor = true;
			this.groupControl_Realtime_GraphicShow.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Realtime_GraphicShow.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Realtime_GraphicShow.Controls.Add(this.panelControl_Realtime_GraphicShow);
			this.groupControl_Realtime_GraphicShow.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_Realtime_GraphicShow.Location = new System.Drawing.Point(0, 48);
			this.groupControl_Realtime_GraphicShow.Name = "groupControl_Realtime_GraphicShow";
			this.groupControl_Realtime_GraphicShow.Size = new System.Drawing.Size(551, 461);
			this.groupControl_Realtime_GraphicShow.TabIndex = 1;
			this.groupControl_Realtime_GraphicShow.Text = "图形预览";
			// 
			// panelControl_Realtime_GraphicShow
			// 
			this.panelControl_Realtime_GraphicShow.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.panelControl_Realtime_GraphicShow.Appearance.Options.UseBackColor = true;
			this.panelControl_Realtime_GraphicShow.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl_Realtime_GraphicShow.Location = new System.Drawing.Point(3, 18);
			this.panelControl_Realtime_GraphicShow.Name = "panelControl_Realtime_GraphicShow";
			this.panelControl_Realtime_GraphicShow.Size = new System.Drawing.Size(545, 440);
			this.panelControl_Realtime_GraphicShow.TabIndex = 0;
			this.panelControl_Realtime_GraphicShow.Text = "panelControl3";
			this.panelControl_Realtime_GraphicShow.Resize += new System.EventHandler(this.panelControl_Realtime_GraphicShow_Resize);
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.simpleButton_RealTimeQuery_Graphic);
			this.panelControl2.Controls.Add(this.simpleButton_Realtime_GraphicPrint);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(551, 48);
			this.panelControl2.TabIndex = 0;
			this.panelControl2.Text = "panelControl2";
			// 
			// simpleButton_RealTimeQuery_Graphic
			// 
			this.simpleButton_RealTimeQuery_Graphic.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTimeQuery_Graphic.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTimeQuery_Graphic.Appearance.Options.UseFont = true;
			this.simpleButton_RealTimeQuery_Graphic.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTimeQuery_Graphic.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTimeQuery_Graphic.Image")));
			this.simpleButton_RealTimeQuery_Graphic.Location = new System.Drawing.Point(16, 11);
			this.simpleButton_RealTimeQuery_Graphic.Name = "simpleButton_RealTimeQuery_Graphic";
			this.simpleButton_RealTimeQuery_Graphic.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTimeQuery_Graphic.TabIndex = 13;
			this.simpleButton_RealTimeQuery_Graphic.Tag = 4;
			this.simpleButton_RealTimeQuery_Graphic.Text = "搜  索";
			this.simpleButton_RealTimeQuery_Graphic.Click += new System.EventHandler(this.simpleButton_RealTimeQuery_Graphic_Click);
			// 
			// simpleButton_Realtime_GraphicPrint
			// 
			this.simpleButton_Realtime_GraphicPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Realtime_GraphicPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Realtime_GraphicPrint.Appearance.Options.UseFont = true;
			this.simpleButton_Realtime_GraphicPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_Realtime_GraphicPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Realtime_GraphicPrint.Image")));
			this.simpleButton_Realtime_GraphicPrint.Location = new System.Drawing.Point(112, 12);
			this.simpleButton_Realtime_GraphicPrint.Name = "simpleButton_Realtime_GraphicPrint";
			this.simpleButton_Realtime_GraphicPrint.Size = new System.Drawing.Size(104, 26);
			this.simpleButton_Realtime_GraphicPrint.TabIndex = 11;
			this.simpleButton_Realtime_GraphicPrint.Tag = 4;
			this.simpleButton_Realtime_GraphicPrint.Text = "图形打印";
			this.simpleButton_Realtime_GraphicPrint.Click += new System.EventHandler(this.simpleButton_Realtime_GraphicPrint_Click);
			// 
			// xtraTabPage2
			// 
			this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage2.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage2.Name = "xtraTabPage2";
			this.xtraTabPage2.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage2.Text = "数据统计";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_RealTime);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_RealTimeMorning);
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_RealTimeBack);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl1.SplitterPosition = 201;
			this.splitContainerControl1.TabIndex = 2;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_RealTime
			// 
			this.groupControl_RealTime.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealTime.Appearance.Options.UseFont = true;
			this.groupControl_RealTime.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealTime.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RealTime.Controls.Add(this.groupControl_RealTimeStat);
			this.groupControl_RealTime.Controls.Add(this.notePanel_RealTime);
			this.groupControl_RealTime.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_RealTime.Location = new System.Drawing.Point(0, 0);
			this.groupControl_RealTime.Name = "groupControl_RealTime";
			this.groupControl_RealTime.Size = new System.Drawing.Size(195, 509);
			this.groupControl_RealTime.TabIndex = 0;
			this.groupControl_RealTime.Text = "实时窗口统计";
			// 
			// groupControl_RealTimeStat
			// 
			this.groupControl_RealTimeStat.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealTimeStat.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RealTimeStat.Controls.Add(this.comboBoxEdit_RealTimeOption);
			this.groupControl_RealTimeStat.Controls.Add(this.notePanel_RealTimeOption);
			this.groupControl_RealTimeStat.Controls.Add(this.comboBoxEdit_RealTimeClass);
			this.groupControl_RealTimeStat.Controls.Add(this.comboBoxEdit_RealTimeGrade);
			this.groupControl_RealTimeStat.Controls.Add(this.notePanel1_RealTimeGrade);
			this.groupControl_RealTimeStat.Controls.Add(this.notePanel1_RealTimeClass);
			this.groupControl_RealTimeStat.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RealTimeStat.Location = new System.Drawing.Point(3, 41);
			this.groupControl_RealTimeStat.Name = "groupControl_RealTimeStat";
			this.groupControl_RealTimeStat.Size = new System.Drawing.Size(189, 150);
			this.groupControl_RealTimeStat.TabIndex = 7;
			this.groupControl_RealTimeStat.Text = "统计状态和班级信息";
			// 
			// comboBoxEdit_RealTimeOption
			// 
			this.comboBoxEdit_RealTimeOption.EditValue = "晨检";
			this.comboBoxEdit_RealTimeOption.Location = new System.Drawing.Point(88, 96);
			this.comboBoxEdit_RealTimeOption.Name = "comboBoxEdit_RealTimeOption";
			// 
			// comboBoxEdit_RealTimeOption.Properties
			// 
			this.comboBoxEdit_RealTimeOption.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RealTimeOption.Properties.Items.AddRange(new object[] {
																						"晨检",
																						"晚接"});
			this.comboBoxEdit_RealTimeOption.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RealTimeOption.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RealTimeOption.TabIndex = 24;
			this.comboBoxEdit_RealTimeOption.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RealTimeOption_SelectedIndexChanged);
			// 
			// notePanel_RealTimeOption
			// 
			this.notePanel_RealTimeOption.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RealTimeOption.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RealTimeOption.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RealTimeOption.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RealTimeOption.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RealTimeOption.Location = new System.Drawing.Point(16, 96);
			this.notePanel_RealTimeOption.MaxRows = 5;
			this.notePanel_RealTimeOption.Name = "notePanel_RealTimeOption";
			this.notePanel_RealTimeOption.ParentAutoHeight = true;
			this.notePanel_RealTimeOption.Size = new System.Drawing.Size(64, 22);
			this.notePanel_RealTimeOption.TabIndex = 23;
			this.notePanel_RealTimeOption.TabStop = false;
			this.notePanel_RealTimeOption.Text = "类  型:";
			// 
			// comboBoxEdit_RealTimeClass
			// 
			this.comboBoxEdit_RealTimeClass.EditValue = "全部";
			this.comboBoxEdit_RealTimeClass.Location = new System.Drawing.Point(88, 64);
			this.comboBoxEdit_RealTimeClass.Name = "comboBoxEdit_RealTimeClass";
			// 
			// comboBoxEdit_RealTimeClass.Properties
			// 
			this.comboBoxEdit_RealTimeClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RealTimeClass.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_RealTimeClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RealTimeClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RealTimeClass.TabIndex = 22;
			this.comboBoxEdit_RealTimeClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RealTimeClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_RealTimeGrade
			// 
			this.comboBoxEdit_RealTimeGrade.EditValue = "全部";
			this.comboBoxEdit_RealTimeGrade.Location = new System.Drawing.Point(88, 32);
			this.comboBoxEdit_RealTimeGrade.Name = "comboBoxEdit_RealTimeGrade";
			// 
			// comboBoxEdit_RealTimeGrade.Properties
			// 
			this.comboBoxEdit_RealTimeGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RealTimeGrade.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_RealTimeGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RealTimeGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RealTimeGrade.TabIndex = 21;
			this.comboBoxEdit_RealTimeGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RealTimeGrade_SelectedIndexChanged);
			// 
			// notePanel1_RealTimeGrade
			// 
			this.notePanel1_RealTimeGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1_RealTimeGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1_RealTimeGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1_RealTimeGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel1_RealTimeGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1_RealTimeGrade.Location = new System.Drawing.Point(16, 32);
			this.notePanel1_RealTimeGrade.MaxRows = 5;
			this.notePanel1_RealTimeGrade.Name = "notePanel1_RealTimeGrade";
			this.notePanel1_RealTimeGrade.ParentAutoHeight = true;
			this.notePanel1_RealTimeGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel1_RealTimeGrade.TabIndex = 19;
			this.notePanel1_RealTimeGrade.TabStop = false;
			this.notePanel1_RealTimeGrade.Text = "年  级:";
			// 
			// notePanel1_RealTimeClass
			// 
			this.notePanel1_RealTimeClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1_RealTimeClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1_RealTimeClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1_RealTimeClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel1_RealTimeClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1_RealTimeClass.Location = new System.Drawing.Point(16, 64);
			this.notePanel1_RealTimeClass.MaxRows = 5;
			this.notePanel1_RealTimeClass.Name = "notePanel1_RealTimeClass";
			this.notePanel1_RealTimeClass.ParentAutoHeight = true;
			this.notePanel1_RealTimeClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel1_RealTimeClass.TabIndex = 20;
			this.notePanel1_RealTimeClass.TabStop = false;
			this.notePanel1_RealTimeClass.Text = "班  级:";
			// 
			// notePanel_RealTime
			// 
			this.notePanel_RealTime.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_RealTime.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_RealTime.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel_RealTime.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_RealTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RealTime.Location = new System.Drawing.Point(3, 18);
			this.notePanel_RealTime.MaxRows = 5;
			this.notePanel_RealTime.Name = "notePanel_RealTime";
			this.notePanel_RealTime.ParentAutoHeight = true;
			this.notePanel_RealTime.Size = new System.Drawing.Size(189, 23);
			this.notePanel_RealTime.TabIndex = 6;
			this.notePanel_RealTime.TabStop = false;
			this.notePanel_RealTime.Text = "搜索条件";
			// 
			// gridControl_RealTimeMorning
			// 
			this.gridControl_RealTimeMorning.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_RealTimeMorning.EmbeddedNavigator
			// 
			this.gridControl_RealTimeMorning.EmbeddedNavigator.Name = "";
			this.gridControl_RealTimeMorning.Location = new System.Drawing.Point(0, 40);
			this.gridControl_RealTimeMorning.MainView = this.gridView1;
			this.gridControl_RealTimeMorning.Name = "gridControl_RealTimeMorning";
			this.gridControl_RealTimeMorning.Size = new System.Drawing.Size(557, 469);
			this.gridControl_RealTimeMorning.TabIndex = 1;
			this.gridControl_RealTimeMorning.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.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn13,
																							 this.gridColumn6,
																							 this.gridColumn7});
			this.gridView1.GridControl = this.gridControl_RealTimeMorning;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "班级";
			this.gridColumn1.FieldName = "info_className";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			this.gridColumn1.Width = 50;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "健康";
			this.gridColumn2.FieldName = "info_health";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			this.gridColumn2.Width = 97;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "观察";
			this.gridColumn3.FieldName = "info_watch";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			this.gridColumn3.Width = 67;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "服药";
			this.gridColumn4.FieldName = "info_ill";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			this.gridColumn4.Width = 72;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "应出勤";
			this.gridColumn5.FieldName = "info_shouldAtt";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 4;
			this.gridColumn5.Width = 55;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "已出勤";
			this.gridColumn13.FieldName = "info_haveAtt";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 5;
			this.gridColumn13.Width = 50;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "缺席";
			this.gridColumn6.FieldName = "info_absence";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 6;
			this.gridColumn6.Width = 87;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "出勤率";
			this.gridColumn7.FieldName = "info_attPer";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 7;
			this.gridColumn7.Width = 66;
			// 
			// gridControl_RealTimeBack
			// 
			this.gridControl_RealTimeBack.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_RealTimeBack.EmbeddedNavigator
			// 
			this.gridControl_RealTimeBack.EmbeddedNavigator.Name = "";
			this.gridControl_RealTimeBack.Location = new System.Drawing.Point(0, 40);
			this.gridControl_RealTimeBack.MainView = this.gridView2;
			this.gridControl_RealTimeBack.Name = "gridControl_RealTimeBack";
			this.gridControl_RealTimeBack.Size = new System.Drawing.Size(557, 469);
			this.gridControl_RealTimeBack.TabIndex = 2;
			this.gridControl_RealTimeBack.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView2});
			this.gridControl_RealTimeBack.Visible = false;
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn11,
																							 this.gridColumn12});
			this.gridView2.GridControl = this.gridControl_RealTimeBack;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "班级";
			this.gridColumn8.FieldName = "info_className";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.FixedWidth = true;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 0;
			this.gridColumn8.Width = 71;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "已接走";
			this.gridColumn9.FieldName = "info_hasGone";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.FixedWidth = true;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 1;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "应接走";
			this.gridColumn10.FieldName = "info_shouldGo";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.FixedWidth = true;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 2;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "未接走";
			this.gridColumn11.FieldName = "info_notGone";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.FixedWidth = true;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 3;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "接走率";
			this.gridColumn12.FieldName = "info_goPer";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 4;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_RealTimeQuery);
			this.panelControl1.Controls.Add(this.simpleButton_RealTimePrint);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(557, 40);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_RealTimeQuery
			// 
			this.simpleButton_RealTimeQuery.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTimeQuery.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTimeQuery.Appearance.Options.UseFont = true;
			this.simpleButton_RealTimeQuery.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTimeQuery.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTimeQuery.Image")));
			this.simpleButton_RealTimeQuery.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_RealTimeQuery.Name = "simpleButton_RealTimeQuery";
			this.simpleButton_RealTimeQuery.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTimeQuery.TabIndex = 7;
			this.simpleButton_RealTimeQuery.Tag = 4;
			this.simpleButton_RealTimeQuery.Text = "搜  索";
			this.simpleButton_RealTimeQuery.Click += new System.EventHandler(this.simpleButton_RealTimeQuery_Click);
			// 
			// simpleButton_RealTimePrint
			// 
			this.simpleButton_RealTimePrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTimePrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTimePrint.Appearance.Options.UseFont = true;
			this.simpleButton_RealTimePrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTimePrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTimePrint.Image")));
			this.simpleButton_RealTimePrint.Location = new System.Drawing.Point(120, 8);
			this.simpleButton_RealTimePrint.Name = "simpleButton_RealTimePrint";
			this.simpleButton_RealTimePrint.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTimePrint.TabIndex = 8;
			this.simpleButton_RealTimePrint.Tag = 4;
			this.simpleButton_RealTimePrint.Text = "报  表";
			this.simpleButton_RealTimePrint.Click += new System.EventHandler(this.simpleButton_RealTimePrint_Click);
			// 
			// RealtimeInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl1);
			this.Name = "RealtimeInfo";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.RealtimeInfo_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
			this.splitContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl1_Realtime_Graphic)).EndInit();
			this.groupControl1_Realtime_Graphic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealtimeStat_Graphic)).EndInit();
			this.groupControl_RealtimeStat_Graphic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicShow)).EndInit();
			this.groupControl_Realtime_GraphicShow.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Realtime_GraphicShow)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			this.xtraTabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTime)).EndInit();
			this.groupControl_RealTime.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTimeStat)).EndInit();
			this.groupControl_RealTimeStat.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeOption.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeMorning)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeBack)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
示例#55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.DateRangeTo = new DevExpress.XtraEditors.DateEdit();
     this.DateFrom = new DevExpress.XtraEditors.DateEdit();
     this.dSPromotion = new ACMS.Dataset.DSPromotion();
     this.tblReceiptPromotionBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tblReceiptPromotionTableAdapter = new ACMS.Dataset.DSPromotionTableAdapters.tblReceiptPromotionTableAdapter();
     this.GridPromotion = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.MembershipID = 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();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblReceiptPromotionBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(144, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(33, 23);
     this.label2.TabIndex = 9;
     this.label2.Text = "To";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(0, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 23);
     this.label1.TabIndex = 8;
     this.label1.Text = "From";
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location = new System.Drawing.Point(174, 8);
     this.DateRangeTo.Name = "DateRangeTo";
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateRangeTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateRangeTo.Size = new System.Drawing.Size(97, 20);
     this.DateRangeTo.TabIndex = 7;
     this.DateRangeTo.EditValueChanged += new System.EventHandler(this.DateRangeTo_EditValueChanged);
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location = new System.Drawing.Point(40, 8);
     this.DateFrom.Name = "DateFrom";
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateFrom.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateFrom.Size = new System.Drawing.Size(100, 20);
     this.DateFrom.TabIndex = 6;
     this.DateFrom.EditValueChanged += new System.EventHandler(this.DateFrom_EditValueChanged);
     //
     // dSPromotion
     //
     this.dSPromotion.DataSetName = "DSPromotion";
     this.dSPromotion.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tblReceiptPromotionTableAdapter
     //
     this.tblReceiptPromotionTableAdapter.ClearBeforeFill = true;
     //
     // GridPromotion
     //
     this.GridPromotion.DataSource = this.tblReceiptPromotionBindingSource;
     this.GridPromotion.Location = new System.Drawing.Point(3, 58);
     this.GridPromotion.MainView = this.gridView1;
     this.GridPromotion.Name = "GridPromotion";
     this.GridPromotion.Size = new System.Drawing.Size(787, 391);
     this.GridPromotion.TabIndex = 10;
     this.GridPromotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.gridView2});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.MembershipID,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7});
     this.gridView1.GridControl = this.GridPromotion;
     this.gridView1.Name = "gridView1";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.GridPromotion;
     this.gridView2.Name = "gridView2";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Date";
     this.gridColumn1.FieldName = "dtDate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Receipt";
     this.gridColumn2.FieldName = "strReceiptNo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(302, 5);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 11;
     this.simpleButton1.Text = "Generate";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // MembershipID
     //
     this.MembershipID.Caption = "Membership ID";
     this.MembershipID.FieldName = "strMembershipID";
     this.MembershipID.Name = "MembershipID";
     this.MembershipID.Visible = true;
     this.MembershipID.VisibleIndex = 2;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Description";
     this.gridColumn3.FieldName = "strPromotion";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Sales Person";
     this.gridColumn4.FieldName = "strEmployeeName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Type";
     this.gridColumn5.FieldName = "strType";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Paid";
     this.gridColumn6.FieldName = "Paid";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 6;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Discount";
     this.gridColumn7.FieldName = "Discount";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 7;
     //
     // RPPromotionReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(792, 453);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.GridPromotion);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.DateFrom);
     this.Name = "RPPromotionReport";
     this.Text = "Promotions Report";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.PromotionReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblReceiptPromotionBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlBuildingList = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.building_company_id_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_floor_no = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_company_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlBuildingInfo = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.lookUpEditxxx = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlCompanyName = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuilding = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuildingLabel = new DevExpress.XtraEditors.LabelControl();
     this.labelControlFloorNo = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.luEditFloorNo = new DevExpress.XtraEditors.LookUpEdit();
     this.luEditBuilding = new DevExpress.XtraEditors.LookUpEdit();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtBuildingLabel = new DevExpress.XtraEditors.TextEdit();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingList)).BeginInit();
     this.groupControlBuildingList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingInfo)).BeginInit();
     this.groupControlBuildingInfo.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditxxx.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luEditFloorNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luEditBuilding.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBuildingLabel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlBuildingList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1040, 474);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 11;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlBuildingList
     //
     this.groupControlBuildingList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlBuildingList.AppearanceCaption.Options.UseFont = true;
     this.groupControlBuildingList.Controls.Add(this.gridControl1);
     this.groupControlBuildingList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBuildingList.Location = new System.Drawing.Point(0, 0);
     this.groupControlBuildingList.Name = "groupControlBuildingList";
     this.groupControlBuildingList.Size = new System.Drawing.Size(500, 474);
     this.groupControlBuildingList.TabIndex = 0;
     this.groupControlBuildingList.Text = "รายการอาคาร";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Buttons.EnabledAutoRepeat = false;
     this.gridControl1.EmbeddedNavigator.Buttons.EndEdit.Enabled = false;
     this.gridControl1.Location = new System.Drawing.Point(2, 22);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(496, 450);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.building_company_id_text,
     this.building_building_code,
     this.building_building_label,
     this.building_floor_no,
     this.building_building_id,
     this.building_company_id});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsFind.AlwaysVisible = true;
     this.gridView1.OptionsFind.ShowCloseButton = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // building_company_id_text
     //
     this.building_company_id_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_company_id_text.AppearanceHeader.Options.UseFont = true;
     this.building_company_id_text.Caption = "ชื่อกิจการ";
     this.building_company_id_text.FieldName = "company_name";
     this.building_company_id_text.Name = "building_company_id_text";
     this.building_company_id_text.OptionsColumn.AllowEdit = false;
     this.building_company_id_text.OptionsColumn.AllowFocus = false;
     this.building_company_id_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_company_id_text.OptionsColumn.AllowMove = false;
     this.building_company_id_text.Visible = true;
     this.building_company_id_text.VisibleIndex = 0;
     //
     // building_building_code
     //
     this.building_building_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_building_code.AppearanceHeader.Options.UseFont = true;
     this.building_building_code.Caption = "รหัสอาคาร";
     this.building_building_code.FieldName = "building_code";
     this.building_building_code.Name = "building_building_code";
     this.building_building_code.OptionsColumn.AllowEdit = false;
     this.building_building_code.OptionsColumn.AllowFocus = false;
     this.building_building_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_building_code.OptionsColumn.AllowMove = false;
     this.building_building_code.Visible = true;
     this.building_building_code.VisibleIndex = 1;
     //
     // building_building_label
     //
     this.building_building_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_building_label.AppearanceHeader.Options.UseFont = true;
     this.building_building_label.Caption = "ชื่ออาคาร";
     this.building_building_label.FieldName = "building_label";
     this.building_building_label.Name = "building_building_label";
     this.building_building_label.OptionsColumn.AllowEdit = false;
     this.building_building_label.OptionsColumn.AllowFocus = false;
     this.building_building_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_building_label.OptionsColumn.AllowMove = false;
     this.building_building_label.Visible = true;
     this.building_building_label.VisibleIndex = 2;
     //
     // building_floor_no
     //
     this.building_floor_no.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_floor_no.AppearanceHeader.Options.UseFont = true;
     this.building_floor_no.Caption = "จำนวนชั้น";
     this.building_floor_no.FieldName = "floor_count";
     this.building_floor_no.Name = "building_floor_no";
     this.building_floor_no.OptionsColumn.AllowEdit = false;
     this.building_floor_no.OptionsColumn.AllowFocus = false;
     this.building_floor_no.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_floor_no.OptionsColumn.AllowMove = false;
     this.building_floor_no.Visible = true;
     this.building_floor_no.VisibleIndex = 3;
     //
     // building_building_id
     //
     this.building_building_id.Caption = "building_id";
     this.building_building_id.FieldName = "building_id";
     this.building_building_id.Name = "building_building_id";
     //
     // building_company_id
     //
     this.building_company_id.Caption = "gridColumn1";
     this.building_company_id.FieldName = "company_id";
     this.building_company_id.Name = "building_company_id";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlBuildingInfo);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(535, 474);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlBuildingInfo
     //
     this.groupControlBuildingInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlBuildingInfo.AppearanceCaption.Options.UseFont = true;
     this.groupControlBuildingInfo.Controls.Add(this.xtraScrollableControl1);
     this.groupControlBuildingInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBuildingInfo.Location = new System.Drawing.Point(0, 0);
     this.groupControlBuildingInfo.Name = "groupControlBuildingInfo";
     this.groupControlBuildingInfo.Size = new System.Drawing.Size(535, 474);
     this.groupControlBuildingInfo.TabIndex = 0;
     this.groupControlBuildingInfo.Text = "ข้อมูลอาคาร";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.lookUpEditxxx);
     this.xtraScrollableControl1.Controls.Add(this.labelControlRequired);
     this.xtraScrollableControl1.Controls.Add(this.tableLayoutPanel1);
     this.xtraScrollableControl1.Controls.Add(this.bttDelete);
     this.xtraScrollableControl1.Controls.Add(this.bttEdit);
     this.xtraScrollableControl1.Controls.Add(this.bttAdd);
     this.xtraScrollableControl1.Controls.Add(this.luEditFloorNo);
     this.xtraScrollableControl1.Controls.Add(this.luEditBuilding);
     this.xtraScrollableControl1.Controls.Add(this.bttSave);
     this.xtraScrollableControl1.Controls.Add(this.bttCancel);
     this.xtraScrollableControl1.Controls.Add(this.txtBuildingLabel);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(531, 450);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // lookUpEditxxx
     //
     this.lookUpEditxxx.Enabled = false;
     this.lookUpEditxxx.Location = new System.Drawing.Point(126, 11);
     this.lookUpEditxxx.Name = "lookUpEditxxx";
     this.lookUpEditxxx.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditxxx.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("company_id", " ", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("company_name", " ")});
     this.lookUpEditxxx.Size = new System.Drawing.Size(399, 20);
     this.lookUpEditxxx.TabIndex = 360;
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(9, 159);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 358;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 92F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 12F));
     this.tableLayoutPanel1.Controls.Add(this.labelControl3, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControlCompanyName, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControlBuilding, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelControl12, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.labelControl2, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControlBuildingLabel, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControlFloorNo, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.labelControl5, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControl6, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControl7, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelControl8, 2, 3);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 15);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 21F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(114, 120);
     this.tableLayoutPanel1.TabIndex = 359;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl3.Location = new System.Drawing.Point(3, 3);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(6, 13);
     this.labelControl3.TabIndex = 350;
     this.labelControl3.Text = "*";
     //
     // labelControlCompanyName
     //
     this.labelControlCompanyName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlCompanyName.Location = new System.Drawing.Point(48, 3);
     this.labelControlCompanyName.Name = "labelControlCompanyName";
     this.labelControlCompanyName.Size = new System.Drawing.Size(51, 13);
     this.labelControlCompanyName.TabIndex = 349;
     this.labelControlCompanyName.Text = "ชื่อกิจการ :";
     //
     // labelControlBuilding
     //
     this.labelControlBuilding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBuilding.Location = new System.Drawing.Point(44, 30);
     this.labelControlBuilding.Name = "labelControlBuilding";
     this.labelControlBuilding.Size = new System.Drawing.Size(55, 13);
     this.labelControlBuilding.TabIndex = 20;
     this.labelControlBuilding.Text = "รหัสอาคาร :";
     //
     // labelControl12
     //
     this.labelControl12.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl12.Location = new System.Drawing.Point(3, 82);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(6, 13);
     this.labelControl12.TabIndex = 346;
     this.labelControl12.Text = "*";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl2.Location = new System.Drawing.Point(3, 57);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(6, 13);
     this.labelControl2.TabIndex = 347;
     this.labelControl2.Text = "*";
     //
     // labelControlBuildingLabel
     //
     this.labelControlBuildingLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBuildingLabel.Location = new System.Drawing.Point(49, 57);
     this.labelControlBuildingLabel.Name = "labelControlBuildingLabel";
     this.labelControlBuildingLabel.Size = new System.Drawing.Size(50, 13);
     this.labelControlBuildingLabel.TabIndex = 15;
     this.labelControlBuildingLabel.Text = "ชื่ออาคาร :";
     //
     // labelControlFloorNo
     //
     this.labelControlFloorNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlFloorNo.Location = new System.Drawing.Point(48, 82);
     this.labelControlFloorNo.Name = "labelControlFloorNo";
     this.labelControlFloorNo.Size = new System.Drawing.Size(51, 13);
     this.labelControlFloorNo.TabIndex = 21;
     this.labelControlFloorNo.Text = "จำนวนชั้น :";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(105, 3);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(4, 13);
     this.labelControl5.TabIndex = 349;
     this.labelControl5.Text = ":";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(105, 57);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(4, 13);
     this.labelControl6.TabIndex = 349;
     this.labelControl6.Text = ":";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(105, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(4, 13);
     this.labelControl7.TabIndex = 349;
     this.labelControl7.Text = ":";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(105, 82);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(4, 13);
     this.labelControl8.TabIndex = 349;
     this.labelControl8.Text = ":";
     //
     // bttDelete
     //
     this.bttDelete.Image = global::DXWindowsApplication2.Properties.Resources.delete;
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(293, 159);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 6;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // bttEdit
     //
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(212, 159);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 5;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttAdd
     //
     this.bttAdd.Image = global::DXWindowsApplication2.Properties.Resources.Add;
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(131, 159);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 4;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // luEditFloorNo
     //
     this.luEditFloorNo.Enabled = false;
     this.luEditFloorNo.Location = new System.Drawing.Point(126, 93);
     this.luEditFloorNo.Name = "luEditFloorNo";
     this.luEditFloorNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luEditFloorNo.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_no", "floor_no")});
     this.luEditFloorNo.Size = new System.Drawing.Size(399, 20);
     this.luEditFloorNo.TabIndex = 3;
     //
     // luEditBuilding
     //
     this.luEditBuilding.Enabled = false;
     this.luEditBuilding.Location = new System.Drawing.Point(126, 41);
     this.luEditBuilding.Name = "luEditBuilding";
     this.luEditBuilding.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luEditBuilding.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_id", "id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_code", "building_code")});
     this.luEditBuilding.Size = new System.Drawing.Size(399, 20);
     this.luEditBuilding.TabIndex = 1;
     //
     // bttSave
     //
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(374, 159);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 7;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // bttCancel
     //
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(455, 159);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 8;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // txtBuildingLabel
     //
     this.txtBuildingLabel.Enabled = false;
     this.txtBuildingLabel.Location = new System.Drawing.Point(126, 67);
     this.txtBuildingLabel.Name = "txtBuildingLabel";
     this.txtBuildingLabel.Properties.Mask.BeepOnError = true;
     this.txtBuildingLabel.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,50}";
     this.txtBuildingLabel.Properties.Mask.IgnoreMaskBlank = false;
     this.txtBuildingLabel.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.txtBuildingLabel.Properties.MaxLength = 50;
     this.txtBuildingLabel.Properties.ValidateOnEnterKey = true;
     this.txtBuildingLabel.Size = new System.Drawing.Size(399, 20);
     this.txtBuildingLabel.TabIndex = 2;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1040, 474);
     this.splitContainerControl1.SplitterPosition = 585;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.splitContainerControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(7, 7);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1040, 474);
     this.panelControl2.TabIndex = 10;
     //
     // BasicInfoBuilding
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.panelControl2);
     this.Name = "BasicInfoBuilding";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1054, 488);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingList)).EndInit();
     this.groupControlBuildingList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingInfo)).EndInit();
     this.groupControlBuildingInfo.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     this.xtraScrollableControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditxxx.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luEditFloorNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luEditBuilding.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBuildingLabel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUserBrw));
     this.pnlBody = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch1 = new System.Windows.Forms.Panel();
     this.txt_SpeedSearch = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.grdUser = new DevExpress.XtraGrid.GridControl();
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gvwUser = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolUserID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolUserName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolUserType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolUserStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnl_Find = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.chk_Anywhere = new System.Windows.Forms.CheckBox();
     this.btn_Clear = new System.Windows.Forms.Button();
     this.btn_Find = new System.Windows.Forms.Button();
     this.lbl_Find = new System.Windows.Forms.Label();
     this.chk_AdvanceSearch = new System.Windows.Forms.CheckBox();
     this.pnlBody.SuspendLayout();
     this.pnl_SpeedSearch.SuspendLayout();
     this.pnl_SpeedSearch1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwUser)).BeginInit();
     this.pnl_Find.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.pnl_SpeedSearch);
     this.pnlBody.Controls.Add(this.grdUser);
     this.pnlBody.Controls.Add(this.pnl_Find);
     this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Location = new System.Drawing.Point(0, 0);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(648, 334);
     this.pnlBody.TabIndex = 27;
     this.pnlBody.Resize += new System.EventHandler(this.pnlBody_Resize);
     //
     // pnl_SpeedSearch
     //
     this.pnl_SpeedSearch.BackColor = System.Drawing.Color.Black;
     this.pnl_SpeedSearch.Controls.Add(this.pnl_SpeedSearch1);
     this.pnl_SpeedSearch.Location = new System.Drawing.Point(40, 232);
     this.pnl_SpeedSearch.Name = "pnl_SpeedSearch";
     this.pnl_SpeedSearch.Size = new System.Drawing.Size(192, 72);
     this.pnl_SpeedSearch.TabIndex = 41;
     this.pnl_SpeedSearch.Visible = false;
     //
     // pnl_SpeedSearch1
     //
     this.pnl_SpeedSearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(143)))), ((int)(((byte)(230)))));
     this.pnl_SpeedSearch1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnl_SpeedSearch1.Controls.Add(this.txt_SpeedSearch);
     this.pnl_SpeedSearch1.Controls.Add(this.label1);
     this.pnl_SpeedSearch1.Location = new System.Drawing.Point(4, 4);
     this.pnl_SpeedSearch1.Name = "pnl_SpeedSearch1";
     this.pnl_SpeedSearch1.Size = new System.Drawing.Size(184, 64);
     this.pnl_SpeedSearch1.TabIndex = 39;
     //
     // txt_SpeedSearch
     //
     this.txt_SpeedSearch.Location = new System.Drawing.Point(11, 29);
     this.txt_SpeedSearch.Name = "txt_SpeedSearch";
     this.txt_SpeedSearch.Size = new System.Drawing.Size(157, 20);
     this.txt_SpeedSearch.TabIndex = 10;
     this.txt_SpeedSearch.TextChanged += new System.EventHandler(this.txt_SpeedSearch_TextChanged);
     this.txt_SpeedSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyDown);
     this.txt_SpeedSearch.Leave += new System.EventHandler(this.txt_SpeedSearch_Leave);
     this.txt_SpeedSearch.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(56, 4);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(71, 14);
     this.label1.TabIndex = 0;
     this.label1.Text = "Fast Search";
     //
     // grdUser
     //
     this.grdUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdUser.EmbeddedNavigator.Name = "";
     this.grdUser.ExternalRepository = this.persistentRepository1;
     this.grdUser.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdUser.Location = new System.Drawing.Point(0, 90);
     this.grdUser.MainView = this.gvwUser;
     this.grdUser.Name = "grdUser";
     this.grdUser.Size = new System.Drawing.Size(648, 244);
     this.grdUser.TabIndex = 25;
     this.grdUser.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwUser});
     this.grdUser.DoubleClick += new System.EventHandler(this.grdUser_DoubleClick);
     this.grdUser.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdUser_KeyPress);
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gvwUser
     //
     this.gvwUser.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwUser.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcolUserID,
     this.gcolUserName,
     this.gcolUserType,
     this.gcolUserStatus,
     this.gcolContactID});
     this.gvwUser.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwUser.GridControl = this.grdUser;
     this.gvwUser.Name = "gvwUser";
     this.gvwUser.OptionsPrint.PrintDetails = true;
     this.gvwUser.OptionsPrint.PrintFilterInfo = true;
     this.gvwUser.OptionsPrint.PrintPreview = true;
     this.gvwUser.OptionsPrint.UsePrintStyles = true;
     this.gvwUser.OptionsView.ShowGroupPanel = false;
     this.gvwUser.OptionsView.ShowHorzLines = false;
     this.gvwUser.OptionsView.ShowIndicator = false;
     this.gvwUser.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolUserName, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcolUserID
     //
     this.gcolUserID.Caption = "User ID";
     this.gcolUserID.FieldName = "UserID";
     this.gcolUserID.Name = "gcolUserID";
     this.gcolUserID.OptionsColumn.AllowEdit = false;
     this.gcolUserID.OptionsColumn.ReadOnly = true;
     //
     // gcolUserName
     //
     this.gcolUserName.Caption = "User Name";
     this.gcolUserName.FieldName = "UserName";
     this.gcolUserName.Name = "gcolUserName";
     this.gcolUserName.OptionsColumn.AllowEdit = false;
     this.gcolUserName.OptionsColumn.ReadOnly = true;
     this.gcolUserName.Visible = true;
     this.gcolUserName.VisibleIndex = 0;
     this.gcolUserName.Width = 200;
     //
     // gcolUserType
     //
     this.gcolUserType.Caption = "User Type";
     this.gcolUserType.FieldName = "UserType";
     this.gcolUserType.Name = "gcolUserType";
     this.gcolUserType.OptionsColumn.AllowEdit = false;
     this.gcolUserType.OptionsColumn.ReadOnly = true;
     this.gcolUserType.Visible = true;
     this.gcolUserType.VisibleIndex = 1;
     this.gcolUserType.Width = 90;
     //
     // gcolUserStatus
     //
     this.gcolUserStatus.Caption = "User Status";
     this.gcolUserStatus.FieldName = "UserStatus";
     this.gcolUserStatus.Name = "gcolUserStatus";
     this.gcolUserStatus.OptionsColumn.AllowEdit = false;
     this.gcolUserStatus.OptionsColumn.ReadOnly = true;
     this.gcolUserStatus.Visible = true;
     this.gcolUserStatus.VisibleIndex = 2;
     this.gcolUserStatus.Width = 90;
     //
     // gcolContactID
     //
     this.gcolContactID.Caption = "ContactID";
     this.gcolContactID.FieldName = "ContactID";
     this.gcolContactID.Name = "gcolContactID";
     this.gcolContactID.OptionsColumn.AllowEdit = false;
     this.gcolContactID.OptionsColumn.ReadOnly = true;
     //
     // pnl_Find
     //
     this.pnl_Find.BackColor = System.Drawing.SystemColors.Window;
     this.pnl_Find.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnl_Find.Controls.Add(this.panel1);
     this.pnl_Find.Controls.Add(this.txtSearch);
     this.pnl_Find.Controls.Add(this.chk_Anywhere);
     this.pnl_Find.Controls.Add(this.btn_Clear);
     this.pnl_Find.Controls.Add(this.btn_Find);
     this.pnl_Find.Controls.Add(this.lbl_Find);
     this.pnl_Find.Controls.Add(this.chk_AdvanceSearch);
     this.pnl_Find.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnl_Find.Location = new System.Drawing.Point(0, 0);
     this.pnl_Find.Name = "pnl_Find";
     this.pnl_Find.Size = new System.Drawing.Size(648, 90);
     this.pnl_Find.TabIndex = 26;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(460, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(184, 86);
     this.panel1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(184, 86);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(64, 17);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(296, 20);
     this.txtSearch.TabIndex = 9;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // chk_Anywhere
     //
     this.chk_Anywhere.BackColor = System.Drawing.SystemColors.Window;
     this.chk_Anywhere.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Anywhere.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Anywhere.Location = new System.Drawing.Point(210, 44);
     this.chk_Anywhere.Name = "chk_Anywhere";
     this.chk_Anywhere.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_Anywhere.Size = new System.Drawing.Size(154, 24);
     this.chk_Anywhere.TabIndex = 7;
     this.chk_Anywhere.Text = "Search Anywhere in Fields";
     this.chk_Anywhere.UseVisualStyleBackColor = false;
     //
     // btn_Clear
     //
     this.btn_Clear.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Clear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Clear.Location = new System.Drawing.Point(370, 44);
     this.btn_Clear.Name = "btn_Clear";
     this.btn_Clear.Size = new System.Drawing.Size(75, 23);
     this.btn_Clear.TabIndex = 6;
     this.btn_Clear.Text = "Clear";
     this.btn_Clear.UseVisualStyleBackColor = false;
     this.btn_Clear.Click += new System.EventHandler(this.btn_Clear_Click);
     //
     // btn_Find
     //
     this.btn_Find.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Find.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Find.Location = new System.Drawing.Point(370, 15);
     this.btn_Find.Name = "btn_Find";
     this.btn_Find.Size = new System.Drawing.Size(75, 23);
     this.btn_Find.TabIndex = 4;
     this.btn_Find.Text = "Find";
     this.btn_Find.UseVisualStyleBackColor = false;
     this.btn_Find.Click += new System.EventHandler(this.btn_Find_Click);
     //
     // lbl_Find
     //
     this.lbl_Find.AutoSize = true;
     this.lbl_Find.Location = new System.Drawing.Point(15, 19);
     this.lbl_Find.Name = "lbl_Find";
     this.lbl_Find.Size = new System.Drawing.Size(30, 13);
     this.lbl_Find.TabIndex = 0;
     this.lbl_Find.Text = " Find";
     //
     // chk_AdvanceSearch
     //
     this.chk_AdvanceSearch.BackColor = System.Drawing.SystemColors.Window;
     this.chk_AdvanceSearch.Checked = true;
     this.chk_AdvanceSearch.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chk_AdvanceSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_AdvanceSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_AdvanceSearch.Location = new System.Drawing.Point(64, 44);
     this.chk_AdvanceSearch.Name = "chk_AdvanceSearch";
     this.chk_AdvanceSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_AdvanceSearch.Size = new System.Drawing.Size(112, 24);
     this.chk_AdvanceSearch.TabIndex = 8;
     this.chk_AdvanceSearch.Text = "Search All Fields";
     this.chk_AdvanceSearch.UseVisualStyleBackColor = false;
     //
     // frmUserBrw
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(648, 334);
     this.Controls.Add(this.pnlBody);
     this.Name = "frmUserBrw";
     this.Text = "User...";
     this.Load += new System.EventHandler(this.frmUserBrw_Load);
     this.Resize += new System.EventHandler(this.frmUserBrw_Resize);
     this.pnlBody.ResumeLayout(false);
     this.pnl_SpeedSearch.ResumeLayout(false);
     this.pnl_SpeedSearch1.ResumeLayout(false);
     this.pnl_SpeedSearch1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwUser)).EndInit();
     this.pnl_Find.ResumeLayout(false);
     this.pnl_Find.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataBillFrm));
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSalesUnitID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditSortNo1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlEditor = new DevExpress.XtraGrid.GridControl();
     this.mastergridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditTotalkasm = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditExtraFees = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditBillPayTypeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditBillDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditBillEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControlEditor = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.BtnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.LblTotal = new DevExpress.XtraEditors.LabelControl();
     this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
     this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnStoreTrID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnSort = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSort = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtREM = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.TxtExtraFees = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
     this.TxtStoreTrIDTYPE = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlEditorDetial = new DevExpress.XtraGrid.GridControl();
     this.gridViewEditDetial = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnEditDetialSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDetialSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditDetailQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialSortNo = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditDetialDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialUpdate = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).BeginInit();
     this.xtraTabControlEditor.SuspendLayout();
     this.xtraTabPageAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).BeginInit();
     this.xtraTabPageEdit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "رقم فاتورة المشتريات";
     this.gridColumn1.FieldName = "WaredID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "الصنف";
     this.gridColumn2.ColumnEdit = this.repositoryItemLookUpEditEditSanfID;
     this.gridColumn2.FieldName = "SanfID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 92;
     //
     // repositoryItemLookUpEditEditSanfID
     //
     this.repositoryItemLookUpEditEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditEditSanfID.Name = "repositoryItemLookUpEditEditSanfID";
     this.repositoryItemLookUpEditEditSanfID.NullText = "";
     this.repositoryItemLookUpEditEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "وحدة البيع";
     this.gridColumn24.ColumnEdit = this.repositoryItemLookUpEditEditSalesUnitID;
     this.gridColumn24.FieldName = "SalesUnitID";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     //
     // repositoryItemLookUpEditEditSalesUnitID
     //
     this.repositoryItemLookUpEditEditSalesUnitID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSalesUnitID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSalesUnitID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitID", "SalesUnitID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "وحدة البيع")});
     this.repositoryItemLookUpEditEditSalesUnitID.Name = "repositoryItemLookUpEditEditSalesUnitID";
     this.repositoryItemLookUpEditEditSalesUnitID.NullText = "";
     this.repositoryItemLookUpEditEditSalesUnitID.NullValuePrompt = "اختار وحدة البيع";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "UnitID";
     this.gridColumn12.FieldName = "UnitID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "كمية الوارد";
     this.gridColumn4.ColumnEdit = this.repositoryItemTextEditEditQuantity;
     this.gridColumn4.FieldName = "WaredQuantity";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 105;
     //
     // repositoryItemTextEditEditQuantity
     //
     this.repositoryItemTextEditEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditQuantity.Name = "repositoryItemTextEditEditQuantity";
     this.repositoryItemTextEditEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "سعر الشراء";
     this.gridColumn5.ColumnEdit = this.repositoryItemCalcEditEditPrice;
     this.gridColumn5.FieldName = "WaredPrice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 105;
     //
     // repositoryItemCalcEditEditPrice
     //
     this.repositoryItemCalcEditEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditPrice.Name = "repositoryItemCalcEditEditPrice";
     this.repositoryItemCalcEditEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "الخصم";
     this.gridColumn6.ColumnEdit = this.repositoryItemCalcEditEditDiscount;
     this.gridColumn6.FieldName = "DiscountPercent";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 105;
     //
     // repositoryItemCalcEditEditDiscount
     //
     this.repositoryItemCalcEditEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditDiscount.Name = "repositoryItemCalcEditEditDiscount";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "ترتيب";
     this.gridColumn7.ColumnEdit = this.repositoryItemButtonEditEditSortNo1;
     this.gridColumn7.FieldName = "SortNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // repositoryItemButtonEditEditSortNo1
     //
     this.repositoryItemButtonEditEditSortNo1.AutoHeight = false;
     this.repositoryItemButtonEditEditSortNo1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditEditSortNo1.Name = "repositoryItemButtonEditEditSortNo1";
     this.repositoryItemButtonEditEditSortNo1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "المجموع";
     this.gridColumn9.DisplayFormat.FormatString = "c2";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "Total";
     this.gridColumn9.GroupFormat.FormatString = "c2";
     this.gridColumn9.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     //
     // gridControlEditor
     //
     this.gridControlEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlEditor.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditor.Location = new System.Drawing.Point(2, 21);
     this.gridControlEditor.MainView = this.mastergridView;
     this.gridControlEditor.Name = "gridControlEditor";
     this.gridControlEditor.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditEditSanfID,
     this.repositoryItemTextEditEditQuantity,
     this.repositoryItemCalcEditEditPrice,
     this.repositoryItemCalcEditEditDiscount,
     this.repositoryItemButtonEditEditSortNo1,
     this.repositoryItemDateEditEditStoreTrDate,
     this.repositoryItemLookUpEditEditPERSONID,
     this.repositoryItemLookUpEditEditEMPID,
     this.repositoryItemTextEditEditTotalkasm,
     this.repositoryItemTextEditEditExtraFees,
     this.repositoryItemLookUpEditEditStoreID,
     this.repositoryItemLookUpEditEditBillPayTypeID,
     this.repositoryItemLookUpEditEditSalesUnitID,
     this.repositoryItemMemoExEditEditREM,
     this.repositoryItemButtonEditEditBillDelete,
     this.repositoryItemButtonEditBillEdit});
     this.gridControlEditor.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditor.Size = new System.Drawing.Size(751, 232);
     this.gridControlEditor.TabIndex = 10;
     this.gridControlEditor.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.mastergridView});
     //
     // mastergridView
     //
     this.mastergridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn8,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn3,
     this.gridColumn19});
     this.mastergridView.GridControl = this.gridControlEditor;
     this.mastergridView.Name = "mastergridView";
     this.mastergridView.OptionsView.ColumnAutoWidth = false;
     this.mastergridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.mastergridView_FocusedRowChanged);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "StoreTrID";
     this.gridColumn10.FieldName = "StoreTrID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "تاريخ الفاتوره";
     this.gridColumn11.ColumnEdit = this.repositoryItemDateEditEditStoreTrDate;
     this.gridColumn11.FieldName = "StoreTrDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 9;
     this.gridColumn11.Width = 96;
     //
     // repositoryItemDateEditEditStoreTrDate
     //
     this.repositoryItemDateEditEditStoreTrDate.AutoHeight = false;
     this.repositoryItemDateEditEditStoreTrDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditEditStoreTrDate.Name = "repositoryItemDateEditEditStoreTrDate";
     this.repositoryItemDateEditEditStoreTrDate.NullValuePrompt = "اختار التاريخ";
     this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "رقم الفاتوره";
     this.gridColumn8.FieldName = "StoreTrIDTYPE";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 10;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "المورد";
     this.gridColumn13.ColumnEdit = this.repositoryItemLookUpEditEditPERSONID;
     this.gridColumn13.FieldName = "PERSONID";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     this.gridColumn13.Width = 119;
     //
     // repositoryItemLookUpEditEditPERSONID
     //
     this.repositoryItemLookUpEditEditPERSONID.AutoHeight = false;
     this.repositoryItemLookUpEditEditPERSONID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditPERSONID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "موبيل")});
     this.repositoryItemLookUpEditEditPERSONID.Name = "repositoryItemLookUpEditEditPERSONID";
     this.repositoryItemLookUpEditEditPERSONID.NullText = "";
     this.repositoryItemLookUpEditEditPERSONID.NullValuePrompt = "اختار اسم المورد";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "المستلم";
     this.gridColumn14.ColumnEdit = this.repositoryItemLookUpEditEditEMPID;
     this.gridColumn14.FieldName = "EMPID";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     this.gridColumn14.Width = 117;
     //
     // repositoryItemLookUpEditEditEMPID
     //
     this.repositoryItemLookUpEditEditEMPID.AutoHeight = false;
     this.repositoryItemLookUpEditEditEMPID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditEMPID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPID", "EMPID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المستلم"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("JOBName", "اسم الوظيفه"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.repositoryItemLookUpEditEditEMPID.Name = "repositoryItemLookUpEditEditEMPID";
     this.repositoryItemLookUpEditEditEMPID.NullText = "";
     this.repositoryItemLookUpEditEditEMPID.NullValuePrompt = "اختار اسم المسئول";
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "خصم كلي";
     this.gridColumn16.ColumnEdit = this.repositoryItemTextEditEditTotalkasm;
     this.gridColumn16.FieldName = "Totalkasm";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 7;
     this.gridColumn16.Width = 67;
     //
     // repositoryItemTextEditEditTotalkasm
     //
     this.repositoryItemTextEditEditTotalkasm.AutoHeight = false;
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditTotalkasm.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Name = "repositoryItemTextEditEditTotalkasm";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "مصروفات أضافيه";
     this.gridColumn17.ColumnEdit = this.repositoryItemTextEditEditExtraFees;
     this.gridColumn17.FieldName = "ExtraFees";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 6;
     this.gridColumn17.Width = 94;
     //
     // repositoryItemTextEditEditExtraFees
     //
     this.repositoryItemTextEditEditExtraFees.AutoHeight = false;
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditExtraFees.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Name = "repositoryItemTextEditEditExtraFees";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "معلومات";
     this.gridColumn18.ColumnEdit = this.repositoryItemMemoExEditEditREM;
     this.gridColumn18.FieldName = "REM";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     this.gridColumn18.Width = 56;
     //
     // repositoryItemMemoExEditEditREM
     //
     this.repositoryItemMemoExEditEditREM.AutoHeight = false;
     this.repositoryItemMemoExEditEditREM.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditEditREM.Name = "repositoryItemMemoExEditEditREM";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "المخزن";
     this.gridColumn20.ColumnEdit = this.repositoryItemLookUpEditEditStoreID;
     this.gridColumn20.FieldName = "StoreID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 4;
     this.gridColumn20.Width = 125;
     //
     // repositoryItemLookUpEditEditStoreID
     //
     this.repositoryItemLookUpEditEditStoreID.AutoHeight = false;
     this.repositoryItemLookUpEditEditStoreID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditStoreID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreID", "StoreID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreOfficial", "السئول"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.repositoryItemLookUpEditEditStoreID.Name = "repositoryItemLookUpEditEditStoreID";
     this.repositoryItemLookUpEditEditStoreID.NullText = "";
     this.repositoryItemLookUpEditEditStoreID.NullValuePrompt = "اختار المخزن";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "نوع الدفع";
     this.gridColumn22.ColumnEdit = this.repositoryItemLookUpEditEditBillPayTypeID;
     this.gridColumn22.FieldName = "BillPayTypeID";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 86;
     //
     // repositoryItemLookUpEditEditBillPayTypeID
     //
     this.repositoryItemLookUpEditEditBillPayTypeID.AutoHeight = false;
     this.repositoryItemLookUpEditEditBillPayTypeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditBillPayTypeID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeID", "BillPayTypeID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "نوع الدفع")});
     this.repositoryItemLookUpEditEditBillPayTypeID.Name = "repositoryItemLookUpEditEditBillPayTypeID";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullText = "";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullValuePrompt = "اختار نوع الدفع";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "حــــذف";
     this.gridColumn3.ColumnEdit = this.repositoryItemButtonEditEditBillDelete;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 61;
     //
     // repositoryItemButtonEditEditBillDelete
     //
     this.repositoryItemButtonEditEditBillDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditBillDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditBillDelete.Name = "repositoryItemButtonEditEditBillDelete";
     this.repositoryItemButtonEditEditBillDelete.NullText = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePrompt = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePromptShowForEmptyValue = true;
     this.repositoryItemButtonEditEditBillDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditBillDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditBillDelete_ButtonClick);
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "تعديــل";
     this.gridColumn19.ColumnEdit = this.repositoryItemButtonEditBillEdit;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 57;
     //
     // repositoryItemButtonEditBillEdit
     //
     this.repositoryItemButtonEditBillEdit.AutoHeight = false;
     this.repositoryItemButtonEditBillEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditBillEdit.Name = "repositoryItemButtonEditBillEdit";
     this.repositoryItemButtonEditBillEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditBillEdit.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditBillEdit_ButtonClick);
     //
     // xtraTabControlEditor
     //
     this.xtraTabControlEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControlEditor.Location = new System.Drawing.Point(12, 12);
     this.xtraTabControlEditor.Name = "xtraTabControlEditor";
     this.xtraTabControlEditor.SelectedTabPage = this.xtraTabPageAdd;
     this.xtraTabControlEditor.Size = new System.Drawing.Size(768, 542);
     this.xtraTabControlEditor.TabIndex = 0;
     this.xtraTabControlEditor.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageAdd,
     this.xtraTabPageEdit});
     this.xtraTabControlEditor.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControlEditor_SelectedPageChanging);
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Controls.Add(this.BtnPrint);
     this.xtraTabPageAdd.Controls.Add(this.BtnSave);
     this.xtraTabPageAdd.Controls.Add(this.groupControl3);
     this.xtraTabPageAdd.Controls.Add(this.GridControlAddDetials);
     this.xtraTabPageAdd.Controls.Add(this.groupControl2);
     this.xtraTabPageAdd.Controls.Add(this.groupControl1);
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageAdd.Text = "اضافه";
     //
     // BtnPrint
     //
     this.BtnPrint.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnPrint.Enabled = false;
     this.BtnPrint.Location = new System.Drawing.Point(8, 480);
     this.BtnPrint.Name = "BtnPrint";
     this.BtnPrint.Size = new System.Drawing.Size(154, 32);
     this.BtnPrint.TabIndex = 4;
     this.BtnPrint.Text = "طباعة اذن الاضافه";
     this.BtnPrint.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnSave
     //
     this.BtnSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(188, 480);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(387, 32);
     this.BtnSave.TabIndex = 3;
     this.BtnSave.Text = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTip = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTipTitle = "حفظ الفاتوره F6";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl6);
     this.groupControl3.Controls.Add(this.LblTotal);
     this.groupControl3.Location = new System.Drawing.Point(8, 3);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(223, 198);
     this.groupControl3.TabIndex = 4;
     this.groupControl3.Text = "الاجمالي";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(133, 76);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(69, 13);
     this.labelControl6.TabIndex = 2;
     this.labelControl6.Text = "اجمالي الفاتوره";
     //
     // LblTotal
     //
     this.LblTotal.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LblTotal.Appearance.ForeColor = System.Drawing.Color.Green;
     this.LblTotal.Location = new System.Drawing.Point(21, 90);
     this.LblTotal.Name = "LblTotal";
     this.LblTotal.Size = new System.Drawing.Size(17, 33);
     this.LblTotal.TabIndex = 3;
     this.LblTotal.Text = "0";
     //
     // GridControlAddDetials
     //
     this.GridControlAddDetials.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.First.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.GridControlAddDetials.Location = new System.Drawing.Point(3, 207);
     this.GridControlAddDetials.MainView = this.gridViewAdd;
     this.GridControlAddDetials.Name = "GridControlAddDetials";
     this.GridControlAddDetials.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditSanfID,
     this.repositoryItemTextEditQuantity,
     this.repositoryItemCalcEditPrice,
     this.repositoryItemCalcEditDiscount,
     this.repositoryItemButtonEditSort,
     this.repositoryItemButtonEditDelete});
     this.GridControlAddDetials.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GridControlAddDetials.Size = new System.Drawing.Size(755, 268);
     this.GridControlAddDetials.TabIndex = 2;
     this.GridControlAddDetials.UseEmbeddedNavigator = true;
     this.GridControlAddDetials.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewAdd});
     this.GridControlAddDetials.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEventGrid);
     //
     // gridViewAdd
     //
     this.gridViewAdd.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnStoreTrID,
     this.gridColumnSanfID,
     this.gridColumnQuantity,
     this.gridColumnPrice,
     this.gridColumnDiscount,
     this.gridColumnSort,
     this.gridColumnDelete,
     this.gridColumnTotal});
     this.gridViewAdd.GridControl = this.GridControlAddDetials;
     this.gridViewAdd.Name = "gridViewAdd";
     this.gridViewAdd.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewAdd.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridViewAdd.RowCountChanged += new System.EventHandler(this.gridViewAdd_RowCountChanged);
     //
     // gridColumnStoreTrID
     //
     this.gridColumnStoreTrID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.Caption = "رقم فاتورة المشتريات";
     this.gridColumnStoreTrID.FieldName = "StoreTrID";
     this.gridColumnStoreTrID.Name = "gridColumnStoreTrID";
     this.gridColumnStoreTrID.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnSanfID
     //
     this.gridColumnSanfID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.Caption = "كود الصنف";
     this.gridColumnSanfID.ColumnEdit = this.repositoryItemLookUpEditSanfID;
     this.gridColumnSanfID.FieldName = "SanfID";
     this.gridColumnSanfID.Name = "gridColumnSanfID";
     this.gridColumnSanfID.Visible = true;
     this.gridColumnSanfID.VisibleIndex = 0;
     this.gridColumnSanfID.Width = 220;
     //
     // repositoryItemLookUpEditSanfID
     //
     this.repositoryItemLookUpEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditSanfID.Name = "repositoryItemLookUpEditSanfID";
     this.repositoryItemLookUpEditSanfID.NullText = "";
     this.repositoryItemLookUpEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     this.repositoryItemLookUpEditSanfID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // gridColumnQuantity
     //
     this.gridColumnQuantity.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.Caption = "كمية الوارد";
     this.gridColumnQuantity.ColumnEdit = this.repositoryItemTextEditQuantity;
     this.gridColumnQuantity.FieldName = "Quantity";
     this.gridColumnQuantity.Name = "gridColumnQuantity";
     this.gridColumnQuantity.Visible = true;
     this.gridColumnQuantity.VisibleIndex = 1;
     this.gridColumnQuantity.Width = 112;
     //
     // repositoryItemTextEditQuantity
     //
     this.repositoryItemTextEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditQuantity.Name = "repositoryItemTextEditQuantity";
     this.repositoryItemTextEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumnPrice
     //
     this.gridColumnPrice.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.Caption = "سعر الشراء";
     this.gridColumnPrice.ColumnEdit = this.repositoryItemCalcEditPrice;
     this.gridColumnPrice.FieldName = "Price";
     this.gridColumnPrice.Name = "gridColumnPrice";
     this.gridColumnPrice.Visible = true;
     this.gridColumnPrice.VisibleIndex = 2;
     this.gridColumnPrice.Width = 92;
     //
     // repositoryItemCalcEditPrice
     //
     this.repositoryItemCalcEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditPrice.Name = "repositoryItemCalcEditPrice";
     this.repositoryItemCalcEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumnDiscount
     //
     this.gridColumnDiscount.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.Caption = "الخصم";
     this.gridColumnDiscount.ColumnEdit = this.repositoryItemCalcEditDiscount;
     this.gridColumnDiscount.FieldName = "Discount";
     this.gridColumnDiscount.Name = "gridColumnDiscount";
     this.gridColumnDiscount.OptionsColumn.TabStop = false;
     this.gridColumnDiscount.Visible = true;
     this.gridColumnDiscount.VisibleIndex = 3;
     this.gridColumnDiscount.Width = 86;
     //
     // repositoryItemCalcEditDiscount
     //
     this.repositoryItemCalcEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDiscount.Name = "repositoryItemCalcEditDiscount";
     //
     // gridColumnSort
     //
     this.gridColumnSort.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.Caption = "ترتيب";
     this.gridColumnSort.ColumnEdit = this.repositoryItemButtonEditSort;
     this.gridColumnSort.FieldName = "SortNo";
     this.gridColumnSort.Name = "gridColumnSort";
     this.gridColumnSort.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnSort.OptionsColumn.TabStop = false;
     this.gridColumnSort.Width = 80;
     //
     // repositoryItemButtonEditSort
     //
     this.repositoryItemButtonEditSort.AutoHeight = false;
     this.repositoryItemButtonEditSort.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditSort.Name = "repositoryItemButtonEditSort";
     this.repositoryItemButtonEditSort.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSort.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSort_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حـــذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDelete;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Width = 117;
     //
     // repositoryItemButtonEditDelete
     //
     this.repositoryItemButtonEditDelete.AutoHeight = false;
     this.repositoryItemButtonEditDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDelete.Name = "repositoryItemButtonEditDelete";
     this.repositoryItemButtonEditDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumnTotal
     //
     this.gridColumnTotal.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.Caption = "المجموع";
     this.gridColumnTotal.DisplayFormat.FormatString = "c2";
     this.gridColumnTotal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.FieldName = "Total";
     this.gridColumnTotal.GroupFormat.FormatString = "c2";
     this.gridColumnTotal.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.Name = "gridColumnTotal";
     this.gridColumnTotal.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnTotal.OptionsColumn.ReadOnly = true;
     this.gridColumnTotal.OptionsColumn.TabStop = false;
     this.gridColumnTotal.Visible = true;
     this.gridColumnTotal.VisibleIndex = 4;
     this.gridColumnTotal.Width = 78;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.TxtREM);
     this.groupControl2.Controls.Add(this.labelControl12);
     this.groupControl2.Controls.Add(this.TxtExtraFees);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.TxtTotalkasm);
     this.groupControl2.Controls.Add(this.labelControl8);
     this.groupControl2.Location = new System.Drawing.Point(237, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(263, 198);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "مصاريف اضافيه و الخصم";
     //
     // TxtREM
     //
     this.TxtREM.Location = new System.Drawing.Point(5, 75);
     this.TxtREM.Name = "TxtREM";
     this.TxtREM.Properties.MaxLength = 100;
     this.TxtREM.Properties.NullValuePrompt = "معلومات عن الفاتوره";
     this.TxtREM.Size = new System.Drawing.Size(199, 84);
     this.TxtREM.TabIndex = 2;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(210, 78);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(39, 13);
     this.labelControl12.TabIndex = 4;
     this.labelControl12.Text = "معلومات";
     //
     // TxtExtraFees
     //
     this.TxtExtraFees.EditValue = "0";
     this.TxtExtraFees.Location = new System.Drawing.Point(5, 49);
     this.TxtExtraFees.Name = "TxtExtraFees";
     this.TxtExtraFees.Properties.DisplayFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.EditFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.Mask.EditMask = "f2";
     this.TxtExtraFees.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtExtraFees.Properties.NullValuePrompt = "ادخل قيمة المصارف الاضافيه";
     this.TxtExtraFees.Size = new System.Drawing.Size(150, 20);
     this.TxtExtraFees.TabIndex = 1;
     this.TxtExtraFees.EditValueChanged += new System.EventHandler(this.TxtExtraPayValue_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(181, 52);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(68, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "مصاريف اضافيه";
     //
     // TxtTotalkasm
     //
     this.TxtTotalkasm.EditValue = "0";
     this.TxtTotalkasm.Location = new System.Drawing.Point(5, 24);
     this.TxtTotalkasm.Name = "TxtTotalkasm";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.EditFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.Mask.EditMask = "f2";
     this.TxtTotalkasm.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtTotalkasm.Properties.NullValuePrompt = "ادخل قيمة الخصم الكلي";
     this.TxtTotalkasm.Size = new System.Drawing.Size(150, 20);
     this.TxtTotalkasm.TabIndex = 0;
     this.TxtTotalkasm.EditValueChanged += new System.EventHandler(this.TxtDiscount_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(202, 27);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "خصم كلي";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.LUEStoreID);
     this.groupControl1.Controls.Add(this.LUEBillPayType);
     this.groupControl1.Controls.Add(this.LUEEMPID);
     this.groupControl1.Controls.Add(this.LUEPERSONID);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.DEStoreTrDate);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDDAY);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDTYPE);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(506, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl1.Size = new System.Drawing.Size(252, 198);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "بيانات عامــه";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(206, 178);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(41, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "نوع الدفع";
     //
     // LUEStoreID
     //
     this.LUEStoreID.Location = new System.Drawing.Point(5, 150);
     this.LUEStoreID.Name = "LUEStoreID";
     this.LUEStoreID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEStoreID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StorePlace", "عنوان"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.LUEStoreID.Properties.NullText = "";
     this.LUEStoreID.Properties.NullValuePrompt = "اختار اسم المخزن";
     this.LUEStoreID.Size = new System.Drawing.Size(150, 20);
     this.LUEStoreID.TabIndex = 3;
     //
     // LUEBillPayType
     //
     this.LUEBillPayType.Location = new System.Drawing.Point(5, 175);
     this.LUEBillPayType.Name = "LUEBillPayType";
     this.LUEBillPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEBillPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "اسم نوع الدفع")});
     this.LUEBillPayType.Properties.NullText = "";
     this.LUEBillPayType.Properties.NullValuePrompt = "اختار نوع الدفع";
     this.LUEBillPayType.Size = new System.Drawing.Size(150, 20);
     this.LUEBillPayType.TabIndex = 4;
     //
     // LUEEMPID
     //
     this.LUEEMPID.Location = new System.Drawing.Point(5, 125);
     this.LUEEMPID.Name = "LUEEMPID";
     this.LUEEMPID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEEMPID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.LUEEMPID.Properties.NullText = "";
     this.LUEEMPID.Properties.NullValuePrompt = "اختار اسم المستــلم";
     this.LUEEMPID.Size = new System.Drawing.Size(150, 20);
     this.LUEEMPID.TabIndex = 2;
     //
     // LUEPERSONID
     //
     this.LUEPERSONID.Location = new System.Drawing.Point(5, 100);
     this.LUEPERSONID.Name = "LUEPERSONID";
     this.LUEPERSONID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEPERSONID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Addess", "عنوان المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "محمول")});
     this.LUEPERSONID.Properties.NullText = "";
     this.LUEPERSONID.Properties.NullValuePrompt = "اختار اسم المورد";
     this.LUEPERSONID.Size = new System.Drawing.Size(150, 20);
     this.LUEPERSONID.TabIndex = 1;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(215, 153);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(32, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "المخزن";
     //
     // DEStoreTrDate
     //
     this.DEStoreTrDate.EditValue = null;
     this.DEStoreTrDate.Location = new System.Drawing.Point(5, 75);
     this.DEStoreTrDate.Name = "DEStoreTrDate";
     this.DEStoreTrDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DEStoreTrDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.NullValuePrompt = "ادخل تاريخ الفاتوره";
     this.DEStoreTrDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DEStoreTrDate.Size = new System.Drawing.Size(150, 20);
     this.DEStoreTrDate.TabIndex = 0;
     this.DEStoreTrDate.EditValueChanged += new System.EventHandler(this.DEStoreTrDate_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(185, 128);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "المستـــــــلم";
     //
     // TxtStoreTrIDDAY
     //
     this.TxtStoreTrIDDAY.Location = new System.Drawing.Point(5, 49);
     this.TxtStoreTrIDDAY.Name = "TxtStoreTrIDDAY";
     this.TxtStoreTrIDDAY.Properties.ReadOnly = true;
     this.TxtStoreTrIDDAY.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDDAY.TabIndex = 0;
     this.TxtStoreTrIDDAY.TabStop = false;
     //
     // TxtStoreTrIDTYPE
     //
     this.TxtStoreTrIDTYPE.Location = new System.Drawing.Point(5, 24);
     this.TxtStoreTrIDTYPE.Name = "TxtStoreTrIDTYPE";
     this.TxtStoreTrIDTYPE.Properties.ReadOnly = true;
     this.TxtStoreTrIDTYPE.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDTYPE.TabIndex = 0;
     this.TxtStoreTrIDTYPE.TabStop = false;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(195, 103);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المورد";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(160, 52);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(87, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "رقم الفاتوره اليومي";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(195, 78);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تارخ الفاتوره";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(195, 27);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "رقم الفاتوره";
     //
     // xtraTabPageEdit
     //
     this.xtraTabPageEdit.Controls.Add(this.groupControl4);
     this.xtraTabPageEdit.Name = "xtraTabPageEdit";
     this.xtraTabPageEdit.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageEdit.Text = "تعديــل";
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.gridControlEditorDetial);
     this.groupControl4.Controls.Add(this.gridControlEditor);
     this.groupControl4.Location = new System.Drawing.Point(3, 3);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(755, 506);
     this.groupControl4.TabIndex = 4;
     this.groupControl4.Text = "جميع تفاصيل الفاتوره";
     //
     // gridControlEditorDetial
     //
     this.gridControlEditorDetial.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditorDetial.Location = new System.Drawing.Point(2, 262);
     this.gridControlEditorDetial.MainView = this.gridViewEditDetial;
     this.gridControlEditorDetial.Name = "gridControlEditorDetial";
     this.gridControlEditorDetial.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditDetialSanfID,
     this.repositoryItemTextEditDetailQuantity,
     this.repositoryItemCalcEditDetialPrice,
     this.repositoryItemCalcEditDetialDiscount,
     this.repositoryItemButtonEditDetialSortNo,
     this.repositoryItemButtonEditEditDetialDelete,
     this.repositoryItemButtonEditDetialUpdate});
     this.gridControlEditorDetial.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditorDetial.Size = new System.Drawing.Size(751, 242);
     this.gridControlEditorDetial.TabIndex = 11;
     this.gridControlEditorDetial.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewEditDetial});
     //
     // gridViewEditDetial
     //
     this.gridViewEditDetial.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumnEditDetialSanfID,
     this.gridColumn23,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30});
     this.gridViewEditDetial.GridControl = this.gridControlEditorDetial;
     this.gridViewEditDetial.Name = "gridViewEditDetial";
     this.gridViewEditDetial.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewEditDetial.OptionsView.ColumnAutoWidth = false;
     this.gridViewEditDetial.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewEditDetial_CellValueChanging);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "رقم فاتورة المشتريات";
     this.gridColumn15.FieldName = "StoreTrID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnEditDetialSanfID
     //
     this.gridColumnEditDetialSanfID.Caption = "كود الصنف";
     this.gridColumnEditDetialSanfID.ColumnEdit = this.repositoryItemLookUpEditDetialSanfID;
     this.gridColumnEditDetialSanfID.FieldName = "SanfID";
     this.gridColumnEditDetialSanfID.Name = "gridColumnEditDetialSanfID";
     this.gridColumnEditDetialSanfID.Visible = true;
     this.gridColumnEditDetialSanfID.VisibleIndex = 6;
     this.gridColumnEditDetialSanfID.Width = 207;
     //
     // repositoryItemLookUpEditDetialSanfID
     //
     this.repositoryItemLookUpEditDetialSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditDetialSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDetialSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditDetialSanfID.Name = "repositoryItemLookUpEditDetialSanfID";
     this.repositoryItemLookUpEditDetialSanfID.NullText = "";
     this.repositoryItemLookUpEditDetialSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "كمية الوارد";
     this.gridColumn23.ColumnEdit = this.repositoryItemTextEditDetailQuantity;
     this.gridColumn23.FieldName = "Quantity";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 5;
     this.gridColumn23.Width = 110;
     //
     // repositoryItemTextEditDetailQuantity
     //
     this.repositoryItemTextEditDetailQuantity.AutoHeight = false;
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditDetailQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Name = "repositoryItemTextEditDetailQuantity";
     this.repositoryItemTextEditDetailQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "سعر الشراء";
     this.gridColumn25.ColumnEdit = this.repositoryItemCalcEditDetialPrice;
     this.gridColumn25.FieldName = "Price";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 4;
     this.gridColumn25.Width = 110;
     //
     // repositoryItemCalcEditDetialPrice
     //
     this.repositoryItemCalcEditDetialPrice.AutoHeight = false;
     this.repositoryItemCalcEditDetialPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialPrice.Name = "repositoryItemCalcEditDetialPrice";
     this.repositoryItemCalcEditDetialPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "الخصم";
     this.gridColumn26.ColumnEdit = this.repositoryItemCalcEditDetialDiscount;
     this.gridColumn26.FieldName = "Discount";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 3;
     this.gridColumn26.Width = 110;
     //
     // repositoryItemCalcEditDetialDiscount
     //
     this.repositoryItemCalcEditDetialDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDetialDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialDiscount.Name = "repositoryItemCalcEditDetialDiscount";
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "ترتيب";
     this.gridColumn27.ColumnEdit = this.repositoryItemButtonEditDetialSortNo;
     this.gridColumn27.FieldName = "SortNo";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn27.Width = 105;
     //
     // repositoryItemButtonEditDetialSortNo
     //
     this.repositoryItemButtonEditDetialSortNo.AutoHeight = false;
     this.repositoryItemButtonEditDetialSortNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditDetialSortNo.Name = "repositoryItemButtonEditDetialSortNo";
     this.repositoryItemButtonEditDetialSortNo.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "حـــذف";
     this.gridColumn28.ColumnEdit = this.repositoryItemButtonEditEditDetialDelete;
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 0;
     this.gridColumn28.Width = 41;
     //
     // repositoryItemButtonEditEditDetialDelete
     //
     this.repositoryItemButtonEditEditDetialDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditDetialDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditDetialDelete.Name = "repositoryItemButtonEditEditDetialDelete";
     this.repositoryItemButtonEditEditDetialDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditDetialDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditDetialDelete_ButtonClick);
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "المجموع";
     this.gridColumn29.DisplayFormat.FormatString = "c2";
     this.gridColumn29.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.FieldName = "Total";
     this.gridColumn29.GroupFormat.FormatString = "c2";
     this.gridColumn29.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.ReadOnly = true;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     this.gridColumn29.Width = 78;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "حفظ تعديل";
     this.gridColumn30.ColumnEdit = this.repositoryItemButtonEditDetialUpdate;
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 1;
     this.gridColumn30.Width = 59;
     //
     // repositoryItemButtonEditDetialUpdate
     //
     this.repositoryItemButtonEditDetialUpdate.AutoHeight = false;
     this.repositoryItemButtonEditDetialUpdate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditDetialUpdate.Name = "repositoryItemButtonEditDetialUpdate";
     this.repositoryItemButtonEditDetialUpdate.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDetialUpdate.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDetialUpdate_ButtonClick);
     //
     // DataBillFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(792, 566);
     this.Controls.Add(this.xtraTabControlEditor);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DataBillFrm";
     this.Text = "فاتورة مشتريات";
     this.Load += new System.EventHandler(this.DataBillFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).EndInit();
     this.xtraTabControlEditor.ResumeLayout(false);
     this.xtraTabPageAdd.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).EndInit();
     this.xtraTabPageEdit.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).EndInit();
     this.ResumeLayout(false);
 }
示例#59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.GridControlMemberPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChecked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1 = new DevExpress.XtraEditors.SimpleButton();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     this.SuspendLayout();
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit2.ValueGrayed = "";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location = new System.Drawing.Point(0, 0);
     this.panelControlMemberPackage.Name = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size = new System.Drawing.Size(864, 220);
     this.panelControlMemberPackage.TabIndex = 1;
     //
     // GridControlMemberPackage
     //
     this.GridControlMemberPackage.Location = new System.Drawing.Point(-2, 13);
     this.GridControlMemberPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberPackage.MainView = this.gridViewMemberPackage;
     this.GridControlMemberPackage.Name = "GridControlMemberPackage";
     this.GridControlMemberPackage.Size = new System.Drawing.Size(818, 229);
     this.GridControlMemberPackage.TabIndex = 8;
     this.GridControlMemberPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberPackage});
     this.GridControlMemberPackage.Click += new System.EventHandler(this.GridControlMemberPackage_Click);
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.GridColumn28,
     this.GridColumn30,
     this.GridColumn31,
     this.GridColumn32,
     this.GridColumn33,
     this.GridColumn35,
     this.GridColumn44,
     this.GridColumn45,
     this.GridColumn50,
     this.GridColumn49,
     this.gridColumn14,
     this.GridColumn34,
     this.gridColumn13,
     this.colChecked,
     this.gridColumn2});
     this.gridViewMemberPackage.GridControl = this.GridControlMemberPackage;
     this.gridViewMemberPackage.GroupFormat = "";
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsCustomization.AllowGroup = false;
     this.gridViewMemberPackage.OptionsCustomization.AllowSort = false;
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberPackage_FocusedRowChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Type";
     this.gridColumn1.FieldName = "strPackageType";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 100;
     //
     // GridColumn28
     //
     this.GridColumn28.Caption = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit = false;
     this.GridColumn28.OptionsColumn.AllowFocus = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible = true;
     this.GridColumn28.VisibleIndex = 2;
     this.GridColumn28.Width = 80;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit = false;
     this.GridColumn30.OptionsColumn.AllowFocus = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible = true;
     this.GridColumn30.VisibleIndex = 3;
     this.GridColumn30.Width = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit = false;
     this.GridColumn31.OptionsColumn.AllowFocus = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible = true;
     this.GridColumn31.VisibleIndex = 4;
     this.GridColumn31.Width = 280;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit = false;
     this.GridColumn32.OptionsColumn.AllowFocus = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit = false;
     this.GridColumn33.OptionsColumn.AllowFocus = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Width = 82;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit = false;
     this.GridColumn35.OptionsColumn.AllowFocus = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Width = 73;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit = false;
     this.GridColumn44.OptionsColumn.AllowFocus = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Width = 104;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName = "fFree";
     this.GridColumn45.Name = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit = false;
     this.GridColumn45.OptionsColumn.AllowFocus = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Width = 110;
     //
     // GridColumn50
     //
     this.GridColumn50.Caption = "Usage Balance Amount";
     this.GridColumn50.DisplayFormat.FormatString = "{0:C}";
     this.GridColumn50.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.GridColumn50.FieldName = "UsageBalAmt";
     this.GridColumn50.Name = "GridColumn50";
     this.GridColumn50.OptionsColumn.AllowEdit = false;
     this.GridColumn50.OptionsColumn.AllowFocus = false;
     this.GridColumn50.OptionsFilter.AllowFilter = false;
     this.GridColumn50.Visible = true;
     this.GridColumn50.VisibleIndex = 5;
     this.GridColumn50.Width = 134;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit = false;
     this.GridColumn49.OptionsColumn.AllowFocus = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width = 70;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Paid Amount";
     this.gridColumn14.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn14.FieldName = "PaidAmt";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsColumn.AllowFocus = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.Width = 90;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption = "Balance";
     this.GridColumn34.FieldName = "strBalNew";
     this.GridColumn34.Name = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit = false;
     this.GridColumn34.OptionsColumn.AllowFocus = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible = true;
     this.GridColumn34.VisibleIndex = 7;
     this.GridColumn34.Width = 60;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Unit Price";
     this.gridColumn13.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn13.FieldName = "mBaseUnitPrice";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit = false;
     this.gridColumn13.OptionsColumn.AllowFocus = false;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Width = 57;
     //
     // colChecked
     //
     this.colChecked.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colChecked.FieldName = "Checked";
     this.colChecked.Name = "colChecked";
     this.colChecked.Visible = true;
     this.colChecked.VisibleIndex = 0;
     this.colChecked.Width = 34;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Calculation";
     this.gridColumn2.FieldName = "strCalculation";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 8;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(979, 6);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop = false;
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GridControlMemberPackage);
     this.panelControlPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 6);
     this.panelControlPackage.Name = "panelControlPackage";
     this.panelControlPackage.Size = new System.Drawing.Size(979, 316);
     this.panelControlPackage.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(644, 247);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 12;
     this.simpleButton2.Text = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location = new System.Drawing.Point(557, 247);
     this.simpleButtonOK1.Name = "simpleButtonOK1";
     this.simpleButtonOK1.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK1.TabIndex = 11;
     this.simpleButtonOK1.Text = "OK";
     this.simpleButtonOK1.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormUpgradePackageNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(979, 322);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormUpgradePackageNew";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Upgrade Selection";
     this.Load += new System.EventHandler(this.FormUpgradePackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTestList));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = 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.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.sTOCKOUTWARDDETAILBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsTEST = new Do_An_Quan_Ly_Kho.Test.DS.dsTEST();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOutward_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStock_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRefType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProduct_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProductName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colVat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCurrentQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQtyConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCharge = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProfit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBatch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSerial = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChassyNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIME = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWidth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colHeight = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOrgin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSize = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStoreID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSorted = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActive = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.sTOCK_OUTWARD_DETAILTableAdapter = new Do_An_Quan_Ly_Kho.Test.DS.dsTESTTableAdapters.STOCK_OUTWARD_DETAILTableAdapter();
     this.bbiExportExcel = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiExportExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiExportExcel)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 26);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(452, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(648, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(648, 20);
     this.layoutControlGroup2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(326, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(122, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(176, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(122, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(57, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.DataSource = this.sTOCKOUTWARDDETAILBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.Size = new System.Drawing.Size(1098, 362);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // sTOCKOUTWARDDETAILBindingSource
     //
     this.sTOCKOUTWARDDETAILBindingSource.DataMember = "STOCK_OUTWARD_DETAIL";
     this.sTOCKOUTWARDDETAILBindingSource.DataSource = this.dsTEST;
     //
     // dsTEST
     //
     this.dsTEST.DataSetName = "dsTEST";
     this.dsTEST.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colID,
     this.colOutward_ID,
     this.colStock_ID,
     this.colRefType,
     this.colProduct_ID,
     this.colProductName,
     this.colVat,
     this.colLev1,
     this.colLev2,
     this.colLev3,
     this.colLev4,
     this.colUnit,
     this.colUnitConvert,
     this.colCurrentQty,
     this.colQuantity,
     this.colUnitPrice,
     this.colAmount,
     this.colQtyConvert,
     this.colDiscount,
     this.colCharge,
     this.colCost,
     this.colProfit,
     this.colBatch,
     this.colSerial,
     this.colChassyNo,
     this.colIME,
     this.colWidth,
     this.colHeight,
     this.colOrgin,
     this.colSize,
     this.colStoreID,
     this.colDescription,
     this.colSorted,
     this.colActive});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colID
     //
     this.colID.AppearanceHeader.Options.UseTextOptions = true;
     this.colID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colID.FieldName = "ID";
     this.colID.Name = "colID";
     this.colID.OptionsColumn.ReadOnly = true;
     this.colID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colID.Visible = true;
     this.colID.VisibleIndex = 0;
     this.colID.Width = 33;
     //
     // colOutward_ID
     //
     this.colOutward_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colOutward_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOutward_ID.FieldName = "Outward_ID";
     this.colOutward_ID.Name = "colOutward_ID";
     this.colOutward_ID.OptionsColumn.ReadOnly = true;
     this.colOutward_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOutward_ID.Visible = true;
     this.colOutward_ID.VisibleIndex = 1;
     this.colOutward_ID.Width = 81;
     //
     // colStock_ID
     //
     this.colStock_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStock_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStock_ID.FieldName = "Stock_ID";
     this.colStock_ID.Name = "colStock_ID";
     this.colStock_ID.OptionsColumn.ReadOnly = true;
     this.colStock_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStock_ID.Visible = true;
     this.colStock_ID.VisibleIndex = 2;
     this.colStock_ID.Width = 65;
     //
     // colRefType
     //
     this.colRefType.AppearanceHeader.Options.UseTextOptions = true;
     this.colRefType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRefType.FieldName = "RefType";
     this.colRefType.Name = "colRefType";
     this.colRefType.OptionsColumn.ReadOnly = true;
     this.colRefType.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colRefType.Visible = true;
     this.colRefType.VisibleIndex = 3;
     this.colRefType.Width = 66;
     //
     // colProduct_ID
     //
     this.colProduct_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colProduct_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProduct_ID.FieldName = "Product_ID";
     this.colProduct_ID.Name = "colProduct_ID";
     this.colProduct_ID.OptionsColumn.ReadOnly = true;
     this.colProduct_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProduct_ID.Visible = true;
     this.colProduct_ID.VisibleIndex = 4;
     this.colProduct_ID.Width = 76;
     //
     // colProductName
     //
     this.colProductName.AppearanceHeader.Options.UseTextOptions = true;
     this.colProductName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProductName.FieldName = "ProductName";
     this.colProductName.Name = "colProductName";
     this.colProductName.OptionsColumn.ReadOnly = true;
     this.colProductName.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProductName.Visible = true;
     this.colProductName.VisibleIndex = 5;
     this.colProductName.Width = 89;
     //
     // colVat
     //
     this.colVat.AppearanceHeader.Options.UseTextOptions = true;
     this.colVat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colVat.FieldName = "Vat";
     this.colVat.Name = "colVat";
     this.colVat.OptionsColumn.ReadOnly = true;
     this.colVat.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colVat.Visible = true;
     this.colVat.VisibleIndex = 6;
     this.colVat.Width = 38;
     //
     // colLev1
     //
     this.colLev1.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev1.FieldName = "Lev1";
     this.colLev1.Name = "colLev1";
     this.colLev1.OptionsColumn.ReadOnly = true;
     this.colLev1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev1.Visible = true;
     this.colLev1.VisibleIndex = 7;
     this.colLev1.Width = 45;
     //
     // colLev2
     //
     this.colLev2.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev2.FieldName = "Lev2";
     this.colLev2.Name = "colLev2";
     this.colLev2.OptionsColumn.ReadOnly = true;
     this.colLev2.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev2.Visible = true;
     this.colLev2.VisibleIndex = 8;
     this.colLev2.Width = 45;
     //
     // colLev3
     //
     this.colLev3.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev3.FieldName = "Lev3";
     this.colLev3.Name = "colLev3";
     this.colLev3.OptionsColumn.ReadOnly = true;
     this.colLev3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev3.Visible = true;
     this.colLev3.VisibleIndex = 9;
     this.colLev3.Width = 45;
     //
     // colLev4
     //
     this.colLev4.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev4.FieldName = "Lev4";
     this.colLev4.Name = "colLev4";
     this.colLev4.OptionsColumn.ReadOnly = true;
     this.colLev4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev4.Visible = true;
     this.colLev4.VisibleIndex = 10;
     this.colLev4.Width = 45;
     //
     // colUnit
     //
     this.colUnit.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnit.FieldName = "Unit";
     this.colUnit.Name = "colUnit";
     this.colUnit.OptionsColumn.ReadOnly = true;
     this.colUnit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnit.Visible = true;
     this.colUnit.VisibleIndex = 11;
     this.colUnit.Width = 41;
     //
     // colUnitConvert
     //
     this.colUnitConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitConvert.FieldName = "UnitConvert";
     this.colUnitConvert.Name = "colUnitConvert";
     this.colUnitConvert.OptionsColumn.ReadOnly = true;
     this.colUnitConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitConvert.Visible = true;
     this.colUnitConvert.VisibleIndex = 12;
     this.colUnitConvert.Width = 83;
     //
     // colCurrentQty
     //
     this.colCurrentQty.AppearanceHeader.Options.UseTextOptions = true;
     this.colCurrentQty.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrentQty.FieldName = "CurrentQty";
     this.colCurrentQty.Name = "colCurrentQty";
     this.colCurrentQty.OptionsColumn.ReadOnly = true;
     this.colCurrentQty.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCurrentQty.Visible = true;
     this.colCurrentQty.VisibleIndex = 13;
     this.colCurrentQty.Width = 80;
     //
     // colQuantity
     //
     this.colQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.colQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQuantity.FieldName = "Quantity";
     this.colQuantity.Name = "colQuantity";
     this.colQuantity.OptionsColumn.ReadOnly = true;
     this.colQuantity.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQuantity.Visible = true;
     this.colQuantity.VisibleIndex = 14;
     this.colQuantity.Width = 64;
     //
     // colUnitPrice
     //
     this.colUnitPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitPrice.FieldName = "UnitPrice";
     this.colUnitPrice.Name = "colUnitPrice";
     this.colUnitPrice.OptionsColumn.ReadOnly = true;
     this.colUnitPrice.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitPrice.Visible = true;
     this.colUnitPrice.VisibleIndex = 15;
     this.colUnitPrice.Width = 67;
     //
     // colAmount
     //
     this.colAmount.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmount.FieldName = "Amount";
     this.colAmount.Name = "colAmount";
     this.colAmount.OptionsColumn.ReadOnly = true;
     this.colAmount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colAmount.Visible = true;
     this.colAmount.VisibleIndex = 16;
     this.colAmount.Width = 59;
     //
     // colQtyConvert
     //
     this.colQtyConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colQtyConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQtyConvert.FieldName = "QtyConvert";
     this.colQtyConvert.Name = "colQtyConvert";
     this.colQtyConvert.OptionsColumn.ReadOnly = true;
     this.colQtyConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQtyConvert.Visible = true;
     this.colQtyConvert.VisibleIndex = 17;
     this.colQtyConvert.Width = 82;
     //
     // colDiscount
     //
     this.colDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.colDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDiscount.FieldName = "Discount";
     this.colDiscount.Name = "colDiscount";
     this.colDiscount.OptionsColumn.ReadOnly = true;
     this.colDiscount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDiscount.Visible = true;
     this.colDiscount.VisibleIndex = 18;
     this.colDiscount.Width = 63;
     //
     // colCharge
     //
     this.colCharge.AppearanceHeader.Options.UseTextOptions = true;
     this.colCharge.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCharge.FieldName = "Charge";
     this.colCharge.Name = "colCharge";
     this.colCharge.OptionsColumn.ReadOnly = true;
     this.colCharge.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCharge.Visible = true;
     this.colCharge.VisibleIndex = 19;
     this.colCharge.Width = 57;
     //
     // colCost
     //
     this.colCost.AppearanceHeader.Options.UseTextOptions = true;
     this.colCost.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCost.FieldName = "Cost";
     this.colCost.Name = "colCost";
     this.colCost.OptionsColumn.ReadOnly = true;
     this.colCost.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 20;
     this.colCost.Width = 44;
     //
     // colProfit
     //
     this.colProfit.AppearanceHeader.Options.UseTextOptions = true;
     this.colProfit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProfit.FieldName = "Profit";
     this.colProfit.Name = "colProfit";
     this.colProfit.OptionsColumn.ReadOnly = true;
     this.colProfit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProfit.Visible = true;
     this.colProfit.VisibleIndex = 21;
     this.colProfit.Width = 48;
     //
     // colBatch
     //
     this.colBatch.AppearanceHeader.Options.UseTextOptions = true;
     this.colBatch.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBatch.FieldName = "Batch";
     this.colBatch.Name = "colBatch";
     this.colBatch.OptionsColumn.ReadOnly = true;
     this.colBatch.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colBatch.Visible = true;
     this.colBatch.VisibleIndex = 22;
     this.colBatch.Width = 49;
     //
     // colSerial
     //
     this.colSerial.AppearanceHeader.Options.UseTextOptions = true;
     this.colSerial.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSerial.FieldName = "Serial";
     this.colSerial.Name = "colSerial";
     this.colSerial.OptionsColumn.ReadOnly = true;
     this.colSerial.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSerial.Visible = true;
     this.colSerial.VisibleIndex = 23;
     this.colSerial.Width = 48;
     //
     // colChassyNo
     //
     this.colChassyNo.AppearanceHeader.Options.UseTextOptions = true;
     this.colChassyNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChassyNo.FieldName = "ChassyNo";
     this.colChassyNo.Name = "colChassyNo";
     this.colChassyNo.OptionsColumn.ReadOnly = true;
     this.colChassyNo.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChassyNo.Visible = true;
     this.colChassyNo.VisibleIndex = 24;
     this.colChassyNo.Width = 73;
     //
     // colIME
     //
     this.colIME.AppearanceHeader.Options.UseTextOptions = true;
     this.colIME.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colIME.FieldName = "IME";
     this.colIME.Name = "colIME";
     this.colIME.OptionsColumn.ReadOnly = true;
     this.colIME.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colIME.Visible = true;
     this.colIME.VisibleIndex = 25;
     this.colIME.Width = 40;
     //
     // colWidth
     //
     this.colWidth.AppearanceHeader.Options.UseTextOptions = true;
     this.colWidth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWidth.FieldName = "Width";
     this.colWidth.Name = "colWidth";
     this.colWidth.OptionsColumn.ReadOnly = true;
     this.colWidth.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colWidth.Visible = true;
     this.colWidth.VisibleIndex = 26;
     this.colWidth.Width = 50;
     //
     // colHeight
     //
     this.colHeight.AppearanceHeader.Options.UseTextOptions = true;
     this.colHeight.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colHeight.FieldName = "Height";
     this.colHeight.Name = "colHeight";
     this.colHeight.OptionsColumn.ReadOnly = true;
     this.colHeight.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colHeight.Visible = true;
     this.colHeight.VisibleIndex = 27;
     this.colHeight.Width = 53;
     //
     // colOrgin
     //
     this.colOrgin.AppearanceHeader.Options.UseTextOptions = true;
     this.colOrgin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOrgin.FieldName = "Orgin";
     this.colOrgin.Name = "colOrgin";
     this.colOrgin.OptionsColumn.ReadOnly = true;
     this.colOrgin.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOrgin.Visible = true;
     this.colOrgin.VisibleIndex = 28;
     this.colOrgin.Width = 48;
     //
     // colSize
     //
     this.colSize.AppearanceHeader.Options.UseTextOptions = true;
     this.colSize.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSize.FieldName = "Size";
     this.colSize.Name = "colSize";
     this.colSize.OptionsColumn.ReadOnly = true;
     this.colSize.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSize.Visible = true;
     this.colSize.VisibleIndex = 29;
     this.colSize.Width = 41;
     //
     // colStoreID
     //
     this.colStoreID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStoreID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStoreID.FieldName = "StoreID";
     this.colStoreID.Name = "colStoreID";
     this.colStoreID.OptionsColumn.ReadOnly = true;
     this.colStoreID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStoreID.Visible = true;
     this.colStoreID.VisibleIndex = 30;
     this.colStoreID.Width = 62;
     //
     // colDescription
     //
     this.colDescription.AppearanceHeader.Options.UseTextOptions = true;
     this.colDescription.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDescription.FieldName = "Description";
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.ReadOnly = true;
     this.colDescription.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 31;
     //
     // colSorted
     //
     this.colSorted.AppearanceHeader.Options.UseTextOptions = true;
     this.colSorted.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSorted.FieldName = "Sorted";
     this.colSorted.Name = "colSorted";
     this.colSorted.OptionsColumn.ReadOnly = true;
     this.colSorted.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSorted.Visible = true;
     this.colSorted.VisibleIndex = 32;
     this.colSorted.Width = 54;
     //
     // colActive
     //
     this.colActive.AppearanceHeader.Options.UseTextOptions = true;
     this.colActive.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActive.FieldName = "Active";
     this.colActive.Name = "colActive";
     this.colActive.OptionsColumn.ReadOnly = true;
     this.colActive.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colActive.Visible = true;
     this.colActive.VisibleIndex = 33;
     this.colActive.Width = 52;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 366);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(150, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(450, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(652, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // sTOCK_OUTWARD_DETAILTableAdapter
     //
     this.sTOCK_OUTWARD_DETAILTableAdapter.ClearBeforeFill = true;
     //
     // bbiExportExcel
     //
     this.bbiExportExcel.Caption = "Xuất Excel";
     this.bbiExportExcel.Id = 12;
     this.bbiExportExcel.ImageIndex = 52;
     this.bbiExportExcel.Name = "bbiExportExcel";
     this.bbiExportExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiExportExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiExportExcel_ItemClick);
     //
     // frmTestList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTestList";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.frmTestList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }